/* ==================================================
   9TH SABRANG FILM AWARDS 2024 — HERO
================================================== */

:root {
    --sfa24-black: #080504;
    --sfa24-dark: #130907;
    --sfa24-burgundy: #54121c;
    --sfa24-gold: #e2b65f;
    --sfa24-gold-light: #f7dc98;
    --sfa24-gold-dark: #9d651c;
    --sfa24-white: #ffffff;
    --sfa24-text: rgba(255, 255, 255, 0.84);
}

.sfa24-hero,
.sfa24-hero * {
    box-sizing: border-box;
}

.sfa24-hero {
    position: relative;
    isolation: isolate;

    width: 100%;
    min-height: 780px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background-color: var(--sfa24-black);
    color: #ffffff;
}


/* ==================================================
   BACKGROUND IMAGE
================================================== */

.sfa24-hero__background {
    position: absolute;
    inset: -3%;
    z-index: -4;

    background-image:
        url("../images/winners/sabrang-awards-2024-hero.jpg");

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    filter:
        brightness(1.09)
        saturate(1.06);

    transform: scale(1);
    will-change: transform;

    animation:
        sfa24HeroZoom 8s ease-in-out infinite alternate;
}


/* ==================================================
   BALANCED OVERLAY
================================================== */

.sfa24-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: -3;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(7, 4, 3, 0.66) 0%,
            rgba(10, 5, 4, 0.46) 38%,
            rgba(9, 5, 3, 0.12) 68%,
            rgba(7, 4, 3, 0.02) 100%
        ),
        linear-gradient(
            0deg,
            rgba(7, 4, 3, 0.58) 0%,
            rgba(7, 4, 3, 0.03) 47%,
            rgba(7, 4, 3, 0.14) 100%
        );
}


/* Decorative burgundy glow */

.sfa24-hero__glow {
    position: absolute;
    top: 17%;
    left: -155px;
    z-index: -2;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    background: rgba(133, 24, 37, 0.17);
    filter: blur(120px);

    pointer-events: none;
}


/* ==================================================
   CONTAINER
================================================== */

.sfa24-hero__container {
    position: relative;
    z-index: 2;

    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;

    padding-top: 160px;
    padding-bottom: 115px;
}


/* ==================================================
   BREADCRUMB
================================================== */

.sfa24-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;

    margin: 0 0 34px;

    color: rgba(255, 255, 255, 0.55);

    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
}

.sfa24-breadcrumb a {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    color: rgba(255, 255, 255, 0.74);
    text-decoration: none;

    transition: color 0.3s ease;
}

.sfa24-breadcrumb a:hover {
    color: var(--sfa24-gold);
}

.sfa24-breadcrumb > i {
    color: rgba(226, 182, 95, 0.58);
    font-size: 8px;
}

.sfa24-breadcrumb > span {
    color: var(--sfa24-gold);
}


/* ==================================================
   HERO CONTENT
================================================== */

.sfa24-hero__content {
    max-width: 790px;
}


/* Eyebrow */

.sfa24-hero__eyebrow {
    display: flex;
    align-items: center;
    gap: 13px;

    margin: 0 0 22px;

    color: var(--sfa24-gold);

    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.sfa24-hero__eyebrow-line {
    display: block;

    width: 44px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--sfa24-gold)
        );
}


/* Main title */

.sfa24-hero__title {
    max-width: 800px;
    margin: 0 0 25px;

    color: #ffffff;

    font-family: "Cinzel", Georgia, serif;
    font-size: clamp(50px, 6vw, 84px);
    font-weight: 700;
    line-height: 1.03;
    letter-spacing: -1.8px;

    text-shadow:
        0 7px 30px rgba(0, 0, 0, 0.5);
}

.sfa24-hero__title span {
    display: block;
    margin-top: 7px;

    color: var(--sfa24-gold);

    background:
        linear-gradient(
            110deg,
            #f7dc98 0%,
            #daa247 50%,
            #efc977 100%
        );

    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* Description */

.sfa24-hero__description {
    max-width: 680px;
    margin: 0 0 32px;

    color: var(--sfa24-text);

    font-family: "Manrope", sans-serif;
    font-size: 17px;
    line-height: 1.8;
}


/* ==================================================
   EVENT DETAILS
================================================== */

.sfa24-hero__details {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;

    margin: 0 0 36px;
}

.sfa24-hero__detail {
    min-width: 178px;

    display: flex;
    align-items: center;
    gap: 11px;

    padding: 11px 14px;

    border: 1px solid rgba(226, 182, 95, 0.25);
    border-radius: 7px;

    background: rgba(11, 6, 5, 0.52);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.sfa24-hero__detail-icon {
    flex: 0 0 34px;

    width: 34px;
    height: 34px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(226, 182, 95, 0.33);
    border-radius: 50%;

    background: rgba(226, 182, 95, 0.09);
    color: var(--sfa24-gold);

    font-size: 13px;
}

.sfa24-hero__detail div {
    min-width: 0;

    display: flex;
    flex-direction: column;
    gap: 3px;
}

.sfa24-hero__detail small {
    color: rgba(255, 255, 255, 0.51);

    font-family: "Manrope", sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.sfa24-hero__detail strong {
    color: #ffffff;

    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
}


/* ==================================================
   HERO BUTTONS
================================================== */

.sfa24-hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 13px;
}

.sfa24-button {
    min-height: 51px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 14px 23px;

    border-radius: 5px;

    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.35px;
    text-decoration: none;

    transition:
        color 0.3s ease,
        transform 0.3s ease,
        border-color 0.3s ease,
        background-color 0.3s ease,
        box-shadow 0.3s ease;
}


/* Gold button */

.sfa24-button--gold {
    border: 1px solid var(--sfa24-gold);

    background:
        linear-gradient(
            135deg,
            #f2d083,
            #d5a146 53%,
            #a86b1c
        );

    color: #100a06;

    box-shadow:
        0 13px 30px rgba(170, 106, 25, 0.28);
}

.sfa24-button--gold:hover {
    color: #100a06;

    transform: translateY(-3px);

    box-shadow:
        0 18px 38px rgba(170, 106, 25, 0.42);
}


/* Outline button */

.sfa24-button--outline {
    border: 1px solid rgba(255, 255, 255, 0.3);

    background: rgba(11, 6, 5, 0.4);
    color: #ffffff;

    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
}

.sfa24-button--outline:hover {
    border-color: var(--sfa24-gold);

    background: rgba(226, 182, 95, 0.09);
    color: var(--sfa24-gold);

    transform: translateY(-3px);
}


/* ==================================================
   BOTTOM LINE AND SCROLL
================================================== */

.sfa24-hero__bottom-line {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 4;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(226, 182, 95, 0.87),
            transparent
        );
}

.sfa24-hero__scroll {
    position: absolute;
    right: 38px;
    bottom: 35px;
    z-index: 5;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;

    color: rgba(255, 255, 255, 0.63);

    font-family: "Manrope", sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
}

.sfa24-hero__scroll i {
    color: var(--sfa24-gold);
    font-size: 12px;

    animation:
        sfa24ScrollBounce 1.8s ease-in-out infinite;
}


/* ==================================================
   ANIMATIONS
================================================== */

@keyframes sfa24HeroZoom {

    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.065);
    }

}

@keyframes sfa24ScrollBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }

}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 991px) {

    .sfa24-hero {
        min-height: 720px;
    }

    .sfa24-hero__container {
        width: min(100% - 40px, 900px);

        padding-top: 150px;
        padding-bottom: 95px;
    }

    .sfa24-hero__content {
        max-width: 690px;
    }

    .sfa24-hero__overlay {
        background:
            linear-gradient(
                90deg,
                rgba(7, 4, 3, 0.73) 0%,
                rgba(9, 5, 4, 0.48) 57%,
                rgba(8, 4, 3, 0.1) 100%
            ),
            linear-gradient(
                0deg,
                rgba(7, 4, 3, 0.55),
                rgba(7, 4, 3, 0.03) 60%
            );
    }

    .sfa24-hero__scroll {
        display: none;
    }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 767px) {

    .sfa24-hero {
        min-height: 710px;
        align-items: flex-end;
    }

    .sfa24-hero__background {
        inset: 0;

        background-position: 70% center;

        filter:
            brightness(1.06)
            saturate(1.04);

        animation: none;
    }

    .sfa24-hero__overlay {
        background:
            linear-gradient(
                0deg,
                rgba(7, 4, 3, 0.91) 0%,
                rgba(8, 4, 4, 0.63) 56%,
                rgba(7, 4, 3, 0.17) 100%
            );
    }

    .sfa24-hero__container {
        width: calc(100% - 32px);

        padding-top: 135px;
        padding-bottom: 62px;
    }

    .sfa24-breadcrumb {
        margin-bottom: 25px;
        font-size: 11px;
    }

    .sfa24-hero__eyebrow {
        margin-bottom: 17px;

        font-size: 10px;
        letter-spacing: 1.7px;
    }

    .sfa24-hero__eyebrow-line {
        width: 29px;
    }

    .sfa24-hero__title {
        margin-bottom: 20px;

        font-size: clamp(39px, 11.5vw, 53px);
        line-height: 1.07;
        letter-spacing: -0.9px;
    }

    .sfa24-hero__description {
        margin-bottom: 25px;

        font-size: 15px;
        line-height: 1.7;
    }

    .sfa24-hero__details {
        gap: 8px;
        margin-bottom: 28px;
    }

    .sfa24-hero__detail {
        min-width: 0;
        padding: 9px 11px;
    }

    .sfa24-hero__detail-icon {
        flex-basis: 30px;

        width: 30px;
        height: 30px;
    }

    .sfa24-hero__detail small {
        display: none;
    }

    .sfa24-hero__detail strong {
        font-size: 11px;
    }

    .sfa24-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .sfa24-button {
        width: 100%;
    }

}


/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 430px) {

    .sfa24-hero__container {
        width: calc(100% - 26px);
    }

    .sfa24-hero__title {
        font-size: 37px;
    }

    .sfa24-hero__details {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sfa24-hero__detail:last-child {
        grid-column: 1 / -1;
    }

}


/* ==================================================
   REDUCED MOTION
================================================== */

@media (prefers-reduced-motion: reduce) {

    .sfa24-hero__background,
    .sfa24-hero__scroll i {
        animation: none;
    }

}
/* ==================================================
   SABRANG 2024 — EVENT OVERVIEW
================================================== */

.sfa24-overview,
.sfa24-overview * {
    box-sizing: border-box;
}

.sfa24-overview {
    position: relative;
    isolation: isolate;

    padding: 110px 0 95px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 8% 85%,
            rgba(218, 163, 62, 0.09),
            transparent 28%
        ),
        radial-gradient(
            circle at 90% 15%,
            rgba(130, 20, 34, 0.18),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            #080504 0%,
            #170b0c 49%,
            #090604 100%
        );

    color: #ffffff;
}


/* Subtle pattern */

.sfa24-overview::before {
    content: "";

    position: absolute;
    inset: 0;
    z-index: -2;

    opacity: 0.04;

    background-image:
        linear-gradient(
            rgba(226, 182, 95, 0.28) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(226, 182, 95, 0.28) 1px,
            transparent 1px
        );

    background-size: 80px 80px;

    pointer-events: none;
}


/* Top gold line */

.sfa24-overview::after {
    content: "";

    position: absolute;
    top: 0;
    right: 0;
    left: 0;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(226, 182, 95, 0.7),
            transparent
        );
}


/* Background glows */

.sfa24-overview__glow {
    position: absolute;
    z-index: -1;

    border-radius: 50%;
    filter: blur(115px);

    pointer-events: none;
}

.sfa24-overview__glow--left {
    bottom: -160px;
    left: -170px;

    width: 420px;
    height: 420px;

    background: rgba(210, 150, 47, 0.11);
}

.sfa24-overview__glow--right {
    top: -160px;
    right: -170px;

    width: 430px;
    height: 430px;

    background: rgba(123, 17, 31, 0.21);
}


/* ==================================================
   CONTAINER AND GRID
================================================== */

.sfa24-overview__container {
    position: relative;
    z-index: 2;

    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.sfa24-overview__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
    align-items: center;
    gap: clamp(55px, 7vw, 95px);
}


/* ==================================================
   SECTION LABEL
================================================== */

.sfa24-section-label {
    display: flex;
    align-items: center;
    gap: 12px;

    margin: 0 0 18px;

    color: var(--sfa24-gold);

    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.2px;
    text-transform: uppercase;
}

.sfa24-section-label span {
    width: 38px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--sfa24-gold)
        );
}


/* ==================================================
   OVERVIEW CONTENT
================================================== */

.sfa24-overview__title {
    max-width: 690px;
    margin: 0 0 23px;

    color: #ffffff;

    font-family: "Cinzel", Georgia, serif;
    font-size: clamp(36px, 4.2vw, 56px);
    font-weight: 700;
    line-height: 1.13;
    letter-spacing: -1px;
}

.sfa24-overview__title span {
    display: block;

    color: var(--sfa24-gold);

    background:
        linear-gradient(
            110deg,
            #f6da95,
            #d9a147 54%,
            #f0c978
        );

    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sfa24-overview__lead {
    margin: 0 0 16px;

    color: rgba(255, 255, 255, 0.87);

    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
}

.sfa24-overview__text {
    margin: 0 0 30px;

    color: rgba(255, 255, 255, 0.61);

    font-family: "Manrope", sans-serif;
    font-size: 14px;
    line-height: 1.85;
}


/* ==================================================
   OVERVIEW FEATURES
================================================== */

.sfa24-overview__features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;

    margin-bottom: 30px;
}

.sfa24-overview__feature {
    display: flex;
    align-items: flex-start;
    gap: 13px;

    padding: 16px 15px;

    border: 1px solid rgba(226, 182, 95, 0.16);
    border-radius: 6px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.035),
            rgba(255, 255, 255, 0.012)
        );

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background-color 0.35s ease;
}

.sfa24-overview__feature:hover {
    border-color: rgba(226, 182, 95, 0.43);
    background-color: rgba(226, 182, 95, 0.04);

    transform: translateY(-4px);
}

.sfa24-overview__feature-icon {
    flex: 0 0 38px;

    width: 38px;
    height: 38px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(226, 182, 95, 0.3);
    border-radius: 50%;

    background: rgba(226, 182, 95, 0.08);
    color: var(--sfa24-gold);

    font-size: 13px;
}

.sfa24-overview__feature h3 {
    margin: 0 0 6px;

    color: #ffffff;

    font-family: "Cinzel", Georgia, serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

.sfa24-overview__feature p {
    margin: 0;

    color: rgba(255, 255, 255, 0.53);

    font-family: "Manrope", sans-serif;
    font-size: 11px;
    line-height: 1.65;
}


/* ==================================================
   OVERVIEW BUTTON
================================================== */

.sfa24-overview__button {
    min-height: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;

    padding: 13px 22px;

    border: 1px solid var(--sfa24-gold);
    border-radius: 5px;

    background:
        linear-gradient(
            135deg,
            #f0ce81,
            #d5a147 55%,
            #a86b1b
        );

    color: #100a06;

    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.45px;
    text-decoration: none;

    box-shadow:
        0 13px 28px rgba(169, 106, 27, 0.25);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.sfa24-overview__button:hover {
    color: #100a06;

    transform: translateY(-3px);

    box-shadow:
        0 17px 36px rgba(169, 106, 27, 0.41);
}


/* ==================================================
   9TH EDITION VISUAL
================================================== */

.sfa24-overview__visual {
    position: relative;

    display: flex;
    justify-content: center;
}

.sfa24-overview__visual::before {
    content: "";

    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;

    width: 88%;
    height: 88%;

    border-radius: 50%;

    background: rgba(126, 18, 31, 0.18);
    filter: blur(75px);

    transform: translate(-50%, -50%);
}


/* Visual card */

.sfa24-edition-visual {
    position: relative;
    isolation: isolate;

    width: min(100%, 430px);
    min-height: 545px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 46px 35px;

    overflow: hidden;

    border: 1px solid rgba(226, 182, 95, 0.5);
    border-radius: 7px;

    background:
        radial-gradient(
            circle at 50% 34%,
            rgba(226, 182, 95, 0.14),
            transparent 37%
        ),
        linear-gradient(
            145deg,
            rgba(72, 19, 26, 0.62),
            rgba(10, 6, 5, 0.97)
        );

    box-shadow:
        0 36px 75px rgba(0, 0, 0, 0.43),
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        inset 0 0 55px rgba(226, 182, 95, 0.035);

    text-align: center;

    transition:
        transform 0.5s ease,
        border-color 0.5s ease,
        box-shadow 0.5s ease;
}

.sfa24-edition-visual:hover {
    border-color: rgba(247, 220, 152, 0.8);

    transform: translateY(-8px);

    box-shadow:
        0 47px 88px rgba(0, 0, 0, 0.52),
        0 0 42px rgba(207, 142, 39, 0.1);
}


/* Inner frame */

.sfa24-edition-visual::before {
    content: "";

    position: absolute;
    inset: 12px;
    z-index: -1;

    border: 1px solid rgba(226, 182, 95, 0.15);
    border-radius: 4px;

    pointer-events: none;
}


/* Animated light */

.sfa24-edition-visual::after {
    content: "";

    position: absolute;
    top: -35%;
    left: -70%;
    z-index: -1;

    width: 42%;
    height: 170%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 235, 184, 0.07),
            transparent
        );

    transform: rotate(18deg);

    animation:
        sfa24VisualShine 7s ease-in-out infinite;
}


/* Visual eyebrow */

.sfa24-edition-visual__eyebrow {
    margin-bottom: 17px;

    color: rgba(247, 220, 152, 0.76);

    font-family: "Manrope", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}


/* Large 09 */

.sfa24-edition-visual__number {
    color: var(--sfa24-gold);

    background:
        linear-gradient(
            125deg,
            #fff0bd 0%,
            #e2b45b 38%,
            #a56818 69%,
            #f1ca79 100%
        );

    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    font-family: "Cinzel", Georgia, serif;
    font-size: clamp(135px, 15vw, 190px);
    font-weight: 700;
    line-height: 0.87;
    letter-spacing: -14px;

    filter:
        drop-shadow(0 12px 23px rgba(0, 0, 0, 0.43));
}


