/* Facebook — Main Zone */

.fb-main-wrap {
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: #000;
    color: #fff;
    font-family: system-ui, sans-serif;
}

.fb-main-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.fb-main-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fb-main-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 20%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}

.fb-main-logo {
    position: absolute;
    top: 2vmin;
    right: 2vmin;
    z-index: 3;
}

.fb-main-content {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    padding: 4vmin;
    width: 100%;
    max-width: 90%;
}

.fb-main-title {
    font-weight: 600;
    opacity: 0.9;
    margin-bottom: 1vmin;
    font-size: clamp(14px, 2vmin, 28px);
}

.fb-main-text {
    font-weight: 700;
    line-height: 1.2;
    font-size: clamp(24px, 5vmin, 80px);
    max-height: 60vh;
    overflow: hidden;
}

.fb-main-wrap,
.fb-main-wrap * {
    -webkit-text-stroke: 0 !important;
    text-shadow: none !important;
}