/* Superscript */

.sfa24-edition-visual__suffix {
    position: absolute;
    top: 144px;
    right: 69px;

    color: var(--sfa24-gold-light);

    font-family: "Cinzel", Georgia, serif;
    font-size: 22px;
    font-weight: 700;
}


/* Divider */

.sfa24-edition-visual__divider {
    width: 82px;
    height: 1px;

    margin: 27px 0 20px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--sfa24-gold),
            transparent
        );
}


/* Visual title */

.sfa24-edition-visual h3 {
    margin: 0 0 10px;

    color: #ffffff;

    font-family: "Cinzel", Georgia, serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.35;
}

.sfa24-edition-visual > p {
    margin: 0 0 23px;

    color: rgba(255, 255, 255, 0.59);

    font-family: "Manrope", sans-serif;
    font-size: 12px;
    line-height: 1.6;
}


/* Venue information */

.sfa24-edition-visual__venue {
    width: 100%;

    display: flex;
    flex-direction: column;
    gap: 8px;

    padding-top: 19px;

    border-top: 1px solid rgba(226, 182, 95, 0.15);
}

.sfa24-edition-visual__venue span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    color: rgba(255, 255, 255, 0.62);

    font-family: "Manrope", sans-serif;
    font-size: 10px;
    font-weight: 600;
}

.sfa24-edition-visual__venue i {
    color: var(--sfa24-gold);
    font-size: 10px;
}


/* Decorative corners */

.sfa24-edition-visual__corner {
    position: absolute;

    width: 25px;
    height: 25px;

    pointer-events: none;
}

.sfa24-edition-visual__corner--one {
    top: 23px;
    left: 23px;

    border-top: 1px solid var(--sfa24-gold);
    border-left: 1px solid var(--sfa24-gold);
}

.sfa24-edition-visual__corner--two {
    top: 23px;
    right: 23px;

    border-top: 1px solid var(--sfa24-gold);
    border-right: 1px solid var(--sfa24-gold);
}

.sfa24-edition-visual__corner--three {
    bottom: 23px;
    left: 23px;

    border-bottom: 1px solid var(--sfa24-gold);
    border-left: 1px solid var(--sfa24-gold);
}

.sfa24-edition-visual__corner--four {
    right: 23px;
    bottom: 23px;

    border-right: 1px solid var(--sfa24-gold);
    border-bottom: 1px solid var(--sfa24-gold);
}


/* ==================================================
   STATISTICS
================================================== */

.sfa24-overview__stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    margin-top: 78px;

    overflow: hidden;

    border: 1px solid rgba(226, 182, 95, 0.2);
    border-radius: 7px;

    background: rgba(8, 5, 4, 0.56);

    box-shadow:
        0 25px 55px rgba(0, 0, 0, 0.29);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.sfa24-overview__stat {
    position: relative;

    padding: 28px 20px;

    text-align: center;
}

.sfa24-overview__stat:not(:last-child)::after {
    content: "";

    position: absolute;
    top: 22%;
    right: 0;
    bottom: 22%;

    width: 1px;

    background:
        linear-gradient(
            transparent,
            rgba(226, 182, 95, 0.35),
            transparent
        );
}

.sfa24-overview__stat strong {
    display: block;
    margin-bottom: 8px;

    color: var(--sfa24-gold);

    font-family: "Cinzel", Georgia, serif;
    font-size: 35px;
    font-weight: 700;
    line-height: 1;
}

.sfa24-overview__stat strong sup {
    margin-left: 2px;
    font-size: 13px;
}

.sfa24-overview__stat span {
    color: rgba(255, 255, 255, 0.56);

    font-family: "Manrope", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}


/* ==================================================
   ANIMATION
================================================== */

@keyframes sfa24VisualShine {

    0%,
    35% {
        left: -70%;
    }

    70%,
    100% {
        left: 135%;
    }

}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 991px) {

    .sfa24-overview {
        padding: 90px 0 82px;
    }

    .sfa24-overview__container {
        width: min(100% - 40px, 900px);
    }

    .sfa24-overview__grid {
        grid-template-columns: minmax(0, 1.15fr) minmax(290px, 0.85fr);
        gap: 44px;
    }

    .sfa24-overview__features {
        grid-template-columns: 1fr;
    }

    .sfa24-edition-visual {
        min-height: 510px;
        padding: 42px 28px;
    }

    .sfa24-edition-visual__suffix {
        top: 137px;
        right: 53px;
    }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 767px) {

    .sfa24-overview {
        padding: 75px 0 70px;
    }

    .sfa24-overview__container {
        width: calc(100% - 32px);
    }

    .sfa24-overview__grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .sfa24-overview__visual {
        order: -1;
    }

    .sfa24-edition-visual {
        width: min(100%, 390px);
        min-height: 480px;
    }

    .sfa24-edition-visual__number {
        font-size: 155px;
    }

    .sfa24-edition-visual__suffix {
        top: 132px;
        right: calc(50% - 113px);
    }

    .sfa24-overview__title {
        font-size: 37px;
    }

    .sfa24-overview__lead {
        font-size: 15px;
    }

    .sfa24-overview__features {
        grid-template-columns: 1fr;
    }

    .sfa24-overview__button {
        width: 100%;
    }

    .sfa24-overview__stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 55px;
    }

    .sfa24-overview__stat {
        padding: 24px 12px;
    }

    .sfa24-overview__stat:nth-child(2)::after {
        display: none;
    }

    .sfa24-overview__stat:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(226, 182, 95, 0.14);
    }

}


/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 430px) {

    .sfa24-overview__container {
        width: calc(100% - 26px);
    }

    .sfa24-edition-visual {
        min-height: 455px;
        padding: 37px 22px;
    }

    .sfa24-edition-visual__number {
        font-size: 138px;
    }

    .sfa24-edition-visual__suffix {
        top: 125px;
        right: calc(50% - 101px);
        font-size: 19px;
    }

    .sfa24-overview__title {
        font-size: 32px;
    }

    .sfa24-overview__stat strong {
        font-size: 30px;
    }

}


/* ==================================================
   REDUCED MOTION
================================================== */

@media (prefers-reduced-motion: reduce) {

    .sfa24-edition-visual::after {
        animation: none;
    }

}
/* ==================================================
   SABRANG 2024 — MAIN AWARD WINNERS
================================================== */

.sfa24-winners,
.sfa24-winners * {
    box-sizing: border-box;
}

.sfa24-winners {
    position: relative;
    isolation: isolate;

    padding: 105px 0;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 10% 12%,
            rgba(128, 18, 32, 0.17),
            transparent 28%
        ),
        radial-gradient(
            circle at 91% 88%,
            rgba(215, 158, 54, 0.08),
            transparent 29%
        ),
        linear-gradient(
            150deg,
            #050403 0%,
            #110906 50%,
            #070504 100%
        );

    color: #ffffff;
}


/* Background dots */

.sfa24-winners::before {
    content: "";

    position: absolute;
    inset: 0;
    z-index: -2;

    opacity: 0.035;

    background-image:
        radial-gradient(
            circle,
            rgba(226, 182, 95, 0.8) 1px,
            transparent 1.5px
        );

    background-size: 36px 36px;

    pointer-events: none;
}


/* Top separator */

.sfa24-winners::after {
    content: "";

    position: absolute;
    top: 0;
    right: 0;
    left: 0;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(226, 182, 95, 0.62),
            transparent
        );
}


/* Container */

.sfa24-winners__container {
    position: relative;
    z-index: 2;

    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}


/* ==================================================
   SECTION HEADER
================================================== */

.sfa24-winners__header {
    max-width: 820px;
    margin: 0 auto 50px;

    text-align: center;
}

.sfa24-section-label--center {
    justify-content: center;
}

.sfa24-section-label--center span {
    width: 36px;
}

.sfa24-section-label--center span:last-child {
    background:
        linear-gradient(
            90deg,
            var(--sfa24-gold),
            transparent
        );
}

.sfa24-winners__title {
    margin: 0 0 21px;

    color: #ffffff;

    font-family: "Cinzel", Georgia, serif;
    font-size: clamp(38px, 4.8vw, 61px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -1.2px;
}

.sfa24-winners__title span {
    display: block;

    color: var(--sfa24-gold);

    background:
        linear-gradient(
            110deg,
            #f6dc98,
            #daa348 52%,
            #efc877
        );

    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sfa24-winners__intro {
    max-width: 720px;
    margin: 0 auto;

    color: rgba(255, 255, 255, 0.62);

    font-family: "Manrope", sans-serif;
    font-size: 15px;
    line-height: 1.8;
}


/* ==================================================
   SEARCH AND FILTER TOOLBAR
================================================== */

.sfa24-winners__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    margin-bottom: 18px;
    padding: 17px;

    border: 1px solid rgba(226, 182, 95, 0.19);
    border-radius: 8px;

    background: rgba(13, 7, 6, 0.72);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}


/* Search */

.sfa24-winners__search {
    position: relative;

    flex: 0 1 330px;

    display: flex;
    align-items: center;
}

.sfa24-winners__search i {
    position: absolute;
    left: 16px;
    z-index: 2;

    color: var(--sfa24-gold);
    font-size: 13px;

    pointer-events: none;
}

.sfa24-winners__search input {
    width: 100%;
    min-height: 46px;

    padding: 11px 15px 11px 43px;

    border: 1px solid rgba(226, 182, 95, 0.21);
    border-radius: 5px;
    outline: none;

    background: rgba(255, 255, 255, 0.035);
    color: #ffffff;

    font-family: "Manrope", sans-serif;
    font-size: 12px;

    transition:
        border-color 0.3s ease,
        background-color 0.3s ease,
        box-shadow 0.3s ease;
}

.sfa24-winners__search input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.sfa24-winners__search input:focus {
    border-color: rgba(226, 182, 95, 0.72);
    background: rgba(255, 255, 255, 0.055);

    box-shadow:
        0 0 0 3px rgba(226, 182, 95, 0.07);
}


/* Filter buttons */

.sfa24-winners__filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 7px;
}

.sfa24-filter {
    min-height: 39px;

    padding: 9px 12px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 4px;

    background: rgba(255, 255, 255, 0.025);
    color: rgba(255, 255, 255, 0.65);

    font-family: "Manrope", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.3px;

    cursor: pointer;

    transition:
        color 0.3s ease,
        border-color 0.3s ease,
        background-color 0.3s ease,
        transform 0.3s ease;
}

.sfa24-filter:hover {
    border-color: rgba(226, 182, 95, 0.55);
    color: var(--sfa24-gold);

    transform: translateY(-2px);
}

.sfa24-filter.is-active {
    border-color: var(--sfa24-gold);

    background:
        linear-gradient(
            135deg,
            #edc974,
            #c78c33
        );

    color: #100906;
}


/* Results counter */

.sfa24-winners__result {
    margin: 0 0 26px;

    color: rgba(255, 255, 255, 0.48);

    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 600;
}

.sfa24-winners__result strong {
    margin: 0 3px;

    color: var(--sfa24-gold);
    font-size: 13px;
}


/* ==================================================
   WINNERS GRID
================================================== */

.sfa24-winners__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}


/* ==================================================
   WINNER CARD
================================================== */

.sfa24-winner-card {
    position: relative;
    isolation: isolate;

    min-height: 250px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    padding: 28px 25px 25px;

    overflow: hidden;

    border: 1px solid rgba(226, 182, 95, 0.17);
    border-radius: 7px;

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(226, 182, 95, 0.08),
            transparent 33%
        ),
        linear-gradient(
            145deg,
            rgba(91, 20, 29, 0.1),
            rgba(255, 255, 255, 0.012)
        );

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.035);

    transition:
        transform 0.45s ease,
        border-color 0.45s ease,
        box-shadow 0.45s ease,
        background-color 0.45s ease;
}


/* Gold top line */

.sfa24-winner-card::before {
    content: "";

    position: absolute;
    top: 0;
    left: 25px;

    width: 57px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            var(--sfa24-gold),
            transparent
        );

    transition: width 0.45s ease;
}


/* Glow */

.sfa24-winner-card::after {
    content: "";

    position: absolute;
    top: -85px;
    right: -85px;
    z-index: -1;

    width: 170px;
    height: 170px;

    border-radius: 50%;

    background: rgba(213, 155, 54, 0.08);
    filter: blur(35px);

    transition:
        transform 0.45s ease,
        background-color 0.45s ease;
}

.sfa24-winner-card:hover {
    border-color: rgba(226, 182, 95, 0.5);

    background-color: rgba(226, 182, 95, 0.025);

    box-shadow:
        0 28px 56px rgba(0, 0, 0, 0.4),
        0 0 28px rgba(200, 136, 37, 0.07);

    transform: translateY(-8px);
}

.sfa24-winner-card:hover::before {
    width: calc(100% - 50px);
}

.sfa24-winner-card:hover::after {
    background: rgba(213, 155, 54, 0.14);
    transform: scale(1.18);
}


/* Number */

.sfa24-winner-card__number {
    position: absolute;
    top: 19px;
    right: 20px;

    color: rgba(226, 182, 95, 0.2);

    font-family: "Cinzel", Georgia, serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
}


/* Icon */

.sfa24-winner-card__icon {
    width: 45px;
    height: 45px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 23px;

    border: 1px solid rgba(226, 182, 95, 0.31);
    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            rgba(226, 182, 95, 0.14),
            rgba(123, 21, 32, 0.09)
        );

    color: var(--sfa24-gold);
    font-size: 15px;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.07);

    transition:
        color 0.4s ease,
        transform 0.4s ease,
        background-color 0.4s ease;
}

.sfa24-winner-card:hover
.sfa24-winner-card__icon {
    color: var(--sfa24-gold-light);
    background-color: rgba(226, 182, 95, 0.1);

    transform: rotate(-5deg) scale(1.08);
}


/* Award category */

.sfa24-winner-card__category {
    display: block;
    min-height: 31px;

    margin-bottom: 10px;

    color: var(--sfa24-gold);

    font-family: "Manrope", sans-serif;
    font-size: 9px;
    font-weight: 800;
    line-height: 1.5;
    letter-spacing: 1px;
    text-transform: uppercase;
}


/* Winner name */

.sfa24-winner-card h3 {
    margin: 0 0 9px;

    color: #ffffff;

    font-family: "Cinzel", Georgia, serif;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.35;

    transition: color 0.35s ease;
}

.sfa24-winner-card:hover h3 {
    color: #f7dda0;
}


/* Film/description */

.sfa24-winner-card p {
    margin: auto 0 0;

    color: rgba(255, 255, 255, 0.52);

    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.6;
}


/* ==================================================
   FEATURED CARDS
================================================== */

.sfa24-winner-card--featured {
    border-color: rgba(226, 182, 95, 0.36);

    background:
        radial-gradient(
            circle at 85% 10%,
            rgba(226, 182, 95, 0.16),
            transparent 38%
        ),
        linear-gradient(
            145deg,
            rgba(100, 43, 15, 0.23),
            rgba(30, 10, 11, 0.78)
        );
}

.sfa24-winner-card--featured
.sfa24-winner-card__icon {
    border-color: rgba(247, 220, 152, 0.48);

    background:
        linear-gradient(
            145deg,
            rgba(238, 195, 111, 0.23),
            rgba(174, 108, 25, 0.08)
        );
}


/* Filtered cards */

.sfa24-winner-card.is-hidden {
    display: none;
}


/* ==================================================
   EMPTY RESULT
================================================== */

.sfa24-winners__empty {
    max-width: 520px;
    margin: 45px auto 0;
    padding: 44px 25px;

    border: 1px solid rgba(226, 182, 95, 0.2);
    border-radius: 7px;

    background: rgba(255, 255, 255, 0.025);

    text-align: center;
}

.sfa24-winners__empty[hidden] {
    display: none;
}

.sfa24-winners__empty i {
    margin-bottom: 17px;

    color: var(--sfa24-gold);
    font-size: 28px;
}

.sfa24-winners__empty h3 {
    margin: 0 0 8px;

    color: #ffffff;

    font-family: "Cinzel", Georgia, serif;
    font-size: 21px;
}

.sfa24-winners__empty p {
    margin: 0;

    color: rgba(255, 255, 255, 0.52);

    font-family: "Manrope", sans-serif;
    font-size: 12px;
    line-height: 1.7;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 991px) {

    .sfa24-winners {
        padding: 88px 0;
    }

    .sfa24-winners__container {
        width: min(100% - 40px, 900px);
    }

    .sfa24-winners__toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .sfa24-winners__search {
        flex-basis: auto;
        width: 100%;
    }

    .sfa24-winners__filters {
        justify-content: flex-start;
    }

    .sfa24-winners__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 767px) {

    .sfa24-winners {
        padding: 74px 0;
    }

    .sfa24-winners__container {
        width: calc(100% - 32px);
    }

    .sfa24-winners__header {
        margin-bottom: 38px;
    }

    .sfa24-winners__title {
        font-size: 36px;
    }

    .sfa24-winners__intro {
        font-size: 14px;
    }

    .sfa24-winners__toolbar {
        padding: 13px;
    }

    .sfa24-winners__filters {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sfa24-filter {
        width: 100%;
    }

    .sfa24-filter:first-child {
        grid-column: 1 / -1;
    }

    .sfa24-winners__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .sfa24-winner-card {
        min-height: 225px;
        padding: 25px 22px 22px;
    }

}


/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 430px) {

    .sfa24-winners__container {
        width: calc(100% - 26px);
    }

    .sfa24-winners__title {
        font-size: 31px;
    }

    .sfa24-winners__filters {
        grid-template-columns: 1fr;
    }

    .sfa24-filter:first-child {
        grid-column: auto;
    }

}

/* ==================================================
   SABRANG 2024 — 42 SPECIAL AWARDS
================================================== */

.sfa24-special,
.sfa24-special * {
    box-sizing: border-box;
}

.sfa24-special {
    position: relative;
    isolation: isolate;

    padding: 105px 0;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 87% 14%,
            rgba(133, 20, 35, 0.2),
            transparent 30%
        ),
        radial-gradient(
            circle at 9% 88%,
            rgba(214, 157, 53, 0.09),
            transparent 28%
        ),
        linear-gradient(
            145deg,
            #0a0605 0%,
            #1a0b0e 49%,
            #090604 100%
        );

    color: #ffffff;
}


/* Luxury grid pattern */

.sfa24-special::before {
    content: "";

    position: absolute;
    inset: 0;
    z-index: -2;

    opacity: 0.04;

    background-image:
        linear-gradient(
            rgba(226, 182, 95, 0.27) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(226, 182, 95, 0.27) 1px,
            transparent 1px
        );

    background-size: 78px 78px;

    pointer-events: none;
}


/* Top divider */

.sfa24-special::after {
    content: "";

    position: absolute;
    top: 0;
    right: 0;
    left: 0;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(226, 182, 95, 0.72),
            transparent
        );
}


/* Decorative glow */

.sfa24-special__glow {
    position: absolute;
    top: 17%;
    right: -190px;
    z-index: -1;

    width: 470px;
    height: 470px;

    border-radius: 50%;

    background: rgba(128, 18, 32, 0.21);
    filter: blur(120px);

    pointer-events: none;
}


/* ==================================================
   CONTAINER
================================================== */

.sfa24-special__container {
    position: relative;
    z-index: 2;

    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}


/* ==================================================
   SECTION HEADER
================================================== */

.sfa24-special__header {
    max-width: 820px;
    margin: 0 auto 53px;

    text-align: center;
}

.sfa24-special__title {
    margin: 0 0 21px;

    color: #ffffff;

    font-family: "Cinzel", Georgia, serif;
    font-size: clamp(38px, 4.8vw, 61px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -1.2px;
}

.sfa24-special__title span {
    display: block;

    color: var(--sfa24-gold);

    background:
        linear-gradient(
            110deg,
            #f7dc98,
            #dba449 52%,
            #efc978
        );

    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sfa24-special__intro {
    max-width: 720px;
    margin: 0 auto 25px;

    color: rgba(255, 255, 255, 0.62);

    font-family: "Manrope", sans-serif;
    font-size: 15px;
    line-height: 1.8;
}


/* Special awards counter */

.sfa24-special__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-height: 42px;
    padding: 9px 17px;

    border: 1px solid rgba(226, 182, 95, 0.31);
    border-radius: 50px;

    background: rgba(13, 7, 6, 0.58);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.sfa24-special__count i {
    color: var(--sfa24-gold);
    font-size: 13px;
}

.sfa24-special__count strong {
    color: var(--sfa24-gold-light);

    font-family: "Cinzel", Georgia, serif;
    font-size: 18px;
    line-height: 1;
}

.sfa24-special__count span {
    color: rgba(255, 255, 255, 0.66);

    font-family: "Manrope", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}


/* ==================================================
   SPECIAL AWARDS GRID
================================================== */

.sfa24-special__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 17px;
}


/* ==================================================
   SPECIAL CARD
   Base styles come from .sfa24-winner-card
================================================== */

.sfa24-special-card {
    min-height: 235px;

    border-color: rgba(226, 182, 95, 0.19);

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(226, 182, 95, 0.09),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            rgba(91, 20, 30, 0.15),
            rgba(255, 255, 255, 0.013)
        );
}


/* Alternate burgundy cards */

.sfa24-special-card:nth-child(3n + 2) {
    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(226, 182, 95, 0.08),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            rgba(119, 21, 35, 0.18),
            rgba(15, 8, 6, 0.66)
        );
}


/* Gold and burgundy top line */

.sfa24-special-card::before {
    width: 52px;

    background:
        linear-gradient(
            90deg,
            #e5b85f,
            rgba(148, 28, 40, 0.62),
            transparent
        );
}


/* Hover */

.sfa24-special-card:hover {
    border-color: rgba(238, 199, 119, 0.58);

    background-color: rgba(226, 182, 95, 0.03);

    box-shadow:
        0 29px 58px rgba(0, 0, 0, 0.41),
        0 0 32px rgba(193, 123, 31, 0.08);

    transform: translateY(-7px);
}


/* Icon */

.sfa24-special-card
.sfa24-winner-card__icon {
    margin-bottom: 21px;

    border-color: rgba(226, 182, 95, 0.33);

    background:
        linear-gradient(
            145deg,
            rgba(226, 182, 95, 0.15),
            rgba(126, 21, 33, 0.12)
        );
}


/* Category */

.sfa24-special-card
.sfa24-winner-card__category {
    min-height: 29px;

    color: #e9bd68;
}


/* Winner name */

.sfa24-special-card h3 {
    font-size: 18px;
}


/* Description */

.sfa24-special-card p {
    color: rgba(255, 255, 255, 0.51);
}


/* Card number */

.sfa24-special-card
.sfa24-winner-card__number {
    color: rgba(226, 182, 95, 0.18);
}


/* ==================================================
   FEATURED SPECIAL AWARDS
================================================== */

.sfa24-special-card:nth-child(1),
.sfa24-special-card:nth-child(3),
.sfa24-special-card:nth-child(5),
.sfa24-special-card:nth-child(6),
.sfa24-special-card:nth-child(7),
.sfa24-special-card:nth-child(9),
.sfa24-special-card:nth-child(10),
.sfa24-special-card:nth-child(11),
.sfa24-special-card:nth-child(12),
.sfa24-special-card:nth-child(42) {
    border-color: rgba(226, 182, 95, 0.35);

    background:
        radial-gradient(
            circle at 85% 12%,
            rgba(226, 182, 95, 0.16),
            transparent 38%
        ),
        linear-gradient(
            145deg,
            rgba(95, 50, 16, 0.22),
            rgba(26, 9, 10, 0.82)
        );
}

.sfa24-special-card:nth-child(1)
.sfa24-winner-card__icon,

.sfa24-special-card:nth-child(3)
.sfa24-winner-card__icon,

.sfa24-special-card:nth-child(5)
.sfa24-winner-card__icon,

.sfa24-special-card:nth-child(6)
.sfa24-winner-card__icon,

.sfa24-special-card:nth-child(7)
.sfa24-winner-card__icon,

.sfa24-special-card:nth-child(9)
.sfa24-winner-card__icon,

.sfa24-special-card:nth-child(10)
.sfa24-winner-card__icon,

.sfa24-special-card:nth-child(11)
.sfa24-winner-card__icon,

.sfa24-special-card:nth-child(12)
.sfa24-winner-card__icon,

.sfa24-special-card:nth-child(42)
.sfa24-winner-card__icon {
    border-color: rgba(247, 220, 152, 0.5);

    background:
        linear-gradient(
            145deg,
            rgba(238, 195, 111, 0.23),
            rgba(174, 108, 25, 0.08)
        );
}


/* ==================================================
   FILTERED/HIDDEN STATE
================================================== */

.sfa24-special-card.is-hidden {
    display: none;
}

.sfa24-special[hidden] {
    display: none !important;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 991px) {

    .sfa24-special {
        padding: 88px 0;
    }

    .sfa24-special__container {
        width: min(100% - 40px, 900px);
    }

    .sfa24-special__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 767px) {

    .sfa24-special {
        padding: 74px 0;
    }

    .sfa24-special__container {
        width: calc(100% - 32px);
    }

    .sfa24-special__header {
        margin-bottom: 40px;
    }

    .sfa24-special__title {
        font-size: 36px;
    }

    .sfa24-special__intro {
        font-size: 14px;
    }

    .sfa24-special__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .sfa24-special-card {
        min-height: 220px;
        padding: 25px 22px 22px;
    }

}


/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 430px) {

    .sfa24-special__container {
        width: calc(100% - 26px);
    }

    .sfa24-special__title {
        font-size: 31px;
    }

    .sfa24-special__count {
        width: 100%;
    }

}

/* ==================================================
   SABRANG 2024 — OTHER AWARD EDITIONS
================================================== */

.sfa24-editions,
.sfa24-editions * {
    box-sizing: border-box;
}

.sfa24-editions {
    position: relative;
    isolation: isolate;

    padding: 102px 0 88px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 8% 20%,
            rgba(214, 158, 55, 0.08),
            transparent 28%
        ),
        radial-gradient(
            circle at 92% 84%,
            rgba(121, 18, 31, 0.16),
            transparent 30%
        ),
        linear-gradient(
            150deg,
            #070504 0%,
            #120a07 50%,
            #080504 100%
        );

    color: #ffffff;
}


/* Decorative rings */

.sfa24-editions::before {
    content: "";

    position: absolute;
    top: -230px;
    left: 50%;
    z-index: -2;

    width: 550px;
    height: 550px;

    border: 1px solid rgba(226, 182, 95, 0.07);
    border-radius: 50%;

    box-shadow:
        0 0 0 70px rgba(226, 182, 95, 0.018),
        0 0 0 140px rgba(226, 182, 95, 0.011);

    transform: translateX(-50%);

    pointer-events: none;
}


/* Top separator */

.sfa24-editions::after {
    content: "";

    position: absolute;
    top: 0;
    right: 0;
    left: 0;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(226, 182, 95, 0.63),
            transparent
        );
}


/* ==================================================
   CONTAINER
================================================== */

.sfa24-editions__container {
    position: relative;
    z-index: 2;

    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}


/* ==================================================
   SECTION HEADER
================================================== */

.sfa24-editions__header {
    max-width: 820px;
    margin: 0 auto 51px;

    text-align: center;
}

.sfa24-editions__title {
    margin: 0 0 20px;

    color: #ffffff;

    font-family: "Cinzel", Georgia, serif;
    font-size: clamp(37px, 4.7vw, 59px);
    font-weight: 700;
    line-height: 1.13;
    letter-spacing: -1.1px;
}

.sfa24-editions__title span {
    display: block;

    color: var(--sfa24-gold);

    background:
        linear-gradient(
            110deg,
            #f6db96,
            #daa348 53%,
            #efc978
        );

    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sfa24-editions__intro {
    max-width: 700px;
    margin: 0 auto;

    color: rgba(255, 255, 255, 0.61);

    font-family: "Manrope", sans-serif;
    font-size: 14px;
    line-height: 1.8;
}


/* ==================================================
   EDITIONS GRID
================================================== */

.sfa24-editions__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 19px;
}


/* ==================================================
   EDITION CARD
================================================== */

.sfa24-edition-card {
    position: relative;
    isolation: isolate;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    border: 1px solid rgba(226, 182, 95, 0.2);
    border-radius: 8px;

    background:
        linear-gradient(
            150deg,
            rgba(255, 255, 255, 0.035),
            rgba(255, 255, 255, 0.012)
        );

    box-shadow:
        0 25px 55px rgba(0, 0, 0, 0.31),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);

    transition:
        transform 0.45s ease,
        border-color 0.45s ease,
        box-shadow 0.45s ease;
}

.sfa24-edition-card:hover {
    border-color: rgba(226, 182, 95, 0.53);

    box-shadow:
        0 35px 70px rgba(0, 0, 0, 0.44),
        0 0 30px rgba(203, 139, 38, 0.07);

    transform: translateY(-9px);
}


/* Animated top line */

.sfa24-edition-card::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;
    z-index: 4;

    width: 0;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            #f5d78e,
            #b97620
        );

    transition: width 0.55s ease;
}

.sfa24-edition-card:hover::before {
    width: 100%;
}


/* ==================================================
   VISUAL AREA
================================================== */

.sfa24-edition-card__visual {
    position: relative;
    isolation: isolate;

    min-height: 215px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    border-bottom: 1px solid rgba(226, 182, 95, 0.14);
}


/* Circular pattern */

.sfa24-edition-card__visual::before {
    content: "";

    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;

    width: 170px;
    height: 170px;

    border: 1px solid rgba(226, 182, 95, 0.12);
    border-radius: 50%;

    box-shadow:
        0 0 0 28px rgba(226, 182, 95, 0.025),
        0 0 0 55px rgba(226, 182, 95, 0.015);

    transform: translate(-50%, -50%);

    transition:
        transform 0.5s ease,
        border-color 0.5s ease;
}

.sfa24-edition-card:hover
.sfa24-edition-card__visual::before {
    border-color: rgba(226, 182, 95, 0.28);

    transform:
        translate(-50%, -50%)
        scale(1.08);
}


/* 2025 edition */

.sfa24-edition-card--next
.sfa24-edition-card__visual {
    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(220, 164, 65, 0.16),
            transparent 44%
        ),
        linear-gradient(
            145deg,
            #29140d,
            #0c0705
        );
}


/* 2019 edition */

.sfa24-edition-card--previous
.sfa24-edition-card__visual {
    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(126, 21, 33, 0.2),
            transparent 45%
        ),
        linear-gradient(
            145deg,
            #250d11,
            #0b0705
        );
}


/* Archive */

.sfa24-edition-card--archive
.sfa24-edition-card__visual {
    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(211, 159, 64, 0.14),
            transparent 44%
        ),
        linear-gradient(
            145deg,
            #17120d,
            #090605
        );
}


/* Faded year */

.sfa24-edition-card__year {
    position: absolute;
    top: 19px;
    left: 21px;

    color: rgba(226, 182, 95, 0.22);

    font-family: "Cinzel", Georgia, serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}


/* Main icon */

.sfa24-edition-card__icon {
    width: 84px;
    height: 84px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(226, 182, 95, 0.43);
    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(226, 182, 95, 0.18),
            rgba(226, 182, 95, 0.035)
        );

    color: var(--sfa24-gold);
    font-size: 29px;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.29),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);

    transition:
        color 0.45s ease,
        transform 0.45s ease,
        box-shadow 0.45s ease;
}

.sfa24-edition-card:hover
.sfa24-edition-card__icon {
    color: var(--sfa24-gold-light);

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.35),
        0 0 30px rgba(226, 182, 95, 0.12);

    transform: scale(1.08) rotate(-4deg);
}


/* Edition badge */

.sfa24-edition-card__edition {
    position: absolute;
    right: 18px;
    bottom: 16px;

    display: flex;
    flex-direction: column;
    align-items: flex-end;

    padding: 8px 11px;

    border-right: 2px solid var(--sfa24-gold);

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(10, 6, 5, 0.52)
        );
}

.sfa24-edition-card__edition strong {
    color: var(--sfa24-gold-light);

    font-family: "Cinzel", Georgia, serif;
    font-size: 19px;
    line-height: 1;
}

.sfa24-edition-card__edition span {
    margin-top: 4px;

    color: rgba(255, 255, 255, 0.5);

    font-family: "Manrope", sans-serif;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}


/* ==================================================
   CARD CONTENT
================================================== */

.sfa24-edition-card__content {
    flex: 1;

    display: flex;
    flex-direction: column;

    padding: 27px 24px 25px;
}

.sfa24-edition-card__brand {
    display: block;
    margin-bottom: 10px;

    color: var(--sfa24-gold);

    font-family: "Manrope", sans-serif;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.sfa24-edition-card__content h3 {
    margin: 0 0 17px;

    color: #ffffff;

    font-family: "Cinzel", Georgia, serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;

    transition: color 0.35s ease;
}

.sfa24-edition-card:hover
.sfa24-edition-card__content h3 {
    color: #f4d58e;
}


/* Meta */

.sfa24-edition-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 13px;

    margin-bottom: 17px;
}

.sfa24-edition-card__meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    color: rgba(255, 255, 255, 0.52);

    font-family: "Manrope", sans-serif;
    font-size: 9px;
    font-weight: 600;
}

.sfa24-edition-card__meta i {
    color: var(--sfa24-gold);
    font-size: 9px;
}


/* Description */

.sfa24-edition-card__content p {
    margin: 0 0 23px;

    color: rgba(255, 255, 255, 0.53);

    font-family: "Manrope", sans-serif;
    font-size: 11px;
    line-height: 1.75;
}


/* Link */

.sfa24-edition-card__link {
    align-self: flex-start;

    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-top: auto;
    padding-bottom: 5px;

    border-bottom: 1px solid rgba(226, 182, 95, 0.39);

    color: var(--sfa24-gold);

    font-family: "Manrope", sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.4px;
    text-decoration: none;

    transition:
        color 0.3s ease,
        border-color 0.3s ease,
        gap 0.3s ease;
}

.sfa24-edition-card__link:hover {
    border-color: var(--sfa24-gold-light);
    color: var(--sfa24-gold-light);
    gap: 13px;
}


/* ==================================================
   BACK NAVIGATION
================================================== */

.sfa24-editions__back {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 17px;

    margin-top: 49px;
}

.sfa24-editions__back a {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: var(--sfa24-gold);

    font-family: "Manrope", sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.45px;
    text-decoration: none;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.sfa24-editions__back a:hover {
    color: var(--sfa24-gold-light);
    transform: translateX(-3px);
}

.sfa24-editions__back > span {
    width: 1px;
    height: 17px;

    background: rgba(226, 182, 95, 0.28);
}

.sfa24-editions__back p {
    margin: 0;

    color: rgba(255, 255, 255, 0.43);

    font-family: "Manrope", sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.5px;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 991px) {

    .sfa24-editions {
        padding: 88px 0 78px;
    }

    .sfa24-editions__container {
        width: min(100% - 40px, 900px);
    }

    .sfa24-editions__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sfa24-edition-card--archive {
        grid-column: 1 / -1;

        width: min(100%, 440px);
        justify-self: center;
    }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 767px) {

    .sfa24-editions {
        padding: 74px 0 64px;
    }

    .sfa24-editions__container {
        width: calc(100% - 32px);
    }

    .sfa24-editions__header {
        margin-bottom: 39px;
    }

    .sfa24-editions__title {
        font-size: 35px;
    }

    .sfa24-editions__grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .sfa24-edition-card--archive {
        grid-column: auto;
        width: 100%;
    }

    .sfa24-edition-card__visual {
        min-height: 200px;
    }

    .sfa24-editions__back {
        flex-direction: column;
        gap: 11px;

        margin-top: 39px;
    }

    .sfa24-editions__back > span {
        width: 45px;
        height: 1px;
    }

}


/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 430px) {

    .sfa24-editions__container {
        width: calc(100% - 26px);
    }

    .sfa24-editions__title {
        font-size: 30px;
    }

    .sfa24-edition-card__content {
        padding: 24px 21px;
    }

    .sfa24-edition-card__content h3 {
        font-size: 18px;
    }

}
/* =====================================================
   SABRANG FILM AWARDS — MAIN HOME HERO
   Luxury Black • Burgundy • Gold Theme
===================================================== */

:root {
    --sfa-black: #080706;
    --sfa-black-soft: #110d0b;
    --sfa-burgundy: #570b14;
    --sfa-burgundy-light: #8a1625;
    --sfa-gold: #d6aa50;
    --sfa-gold-light: #f3d58a;
    --sfa-cream: #fff5df;
    --sfa-white: #ffffff;
    --sfa-text: #ded6ca;
}


/* ================= HERO WRAPPER ================= */

.sfa-home-hero {
    position: relative;
    min-height: 820px;
    height: 100svh;
    max-height: 980px;
    overflow: hidden;
    isolation: isolate;
    display: flex;
    align-items: center;
    background: var(--sfa-black);
}


/* ================= BACKGROUND IMAGE ================= */

.sfa-home-hero__bg {
    position: absolute;
    inset: 0;
    z-index: -3;

    background-image:
        url("../images/sabrang/sabrang-home-hero.jpg");

    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;

    transform: scale(1.03);
    animation: sfaHeroMotion 8s ease-in-out infinite alternate;
}


/* Background ko bahut dark nahi karega */

.sfa-home-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: -2;

    background:
        linear-gradient(
            90deg,
            rgba(5, 4, 3, 0.88) 0%,
            rgba(5, 4, 3, 0.74) 30%,
            rgba(5, 4, 3, 0.24) 60%,
            rgba(5, 4, 3, 0.05) 100%
        ),
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.22) 0%,
            rgba(0, 0, 0, 0.02) 55%,
            rgba(0, 0, 0, 0.65) 100%
        );
}


/* Gold glow behind content */

.sfa-home-hero::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 580px;
    height: 580px;
    left: -260px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    pointer-events: none;

    background: rgba(198, 145, 55, 0.13);
    filter: blur(130px);
}


/* Bottom luxury line */

.sfa-home-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(214, 170, 80, 0.9),
        transparent
    );
}


/* ================= CONTAINER ================= */

.sfa-home-hero__container {
    width: min(100% - 40px, 1240px);
    margin-inline: auto;
    padding-top: 105px;
}


/* ================= CONTENT ================= */

.sfa-home-hero__content {
    width: min(650px, 100%);
    color: var(--sfa-white);
    animation: sfaContentEntry 1s ease both;
}


/* ================= EYEBROW ================= */

.sfa-home-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--sfa-gold-light);
}

.sfa-home-hero__eyebrow::before {
    content: "";
    width: 45px;
    height: 1px;

    background: linear-gradient(
        90deg,
        var(--sfa-gold),
        var(--sfa-gold-light)
    );
}


/* ================= MAIN HEADING ================= */

.sfa-home-hero h1 {
    margin: 0;
    max-width: 650px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(58px, 7vw, 96px);
    line-height: 0.92;
    font-weight: 500;
    letter-spacing: -2.5px;
    color: var(--sfa-white);

    text-shadow:
        0 5px 28px rgba(0, 0, 0, 0.65),
        0 1px 1px rgba(0, 0, 0, 0.9);
}

.sfa-home-hero h1 span {
    display: block;
    margin-top: 12px;

    font-size: 0.65em;
    line-height: 1.05;
    letter-spacing: 1px;

    background: linear-gradient(
        90deg,
        #b57b27 0%,
        #f4d889 42%,
        #c38b35 100%
    );

    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--sfa-gold);
}


/* ================= TAGLINE ================= */

.sfa-home-hero__tagline {
    margin: 28px 0 12px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(20px, 2vw, 28px);
    line-height: 1.4;
    font-style: italic;
    color: var(--sfa-cream);
}


/* ================= DESCRIPTION ================= */

.sfa-home-hero__description {
    max-width: 590px;
    margin: 0;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.8;
    font-weight: 400;
    color: var(--sfa-text);
}


/* ================= BUTTONS ================= */

.sfa-home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.sfa-home-btn {
    position: relative;
    min-height: 52px;
    padding: 15px 28px;
    overflow: hidden;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid transparent;
    border-radius: 3px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;

    transition:
        transform 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        background-color 0.3s ease,
        box-shadow 0.3s ease;
}

.sfa-home-btn--gold {
    color: #160e04;

    background: linear-gradient(
        135deg,
        #b77a25 0%,
        #f1d17b 50%,
        #b97f2c 100%
    );

    box-shadow:
        0 12px 35px rgba(199, 143, 46, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.sfa-home-btn--gold:hover {
    color: #100a03;
    transform: translateY(-3px);
    box-shadow:
        0 17px 40px rgba(218, 166, 70, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.sfa-home-btn--outline {
    color: var(--sfa-gold-light);
    border-color: rgba(231, 192, 111, 0.6);
    background: rgba(12, 9, 7, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.sfa-home-btn--outline:hover {
    color: #171005;
    border-color: var(--sfa-gold-light);
    background: var(--sfa-gold-light);
    transform: translateY(-3px);
}


/* ================= HIGHLIGHTS ================= */

.sfa-home-hero__highlights {
    display: flex;
    align-items: stretch;
    margin-top: 40px;
    padding-top: 22px;
    max-width: 620px;

    border-top: 1px solid rgba(222, 182, 99, 0.28);
}

.sfa-home-hero__highlight {
    position: relative;
    padding: 0 24px;
}

.sfa-home-hero__highlight:first-child {
    padding-left: 0;
}

.sfa-home-hero__highlight:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 4px;
    right: 0;
    width: 1px;
    height: 42px;

    background: linear-gradient(
        180deg,
        transparent,
        rgba(222, 182, 99, 0.55),
        transparent
    );
}

.sfa-home-hero__highlight strong {
    display: block;
    margin-bottom: 4px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    font-weight: 500;
    color: var(--sfa-gold-light);
}

.sfa-home-hero__highlight span {
    display: block;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    line-height: 1.45;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.66);
}


/* ================= SCROLL INDICATOR ================= */

.sfa-home-hero__scroll {
    position: absolute;
    left: 50%;
    bottom: 25px;
    transform: translateX(-50%);

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.68);
}

.sfa-home-hero__scroll span {
    position: relative;
    display: block;
    width: 22px;
    height: 35px;

    border: 1px solid rgba(234, 198, 124, 0.65);
    border-radius: 20px;
}

.sfa-home-hero__scroll span::after {
    content: "";
    position: absolute;
    top: 7px;
    left: 50%;
    width: 3px;
    height: 7px;

    border-radius: 10px;
    background: var(--sfa-gold-light);

    transform: translateX(-50%);
    animation: sfaScrollMove 1.8s ease-in-out infinite;
}


/* ================= ANIMATIONS ================= */

@keyframes sfaHeroMotion {
    0% {
        transform: scale(1.03);
    }

    100% {
        transform: scale(1.09);
    }
}

@keyframes sfaContentEntry {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes sfaScrollMove {
    0% {
        opacity: 0;
        transform: translate(-50%, 0);
    }

    40% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate(-50%, 13px);
    }
}


/* ================= TABLET ================= */

@media (max-width: 991px) {
    .sfa-home-hero {
        min-height: 780px;
        height: auto;
        max-height: none;
    }

    .sfa-home-hero__container {
        padding-top: 155px;
        padding-bottom: 115px;
    }

    .sfa-home-hero__content {
        width: min(590px, 100%);
    }

    .sfa-home-hero__bg {
        background-position: 62% center;
    }

    .sfa-home-hero__overlay {
        background:
            linear-gradient(
                90deg,
                rgba(4, 3, 3, 0.9) 0%,
                rgba(4, 3, 3, 0.72) 45%,
                rgba(4, 3, 3, 0.2) 100%
            ),
            linear-gradient(
                180deg,
                rgba(0, 0, 0, 0.2),
                rgba(0, 0, 0, 0.7)
            );
    }
}


/* ================= MOBILE ================= */

@media (max-width: 700px) {
    .sfa-home-hero {
        min-height: 760px;
        align-items: flex-end;
    }

    .sfa-home-hero__bg {
        background-position: 68% center;
        transform: scale(1.02);
    }

    .sfa-home-hero__overlay {
        background:
            linear-gradient(
                180deg,
                rgba(4, 3, 3, 0.12) 0%,
                rgba(4, 3, 3, 0.4) 30%,
                rgba(4, 3, 3, 0.93) 64%,
                #080706 100%
            );
    }

    .sfa-home-hero__container {
        width: min(100% - 30px, 1240px);
        padding-top: 300px;
        padding-bottom: 95px;
    }

    .sfa-home-hero__eyebrow {
        margin-bottom: 16px;
        font-size: 10px;
        letter-spacing: 2px;
    }

    .sfa-home-hero__eyebrow::before {
        width: 28px;
    }

    .sfa-home-hero h1 {
        font-size: clamp(47px, 15vw, 68px);
        line-height: 0.95;
        letter-spacing: -1.5px;
    }

    .sfa-home-hero h1 span {
        margin-top: 8px;
        font-size: 0.62em;
    }

    .sfa-home-hero__tagline {
        margin-top: 20px;
        font-size: 19px;
    }

    .sfa-home-hero__description {
        font-size: 14px;
        line-height: 1.7;
    }

    .sfa-home-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 11px;
        margin-top: 26px;
    }

    .sfa-home-btn {
        width: 100%;
        min-height: 50px;
        padding: 14px 20px;
        font-size: 11px;
    }

    .sfa-home-hero__highlights {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
        margin-top: 30px;
        padding-top: 18px;
    }

    .sfa-home-hero__highlight {
        padding: 0 10px;
        text-align: center;
    }

    .sfa-home-hero__highlight:first-child {
        padding-left: 0;
    }

    .sfa-home-hero__highlight:last-child {
        padding-right: 0;
    }

    .sfa-home-hero__highlight strong {
        font-size: 16px;
    }

    .sfa-home-hero__highlight span {
        font-size: 8px;
        letter-spacing: 0.4px;
    }

    .sfa-home-hero__scroll {
        display: none;
    }
}


/* ================= SMALL MOBILE ================= */

@media (max-width: 420px) {
    .sfa-home-hero__container {
        padding-top: 275px;
    }

    .sfa-home-hero__description {
        display: none;
    }

    .sfa-home-hero__highlights {
        margin-top: 25px;
    }
}


/* ================= REDUCED MOTION ================= */

@media (prefers-reduced-motion: reduce) {
    .sfa-home-hero__bg,
    .sfa-home-hero__content,
    .sfa-home-hero__scroll span::after {
        animation: none;
    }
}

/* =====================================================
   SABRANG FILM AWARDS — ALL EDITIONS SECTION
   Luxury Black • Burgundy • Gold
===================================================== */

.sfa-editions {
    position: relative;
    overflow: hidden;
    padding: 110px 0 120px;
    background:
        radial-gradient(
            circle at 10% 15%,
            rgba(124, 16, 29, 0.18),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(205, 154, 58, 0.08),
            transparent 28%
        ),
        linear-gradient(
            180deg,
            #080706 0%,
            #100b0a 50%,
            #080706 100%
        );
}


/* Decorative background pattern */

.sfa-editions::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.22;

    background-image:
        linear-gradient(
            rgba(215, 171, 84, 0.06) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(215, 171, 84, 0.06) 1px,
            transparent 1px
        );

    background-size: 70px 70px;
    mask-image: linear-gradient(
        to bottom,
        transparent,
        #000 20%,
        #000 80%,
        transparent
    );
}


/* Gold glow */

.sfa-editions::after {
    content: "";
    position: absolute;
    top: 150px;
    left: 50%;
    width: 700px;
    height: 300px;
    pointer-events: none;

    background: rgba(200, 145, 47, 0.07);
    filter: blur(120px);
    transform: translateX(-50%);
}


.sfa-editions__container {
    position: relative;
    z-index: 2;
    width: min(100% - 40px, 1240px);
    margin-inline: auto;
}


/* =====================================================
   SECTION HEADING
===================================================== */

.sfa-section-heading {
    max-width: 790px;
    margin: 0 auto 58px;
    text-align: center;
}

.sfa-section-heading__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 18px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #e2bd6e;
}

.sfa-section-heading__eyebrow::before,
.sfa-section-heading__eyebrow::after {
    content: "";
    width: 42px;
    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        #d5a64d
    );
}

.sfa-section-heading__eyebrow::after {
    background: linear-gradient(
        90deg,
        #d5a64d,
        transparent
    );
}

.sfa-section-heading h2 {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.02;
    font-weight: 500;
    letter-spacing: -1.5px;
    color: #ffffff;
}

.sfa-section-heading h2 span {
    display: block;
    margin-top: 8px;

    background: linear-gradient(
        90deg,
        #af7523 0%,
        #f5d98c 50%,
        #b77d28 100%
    );

    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #d6aa50;
}

.sfa-section-heading p {
    max-width: 690px;
    margin: 22px auto 0;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #bdb3a7;
}


/* =====================================================
   EDITIONS GRID
===================================================== */

.sfa-editions__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}


/* =====================================================
   STANDARD EDITION CARD
===================================================== */

.sfa-edition-card {
    position: relative;
    min-height: 390px;
    padding: 30px;
    overflow: hidden;

    display: flex;
    flex-direction: column;

    border: 1px solid rgba(213, 168, 77, 0.2);
    border-radius: 12px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.04),
            transparent 42%
        ),
        linear-gradient(
            160deg,
            rgba(27, 19, 16, 0.98),
            rgba(10, 8, 7, 0.98)
        );

    box-shadow:
        0 18px 55px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);

    transition:
        transform 0.45s ease,
        border-color 0.45s ease,
        box-shadow 0.45s ease;
}

.sfa-edition-card::before {
    content: "";
    position: absolute;
    top: -90px;
    right: -90px;
    width: 220px;
    height: 220px;
    border-radius: 50%;

    border: 1px solid rgba(216, 171, 78, 0.12);

    box-shadow:
        0 0 0 25px rgba(216, 171, 78, 0.025),
        0 0 0 50px rgba(216, 171, 78, 0.018);

    transition:
        transform 0.6s ease,
        border-color 0.4s ease;
}

.sfa-edition-card::after {
    content: "";
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 0;
    height: 2px;

    background: linear-gradient(
        90deg,
        transparent,
        #d4a44b,
        transparent
    );

    opacity: 0;
    transform: scaleX(0.3);
    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
}

.sfa-edition-card:hover {
    transform: translateY(-9px);
    border-color: rgba(225, 184, 98, 0.58);

    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.5),
        0 0 35px rgba(170, 109, 30, 0.08);
}

.sfa-edition-card:hover::before {
    transform: scale(1.15) rotate(8deg);
    border-color: rgba(222, 180, 92, 0.24);
}

.sfa-edition-card:hover::after {
    opacity: 1;
    transform: scaleX(1);
}


/* =====================================================
   CARD TOP ROW
===================================================== */

.sfa-edition-card__top {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 25px;
}

.sfa-edition-card__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;

    border: 1px solid rgba(220, 178, 91, 0.55);
    border-radius: 50%;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1px;
    color: #f0d17d;

    background:
        radial-gradient(
            circle,
            rgba(190, 132, 39, 0.14),
            rgba(8, 7, 6, 0.8)
        );

    box-shadow:
        inset 0 0 20px rgba(209, 159, 68, 0.08),
        0 5px 18px rgba(0, 0, 0, 0.3);
}

.sfa-edition-card__status {
    padding: 7px 11px;

    border: 1px solid rgba(210, 171, 90, 0.22);
    border-radius: 30px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 9px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #cdbb98;

    background: rgba(255, 255, 255, 0.025);
}


/* =====================================================
   YEAR AND CONTENT
===================================================== */

.sfa-edition-card__year {
    position: relative;
    z-index: 2;
    margin-bottom: 8px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 5vw, 65px);
    line-height: 0.95;
    font-weight: 500;
    letter-spacing: -2px;

    background: linear-gradient(
        135deg,
        #a66e20 0%,
        #f2d485 45%,
        #bd8330 100%
    );

    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #d4a74f;
}

.sfa-edition-card h3 {
    position: relative;
    z-index: 2;
    margin: 8px 0 13px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 500;
    color: #fff6e4;
}

.sfa-edition-card p {
    position: relative;
    z-index: 2;
    margin: 0 0 20px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.75;
    color: #aaa197;
}


/* =====================================================
   RECIPIENT META
===================================================== */

.sfa-edition-card__meta {
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}

.sfa-edition-card__meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #dfc27f;
}

.sfa-edition-card__meta span::before {
    content: "";
    width: 18px;
    height: 1px;
    background: #c8953d;
}


/* =====================================================
   CARD LINK
===================================================== */

.sfa-edition-card__link {
    position: relative;
    z-index: 3;
    margin-top: auto;
    padding-top: 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;

    border-top: 1px solid rgba(210, 168, 80, 0.16);

    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    text-decoration: none;
    color: #e0bd6f;

    transition:
        color 0.3s ease,
        border-color 0.3s ease;
}

.sfa-edition-card__link span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    flex: 0 0 32px;

    border: 1px solid rgba(218, 177, 91, 0.35);
    border-radius: 50%;

    font-size: 17px;
    color: #e5c476;

    transition:
        transform 0.3s ease,
        color 0.3s ease,
        background-color 0.3s ease;
}

.sfa-edition-card__link:hover {
    color: #f6dc96;
    border-color: rgba(227, 186, 98, 0.35);
}

.sfa-edition-card__link:hover span {
    color: #160e05;
    background: #e2bc67;
    transform: translateX(4px);
}


/* =====================================================
   FEATURED 2026 CARD
===================================================== */

.sfa-edition-card--featured {
    grid-column: 1 / -1;
    min-height: 430px;
    padding: 45px 46% 42px 46px;

    border-color: rgba(224, 179, 84, 0.48);

    background:
        radial-gradient(
            circle at 82% 50%,
            rgba(188, 125, 31, 0.23),
            transparent 25%
        ),
        linear-gradient(
            90deg,
            rgba(81, 9, 19, 0.9) 0%,
            rgba(38, 12, 13, 0.96) 43%,
            rgba(12, 9, 7, 0.98) 100%
        );
}

.sfa-edition-card--featured::before {
    top: 50%;
    right: 10%;
    width: 260px;
    height: 260px;

    transform: translateY(-50%);

    border-color: rgba(231, 189, 99, 0.28);

    box-shadow:
        0 0 0 36px rgba(218, 167, 71, 0.04),
        0 0 0 72px rgba(218, 167, 71, 0.025),
        inset 0 0 80px rgba(205, 150, 54, 0.05);
}

.sfa-edition-card--featured:hover::before {
    transform: translateY(-50%) scale(1.08) rotate(7deg);
}


/* Trophy silhouette made only with CSS */

.sfa-edition-card--featured .sfa-edition-card__top::after {
    content: "★";
    position: absolute;
    top: 75px;
    left: calc(100% + 70%);

    font-family: Georgia, "Times New Roman", serif;
    font-size: 105px;
    line-height: 1;
    color: rgba(226, 182, 89, 0.65);

    text-shadow:
        0 0 25px rgba(222, 170, 69, 0.25),
        0 55px 0 rgba(222, 182, 89, 0.16);

    transform: translateX(-50%);
}

.sfa-edition-card--featured .sfa-edition-card__year {
    font-size: clamp(66px, 7vw, 92px);
}

.sfa-edition-card--featured h3 {
    font-size: clamp(25px, 3vw, 34px);
}

.sfa-edition-card--featured p {
    max-width: 590px;
    font-size: 15px;
}


/* Featured badge */

.sfa-edition-card__badge {
    position: absolute;
    top: 22px;
    right: 22px;
    z-index: 4;

    padding: 8px 13px;

    border: 1px solid rgba(245, 210, 133, 0.5);
    border-radius: 30px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 9px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #1a1004;

    background: linear-gradient(
        135deg,
        #ba7e29,
        #f0d27f,
        #bb802c
    );

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}


/* =====================================================
   FEATURED EVENT DETAILS
===================================================== */

.sfa-edition-card__details {
    position: absolute;
    top: 50%;
    right: 6%;
    z-index: 3;
    width: 31%;
    margin: 0;
    padding: 0;

    list-style: none;
    transform: translateY(-10%);
}

.sfa-edition-card__details li {
    padding: 14px 0;
    border-bottom: 1px solid rgba(221, 178, 91, 0.18);
}

.sfa-edition-card__details span,
.sfa-edition-card__details strong {
    display: block;
}

.sfa-edition-card__details span {
    margin-bottom: 5px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 9px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #ad9875;
}

.sfa-edition-card__details strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 500;
    color: #f2d389;
}


/* =====================================================
   2015 LEGACY CARD
===================================================== */

.sfa-edition-card--legacy {
    border-color: rgba(132, 25, 39, 0.7);

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(202, 146, 47, 0.11),
            transparent 30%
        ),
        linear-gradient(
            155deg,
            rgba(79, 9, 19, 0.72),
            rgba(13, 9, 8, 0.98) 65%
        );
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {
    .sfa-editions {
        padding: 90px 0 100px;
    }

    .sfa-editions__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .sfa-edition-card--featured {
        padding: 42px 42% 40px 38px;
    }

    .sfa-edition-card__details {
        right: 5%;
        width: 32%;
    }

    .sfa-edition-card--featured .sfa-edition-card__top::after {
        left: calc(100% + 53%);
        font-size: 80px;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 700px) {
    .sfa-editions {
        padding: 72px 0 78px;
    }

    .sfa-editions__container {
        width: min(100% - 30px, 1240px);
    }

    .sfa-section-heading {
        margin-bottom: 38px;
    }

    .sfa-section-heading__eyebrow {
        font-size: 9px;
        letter-spacing: 2px;
    }

    .sfa-section-heading__eyebrow::before,
    .sfa-section-heading__eyebrow::after {
        width: 25px;
    }

    .sfa-section-heading h2 {
        font-size: clamp(37px, 12vw, 50px);
    }

    .sfa-section-heading p {
        margin-top: 17px;
        font-size: 14px;
        line-height: 1.7;
    }

    .sfa-editions__grid {
        grid-template-columns: 1fr;
        gap: 17px;
    }

    .sfa-edition-card {
        min-height: 355px;
        padding: 25px;
        border-radius: 9px;
    }

    .sfa-edition-card__year {
        font-size: 52px;
    }

    .sfa-edition-card h3 {
        font-size: 20px;
    }

    .sfa-edition-card--featured {
        min-height: auto;
        padding: 72px 25px 27px;
    }

    .sfa-edition-card--featured::before {
        top: -90px;
        right: -90px;
        width: 230px;
        height: 230px;
        transform: none;
    }

    .sfa-edition-card--featured:hover::before {
        transform: scale(1.08) rotate(7deg);
    }

    .sfa-edition-card--featured .sfa-edition-card__top::after {
        display: none;
    }

    .sfa-edition-card--featured .sfa-edition-card__year {
        font-size: 66px;
    }

    .sfa-edition-card--featured h3 {
        font-size: 24px;
    }

    .sfa-edition-card__badge {
        top: 20px;
        right: auto;
        left: 25px;
    }

    .sfa-edition-card__details {
        position: static;
        width: 100%;
        margin: 2px 0 20px;
        transform: none;
    }
}


/* =====================================================
   ACCESSIBILITY
===================================================== */

.sfa-edition-card__link:focus-visible {
    outline: 2px solid #edca78;
    outline-offset: 5px;
}

@media (prefers-reduced-motion: reduce) {
    .sfa-edition-card,
    .sfa-edition-card::before,
    .sfa-edition-card::after,
    .sfa-edition-card__link,
    .sfa-edition-card__link span {
        transition: none;
    }

    .sfa-edition-card:hover {
        transform: none;
    }
}
/* =====================================================
   SABRANG FILM AWARDS — JOURNEY TIMELINE
===================================================== */

.sfa-journey {
    position: relative;
    overflow: hidden;
    padding: 120px 0 130px;

    background:
        radial-gradient(
            circle at 85% 18%,
            rgba(117, 12, 27, 0.19),
            transparent 30%
        ),
        radial-gradient(
            circle at 15% 85%,
            rgba(198, 143, 45, 0.08),
            transparent 28%
        ),
        linear-gradient(
            180deg,
            #080706 0%,
            #110b0b 48%,
            #080706 100%
        );
}


/* Fine luxury texture */

.sfa-journey::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.25;

    background-image:
        linear-gradient(
            115deg,
            transparent 0%,
            transparent 48%,
            rgba(218, 173, 84, 0.035) 50%,
            transparent 52%,
            transparent 100%
        );

    background-size: 160px 160px;
}

.sfa-journey::after {
    content: "";
    position: absolute;
    top: 200px;
    left: 50%;
    width: 600px;
    height: 600px;
    pointer-events: none;

    border: 1px solid rgba(218, 174, 87, 0.04);
    border-radius: 50%;

    box-shadow:
        0 0 0 80px rgba(218, 174, 87, 0.012),
        0 0 0 160px rgba(218, 174, 87, 0.008);

    transform: translateX(-50%);
}


/* =====================================================
   CONTAINER
===================================================== */

.sfa-journey__container {
    position: relative;
    z-index: 2;
    width: min(100% - 40px, 1180px);
    margin-inline: auto;
}


/* =====================================================
   SECTION HEADING
===================================================== */

.sfa-journey__heading {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    align-items: end;
    gap: 80px;
    margin-bottom: 80px;
    padding-bottom: 36px;

    border-bottom: 1px solid rgba(216, 171, 82, 0.18);
}

.sfa-journey__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 17px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ddb65f;
}

.sfa-journey__eyebrow::before {
    content: "";
    width: 42px;
    height: 1px;

    background: linear-gradient(
        90deg,
        #a16b20,
        #e4c170
    );
}

.sfa-journey__heading h2 {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(46px, 5.8vw, 74px);
    line-height: 0.98;
    font-weight: 500;
    letter-spacing: -2px;
    color: #ffffff;
}

.sfa-journey__heading h2 span {
    display: block;
    margin-top: 7px;

    background: linear-gradient(
        90deg,
        #ac7122,
        #f1d486,
        #b97c28
    );

    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #d5a74e;
}

.sfa-journey__heading > p {
    margin: 0 0 5px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.85;
    color: #afa69c;
}


/* =====================================================
   TIMELINE WRAPPER
===================================================== */

.sfa-journey__timeline {
    position: relative;
    max-width: 1050px;
    margin-inline: auto;
    padding: 12px 0;
}


/* Centre line */

.sfa-journey__timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;

    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(217, 172, 81, 0.28) 6%,
        rgba(217, 172, 81, 0.65) 50%,
        rgba(217, 172, 81, 0.28) 94%,
        transparent 100%
    );

    transform: translateX(-50%);
}


/* =====================================================
   MILESTONE ROW
===================================================== */

.sfa-journey__milestone {
    position: relative;
    width: 50%;
    padding: 0 62px 0 0;
    margin-bottom: -35px;
}

.sfa-journey__milestone:nth-child(even) {
    margin-left: 50%;
    padding: 0 0 0 62px;
}

.sfa-journey__milestone:last-child {
    margin-bottom: 0;
}


/* =====================================================
   TIMELINE MARKER
===================================================== */

.sfa-journey__marker {
    position: absolute;
    z-index: 4;
    top: 46px;
    right: -11px;
    width: 22px;
    height: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(235, 199, 125, 0.85);
    border-radius: 50%;

    background: #100b09;

    box-shadow:
        0 0 0 6px rgba(206, 155, 59, 0.07),
        0 0 25px rgba(211, 160, 62, 0.25);
}

.sfa-journey__milestone:nth-child(even) .sfa-journey__marker {
    right: auto;
    left: -11px;
}

.sfa-journey__marker span {
    width: 6px;
    height: 6px;

    border-radius: 50%;
    background: #e6c16d;

    box-shadow: 0 0 10px rgba(239, 199, 109, 0.9);
}


/* Connecting line */

.sfa-journey__marker::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 21px;
    width: 42px;
    height: 1px;

    background: linear-gradient(
        90deg,
        rgba(213, 167, 77, 0.18),
        rgba(226, 186, 102, 0.7)
    );
}

.sfa-journey__milestone:nth-child(even)
.sfa-journey__marker::before {
    right: auto;
    left: 21px;

    background: linear-gradient(
        90deg,
        rgba(226, 186, 102, 0.7),
        rgba(213, 167, 77, 0.18)
    );
}


/* =====================================================
   MILESTONE CARD
===================================================== */

.sfa-journey__card {
    position: relative;
    min-height: 245px;
    padding: 29px;
    overflow: hidden;

    border: 1px solid rgba(211, 166, 78, 0.18);
    border-radius: 9px;

    background:
        linear-gradient(
            140deg,
            rgba(255, 255, 255, 0.035),
            transparent 45%
        ),
        linear-gradient(
            160deg,
            rgba(29, 19, 16, 0.98),
            rgba(10, 8, 7, 0.98)
        );

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.035);

    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.sfa-journey__card::before {
    content: "";
    position: absolute;
    top: -55px;
    right: -45px;
    width: 145px;
    height: 145px;

    border: 1px solid rgba(216, 172, 82, 0.1);
    border-radius: 50%;

    box-shadow:
        0 0 0 22px rgba(216, 172, 82, 0.018),
        0 0 0 44px rgba(216, 172, 82, 0.012);

    transition: transform 0.5s ease;
}

.sfa-journey__card::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 95px;
    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        #d9aa50
    );
}

.sfa-journey__milestone:nth-child(even)
.sfa-journey__card::after {
    right: auto;
    left: 0;

    background: linear-gradient(
        90deg,
        #d9aa50,
        transparent
    );
}

.sfa-journey__card:hover {
    transform: translateY(-7px);
    border-color: rgba(225, 184, 97, 0.48);

    box-shadow:
        0 27px 60px rgba(0, 0, 0, 0.42),
        0 0 30px rgba(176, 113, 27, 0.06);
}

.sfa-journey__card:hover::before {
    transform: scale(1.14) rotate(8deg);
}


/* =====================================================
   CARD CONTENT
===================================================== */

.sfa-journey__year {
    position: relative;
    z-index: 2;
    display: block;
    margin-bottom: 12px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 42px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: -1px;

    background: linear-gradient(
        135deg,
        #ab7122,
        #efd080,
        #b77b29
    );

    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #d5a74e;
}

.sfa-journey__card h3 {
    position: relative;
    z-index: 2;
    margin: 0 0 12px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 500;
    color: #f6e7ca;
}

.sfa-journey__card p {
    position: relative;
    z-index: 2;
    margin: 0;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    line-height: 1.75;
    color: #a9a097;
}


/* =====================================================
   UPCOMING 2026 MILESTONE
===================================================== */

.sfa-journey__milestone--upcoming
.sfa-journey__marker {
    border-color: #f0cc77;
    background: #711020;

    animation: sfaJourneyPulse 2.3s ease-in-out infinite;
}

.sfa-journey__milestone--upcoming
.sfa-journey__card {
    border-color: rgba(231, 188, 96, 0.52);

    background:
        radial-gradient(
            circle at 90% 15%,
            rgba(210, 157, 55, 0.14),
            transparent 32%
        ),
        linear-gradient(
            145deg,
            rgba(103, 13, 27, 0.72),
            rgba(21, 10, 10, 0.98) 67%
        );
}

.sfa-journey__badge {
    position: absolute;
    top: 25px;
    right: 24px;
    z-index: 3;
    padding: 7px 11px;

    border: 1px solid rgba(240, 204, 122, 0.58);
    border-radius: 30px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 8px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #1b1005;

    background: linear-gradient(
        135deg,
        #b77b27,
        #efcf7c,
        #b67a28
    );
}


/* 2026 Link */

.sfa-journey__card > a {
    position: relative;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 19px;
    padding-bottom: 5px;

    border-bottom: 1px solid rgba(228, 185, 96, 0.4);

    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    text-decoration: none;
    color: #e3bd68;

    transition:
        gap 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}

.sfa-journey__card > a span {
    font-size: 16px;
}

.sfa-journey__card > a:hover {
    gap: 18px;
    color: #f6dc96;
    border-color: #e8c576;
}


/* =====================================================
   ANIMATION
===================================================== */

@keyframes sfaJourneyPulse {
    0%,
    100% {
        box-shadow:
            0 0 0 6px rgba(215, 164, 65, 0.08),
            0 0 18px rgba(221, 170, 67, 0.24);
    }

    50% {
        box-shadow:
            0 0 0 11px rgba(215, 164, 65, 0.02),
            0 0 32px rgba(232, 186, 90, 0.52);
    }
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {
    .sfa-journey {
        padding: 95px 0 105px;
    }

    .sfa-journey__heading {
        grid-template-columns: 1fr;
        gap: 22px;
        margin-bottom: 65px;
    }

    .sfa-journey__heading > p {
        max-width: 680px;
    }

    .sfa-journey__milestone {
        padding-right: 46px;
    }

    .sfa-journey__milestone:nth-child(even) {
        padding-left: 46px;
    }

    .sfa-journey__marker::before {
        width: 27px;
    }
}


/* =====================================================
   MOBILE — SINGLE-SIDE TIMELINE
===================================================== */

@media (max-width: 700px) {
    .sfa-journey {
        padding: 75px 0 82px;
    }

    .sfa-journey__container {
        width: min(100% - 30px, 1180px);
    }

    .sfa-journey__heading {
        margin-bottom: 48px;
        padding-bottom: 26px;
    }

    .sfa-journey__eyebrow {
        font-size: 9px;
        letter-spacing: 2px;
    }

    .sfa-journey__eyebrow::before {
        width: 28px;
    }

    .sfa-journey__heading h2 {
        font-size: clamp(42px, 13vw, 57px);
    }

    .sfa-journey__heading > p {
        font-size: 14px;
        line-height: 1.75;
    }

    .sfa-journey__timeline {
        padding-left: 31px;
    }

    .sfa-journey__timeline::before {
        left: 8px;
        transform: none;
    }

    .sfa-journey__milestone,
    .sfa-journey__milestone:nth-child(even) {
        width: 100%;
        margin: 0 0 20px;
        padding: 0;
    }

    .sfa-journey__marker,
    .sfa-journey__milestone:nth-child(even)
    .sfa-journey__marker {
        top: 37px;
        right: auto;
        left: -34px;
        width: 20px;
        height: 20px;
    }

    .sfa-journey__marker::before,
    .sfa-journey__milestone:nth-child(even)
    .sfa-journey__marker::before {
        top: 50%;
        right: auto;
        left: 20px;
        width: 15px;

        background: linear-gradient(
            90deg,
            rgba(228, 187, 100, 0.7),
            rgba(213, 167, 77, 0.15)
        );
    }

    .sfa-journey__card {
        min-height: auto;
        padding: 24px;
    }

    .sfa-journey__year {
        font-size: 38px;
    }

    .sfa-journey__card h3 {
        font-size: 20px;
    }

    .sfa-journey__badge {
        top: 22px;
        right: 20px;
    }
}


/* =====================================================
   ACCESSIBILITY
===================================================== */

.sfa-journey__card > a:focus-visible {
    outline: 2px solid #edca78;
    outline-offset: 6px;
}

@media (prefers-reduced-motion: reduce) {
    .sfa-journey__card,
    .sfa-journey__card::before,
    .sfa-journey__milestone--upcoming
    .sfa-journey__marker {
        animation: none;
        transition: none;
    }

    .sfa-journey__card:hover {
        transform: none;
    }
}
/* =====================================================
   SABRANG FILM AWARDS — LEGACY / ABOUT SECTION
===================================================== */

.sfa-legacy {
    position: relative;
    overflow: hidden;
    padding: 120px 0;

    background:
        radial-gradient(
            circle at 18% 50%,
            rgba(112, 10, 24, 0.24),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            #130b0c 0%,
            #090706 48%,
            #110d09 100%
        );

    border-top: 1px solid rgba(215, 170, 79, 0.12);
    border-bottom: 1px solid rgba(215, 170, 79, 0.12);
}


/* Background decorative glow */

.sfa-legacy::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 16%;
    width: 500px;
    height: 500px;
    pointer-events: none;

    border: 1px solid rgba(215, 170, 79, 0.07);
    border-radius: 50%;

    box-shadow:
        0 0 0 60px rgba(215, 170, 79, 0.018),
        0 0 0 120px rgba(215, 170, 79, 0.012);

    transform: translate(-50%, -50%);
}

.sfa-legacy::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 42%;
    width: 1px;
    pointer-events: none;

    background: linear-gradient(
        180deg,
        transparent,
        rgba(213, 166, 73, 0.25),
        transparent
    );
}


/* =====================================================
   CONTAINER
===================================================== */

.sfa-legacy__container {
    position: relative;
    z-index: 2;
    width: min(100% - 40px, 1200px);
    margin-inline: auto;

    display: grid;
    grid-template-columns: minmax(320px, 0.8fr) minmax(450px, 1.2fr);
    align-items: center;
    gap: clamp(65px, 9vw, 130px);
}


/* =====================================================
   EMBLEM VISUAL
===================================================== */

.sfa-legacy__visual {
    position: relative;
    min-height: 550px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


/* Large decorative rings */

.sfa-legacy__rings {
    position: relative;
    width: min(390px, 100%);
    aspect-ratio: 1;
    padding: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(220, 176, 85, 0.32);
    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(181, 118, 33, 0.14) 0%,
            rgba(45, 18, 16, 0.19) 48%,
            rgba(8, 7, 6, 0.08) 70%
        );

    box-shadow:
        0 0 70px rgba(170, 102, 26, 0.12),
        inset 0 0 60px rgba(211, 158, 57, 0.06);

    animation: sfaLegacyFloat 7s ease-in-out infinite;
}

.sfa-legacy__rings::before,
.sfa-legacy__rings::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.sfa-legacy__rings::before {
    inset: 18px;
    border: 1px dashed rgba(224, 182, 96, 0.25);
    animation: sfaLegacyRotate 30s linear infinite;
}

.sfa-legacy__rings::after {
    inset: -16px;

    border-top: 1px solid rgba(230, 190, 104, 0.55);
    border-right: 1px solid transparent;
    border-bottom: 1px solid rgba(124, 17, 30, 0.65);
    border-left: 1px solid transparent;

    animation: sfaLegacyRotateReverse 22s linear infinite;
}


/* =====================================================
   CENTRE EMBLEM
===================================================== */

.sfa-legacy__emblem {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 36px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(226, 183, 92, 0.5);
    border-radius: 50%;
    text-align: center;

    background:
        radial-gradient(
            circle at 50% 35%,
            rgba(116, 16, 27, 0.8),
            rgba(28, 10, 10, 0.94) 58%,
            #080706 100%
        );

    box-shadow:
        inset 0 0 45px rgba(218, 167, 70, 0.09),
        0 18px 50px rgba(0, 0, 0, 0.45);
}

.sfa-legacy__emblem::before,
.sfa-legacy__emblem::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 38px;
    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        #d8ae5d
    );
}

.sfa-legacy__emblem::before {
    left: 22px;
}

.sfa-legacy__emblem::after {
    right: 22px;
    transform: rotate(180deg);
}

.sfa-legacy__star {
    display: block;
    margin-bottom: 10px;

    font-size: 32px;
    line-height: 1;
    color: #e8c875;

    text-shadow:
        0 0 22px rgba(228, 184, 84, 0.45),
        0 5px 15px rgba(0, 0, 0, 0.6);
}

.sfa-legacy__emblem strong {
    display: block;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(62px, 7vw, 88px);
    line-height: 0.95;
    font-weight: 500;
    letter-spacing: 4px;

    background: linear-gradient(
        180deg,
        #fff0b8 0%,
        #d3a34b 55%,
        #98621d 100%
    );

    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #d7ab54;
}

.sfa-legacy__emblem-title {
    display: block;
    margin-top: 12px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 19px;
    line-height: 1.3;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff0cd;
}

.sfa-legacy__emblem small {
    display: block;
    margin-top: 13px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 9px;
    line-height: 1.5;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #b99d68;
}


/* Text below emblem */

.sfa-legacy__visual-text {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 32px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 9px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(230, 199, 132, 0.7);
}

.sfa-legacy__visual-text::before,
.sfa-legacy__visual-text::after {
    content: "";
    width: 32px;
    height: 1px;

    background: rgba(215, 170, 78, 0.42);
}


/* =====================================================
   CONTENT
===================================================== */

.sfa-legacy__content {
    position: relative;
}

.sfa-legacy__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 19px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #dfb762;
}

.sfa-legacy__eyebrow::before {
    content: "";
    width: 42px;
    height: 1px;

    background: linear-gradient(
        90deg,
        #a66e21,
        #e1bd6c
    );
}

.sfa-legacy__content h2 {
    margin: 0 0 25px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 5vw, 65px);
    line-height: 1.06;
    font-weight: 500;
    letter-spacing: -1.5px;
    color: #ffffff;
}

.sfa-legacy__content h2 span {
    display: block;
    margin-top: 7px;

    background: linear-gradient(
        90deg,
        #b77b28,
        #f0d182,
        #b37827
    );

    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #d6aa50;
}

.sfa-legacy__content > p {
    margin: 0 0 16px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.85;
    color: #b1a89f;
}

.sfa-legacy__content .sfa-legacy__lead {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 19px;
    line-height: 1.7;
    color: #ddd1bc;
}


/* =====================================================
   FEATURE LIST
===================================================== */

.sfa-legacy__features {
    display: grid;
    gap: 12px;
    margin-top: 30px;
}

.sfa-legacy__feature {
    position: relative;
    padding: 19px 20px;

    display: grid;
    grid-template-columns: 48px 1fr;
    align-items: start;
    gap: 16px;

    border: 1px solid rgba(214, 168, 77, 0.14);
    border-radius: 7px;

    background:
        linear-gradient(
            90deg,
            rgba(105, 14, 25, 0.16),
            rgba(255, 255, 255, 0.018)
        );

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background-color 0.35s ease;
}

.sfa-legacy__feature:hover {
    transform: translateX(7px);
    border-color: rgba(220, 177, 89, 0.36);

    background:
        linear-gradient(
            90deg,
            rgba(114, 15, 27, 0.3),
            rgba(210, 159, 61, 0.035)
        );
}

.sfa-legacy__feature-number {
    width: 45px;
    height: 45px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(222, 179, 91, 0.38);
    border-radius: 50%;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 14px;
    color: #dfbd72;

    background: rgba(0, 0, 0, 0.24);
}

.sfa-legacy__feature h3 {
    margin: 1px 0 6px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 500;
    color: #f3dfb9;
}

.sfa-legacy__feature p {
    margin: 0;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    line-height: 1.65;
    color: #a79e94;
}


/* =====================================================
   BOTTOM LINK
===================================================== */

.sfa-legacy__link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-top: 28px;
    padding-bottom: 7px;

    border-bottom: 1px solid rgba(223, 180, 89, 0.45);

    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    text-decoration: none;
    color: #dfba67;

    transition:
        color 0.3s ease,
        border-color 0.3s ease,
        gap 0.3s ease;
}

.sfa-legacy__link span {
    font-size: 18px;
}

.sfa-legacy__link:hover {
    gap: 21px;
    color: #f3d68a;
    border-color: #e6c474;
}


/* =====================================================
   ANIMATIONS
===================================================== */

@keyframes sfaLegacyFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes sfaLegacyRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes sfaLegacyRotateReverse {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {
    .sfa-legacy {
        padding: 95px 0;
    }

    .sfa-legacy::after {
        display: none;
    }

    .sfa-legacy__container {
        grid-template-columns: minmax(280px, 0.75fr) minmax(380px, 1.25fr);
        gap: 55px;
    }

    .sfa-legacy__visual {
        min-height: 450px;
    }

    .sfa-legacy__rings {
        width: min(330px, 100%);
        padding: 35px;
    }

    .sfa-legacy__emblem {
        padding: 28px;
    }

    .sfa-legacy__emblem strong {
        font-size: 62px;
    }

    .sfa-legacy__emblem-title {
        font-size: 15px;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 760px) {
    .sfa-legacy {
        padding: 75px 0 80px;
    }

    .sfa-legacy::before {
        top: 22%;
        left: 50%;
        width: 370px;
        height: 370px;
    }

    .sfa-legacy__container {
        width: min(100% - 30px, 1200px);
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .sfa-legacy__visual {
        min-height: auto;
        order: 2;
    }

    .sfa-legacy__content {
        order: 1;
    }

    .sfa-legacy__rings {
        width: min(310px, 88vw);
        padding: 32px;
    }

    .sfa-legacy__emblem {
        padding: 26px;
    }

    .sfa-legacy__emblem strong {
        font-size: 60px;
    }

    .sfa-legacy__emblem-title {
        max-width: 165px;
        font-size: 14px;
    }

    .sfa-legacy__emblem small {
        max-width: 160px;
        font-size: 8px;
    }

    .sfa-legacy__content h2 {
        font-size: clamp(39px, 12vw, 52px);
    }

    .sfa-legacy__content .sfa-legacy__lead {
        font-size: 17px;
    }

    .sfa-legacy__content > p {
        font-size: 14px;
        line-height: 1.75;
    }

    .sfa-legacy__feature {
        grid-template-columns: 42px 1fr;
        padding: 17px;
        gap: 13px;
    }

    .sfa-legacy__feature-number {
        width: 40px;
        height: 40px;
        font-size: 12px;
    }

    .sfa-legacy__feature h3 {
        font-size: 17px;
    }
}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 420px) {
    .sfa-legacy__rings {
        width: 275px;
        padding: 28px;
    }

    .sfa-legacy__emblem strong {
        font-size: 52px;
    }

    .sfa-legacy__visual-text {
        font-size: 7px;
        letter-spacing: 1.5px;
    }

    .sfa-legacy__visual-text::before,
    .sfa-legacy__visual-text::after {
        width: 20px;
    }
}


/* =====================================================
   ACCESSIBILITY
===================================================== */

.sfa-legacy__link:focus-visible {
    outline: 2px solid #edca78;
    outline-offset: 6px;
}

@media (prefers-reduced-motion: reduce) {
    .sfa-legacy__rings,
    .sfa-legacy__rings::before,
    .sfa-legacy__rings::after {
        animation: none;
    }

    .sfa-legacy__feature,
    .sfa-legacy__link {
        transition: none;
    }
}

/* =====================================================
   SABRANG FILM AWARDS — RECOGNITION AREAS
===================================================== */

.sfa-recognition {
    position: relative;
    overflow: hidden;
    padding: 115px 0 120px;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(126, 15, 29, 0.2),
            transparent 34%
        ),
        linear-gradient(
            180deg,
            #120b0c 0%,
            #090706 55%,
            #0d0908 100%
        );

    border-top: 1px solid rgba(216, 170, 78, 0.12);
    border-bottom: 1px solid rgba(216, 170, 78, 0.12);
}


/* Decorative large text */

.sfa-recognition::before {
    content: "SFA";
    position: absolute;
    top: 25px;
    left: 50%;
    pointer-events: none;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(180px, 28vw, 430px);
    line-height: 0.8;
    font-weight: 700;
    letter-spacing: -20px;
    color: rgba(255, 255, 255, 0.012);

    transform: translateX(-50%);
}


/* Gold ambient glow */

.sfa-recognition::after {
    content: "";
    position: absolute;
    right: -180px;
    bottom: -220px;
    width: 620px;
    height: 620px;
    pointer-events: none;

    border-radius: 50%;
    background: rgba(190, 129, 36, 0.07);
    filter: blur(120px);
}


/* =====================================================
   CONTAINER
===================================================== */

.sfa-recognition__container {
    position: relative;
    z-index: 2;
    width: min(100% - 40px, 1220px);
    margin-inline: auto;
}


/* =====================================================
   HEADING
===================================================== */

.sfa-recognition__heading {
    max-width: 790px;
    margin: 0 auto 58px;
    text-align: center;
}

.sfa-recognition__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    margin-bottom: 18px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #deb862;
}

.sfa-recognition__eyebrow::before,
.sfa-recognition__eyebrow::after {
    content: "";
    width: 38px;
    height: 1px;
}

.sfa-recognition__eyebrow::before {
    background: linear-gradient(
        90deg,
        transparent,
        #deb762
    );
}

.sfa-recognition__eyebrow::after {
    background: linear-gradient(
        90deg,
        #deb762,
        transparent
    );
}

.sfa-recognition__heading h2 {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(44px, 5.5vw, 70px);
    line-height: 1.02;
    font-weight: 500;
    letter-spacing: -1.8px;
    color: #ffffff;
}

.sfa-recognition__heading h2 span {
    display: block;
    margin-top: 7px;

    background: linear-gradient(
        90deg,
        #ac7121,
        #f2d487,
        #b77b27
    );

    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #d5a74e;
}

.sfa-recognition__heading p {
    max-width: 700px;
    margin: 22px auto 0;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #b2a89e;
}


/* =====================================================
   CARDS GRID
===================================================== */

.sfa-recognition__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}


/* =====================================================
   RECOGNITION CARD
===================================================== */

.sfa-recognition__card {
    position: relative;
    min-height: 285px;
    padding: 28px;
    overflow: hidden;

    border: 1px solid rgba(215, 169, 78, 0.17);
    border-radius: 9px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.035),
            transparent 45%
        ),
        linear-gradient(
            155deg,
            rgba(29, 19, 16, 0.97),
            rgba(9, 8, 7, 0.98)
        );

    box-shadow:
        0 17px 45px rgba(0, 0, 0, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);

    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.sfa-recognition__card::before {
    content: "";
    position: absolute;
    top: -55px;
    right: -55px;
    width: 145px;
    height: 145px;
    pointer-events: none;

    border: 1px solid rgba(220, 178, 88, 0.1);
    border-radius: 50%;

    box-shadow:
        0 0 0 22px rgba(220, 178, 88, 0.018),
        0 0 0 44px rgba(220, 178, 88, 0.012);

    transition:
        transform 0.5s ease,
        border-color 0.4s ease;
}

.sfa-recognition__card:hover {
    transform: translateY(-8px);
    border-color: rgba(229, 188, 100, 0.5);

    box-shadow:
        0 27px 60px rgba(0, 0, 0, 0.42),
        0 0 30px rgba(185, 120, 29, 0.07);
}

.sfa-recognition__card:hover::before {
    transform: scale(1.15) rotate(8deg);
    border-color: rgba(225, 183, 94, 0.22);
}


/* =====================================================
   CARD TOP
===================================================== */

.sfa-recognition__card-top {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 38px;
}

.sfa-recognition__index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 47px;
    height: 47px;

    border: 1px solid rgba(221, 178, 90, 0.4);
    border-radius: 50%;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 14px;
    color: #e1bd6c;

    background:
        radial-gradient(
            circle,
            rgba(195, 139, 45, 0.12),
            rgba(9, 8, 7, 0.3)
        );

    box-shadow:
        inset 0 0 18px rgba(213, 164, 67, 0.06);
}

.sfa-recognition__label {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 9px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 1.7px;
    text-transform: uppercase;
    color: #a99777;
}


/* =====================================================
   CARD CONTENT
===================================================== */

.sfa-recognition__card h3 {
    position: relative;
    z-index: 2;
    margin: 0 0 13px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 23px;
    line-height: 1.25;
    font-weight: 500;
    color: #f5e3c2;
}

.sfa-recognition__card p {
    position: relative;
    z-index: 2;
    margin: 0;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    line-height: 1.75;
    color: #a69d94;
}


/* Animated bottom gold line */

.sfa-recognition__line {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 0;
    height: 2px;

    background: linear-gradient(
        90deg,
        transparent,
        #d8aa51,
        transparent
    );

    opacity: 0;
    transform: scaleX(0.25);

    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
}

.sfa-recognition__card:hover .sfa-recognition__line {
    opacity: 1;
    transform: scaleX(1);
}


/* =====================================================
   SPECIAL HONOURS CARD
===================================================== */

.sfa-recognition__card--special {
    border-color: rgba(135, 24, 38, 0.72);

    background:
        radial-gradient(
            circle at 88% 10%,
            rgba(215, 165, 64, 0.13),
            transparent 32%
        ),
        linear-gradient(
            150deg,
            rgba(97, 12, 26, 0.7),
            rgba(23, 10, 11, 0.98) 67%
        );
}

.sfa-recognition__card--special
.sfa-recognition__index {
    color: #180e04;
    border-color: #e8c779;

    background: linear-gradient(
        135deg,
        #ae7020,
        #efd17f,
        #af7222
    );

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.28),
        0 0 20px rgba(210, 158, 59, 0.13);
}

.sfa-recognition__card--special h3 {
    color: #f5d98e;
}


/* =====================================================
   SECTION FOOTER
===================================================== */

.sfa-recognition__footer {
    margin-top: 36px;
    padding: 25px 29px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    border: 1px solid rgba(217, 173, 84, 0.17);
    border-radius: 7px;

    background: rgba(255, 255, 255, 0.018);
}

.sfa-recognition__footer p {
    margin: 0;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    line-height: 1.65;
    color: #968d84;
}

.sfa-recognition__footer a {
    flex-shrink: 0;

    display: inline-flex;
    align-items: center;
    gap: 13px;
    padding-bottom: 5px;

    border-bottom: 1px solid rgba(225, 182, 92, 0.42);

    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    text-decoration: none;
    color: #deb866;

    transition:
        gap 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}

.sfa-recognition__footer a span {
    font-size: 17px;
}

.sfa-recognition__footer a:hover {
    gap: 19px;
    color: #f4d98f;
    border-color: #e6c574;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {
    .sfa-recognition {
        padding: 95px 0 100px;
    }

    .sfa-recognition__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {
    .sfa-recognition {
        padding: 75px 0 80px;
    }

    .sfa-recognition::before {
        top: 70px;
        font-size: 180px;
        letter-spacing: -10px;
    }

    .sfa-recognition__container {
        width: min(100% - 30px, 1220px);
    }

    .sfa-recognition__heading {
        margin-bottom: 38px;
    }

    .sfa-recognition__eyebrow {
        font-size: 9px;
        letter-spacing: 1.8px;
    }

    .sfa-recognition__eyebrow::before,
    .sfa-recognition__eyebrow::after {
        width: 23px;
    }

    .sfa-recognition__heading h2 {
        font-size: clamp(39px, 12vw, 52px);
    }

    .sfa-recognition__heading p {
        margin-top: 18px;
        font-size: 14px;
        line-height: 1.7;
    }

    .sfa-recognition__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .sfa-recognition__card {
        min-height: 250px;
        padding: 24px;
    }

    .sfa-recognition__card-top {
        margin-bottom: 30px;
    }

    .sfa-recognition__card h3 {
        font-size: 21px;
    }

    .sfa-recognition__line {
        left: 24px;
        right: 24px;
    }

    .sfa-recognition__footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
        margin-top: 25px;
        padding: 22px;
    }
}


/* =====================================================
   ACCESSIBILITY
===================================================== */

.sfa-recognition__footer a:focus-visible {
    outline: 2px solid #edca78;
    outline-offset: 6px;
}

@media (prefers-reduced-motion: reduce) {
    .sfa-recognition__card,
    .sfa-recognition__card::before,
    .sfa-recognition__line,
    .sfa-recognition__footer a {
        transition: none;
    }

    .sfa-recognition__card:hover {
        transform: none;
    }
}

/* =====================================================
   SABRANG FILM AWARDS — ORIGIN & ORGANISERS
===================================================== */

.sfa-origin {
    position: relative;
    overflow: hidden;
    padding: 120px 0 125px;

    background:
        radial-gradient(
            circle at 15% 35%,
            rgba(121, 13, 28, 0.23),
            transparent 32%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(198, 141, 43, 0.08),
            transparent 28%
        ),
        linear-gradient(
            145deg,
            #110a0b 0%,
            #080706 48%,
            #110c09 100%
        );

    border-top: 1px solid rgba(215, 170, 78, 0.12);
    border-bottom: 1px solid rgba(215, 170, 78, 0.12);
}


/* Background grid */

.sfa-origin::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.2;

    background-image:
        linear-gradient(
            rgba(218, 172, 82, 0.045) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(218, 172, 82, 0.045) 1px,
            transparent 1px
        );

    background-size: 75px 75px;

    mask-image: linear-gradient(
        to bottom,
        transparent,
        #000 18%,
        #000 82%,
        transparent
    );
}


/* Large decorative circle */

.sfa-origin::after {
    content: "";
    position: absolute;
    top: 190px;
    left: -190px;
    width: 560px;
    height: 560px;
    pointer-events: none;

    border: 1px solid rgba(222, 178, 88, 0.06);
    border-radius: 50%;

    box-shadow:
        0 0 0 65px rgba(222, 178, 88, 0.015),
        0 0 0 130px rgba(222, 178, 88, 0.01);
}


/* =====================================================
   CONTAINER
===================================================== */

.sfa-origin__container {
    position: relative;
    z-index: 2;
    width: min(100% - 40px, 1220px);
    margin-inline: auto;
}


/* =====================================================
   SECTION HEADING
===================================================== */

.sfa-origin__heading {
    max-width: 790px;
    margin: 0 auto 60px;
    text-align: center;
}

.sfa-origin__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    margin-bottom: 18px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #deb762;
}

.sfa-origin__eyebrow::before,
.sfa-origin__eyebrow::after {
    content: "";
    width: 40px;
    height: 1px;
}

.sfa-origin__eyebrow::before {
    background: linear-gradient(
        90deg,
        transparent,
        #dfb963
    );
}

.sfa-origin__eyebrow::after {
    background: linear-gradient(
        90deg,
        #dfb963,
        transparent
    );
}

.sfa-origin__heading h2 {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(44px, 5.5vw, 70px);
    line-height: 1.02;
    font-weight: 500;
    letter-spacing: -1.8px;
    color: #ffffff;
}

.sfa-origin__heading h2 span {
    display: block;
    margin-top: 7px;

    background: linear-gradient(
        90deg,
        #ae7222,
        #f2d486,
        #b67a27
    );

    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #d6a94f;
}

.sfa-origin__heading p {
    max-width: 670px;
    margin: 21px auto 0;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #afa69c;
}


/* =====================================================
   MAIN LAYOUT
===================================================== */

.sfa-origin__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: stretch;
    gap: 25px;
}


/* =====================================================
   ORIGIN STORY
===================================================== */

.sfa-origin__story {
    position: relative;
    min-height: 610px;
    padding: 42px;
    overflow: hidden;

    border: 1px solid rgba(224, 180, 91, 0.37);
    border-radius: 12px;

    background:
        radial-gradient(
            circle at 80% 14%,
            rgba(207, 153, 54, 0.14),
            transparent 27%
        ),
        linear-gradient(
            145deg,
            rgba(104, 13, 27, 0.72),
            rgba(31, 11, 13, 0.96) 46%,
            rgba(10, 8, 7, 0.98) 100%
        );

    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.sfa-origin__story::before {
    content: "";
    position: absolute;
    top: -85px;
    right: -85px;
    width: 260px;
    height: 260px;

    border: 1px solid rgba(226, 183, 94, 0.16);
    border-radius: 50%;

    box-shadow:
        0 0 0 33px rgba(226, 183, 94, 0.025),
        0 0 0 66px rgba(226, 183, 94, 0.015);
}

.sfa-origin__story::after {
    content: "";
    position: absolute;
    left: 42px;
    right: 42px;
    bottom: 0;
    height: 2px;

    background: linear-gradient(
        90deg,
        transparent,
        #ddaf56,
        transparent
    );
}

.sfa-origin__story-label {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 28px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: #e2bf70;
}

.sfa-origin__story-label::before {
    content: "";
    width: 28px;
    height: 1px;
    background: #d7a84f;
}


/* Established year */

.sfa-origin__year {
    position: relative;
    z-index: 2;
    margin-bottom: 25px;
}

.sfa-origin__year small {
    display: block;
    margin-bottom: 3px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 9px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ad9670;
}

.sfa-origin__year strong {
    display: block;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(68px, 8vw, 100px);
    line-height: 0.9;
    font-weight: 500;
    letter-spacing: -3px;

    background: linear-gradient(
        135deg,
        #af7321 0%,
        #f4d98d 47%,
        #b77a27 100%
    );

    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #d8ab50;
}


/* Story text */

.sfa-origin__story h3 {
    position: relative;
    z-index: 2;
    max-width: 550px;
    margin: 0 0 18px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(26px, 3vw, 35px);
    line-height: 1.25;
    font-weight: 500;
    color: #fff0d3;
}

.sfa-origin__story p {
    position: relative;
    z-index: 2;
    margin: 0 0 14px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: #aea49b;
}

.sfa-origin__story .sfa-origin__lead {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 17px;
    line-height: 1.7;
    color: #ddcfb8;
}


/* =====================================================
   LOCATION CARDS
===================================================== */

.sfa-origin__locations {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
    margin-top: 27px;
}

.sfa-origin__location {
    padding: 16px;

    display: flex;
    align-items: center;
    gap: 13px;

    border: 1px solid rgba(218, 174, 87, 0.18);
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.2);
}

.sfa-origin__location-icon {
    width: 35px;
    height: 35px;
    flex: 0 0 35px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(224, 181, 92, 0.38);
    border-radius: 50%;

    font-size: 9px;
    color: #e6c372;

    background: rgba(188, 128, 35, 0.08);
}

.sfa-origin__location small,
.sfa-origin__location strong {
    display: block;
}

.sfa-origin__location small {
    margin-bottom: 4px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 8px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #a6906d;
}

.sfa-origin__location strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 500;
    color: #efd9ab;
}


/* =====================================================
   ORGANISER CARDS
===================================================== */

.sfa-origin__organisers {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 15px;
}

.sfa-origin__person,
.sfa-origin__organisation {
    position: relative;
    padding: 27px;
    overflow: hidden;

    display: grid;
    grid-template-columns: 55px 1fr;
    align-items: start;
    gap: 19px;

    border: 1px solid rgba(214, 168, 78, 0.17);
    border-radius: 9px;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.03),
            transparent 42%
        ),
        linear-gradient(
            150deg,
            rgba(29, 19, 16, 0.97),
            rgba(9, 8, 7, 0.98)
        );

    box-shadow:
        0 17px 45px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);

    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.sfa-origin__person::before,
.sfa-origin__organisation::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;

    background: linear-gradient(
        180deg,
        #f0ce7c,
        #a96d1f
    );

    transition: height 0.4s ease;
}

.sfa-origin__person:hover,
.sfa-origin__organisation:hover {
    transform: translateX(7px);
    border-color: rgba(225, 183, 95, 0.43);

    box-shadow:
        0 23px 55px rgba(0, 0, 0, 0.38),
        0 0 25px rgba(183, 116, 27, 0.06);
}

.sfa-origin__person:hover::before,
.sfa-origin__organisation:hover::before {
    height: 100%;
}


/* Producer highlighted card */

.sfa-origin__person--producer {
    border-color: rgba(135, 22, 37, 0.72);

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(207, 154, 56, 0.11),
            transparent 33%
        ),
        linear-gradient(
            145deg,
            rgba(95, 12, 26, 0.66),
            rgba(23, 10, 11, 0.98) 68%
        );
}


/* Number circles */

.sfa-origin__person-number {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(224, 181, 92, 0.42);
    border-radius: 50%;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 15px;
    color: #e0bb68;

    background:
        radial-gradient(
            circle,
            rgba(193, 135, 40, 0.13),
            rgba(8, 7, 6, 0.25)
        );

    box-shadow: inset 0 0 18px rgba(215, 165, 67, 0.06);
}

.sfa-origin__person-content {
    position: relative;
    z-index: 2;
}

.sfa-origin__person-content > span {
    display: block;
    margin-bottom: 7px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 8px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #b49a6e;
}

.sfa-origin__person-content h3 {
    margin: 0 0 9px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    line-height: 1.3;
    font-weight: 500;
    color: #f1d9a9;
}

.sfa-origin__person--producer
.sfa-origin__person-content h3 {
    color: #f3d484;
}

.sfa-origin__person-content p {
    margin: 0;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    line-height: 1.65;
    color: #9f968d;
}


/* =====================================================
   OFFICIAL FACTS STRIP
===================================================== */

.sfa-origin__credit-strip {
    display: grid;
    grid-template-columns: 0.65fr 1fr 0.85fr 1.35fr;
    margin-top: 25px;
    overflow: hidden;

    border: 1px solid rgba(219, 174, 86, 0.22);
    border-radius: 8px;

    background:
        linear-gradient(
            90deg,
            rgba(105, 14, 26, 0.24),
            rgba(255, 255, 255, 0.02),
            rgba(165, 105, 28, 0.08)
        );
}

.sfa-origin__credit-item {
    position: relative;
    min-height: 90px;
    padding: 21px 23px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sfa-origin__credit-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 20px;
    right: 0;
    bottom: 20px;
    width: 1px;

    background: linear-gradient(
        180deg,
        transparent,
        rgba(220, 177, 89, 0.35),
        transparent
    );
}

.sfa-origin__credit-item small {
    display: block;
    margin-bottom: 6px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 8px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #a99069;
}

.sfa-origin__credit-item strong {
    display: block;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 500;
    color: #ead2a2;
}


/* =====================================================
   OFFICIAL ORGANISERS CREDIT
===================================================== */

.sfa-origin__official-credit {
    margin-top: 18px;
    padding: 20px 26px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;

    border: 1px solid rgba(219, 175, 87, 0.17);
    border-radius: 7px;

    text-align: center;
    background: rgba(0, 0, 0, 0.18);
}

.sfa-origin__official-credit > span {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 9px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #a58d66;
}

.sfa-origin__official-credit strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 500;
    color: #e8cb8c;
}

.sfa-origin__official-credit strong i {
    margin: 0 9px;
    font-weight: 400;
    color: #a96d22;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {
    .sfa-origin {
        padding: 95px 0 105px;
    }

    .sfa-origin__layout {
        grid-template-columns: 1fr;
    }

    .sfa-origin__story {
        min-height: auto;
    }

    .sfa-origin__organisers {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-template-rows: auto;
    }

    .sfa-origin__person,
    .sfa-origin__organisation {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .sfa-origin__credit-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sfa-origin__credit-item:nth-child(2)::after {
        display: none;
    }

    .sfa-origin__credit-item:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(219, 174, 86, 0.13);
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 700px) {
    .sfa-origin {
        padding: 75px 0 80px;
    }

    .sfa-origin__container {
        width: min(100% - 30px, 1220px);
    }

    .sfa-origin__heading {
        margin-bottom: 39px;
    }

    .sfa-origin__eyebrow {
        font-size: 9px;
        letter-spacing: 1.8px;
    }

    .sfa-origin__eyebrow::before,
    .sfa-origin__eyebrow::after {
        width: 24px;
    }

    .sfa-origin__heading h2 {
        font-size: clamp(39px, 12vw, 52px);
    }

    .sfa-origin__heading p {
        font-size: 14px;
        line-height: 1.7;
    }

    .sfa-origin__story {
        padding: 28px 24px;
        border-radius: 9px;
    }

    .sfa-origin__story::after {
        left: 24px;
        right: 24px;
    }

    .sfa-origin__year strong {
        font-size: 70px;
    }

    .sfa-origin__story h3 {
        font-size: 27px;
    }

    .sfa-origin__story .sfa-origin__lead {
        font-size: 16px;
    }

    .sfa-origin__story p {
        font-size: 13px;
    }

    .sfa-origin__locations {
        grid-template-columns: 1fr;
    }

    .sfa-origin__organisers {
        grid-template-columns: 1fr;
    }

    .sfa-origin__person,
    .sfa-origin__organisation {
        grid-template-columns: 48px 1fr;
        padding: 23px 20px;
    }

    .sfa-origin__person-number {
        width: 46px;
        height: 46px;
        font-size: 13px;
    }

    .sfa-origin__person-content h3 {
        font-size: 19px;
    }

    .sfa-origin__credit-strip {
        grid-template-columns: 1fr;
    }

    .sfa-origin__credit-item {
        min-height: auto;
        padding: 18px 21px;
    }

    .sfa-origin__credit-item:not(:last-child)::after {
        top: auto;
        left: 21px;
        right: 21px;
        bottom: 0;
        width: auto;
        height: 1px;

        background: linear-gradient(
            90deg,
            transparent,
            rgba(220, 177, 89, 0.3),
            transparent
        );
    }

    .sfa-origin__credit-item:nth-child(2)::after {
        display: block;
    }

    .sfa-origin__credit-item:nth-child(-n + 2) {
        border-bottom: 0;
    }

    .sfa-origin__official-credit {
        flex-direction: column;
        gap: 9px;
        padding: 20px;
    }

    .sfa-origin__official-credit strong {
        font-size: 16px;
    }
}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 420px) {
    .sfa-origin__person,
    .sfa-origin__organisation {
        grid-template-columns: 1fr;
    }

    .sfa-origin__official-credit strong i {
        display: block;
        margin: 6px 0;
    }
}


/* =====================================================
   ACCESSIBILITY / REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {
    .sfa-origin__person,
    .sfa-origin__organisation,
    .sfa-origin__person::before,
    .sfa-origin__organisation::before {
        transition: none;
    }

    .sfa-origin__person:hover,
    .sfa-origin__organisation:hover {
        transform: none;
    }
}
/* =====================================================
   SFA 2026 — UPCOMING EDITION SPOTLIGHT
===================================================== */

.sfa-upcoming {
    position: relative;
    overflow: hidden;
    padding: 120px 0;

    background:
        radial-gradient(
            circle at 19% 48%,
            rgba(186, 128, 34, 0.11),
            transparent 31%
        ),
        radial-gradient(
            circle at 88% 18%,
            rgba(122, 13, 28, 0.26),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #080706 0%,
            #120b0b 48%,
            #090706 100%
        );

    border-top: 1px solid rgba(218, 174, 86, 0.13);
    border-bottom: 1px solid rgba(218, 174, 86, 0.13);
}


/* Background pattern */

.sfa-upcoming::before {
    content: "2026";
    position: absolute;
    right: -30px;
    bottom: -55px;
    pointer-events: none;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(180px, 28vw, 430px);
    line-height: 0.8;
    font-weight: 700;
    letter-spacing: -18px;
    color: rgba(255, 255, 255, 0.014);
}


/* Bottom gold line */

.sfa-upcoming::after {
    content: "";
    position: absolute;
    left: 8%;
    right: 8%;
    bottom: 0;
    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(225, 181, 89, 0.65),
        transparent
    );
}


/* Ambient glow */

.sfa-upcoming__glow {
    position: absolute;
    top: 50%;
    left: 17%;
    width: 520px;
    height: 520px;
    pointer-events: none;

    border-radius: 50%;

    background: rgba(205, 151, 54, 0.09);
    filter: blur(110px);
    transform: translate(-50%, -50%);
}


/* =====================================================
   CONTAINER
===================================================== */

.sfa-upcoming__container {
    position: relative;
    z-index: 2;
    width: min(100% - 40px, 1200px);
    margin-inline: auto;

    display: grid;
    grid-template-columns: minmax(380px, 0.9fr) minmax(480px, 1.1fr);
    align-items: center;
    gap: clamp(65px, 9vw, 120px);
}


/* =====================================================
   TROPHY VISUAL
===================================================== */

.sfa-upcoming__visual {
    position: relative;
    min-height: 700px;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* 11th edition badge */

.sfa-upcoming__edition-mark {
    position: absolute;
    z-index: 7;
    top: 45px;
    left: 5%;
    width: 92px;
    height: 92px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(236, 198, 119, 0.72);
    border-radius: 50%;

    text-align: center;

    background:
        radial-gradient(
            circle at 35% 28%,
            #8f1726,
            #4f0a14 65%,
            #190709
        );

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.5),
        inset 0 0 22px rgba(225, 179, 82, 0.1),
        0 0 0 6px rgba(215, 165, 68, 0.035);

    animation: sfaEditionFloat 5s ease-in-out infinite;
}

.sfa-upcoming__edition-mark span {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    line-height: 1;
    font-weight: 500;
    color: #f1d080;
}

.sfa-upcoming__edition-mark small {
    margin-top: 5px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 7px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #d6bd8d;
}


/* =====================================================
   TROPHY FRAME
===================================================== */

.sfa-upcoming__trophy-frame {
    position: relative;
    width: min(430px, 100%);
    height: 680px;

    display: flex;
    align-items: center;
    justify-content: center;

    isolation: isolate;
}

.sfa-upcoming__trophy-frame::before {
    content: "";
    position: absolute;
    z-index: -2;
    top: 6%;
    left: 50%;
    width: 330px;
    height: 560px;

    border-radius: 50%;

    background:
        radial-gradient(
            ellipse,
            rgba(249, 226, 176, 0.68) 0%,
            rgba(199, 151, 72, 0.33) 34%,
            rgba(100, 54, 22, 0.12) 58%,
            transparent 73%
        );

    filter: blur(10px);
    transform: translateX(-50%);
}

.sfa-upcoming__trophy-frame::after {
    content: "";
    position: absolute;
    z-index: -1;
    left: 50%;
    bottom: 32px;
    width: 360px;
    height: 70px;

    border-radius: 50%;

    background: rgba(0, 0, 0, 0.7);
    filter: blur(20px);
    transform: translateX(-50%);
}


/* Trophy image */

.sfa-upcoming__trophy {
    position: relative;
    z-index: 4;
    width: auto;
    max-width: 92%;
    height: 640px;
    object-fit: contain;

    /*
       Original trophy image ka white background
       surrounding background mein blend hoga.
    */
    mix-blend-mode: multiply;

    filter:
        contrast(1.1)
        saturate(1.05)
        drop-shadow(0 28px 25px rgba(0, 0, 0, 0.58));

    animation: sfaTrophyMotion 8s ease-in-out infinite alternate;
}


/* =====================================================
   DECORATIVE RINGS
===================================================== */

.sfa-upcoming__ring {
    position: absolute;
    z-index: 1;
    top: 48%;
    left: 50%;
    pointer-events: none;

    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.sfa-upcoming__ring--one {
    width: 390px;
    height: 390px;

    border-top: 1px solid rgba(236, 198, 118, 0.66);
    border-right: 1px solid transparent;
    border-bottom: 1px solid rgba(124, 17, 31, 0.72);
    border-left: 1px solid transparent;

    animation: sfaTrophyRing 25s linear infinite;
}

.sfa-upcoming__ring--two {
    width: 325px;
    height: 325px;

    border: 1px dashed rgba(225, 181, 91, 0.2);

    animation: sfaTrophyRingReverse 32s linear infinite;
}


/* Trophy platform */

.sfa-upcoming__platform {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 24px;
    width: 360px;
    height: 35px;

    border: 1px solid rgba(226, 183, 93, 0.4);
    border-radius: 50%;

    background:
        linear-gradient(
            180deg,
            #9d651d,
            #291608 48%,
            #080604
        );

    box-shadow:
        0 18px 28px rgba(0, 0, 0, 0.58),
        inset 0 2px 2px rgba(255, 220, 147, 0.24);
}


/* =====================================================
   CONTENT
===================================================== */

.sfa-upcoming__content {
    position: relative;
}

.sfa-upcoming__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 19px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #deb762;
}

.sfa-upcoming__eyebrow::before {
    content: "";
    width: 42px;
    height: 1px;

    background: linear-gradient(
        90deg,
        #a86d20,
        #e4c16f
    );
}


/* Upcoming status */

.sfa-upcoming__status {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-left: 15px;
    padding: 7px 11px;

    border: 1px solid rgba(237, 197, 117, 0.45);
    border-radius: 30px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 8px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    color: #f0ce7c;

    background: rgba(104, 14, 27, 0.52);
}

.sfa-upcoming__status::before {
    content: "";
    width: 6px;
    height: 6px;

    border-radius: 50%;
    background: #e8c06c;

    box-shadow: 0 0 12px rgba(236, 193, 102, 0.9);
    animation: sfaStatusPulse 1.8s ease-in-out infinite;
}


/* Main heading */

.sfa-upcoming__content h2 {
    margin: 8px 0 24px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(45px, 5.4vw, 70px);
    line-height: 1.01;
    font-weight: 500;
    letter-spacing: -1.8px;
    color: #ffffff;
}

.sfa-upcoming__content h2 span {
    display: block;
    margin-top: 8px;

    background: linear-gradient(
        90deg,
        #ac7021,
        #f2d486,
        #b77b27
    );

    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #d7aa50;
}


/* Lead text */

.sfa-upcoming__lead {
    margin: 0 0 27px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 19px;
    line-height: 1.7;
    color: #dfd0b6;
}


/* =====================================================
   EVENT DETAILS
===================================================== */

.sfa-upcoming__details {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0 0 27px;
    overflow: hidden;

    border: 1px solid rgba(219, 174, 86, 0.2);
    border-radius: 7px;

    background: rgba(0, 0, 0, 0.18);
}

.sfa-upcoming__detail {
    position: relative;
    min-height: 95px;
    padding: 18px 15px;

    display: flex;
    align-items: center;
    gap: 12px;
}

.sfa-upcoming__detail:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 18px;
    right: 0;
    bottom: 18px;
    width: 1px;

    background: linear-gradient(
        180deg,
        transparent,
        rgba(221, 177, 89, 0.34),
        transparent
    );
}

.sfa-upcoming__detail-number,
.sfa-upcoming__detail-symbol {
    min-width: 38px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    line-height: 1;
    color: #e4bf6c;
}

.sfa-upcoming__detail-symbol {
    font-size: 13px;
    text-align: center;
}

.sfa-upcoming__detail small,
.sfa-upcoming__detail strong {
    display: block;
}

.sfa-upcoming__detail small {
    margin-bottom: 5px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 7px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #a38b64;
}

.sfa-upcoming__detail strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 500;
    color: #ecd5a8;
}


/* Description */

.sfa-upcoming__description {
    margin: 0;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: #aaa198;
}


/* =====================================================
   BUTTONS
===================================================== */

.sfa-upcoming__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 30px;
}

.sfa-upcoming__button {
    min-height: 52px;
    padding: 15px 25px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    border: 1px solid transparent;
    border-radius: 3px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    text-decoration: none;

    transition:
        transform 0.3s ease,
        color 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.sfa-upcoming__button--gold {
    color: #170e04;

    background: linear-gradient(
        135deg,
        #b67924,
        #f0cf7b,
        #b87b28
    );

    box-shadow:
        0 13px 35px rgba(200, 143, 43, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.sfa-upcoming__button--gold:hover {
    transform: translateY(-3px);

    box-shadow:
        0 18px 42px rgba(214, 162, 63, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.sfa-upcoming__button--outline {
    color: #e4c171;
    border-color: rgba(226, 182, 91, 0.46);
    background: rgba(0, 0, 0, 0.18);
}

.sfa-upcoming__button--outline:hover {
    color: #170e04;
    border-color: #e4bf6b;
    background: #e4bf6b;
    transform: translateY(-3px);
}


/* =====================================================
   ORGANISER CREDIT
===================================================== */

.sfa-upcoming__credit {
    margin-top: 30px;
    padding-top: 20px;

    display: flex;
    align-items: center;
    gap: 17px;

    border-top: 1px solid rgba(216, 171, 82, 0.17);
}

.sfa-upcoming__credit > span {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 8px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #9e8763;
}

.sfa-upcoming__credit strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 500;
    color: #dfc184;
}

.sfa-upcoming__credit strong i {
    margin: 0 7px;
    font-weight: 400;
    color: #a86b20;
}


/* =====================================================
   ANIMATIONS
===================================================== */

@keyframes sfaTrophyMotion {
    0% {
        transform: translateY(7px) scale(0.99);
    }

    100% {
        transform: translateY(-7px) scale(1.015);
    }
}

@keyframes sfaTrophyRing {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes sfaTrophyRingReverse {
    from {
        transform: translate(-50%, -50%) rotate(360deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(0deg);
    }
}

@keyframes sfaEditionFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes sfaStatusPulse {
    0%,
    100% {
        opacity: 0.45;
    }

    50% {
        opacity: 1;
    }
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {
    .sfa-upcoming {
        padding: 95px 0 105px;
    }

    .sfa-upcoming__container {
        grid-template-columns: minmax(310px, 0.8fr)
                               minmax(400px, 1.2fr);
        gap: 45px;
    }

    .sfa-upcoming__visual {
        min-height: 590px;
    }

    .sfa-upcoming__trophy-frame {
        height: 570px;
    }

    .sfa-upcoming__trophy {
        height: 535px;
    }

    .sfa-upcoming__ring--one {
        width: 320px;
        height: 320px;
    }

    .sfa-upcoming__ring--two {
        width: 270px;
        height: 270px;
    }

    .sfa-upcoming__platform {
        width: 300px;
    }

    .sfa-upcoming__details {
        grid-template-columns: 1fr;
    }

    .sfa-upcoming__detail {
        min-height: auto;
    }

    .sfa-upcoming__detail:not(:last-child)::after {
        top: auto;
        left: 15px;
        right: 15px;
        bottom: 0;
        width: auto;
        height: 1px;

        background: linear-gradient(
            90deg,
            transparent,
            rgba(221, 177, 89, 0.3),
            transparent
        );
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 760px) {
    .sfa-upcoming {
        padding: 75px 0 80px;
    }

    .sfa-upcoming__container {
        width: min(100% - 30px, 1200px);
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .sfa-upcoming__visual {
        min-height: 530px;
        order: 2;
    }

    .sfa-upcoming__content {
        order: 1;
    }

    .sfa-upcoming__trophy-frame {
        width: min(350px, 100%);
        height: 520px;
    }

    .sfa-upcoming__trophy {
        height: 490px;
    }

    .sfa-upcoming__edition-mark {
        top: 20px;
        left: 2%;
        width: 78px;
        height: 78px;
    }

    .sfa-upcoming__edition-mark span {
        font-size: 23px;
    }

    .sfa-upcoming__ring--one {
        width: 300px;
        height: 300px;
    }

    .sfa-upcoming__ring--two {
        width: 250px;
        height: 250px;
    }

    .sfa-upcoming__platform {
        bottom: 18px;
        width: 280px;
    }

    .sfa-upcoming__eyebrow {
        font-size: 9px;
        letter-spacing: 1.8px;
    }

    .sfa-upcoming__eyebrow::before {
        width: 27px;
    }

    .sfa-upcoming__status {
        margin-left: 7px;
        font-size: 7px;
    }

    .sfa-upcoming__content h2 {
        margin-top: 10px;
        font-size: clamp(41px, 12vw, 55px);
    }

    .sfa-upcoming__lead {
        font-size: 17px;
    }

    .sfa-upcoming__description {
        font-size: 13px;
    }

    .sfa-upcoming__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .sfa-upcoming__button {
        width: 100%;
    }

    .sfa-upcoming__credit {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }
}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 420px) {
    .sfa-upcoming__visual {
        min-height: 470px;
    }

    .sfa-upcoming__trophy-frame {
        height: 460px;
    }

    .sfa-upcoming__trophy {
        height: 430px;
    }

    .sfa-upcoming__ring--one {
        width: 260px;
        height: 260px;
    }

    .sfa-upcoming__ring--two {
        width: 220px;
        height: 220px;
    }

    .sfa-upcoming__platform {
        width: 245px;
    }
}


/* =====================================================
   ACCESSIBILITY / REDUCED MOTION
===================================================== */

.sfa-upcoming__button:focus-visible {
    outline: 2px solid #f0cd79;
    outline-offset: 5px;
}

@media (prefers-reduced-motion: reduce) {
    .sfa-upcoming__trophy,
    .sfa-upcoming__ring,
    .sfa-upcoming__edition-mark,
    .sfa-upcoming__status::before {
        animation: none;
    }

    .sfa-upcoming__button {
        transition: none;
    }
}
.sfa-home-hero h1 span {
    color: #f3d58a !important;
    -webkit-text-fill-color: #f3d58a !important;
    background: none !important;

    text-shadow:
        0 3px 18px rgba(0, 0, 0, 0.9),
        0 0 22px rgba(214, 170, 80, 0.2);
}
/* =====================================================
   SFA FLOATING ACTIONS
===================================================== */

.sfa-floating-actions {
    position: fixed;
    z-index: 9990;
    right: 22px;
    bottom: 24px;

    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 11px;
}

.sfa-floating-btn {
    position: relative;
    width: 52px;
    height: 52px;
    padding: 0;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(231, 191, 107, 0.5);
    border-radius: 50%;
    cursor: pointer;

    color: #f2d486;
    background:
        linear-gradient(
            145deg,
            rgba(101, 14, 27, 0.98),
            rgba(20, 9, 10, 0.98)
        );

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.sfa-floating-btn svg {
    width: 23px;
    height: 23px;
    fill: currentColor;
}

.sfa-floating-btn:hover {
    transform: translateY(-4px) scale(1.04);

    box-shadow:
        0 17px 38px rgba(0, 0, 0, 0.5),
        0 0 25px rgba(215, 164, 65, 0.16);
}

.sfa-floating-btn--whatsapp {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.32);
    background: #168d4a;
}

.sfa-floating-btn--whatsapp:hover {
    background: #20a95b;
}

.sfa-floating-btn--chat.is-active {
    color: #160e04;
    background: linear-gradient(135deg, #b77924, #f0d17e);
}

.sfa-floating-btn--top {
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
}

.sfa-floating-btn--top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sfa-floating-tooltip {
    position: absolute;
    top: 50%;
    right: 64px;
    padding: 8px 11px;

    border: 1px solid rgba(220, 177, 89, 0.23);
    border-radius: 4px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
    color: #ead09a;
    background: rgba(10, 7, 7, 0.96);

    opacity: 0;
    visibility: hidden;
    transform: translate(8px, -50%);

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;
}

.sfa-floating-btn:hover .sfa-floating-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translate(0, -50%);
}


/* =====================================================
   CHATBOT PANEL
===================================================== */

.sfa-chatbot {
    position: fixed;
    z-index: 9989;
    right: 88px;
    bottom: 24px;
    width: min(360px, calc(100vw - 30px));
    overflow: hidden;

    border: 1px solid rgba(226, 183, 94, 0.46);
    border-radius: 13px;

    color: #ffffff;
    background:
        linear-gradient(
            160deg,
            rgba(35, 15, 16, 0.99),
            rgba(8, 7, 6, 0.99)
        );

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.62),
        0 0 35px rgba(176, 109, 25, 0.1);

    opacity: 0;
    visibility: hidden;
    transform: translateY(18px) scale(0.96);
    transform-origin: right bottom;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease;
}

.sfa-chatbot.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}


/* Chat header */

.sfa-chatbot__header {
    min-height: 72px;
    padding: 14px 15px;

    display: grid;
    grid-template-columns: 44px 1fr 34px;
    align-items: center;
    gap: 11px;

    border-bottom: 1px solid rgba(225, 181, 91, 0.18);

    background:
        linear-gradient(
            90deg,
            rgba(113, 15, 29, 0.92),
            rgba(48, 11, 15, 0.94)
        );
}

.sfa-chatbot__avatar {
    width: 43px;
    height: 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #e3bd67;
    border-radius: 50%;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 13px;
    color: #f1d07d;
    background: #130b08;
}

.sfa-chatbot__header strong {
    display: block;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 16px;
    font-weight: 500;
    color: #f3dfb4;
}

.sfa-chatbot__header span {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 3px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 9px;
    color: #c2b4a0;
}

.sfa-chatbot__header span i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4bd478;
}

.sfa-chatbot__close {
    width: 32px;
    height: 32px;
    padding: 0;

    border: 0;
    border-radius: 50%;
    cursor: pointer;

    font-size: 23px;
    line-height: 1;
    color: #e4c678;
    background: rgba(0, 0, 0, 0.24);
}


/* Messages */

.sfa-chatbot__messages {
    height: 225px;
    padding: 17px;
    overflow-y: auto;

    display: flex;
    flex-direction: column;
    gap: 10px;

    scrollbar-width: thin;
    scrollbar-color: #9e6924 #160e0c;
}

.sfa-chatbot__message {
    max-width: 84%;
    padding: 11px 13px;

    border-radius: 10px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    line-height: 1.55;
}

.sfa-chatbot__message--bot {
    align-self: flex-start;

    border: 1px solid rgba(217, 173, 84, 0.17);
    border-bottom-left-radius: 2px;

    color: #d8cdbd;
    background: rgba(255, 255, 255, 0.045);
}

.sfa-chatbot__message--user {
    align-self: flex-end;

    border-bottom-right-radius: 2px;

    color: #1b1004;
    background: linear-gradient(135deg, #bc812d, #efd080);
}


/* Quick questions */

.sfa-chatbot__quick {
    padding: 0 15px 13px;

    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.sfa-chatbot__quick button {
    padding: 7px 9px;

    border: 1px solid rgba(219, 175, 88, 0.25);
    border-radius: 20px;
    cursor: pointer;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #d9b86f;
    background: rgba(101, 14, 27, 0.2);
}


/* Chat form */

.sfa-chatbot__form {
    padding: 12px 14px;

    display: grid;
    grid-template-columns: 1fr 40px;
    gap: 8px;

    border-top: 1px solid rgba(218, 173, 85, 0.16);
}

.sfa-chatbot__form input {
    width: 100%;
    min-width: 0;
    height: 42px;
    padding: 0 13px;

    border: 1px solid rgba(219, 175, 88, 0.22);
    border-radius: 5px;
    outline: none;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.035);
}

.sfa-chatbot__form input:focus {
    border-color: #dcb45d;
}

.sfa-chatbot__form input::placeholder {
    color: #897f75;
}

.sfa-chatbot__form button {
    width: 40px;
    height: 42px;

    border: 0;
    border-radius: 5px;
    cursor: pointer;

    font-size: 18px;
    color: #190f04;
    background: linear-gradient(135deg, #b97c27, #f0d17d);
}


/* Screen-reader-only label */

.sfa-visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}


/* Mobile */

@media (max-width: 600px) {
    .sfa-floating-actions {
        right: 14px;
        bottom: 16px;
        gap: 9px;
    }

    .sfa-floating-btn {
        width: 47px;
        height: 47px;
    }

    .sfa-floating-btn svg {
        width: 21px;
        height: 21px;
    }

    .sfa-floating-tooltip {
        display: none;
    }

    .sfa-chatbot {
        right: 15px;
        bottom: 76px;
        width: calc(100vw - 30px);
    }

    .sfa-chatbot__messages {
        height: 215px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sfa-floating-btn,
    .sfa-chatbot {
        transition: none;
    }
}