/* ==================================================
   10TH SABRANG FILM AWARDS 2025 — HERO
================================================== */

:root {
    --sfa25-black: #090705;
    --sfa25-dark: #130d08;
    --sfa25-gold: #e2b65f;
    --sfa25-gold-light: #f7dc98;
    --sfa25-gold-dark: #9c651c;
    --sfa25-white: #ffffff;
    --sfa25-text: rgba(255, 255, 255, 0.85);
}

.sfa25-hero,
.sfa25-hero * {
    box-sizing: border-box;
}

.sfa25-hero {
    position: relative;
    isolation: isolate;

    width: 100%;
    min-height: 780px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background-color: var(--sfa25-black);
    color: var(--sfa25-white);
}


/* ==================================================
   BACKGROUND IMAGE
================================================== */

.sfa25-hero__background {
    position: absolute;
    inset: -3%;
    z-index: -4;

    background-image:
        url("../images/winners/sabrang-awards-2025-hero.jpg");

    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;

    filter:
        brightness(1.09)
        saturate(1.06);

    transform: scale(1);
    will-change: transform;

    animation:
        sfa25HeroZoom 8s ease-in-out infinite alternate;
}


/* ==================================================
   BALANCED IMAGE OVERLAY
================================================== */

.sfa25-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: -3;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(7, 5, 4, 0.67) 0%,
            rgba(9, 6, 4, 0.47) 38%,
            rgba(9, 6, 4, 0.13) 67%,
            rgba(7, 5, 3, 0.02) 100%
        ),
        linear-gradient(
            0deg,
            rgba(7, 5, 4, 0.57) 0%,
            rgba(7, 5, 4, 0.03) 47%,
            rgba(7, 5, 4, 0.13) 100%
        );
}


/* Decorative glow */

.sfa25-hero__glow {
    position: absolute;
    top: 18%;
    left: -150px;
    z-index: -2;

    width: 440px;
    height: 440px;

    border-radius: 50%;

    background: rgba(216, 159, 56, 0.1);
    filter: blur(120px);

    pointer-events: none;
}


/* ==================================================
   HERO CONTAINER
================================================== */

.sfa25-hero__container {
    position: relative;
    z-index: 2;

    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;

    padding-top: 160px;
    padding-bottom: 115px;
}


/* ==================================================
   BREADCRUMB
================================================== */

.sfa25-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;

    margin: 0 0 34px;

    color: rgba(255, 255, 255, 0.56);

    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
}

.sfa25-breadcrumb a {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;

    transition: color 0.3s ease;
}

.sfa25-breadcrumb a:hover {
    color: var(--sfa25-gold);
}

.sfa25-breadcrumb > i {
    color: rgba(226, 182, 95, 0.6);
    font-size: 8px;
}

.sfa25-breadcrumb > span {
    color: var(--sfa25-gold);
}


/* ==================================================
   HERO CONTENT
================================================== */

.sfa25-hero__content {
    max-width: 790px;
}


/* Eyebrow */

.sfa25-hero__eyebrow {
    display: flex;
    align-items: center;
    gap: 13px;

    margin: 0 0 22px;

    color: var(--sfa25-gold);

    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.sfa25-hero__eyebrow-line {
    display: block;

    width: 44px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--sfa25-gold)
        );
}


/* Hero title */

.sfa25-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.48);
}

.sfa25-hero__title span {
    display: block;
    margin-top: 7px;

    color: var(--sfa25-gold);

    background:
        linear-gradient(
            110deg,
            #f7dc98 0%,
            #dca64a 48%,
            #f0cb79 100%
        );

    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* Hero paragraph */

.sfa25-hero__description {
    max-width: 680px;
    margin: 0 0 32px;

    color: var(--sfa25-text);

    font-family: "Manrope", sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.8;
}


/* ==================================================
   EVENT DETAILS
================================================== */

.sfa25-hero__details {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;

    margin: 0 0 36px;
}

.sfa25-hero__detail {
    min-width: 178px;

    display: flex;
    align-items: center;
    gap: 11px;

    padding: 11px 14px;

    border: 1px solid rgba(226, 182, 95, 0.24);
    border-radius: 7px;

    background: rgba(11, 7, 5, 0.52);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.sfa25-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.32);
    border-radius: 50%;

    background: rgba(226, 182, 95, 0.09);
    color: var(--sfa25-gold);

    font-size: 13px;
}

.sfa25-hero__detail div {
    min-width: 0;

    display: flex;
    flex-direction: column;
    gap: 3px;
}

.sfa25-hero__detail small {
    color: rgba(255, 255, 255, 0.52);

    font-family: "Manrope", sans-serif;
    font-size: 9px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.sfa25-hero__detail strong {
    color: #ffffff;

    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
}


/* ==================================================
   HERO BUTTONS
================================================== */

.sfa25-hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 13px;
}

.sfa25-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;
    line-height: 1.2;
    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 */

.sfa25-button--gold {
    border: 1px solid var(--sfa25-gold);

    background:
        linear-gradient(
            135deg,
            #f2d083 0%,
            #d6a247 52%,
            #a86b1c 100%
        );

    color: #100b07;

    box-shadow:
        0 13px 30px rgba(170, 106, 25, 0.28);
}

.sfa25-button--gold:hover {
    color: #100b07;

    transform: translateY(-3px);

    box-shadow:
        0 18px 38px rgba(170, 106, 25, 0.42);
}


/* Outline button */

.sfa25-button--outline {
    border: 1px solid rgba(255, 255, 255, 0.31);

    background: rgba(11, 7, 5, 0.4);
    color: #ffffff;

    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
}

.sfa25-button--outline:hover {
    border-color: var(--sfa25-gold);

    background: rgba(226, 182, 95, 0.09);
    color: var(--sfa25-gold);

    transform: translateY(-3px);
}


/* ==================================================
   BOTTOM LINE AND SCROLL
================================================== */

.sfa25-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.86),
            transparent
        );
}

.sfa25-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.64);

    font-family: "Manrope", sans-serif;
    font-size: 9px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
}

.sfa25-hero__scroll i {
    color: var(--sfa25-gold);
    font-size: 12px;

    animation:
        sfa25ScrollBounce 1.8s ease-in-out infinite;
}


/* ==================================================
   ANIMATIONS
================================================== */

@keyframes sfa25HeroZoom {

    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.065);
    }

}

@keyframes sfa25ScrollBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }

}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 991px) {

    .sfa25-hero {
        min-height: 720px;
    }

    .sfa25-hero__container {
        width: min(100% - 40px, 900px);

        padding-top: 150px;
        padding-bottom: 95px;
    }

    .sfa25-hero__content {
        max-width: 690px;
    }

    .sfa25-hero__overlay {
        background:
            linear-gradient(
                90deg,
                rgba(7, 5, 4, 0.73) 0%,
                rgba(9, 6, 4, 0.48) 57%,
                rgba(8, 5, 3, 0.1) 100%
            ),
            linear-gradient(
                0deg,
                rgba(7, 5, 4, 0.55),
                rgba(7, 5, 4, 0.03) 60%
            );
    }

    .sfa25-hero__scroll {
        display: none;
    }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 767px) {

    .sfa25-hero {
        min-height: 700px;
        align-items: flex-end;
    }

    .sfa25-hero__background {
        inset: 0;

        /*
         * Right-side trophy को mobile पर visible रखता है.
         */
        background-position: 70% center;

        filter:
            brightness(1.06)
            saturate(1.04);

        animation: none;
    }

    .sfa25-hero__overlay {
        background:
            linear-gradient(
                0deg,
                rgba(7, 5, 4, 0.9) 0%,
                rgba(8, 5, 4, 0.62) 56%,
                rgba(7, 5, 4, 0.16) 100%
            );
    }

    .sfa25-hero__container {
        width: calc(100% - 32px);

        padding-top: 135px;
        padding-bottom: 62px;
    }

    .sfa25-breadcrumb {
        margin-bottom: 25px;
        font-size: 11px;
    }

    .sfa25-hero__eyebrow {
        margin-bottom: 17px;

        font-size: 10px;
        letter-spacing: 1.7px;
    }

    .sfa25-hero__eyebrow-line {
        width: 29px;
    }

    .sfa25-hero__title {
        margin-bottom: 20px;

        font-size: clamp(39px, 11.5vw, 53px);
        line-height: 1.07;
        letter-spacing: -0.9px;
    }

    .sfa25-hero__description {
        margin-bottom: 25px;

        font-size: 15px;
        line-height: 1.7;
    }

    .sfa25-hero__details {
        gap: 8px;
        margin-bottom: 28px;
    }

    .sfa25-hero__detail {
        min-width: 0;
        padding: 9px 11px;
    }

    .sfa25-hero__detail-icon {
        flex-basis: 30px;

        width: 30px;
        height: 30px;
    }

    .sfa25-hero__detail small {
        display: none;
    }

    .sfa25-hero__detail strong {
        font-size: 11px;
    }

    .sfa25-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .sfa25-button {
        width: 100%;
    }

}


/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 430px) {

    .sfa25-hero__container {
        width: calc(100% - 26px);
    }

    .sfa25-hero__title {
        font-size: 37px;
    }

    .sfa25-hero__details {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sfa25-hero__detail:last-child {
        grid-column: 1 / -1;
    }

}


/* ==================================================
   REDUCED MOTION
================================================== */

@media (prefers-reduced-motion: reduce) {

    .sfa25-hero__background,
    .sfa25-hero__scroll i {
        animation: none;
    }

}

/* ==================================================
   SABRANG 2025 — EVENT OVERVIEW
================================================== */

.sfa25-overview,
.sfa25-overview * {
    box-sizing: border-box;
}

.sfa25-overview {
    position: relative;
    isolation: isolate;

    padding: 115px 0 100px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 88% 18%,
            rgba(126, 24, 35, 0.16),
            transparent 30%
        ),
        radial-gradient(
            circle at 10% 86%,
            rgba(218, 166, 73, 0.08),
            transparent 28%
        ),
        linear-gradient(
            145deg,
            #080604 0%,
            #140d08 48%,
            #090604 100%
        );

    color: #ffffff;
}


/* Background texture */

.sfa25-overview::before {
    content: "";

    position: absolute;
    inset: 0;
    z-index: -2;

    opacity: 0.05;

    background-image:
        linear-gradient(
            rgba(226, 182, 95, 0.35) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(226, 182, 95, 0.35) 1px,
            transparent 1px
        );

    background-size: 80px 80px;

    pointer-events: none;
}


/* Top gold transition line */

.sfa25-overview::after {
    content: "";

    position: absolute;
    top: 0;
    right: 0;
    left: 0;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(226, 182, 95, 0.72),
            transparent
        );
}


/* Background glows */

.sfa25-overview__glow {
    position: absolute;
    z-index: -1;

    border-radius: 50%;
    filter: blur(110px);

    pointer-events: none;
}

.sfa25-overview__glow--left {
    bottom: -150px;
    left: -170px;

    width: 410px;
    height: 410px;

    background: rgba(205, 147, 47, 0.11);
}

.sfa25-overview__glow--right {
    top: -150px;
    right: -160px;

    width: 420px;
    height: 420px;

    background: rgba(111, 16, 30, 0.21);
}


/* ==================================================
   CONTAINER AND GRID
================================================== */

.sfa25-overview__container {
    position: relative;
    z-index: 2;

    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.sfa25-overview__grid {
    display: grid;
    grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
    align-items: center;
    gap: clamp(55px, 7vw, 95px);
}


/* ==================================================
   ANNIVERSARY VISUAL
================================================== */

.sfa25-overview__visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.sfa25-overview__visual::before {
    content: "";

    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;

    width: 85%;
    height: 85%;

    border-radius: 50%;

    background: rgba(220, 163, 59, 0.1);
    filter: blur(70px);

    transform: translate(-50%, -50%);
}


/* Anniversary card */

.sfa25-anniversary-card {
    position: relative;
    isolation: isolate;

    width: min(100%, 430px);
    min-height: 525px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 48px 38px;

    overflow: hidden;

    border: 1px solid rgba(226, 182, 95, 0.5);
    border-radius: 7px;

    background:
        radial-gradient(
            circle at 50% 35%,
            rgba(218, 164, 68, 0.13),
            transparent 36%
        ),
        linear-gradient(
            145deg,
            rgba(36, 22, 12, 0.94),
            rgba(10, 7, 5, 0.98)
        );

    box-shadow:
        0 35px 70px rgba(0, 0, 0, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        inset 0 0 50px rgba(226, 182, 95, 0.04);

    text-align: center;

    transition:
        transform 0.5s ease,
        border-color 0.5s ease,
        box-shadow 0.5s ease;
}

.sfa25-anniversary-card:hover {
    border-color: rgba(247, 220, 152, 0.78);

    transform: translateY(-8px);

    box-shadow:
        0 45px 85px rgba(0, 0, 0, 0.52),
        0 0 40px rgba(211, 154, 54, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}


/* Inner frame */

.sfa25-anniversary-card::before {
    content: "";

    position: absolute;
    inset: 12px;
    z-index: -1;

    border: 1px solid rgba(226, 182, 95, 0.16);
    border-radius: 4px;

    pointer-events: none;
}


/* Light sweep */

.sfa25-anniversary-card::after {
    content: "";

    position: absolute;
    top: -30%;
    left: -70%;
    z-index: -1;

    width: 42%;
    height: 165%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 235, 186, 0.07),
            transparent
        );

    transform: rotate(18deg);

    animation:
        sfa25CardShine 7s ease-in-out infinite;
}


/* Card eyebrow */

.sfa25-anniversary-card__eyebrow {
    margin-bottom: 12px;

    color: rgba(247, 220, 152, 0.75);

    font-family: "Manrope", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.6px;
    text-transform: uppercase;
}


/* Large number */

.sfa25-anniversary-card__number {
    position: relative;

    color: var(--sfa25-gold);

    background:
        linear-gradient(
            125deg,
            #fff0bd 0%,
            #e3b65e 38%,
            #a76818 68%,
            #f1ca79 100%
        );

    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    font-family: "Cinzel", Georgia, serif;
    font-size: clamp(145px, 16vw, 205px);
    font-weight: 700;
    line-height: 0.85;
    letter-spacing: -12px;

    filter:
        drop-shadow(0 12px 22px rgba(0, 0, 0, 0.42));
}


/* Superscript th */

.sfa25-anniversary-card__suffix {
    position: absolute;
    top: 146px;
    right: 75px;

    color: var(--sfa25-gold-light);

    font-family: "Cinzel", Georgia, serif;
    font-size: 23px;
    font-weight: 700;
}


/* Divider */

.sfa25-anniversary-card__line {
    width: 82px;
    height: 1px;

    margin: 28px 0 21px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--sfa25-gold),
            transparent
        );
}


/* Card heading */

.sfa25-anniversary-card h2 {
    margin: 0 0 11px;

    color: #ffffff;

    font-family: "Cinzel", Georgia, serif;
    font-size: 23px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.4px;
}

.sfa25-anniversary-card p {
    max-width: 280px;
    margin: 0 0 22px;

    color: rgba(255, 255, 255, 0.63);

    font-family: "Manrope", sans-serif;
    font-size: 13px;
    line-height: 1.7;
}


/* Years */

.sfa25-anniversary-card__year {
    color: var(--sfa25-gold);

    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
}

.sfa25-anniversary-card__year span {
    margin: 0 7px;
    color: rgba(255, 255, 255, 0.35);
}


/* Card corners */

.sfa25-anniversary-card__corner {
    position: absolute;

    width: 26px;
    height: 26px;

    pointer-events: none;
}

.sfa25-anniversary-card__corner--one {
    top: 23px;
    left: 23px;

    border-top: 1px solid var(--sfa25-gold);
    border-left: 1px solid var(--sfa25-gold);
}

.sfa25-anniversary-card__corner--two {
    top: 23px;
    right: 23px;

    border-top: 1px solid var(--sfa25-gold);
    border-right: 1px solid var(--sfa25-gold);
}

.sfa25-anniversary-card__corner--three {
    bottom: 23px;
    left: 23px;

    border-bottom: 1px solid var(--sfa25-gold);
    border-left: 1px solid var(--sfa25-gold);
}

.sfa25-anniversary-card__corner--four {
    right: 23px;
    bottom: 23px;

    border-right: 1px solid var(--sfa25-gold);
    border-bottom: 1px solid var(--sfa25-gold);
}


/* ==================================================
   OVERVIEW CONTENT
================================================== */

.sfa25-section-label {
    display: flex;
    align-items: center;
    gap: 12px;

    margin: 0 0 18px;

    color: var(--sfa25-gold);

    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.2px;
    text-transform: uppercase;
}

.sfa25-section-label span {
    width: 38px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--sfa25-gold)
        );
}


/* Main title */

.sfa25-overview__title {
    max-width: 680px;
    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;
}

.sfa25-overview__title span {
    display: block;

    color: var(--sfa25-gold);

    background:
        linear-gradient(
            110deg,
            #f5d78f,
            #dca64b 55%,
            #f0ca78
        );

    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* Lead paragraph */

.sfa25-overview__lead {
    margin: 0 0 16px;

    color: rgba(255, 255, 255, 0.88);

    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
}


/* Secondary text */

.sfa25-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;
}


/* ==================================================
   FEATURES
================================================== */

.sfa25-overview__features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;

    margin-bottom: 31px;
}

.sfa25-overview__feature {
    display: flex;
    align-items: flex-start;
    gap: 13px;

    padding: 16px 15px;

    border: 1px solid rgba(226, 182, 95, 0.15);
    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;
}

.sfa25-overview__feature:hover {
    border-color: rgba(226, 182, 95, 0.42);
    background-color: rgba(226, 182, 95, 0.04);

    transform: translateY(-4px);
}

.sfa25-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.28);
    border-radius: 50%;

    background: rgba(226, 182, 95, 0.07);
    color: var(--sfa25-gold);

    font-size: 13px;
}

.sfa25-overview__feature h3 {
    margin: 0 0 6px;

    color: #ffffff;

    font-family: "Cinzel", Georgia, serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

.sfa25-overview__feature p {
    margin: 0;

    color: rgba(255, 255, 255, 0.54);

    font-family: "Manrope", sans-serif;
    font-size: 11px;
    line-height: 1.65;
}


/* ==================================================
   OVERVIEW BUTTON
================================================== */

.sfa25-overview__button {
    min-height: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;

    padding: 13px 22px;

    border: 1px solid var(--sfa25-gold);
    border-radius: 5px;

    background:
        linear-gradient(
            135deg,
            #f0ce81,
            #d5a147 55%,
            #a96b1c
        );

    color: #100b07;

    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.24);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.sfa25-overview__button:hover {
    color: #100b07;

    transform: translateY(-3px);

    box-shadow:
        0 17px 36px rgba(169, 106, 27, 0.4);
}


/* ==================================================
   STATISTICS
================================================== */

.sfa25-overview__stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    margin-top: 80px;

    overflow: hidden;

    border: 1px solid rgba(226, 182, 95, 0.2);
    border-radius: 7px;

    background: rgba(7, 5, 4, 0.55);

    box-shadow:
        0 25px 55px rgba(0, 0, 0, 0.28);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.sfa25-overview__stat {
    position: relative;

    padding: 28px 20px;

    text-align: center;
}

.sfa25-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
        );
}

.sfa25-overview__stat strong {
    display: block;
    margin-bottom: 8px;

    color: var(--sfa25-gold);

    font-family: "Cinzel", Georgia, serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.sfa25-overview__stat strong sup {
    margin-left: 2px;
    font-size: 13px;
}

.sfa25-overview__stat span {
    display: block;

    color: rgba(255, 255, 255, 0.57);

    font-family: "Manrope", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}


/* ==================================================
   ANIMATION
================================================== */

@keyframes sfa25CardShine {

    0%,
    35% {
        left: -70%;
    }

    70%,
    100% {
        left: 135%;
    }

}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 991px) {

    .sfa25-overview {
        padding: 90px 0 85px;
    }

    .sfa25-overview__container {
        width: min(100% - 40px, 900px);
    }

    .sfa25-overview__grid {
        grid-template-columns: minmax(290px, 0.8fr) minmax(0, 1.2fr);
        gap: 45px;
    }

    .sfa25-anniversary-card {
        min-height: 490px;
        padding: 42px 28px;
    }

    .sfa25-anniversary-card__suffix {
        top: 137px;
        right: 57px;
    }

    .sfa25-overview__features {
        grid-template-columns: 1fr;
    }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 767px) {

    .sfa25-overview {
        padding: 75px 0 70px;
    }

    .sfa25-overview__container {
        width: calc(100% - 32px);
    }

    .sfa25-overview__grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .sfa25-anniversary-card {
        width: min(100%, 390px);
        min-height: 475px;
    }

    .sfa25-anniversary-card__number {
        font-size: 165px;
    }

    .sfa25-anniversary-card__suffix {
        top: 131px;
        right: calc(50% - 116px);
    }

    .sfa25-overview__title {
        font-size: 38px;
    }

    .sfa25-overview__lead {
        font-size: 15px;
    }

    .sfa25-overview__features {
        grid-template-columns: 1fr;
    }

    .sfa25-overview__button {
        width: 100%;
    }

    .sfa25-overview__stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 55px;
    }

    .sfa25-overview__stat {
        padding: 24px 12px;
    }

    .sfa25-overview__stat:nth-child(2)::after {
        display: none;
    }

    .sfa25-overview__stat:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(226, 182, 95, 0.13);
    }

}


/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 430px) {

    .sfa25-overview__container {
        width: calc(100% - 26px);
    }

    .sfa25-anniversary-card {
        min-height: 450px;
        padding: 38px 23px;
    }

    .sfa25-anniversary-card__number {
        font-size: 145px;
    }

    .sfa25-anniversary-card__suffix {
        top: 126px;
        right: calc(50% - 103px);
        font-size: 20px;
    }

    .sfa25-anniversary-card h2 {
        font-size: 20px;
    }

    .sfa25-overview__title {
        font-size: 33px;
    }

    .sfa25-overview__stat strong {
        font-size: 31px;
    }

}


/* ==================================================
   REDUCED MOTION
================================================== */

@media (prefers-reduced-motion: reduce) {

    .sfa25-anniversary-card::after {
        animation: none;
    }

}
/* ==================================================
   SABRANG 2025 — MAIN AWARD WINNERS
================================================== */

.sfa25-winners,
.sfa25-winners * {
    box-sizing: border-box;
}

.sfa25-winners {
    position: relative;
    isolation: isolate;

    padding: 110px 0;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 12% 10%,
            rgba(113, 16, 29, 0.16),
            transparent 27%
        ),
        radial-gradient(
            circle at 91% 89%,
            rgba(213, 157, 54, 0.08),
            transparent 30%
        ),
        linear-gradient(
            150deg,
            #050403 0%,
            #100a07 50%,
            #070504 100%
        );

    color: #ffffff;
}


/* Subtle cinematic background pattern */

.sfa25-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 divider */

.sfa25-winners::after {
    content: "";

    position: absolute;
    top: 0;
    right: 0;
    left: 0;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(226, 182, 95, 0.6),
            transparent
        );
}


/* Main container */

.sfa25-winners__container {
    position: relative;
    z-index: 2;

    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}


/* ==================================================
   SECTION HEADING
================================================== */

.sfa25-winners__header {
    max-width: 820px;
    margin: 0 auto 50px;

    text-align: center;
}


/* Centered label */

.sfa25-section-label--center {
    justify-content: center;
}

.sfa25-section-label--center span {
    width: 36px;
}

.sfa25-section-label--center span:first-child {
    background:
        linear-gradient(
            90deg,
            transparent,
            var(--sfa25-gold)
        );
}

.sfa25-section-label--center span:last-child {
    background:
        linear-gradient(
            90deg,
            var(--sfa25-gold),
            transparent
        );
}


/* Section title */

.sfa25-winners__title {
    margin: 0 0 21px;

    color: #ffffff;

    font-family: "Cinzel", Georgia, serif;
    font-size: clamp(38px, 4.8vw, 62px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -1.2px;
}

.sfa25-winners__title span {
    display: block;

    color: var(--sfa25-gold);

    background:
        linear-gradient(
            110deg,
            #f6dc98 0%,
            #dba54a 52%,
            #efc877 100%
        );

    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* Introduction */

.sfa25-winners__intro {
    max-width: 720px;
    margin: 0 auto;

    color: rgba(255, 255, 255, 0.63);

    font-family: "Manrope", sans-serif;
    font-size: 15px;
    line-height: 1.8;
}


/* ==================================================
   SEARCH AND FILTER TOOLBAR
================================================== */

.sfa25-winners__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;

    margin-bottom: 18px;
    padding: 17px;

    border: 1px solid rgba(226, 182, 95, 0.18);
    border-radius: 8px;

    background: rgba(13, 8, 5, 0.72);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}


/* Search field */

.sfa25-winners__search {
    position: relative;

    flex: 0 1 330px;

    display: flex;
    align-items: center;
}

.sfa25-winners__search i {
    position: absolute;
    left: 16px;
    z-index: 2;

    color: var(--sfa25-gold);
    font-size: 13px;

    pointer-events: none;
}

.sfa25-winners__search input {
    width: 100%;
    min-height: 46px;

    padding: 11px 15px 11px 43px;

    border: 1px solid rgba(226, 182, 95, 0.2);
    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;
}

.sfa25-winners__search input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.sfa25-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);
}


/* Remove browser search decoration */

.sfa25-winners__search input::-webkit-search-cancel-button {
    cursor: pointer;
    filter: invert(1);
}


/* Filter buttons */

.sfa25-winners__filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 7px;
}

.sfa25-filter {
    min-height: 39px;

    padding: 9px 13px;

    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;
    line-height: 1.2;
    letter-spacing: 0.35px;

    cursor: pointer;

    transition:
        color 0.3s ease,
        border-color 0.3s ease,
        background-color 0.3s ease,
        transform 0.3s ease;
}

.sfa25-filter:hover {
    border-color: rgba(226, 182, 95, 0.55);
    color: var(--sfa25-gold);

    transform: translateY(-2px);
}

.sfa25-filter.is-active {
    border-color: var(--sfa25-gold);

    background:
        linear-gradient(
            135deg,
            #edc974,
            #c68c33
        );

    color: #100a06;
}


/* ==================================================
   RESULTS COUNTER
================================================== */

.sfa25-winners__result {
    margin: 0 0 26px;

    color: rgba(255, 255, 255, 0.48);

    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.25px;
}

.sfa25-winners__result strong {
    margin: 0 3px;

    color: var(--sfa25-gold);
    font-size: 13px;
}


/* ==================================================
   WINNERS GRID
================================================== */

.sfa25-winners__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}


/* ==================================================
   WINNER CARD
================================================== */

.sfa25-winner-card {
    position: relative;
    isolation: isolate;

    min-height: 255px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    padding: 28px 25px 25px;

    overflow: hidden;

    border: 1px solid rgba(226, 182, 95, 0.16);
    border-radius: 7px;

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(226, 182, 95, 0.075),
            transparent 32%
        ),
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.038),
            rgba(255, 255, 255, 0.012)
        );

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.035);

    transition:
        opacity 0.3s ease,
        transform 0.45s ease,
        border-color 0.45s ease,
        background-color 0.45s ease,
        box-shadow 0.45s ease;
}


/* Decorative top line */

.sfa25-winner-card::before {
    content: "";

    position: absolute;
    top: 0;
    left: 25px;

    width: 58px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            var(--sfa25-gold),
            transparent
        );

    transition: width 0.45s ease;
}


/* Decorative glow */

.sfa25-winner-card::after {
    content: "";

    position: absolute;
    top: -85px;
    right: -85px;
    z-index: -1;

    width: 170px;
    height: 170px;

    border-radius: 50%;

    background: rgba(216, 160, 57, 0.08);
    filter: blur(35px);

    transition:
        background-color 0.45s ease,
        transform 0.45s ease;
}

.sfa25-winner-card:hover {
    border-color: rgba(226, 182, 95, 0.5);

    background-color: rgba(226, 182, 95, 0.025);

    box-shadow:
        0 28px 55px rgba(0, 0, 0, 0.38),
        0 0 28px rgba(202, 142, 43, 0.07);

    transform: translateY(-8px);
}

.sfa25-winner-card:hover::before {
    width: calc(100% - 50px);
}

.sfa25-winner-card:hover::after {
    background: rgba(216, 160, 57, 0.14);
    transform: scale(1.18);
}


/* Card number */

.sfa25-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;

    transition: color 0.4s ease;
}

.sfa25-winner-card:hover .sfa25-winner-card__number {
    color: rgba(226, 182, 95, 0.4);
}


/* Card icon */

.sfa25-winner-card__icon {
    width: 45px;
    height: 45px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 24px;

    border: 1px solid rgba(226, 182, 95, 0.3);
    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            rgba(226, 182, 95, 0.13),
            rgba(226, 182, 95, 0.035)
        );

    color: var(--sfa25-gold);
    font-size: 15px;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.07);

    transition:
        color 0.4s ease,
        background-color 0.4s ease,
        transform 0.4s ease;
}

.sfa25-winner-card:hover .sfa25-winner-card__icon {
    background-color: rgba(226, 182, 95, 0.1);
    color: var(--sfa25-gold-light);

    transform: rotate(-5deg) scale(1.08);
}


/* Award category */

.sfa25-winner-card__category {
    display: block;
    min-height: 31px;

    margin-bottom: 10px;

    color: var(--sfa25-gold);

    font-family: "Manrope", sans-serif;
    font-size: 9px;
    font-weight: 800;
    line-height: 1.5;
    letter-spacing: 1.05px;
    text-transform: uppercase;
}


/* Winner name */

.sfa25-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;
}

.sfa25-winner-card:hover h3 {
    color: #f7dda0;
}


/* Film or description */

.sfa25-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
================================================== */

.sfa25-winner-card--featured {
    border-color: rgba(226, 182, 95, 0.35);

    background:
        radial-gradient(
            circle at 85% 10%,
            rgba(226, 182, 95, 0.15),
            transparent 38%
        ),
        linear-gradient(
            145deg,
            rgba(88, 51, 18, 0.22),
            rgba(18, 11, 6, 0.75)
        );

    box-shadow:
        0 22px 45px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.sfa25-winner-card--featured .sfa25-winner-card__icon {
    border-color: rgba(247, 220, 152, 0.46);

    background:
        linear-gradient(
            145deg,
            rgba(238, 195, 111, 0.22),
            rgba(174, 108, 25, 0.08)
        );
}

.sfa25-winner-card--featured::before {
    width: 90px;

    background:
        linear-gradient(
            90deg,
            #f7dc98,
            #c4862c,
            transparent
        );
}


/* ==================================================
   FILTERED/HIDDEN CARDS
================================================== */

.sfa25-winner-card.is-hidden {
    display: none;
}


/* ==================================================
   EMPTY SEARCH RESULT
================================================== */

.sfa25-winners__empty {
    max-width: 520px;
    margin: 45px auto 0;
    padding: 45px 25px;

    border: 1px solid rgba(226, 182, 95, 0.2);
    border-radius: 7px;

    background: rgba(255, 255, 255, 0.025);

    text-align: center;
}

.sfa25-winners__empty[hidden] {
    display: none;
}

.sfa25-winners__empty i {
    margin-bottom: 17px;

    color: var(--sfa25-gold);
    font-size: 28px;
}

.sfa25-winners__empty h3 {
    margin: 0 0 8px;

    color: #ffffff;

    font-family: "Cinzel", Georgia, serif;
    font-size: 21px;
}

.sfa25-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) {

    .sfa25-winners {
        padding: 90px 0;
    }

    .sfa25-winners__container {
        width: min(100% - 40px, 900px);
    }

    .sfa25-winners__toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .sfa25-winners__search {
        flex-basis: auto;
        width: 100%;
    }

    .sfa25-winners__filters {
        justify-content: flex-start;
    }

    .sfa25-winners__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 767px) {

    .sfa25-winners {
        padding: 75px 0;
    }

    .sfa25-winners__container {
        width: calc(100% - 32px);
    }

    .sfa25-winners__header {
        margin-bottom: 38px;
    }

    .sfa25-winners__title {
        font-size: 37px;
    }

    .sfa25-winners__intro {
        font-size: 14px;
    }

    .sfa25-winners__toolbar {
        padding: 13px;
    }

    .sfa25-winners__filters {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sfa25-filter {
        width: 100%;
    }

    .sfa25-filter:first-child {
        grid-column: 1 / -1;
    }

    .sfa25-winners__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .sfa25-winner-card {
        min-height: 225px;
        padding: 25px 22px 22px;
    }

    .sfa25-winner-card__icon {
        margin-bottom: 20px;
    }

}


/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 430px) {

    .sfa25-winners__container {
        width: calc(100% - 26px);
    }

    .sfa25-winners__title {
        font-size: 32px;
    }

    .sfa25-winners__filters {
        grid-template-columns: 1fr;
    }

    .sfa25-filter:first-child {
        grid-column: auto;
    }

}


/* ==================================================
   ACCESSIBILITY
================================================== */

@media (prefers-reduced-motion: reduce) {

    .sfa25-winner-card,
    .sfa25-winner-card::before,
    .sfa25-winner-card::after,
    .sfa25-winner-card__icon {
        transition: none;
    }

}
/* ==================================================
   SABRANG 2025 — OTHER 45 SPECIAL AWARDS
================================================== */

.sfa25-special,
.sfa25-special * {
    box-sizing: border-box;
}

.sfa25-special {
    position: relative;
    isolation: isolate;

    padding: 110px 0;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 86% 13%,
            rgba(132, 20, 34, 0.2),
            transparent 29%
        ),
        radial-gradient(
            circle at 10% 87%,
            rgba(213, 157, 54, 0.09),
            transparent 28%
        ),
        linear-gradient(
            145deg,
            #0b0605 0%,
            #190b0d 48%,
            #090604 100%
        );

    color: #ffffff;
}


/* Fine luxury grid */

.sfa25-special::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: 78px 78px;

    pointer-events: none;
}


/* Top separator */

.sfa25-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
        );
}


/* Background glow */

.sfa25-special__glow {
    position: absolute;
    top: 18%;
    right: -190px;
    z-index: -1;

    width: 470px;
    height: 470px;

    border-radius: 50%;

    background: rgba(128, 19, 32, 0.2);
    filter: blur(120px);

    pointer-events: none;
}


/* ==================================================
   CONTAINER
================================================== */

.sfa25-special__container {
    position: relative;
    z-index: 2;

    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}


/* ==================================================
   SECTION HEADING
================================================== */

.sfa25-special__header {
    max-width: 830px;
    margin: 0 auto 55px;

    text-align: center;
}

.sfa25-special__title {
    margin: 0 0 21px;

    color: #ffffff;

    font-family: "Cinzel", Georgia, serif;
    font-size: clamp(38px, 4.8vw, 62px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -1.2px;
}

.sfa25-special__title span {
    display: block;

    color: var(--sfa25-gold);

    background:
        linear-gradient(
            110deg,
            #f7dc98 0%,
            #dba449 52%,
            #efc978 100%
        );

    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sfa25-special__intro {
    max-width: 720px;
    margin: 0 auto 26px;

    color: rgba(255, 255, 255, 0.63);

    font-family: "Manrope", sans-serif;
    font-size: 15px;
    line-height: 1.8;
}


/* Awards counter badge */

.sfa25-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.3);
    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);
}

.sfa25-special__count i {
    color: var(--sfa25-gold);
    font-size: 13px;
}

.sfa25-special__count strong {
    color: var(--sfa25-gold-light);

    font-family: "Cinzel", Georgia, serif;
    font-size: 18px;
    line-height: 1;
}

.sfa25-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
================================================== */

.sfa25-special__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 17px;
}


/* ==================================================
   SPECIAL AWARD CARD
   Base styles come from .sfa25-winner-card
================================================== */

.sfa25-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(87, 21, 27, 0.13),
            rgba(255, 255, 255, 0.014)
        );
}


/* Burgundy accent on alternate cards */

.sfa25-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(112, 21, 33, 0.17),
            rgba(15, 8, 6, 0.66)
        );
}


/* Gold line */

.sfa25-special-card::before {
    width: 52px;

    background:
        linear-gradient(
            90deg,
            #e5b85f,
            rgba(153, 32, 42, 0.6),
            transparent
        );
}


/* Card hover */

.sfa25-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.4),
        0 0 32px rgba(193, 123, 31, 0.08);

    transform: translateY(-7px);
}


/* Icon styling */

.sfa25-special-card .sfa25-winner-card__icon {
    margin-bottom: 21px;

    border-color: rgba(226, 182, 95, 0.32);

    background:
        linear-gradient(
            145deg,
            rgba(226, 182, 95, 0.14),
            rgba(125, 22, 32, 0.11)
        );
}


/* Award title */

.sfa25-special-card .sfa25-winner-card__category {
    min-height: 29px;

    color: #e9bd68;
}


/* Winner name */

.sfa25-special-card h3 {
    font-size: 18px;
}


/* Card description */

.sfa25-special-card p {
    color: rgba(255, 255, 255, 0.51);
}


/* Number */

.sfa25-special-card .sfa25-winner-card__number {
    color: rgba(226, 182, 95, 0.18);
}


/* ==================================================
   FEATURED SPECIAL CARDS
================================================== */

.sfa25-special-card:nth-child(1),
.sfa25-special-card:nth-child(2),
.sfa25-special-card:nth-child(4),
.sfa25-special-card:nth-child(6),
.sfa25-special-card:nth-child(12),
.sfa25-special-card:nth-child(19) {
    border-color: rgba(226, 182, 95, 0.34);

    background:
        radial-gradient(
            circle at 85% 12%,
            rgba(226, 182, 95, 0.16),
            transparent 38%
        ),
        linear-gradient(
            145deg,
            rgba(94, 51, 16, 0.22),
            rgba(25, 10, 9, 0.82)
        );
}

.sfa25-special-card:nth-child(1)
.sfa25-winner-card__icon,

.sfa25-special-card:nth-child(2)
.sfa25-winner-card__icon,

.sfa25-special-card:nth-child(4)
.sfa25-winner-card__icon,

.sfa25-special-card:nth-child(6)
.sfa25-winner-card__icon,

.sfa25-special-card:nth-child(12)
.sfa25-winner-card__icon,

.sfa25-special-card:nth-child(19)
.sfa25-winner-card__icon {
    border-color: rgba(247, 220, 152, 0.5);

    background:
        linear-gradient(
            145deg,
            rgba(238, 195, 111, 0.22),
            rgba(174, 108, 25, 0.08)
        );
}


/* ==================================================
   HIDDEN FILTER STATE
================================================== */

.sfa25-special-card.is-hidden {
    display: none;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 991px) {

    .sfa25-special {
        padding: 90px 0;
    }

    .sfa25-special__container {
        width: min(100% - 40px, 900px);
    }

    .sfa25-special__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 767px) {

    .sfa25-special {
        padding: 75px 0;
    }

    .sfa25-special__container {
        width: calc(100% - 32px);
    }

    .sfa25-special__header {
        margin-bottom: 40px;
    }

    .sfa25-special__title {
        font-size: 37px;
    }

    .sfa25-special__intro {
        font-size: 14px;
    }

    .sfa25-special__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .sfa25-special-card {
        min-height: 220px;
        padding: 25px 22px 22px;
    }

}


/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 430px) {

    .sfa25-special__container {
        width: calc(100% - 26px);
    }

    .sfa25-special__title {
        font-size: 32px;
    }

    .sfa25-special__count {
        width: 100%;
    }

}

/* Hide filtered special section completely */

.sfa25-special[hidden] {
    display: none !important;
}

/* ==================================================
   SABRANG 2025 — OTHER AWARD EDITIONS
================================================== */

.sfa25-editions,
.sfa25-editions * {
    box-sizing: border-box;
}

.sfa25-editions {
    position: relative;
    isolation: isolate;

    padding: 105px 0 90px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 8% 20%,
            rgba(214, 158, 55, 0.08),
            transparent 27%
        ),
        radial-gradient(
            circle at 92% 84%,
            rgba(117, 17, 30, 0.15),
            transparent 30%
        ),
        linear-gradient(
            150deg,
            #070504 0%,
            #120b07 50%,
            #080504 100%
        );

    color: #ffffff;
}


/* Subtle decorative circles */

.sfa25-editions::before {
    content: "";

    position: absolute;
    top: -220px;
    left: 50%;
    z-index: -2;

    width: 540px;
    height: 540px;

    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.012);

    transform: translateX(-50%);

    pointer-events: none;
}


/* Top divider */

.sfa25-editions::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
================================================== */

.sfa25-editions__container {
    position: relative;
    z-index: 2;

    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}


/* ==================================================
   SECTION HEADER
================================================== */

.sfa25-editions__header {
    max-width: 820px;
    margin: 0 auto 52px;

    text-align: center;
}

.sfa25-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;
}

.sfa25-editions__title span {
    display: block;

    color: var(--sfa25-gold);

    background:
        linear-gradient(
            110deg,
            #f6db96,
            #daa248 53%,
            #f0c978
        );

    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sfa25-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
================================================== */

.sfa25-editions__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 19px;
}


/* ==================================================
   EDITION CARD
================================================== */

.sfa25-edition-card {
    position: relative;
    isolation: isolate;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    border: 1px solid rgba(226, 182, 95, 0.19);
    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.3),
        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;
}

.sfa25-edition-card:hover {
    border-color: rgba(226, 182, 95, 0.52);

    box-shadow:
        0 35px 70px rgba(0, 0, 0, 0.43),
        0 0 30px rgba(203, 139, 38, 0.07);

    transform: translateY(-9px);
}


/* Animated top line */

.sfa25-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;
}

.sfa25-edition-card:hover::before {
    width: 100%;
}


/* ==================================================
   CARD VISUAL
================================================== */

.sfa25-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);
}


/* Visual circle */

.sfa25-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;
}

.sfa25-edition-card:hover
.sfa25-edition-card__visual::before {
    border-color: rgba(226, 182, 95, 0.28);

    transform:
        translate(-50%, -50%)
        scale(1.08);
}


/* Film edition background */

.sfa25-edition-card--film
.sfa25-edition-card__visual {
    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(218, 164, 66, 0.15),
            transparent 43%
        ),
        linear-gradient(
            145deg,
            #29130e,
            #0c0805
        );
}


/* International edition background */

.sfa25-edition-card--international
.sfa25-edition-card__visual {
    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(206, 157, 65, 0.15),
            transparent 44%
        ),
        linear-gradient(
            145deg,
            #171410,
            #090706
        );
}


/* Archive background */

.sfa25-edition-card--archive
.sfa25-edition-card__visual {
    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(139, 25, 37, 0.2),
            transparent 45%
        ),
        linear-gradient(
            145deg,
            #260b10,
            #0b0706
        );
}


/* Faded year */

.sfa25-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;
}


/* Large icon */

.sfa25-edition-card__icon {
    width: 84px;
    height: 84px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(226, 182, 95, 0.42);
    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(226, 182, 95, 0.17),
            rgba(226, 182, 95, 0.035)
        );

    color: var(--sfa25-gold);
    font-size: 29px;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);

    transition:
        color 0.45s ease,
        transform 0.45s ease,
        box-shadow 0.45s ease;
}

.sfa25-edition-card:hover
.sfa25-edition-card__icon {
    color: var(--sfa25-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 */

.sfa25-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(--sfa25-gold);

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(10, 7, 5, 0.5)
        );
}

.sfa25-edition-card__edition strong {
    color: var(--sfa25-gold-light);

    font-family: "Cinzel", Georgia, serif;
    font-size: 19px;
    line-height: 1;
}

.sfa25-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
================================================== */

.sfa25-edition-card__content {
    flex: 1;

    display: flex;
    flex-direction: column;

    padding: 27px 24px 25px;
}

.sfa25-edition-card__brand {
    display: block;
    margin-bottom: 10px;

    color: var(--sfa25-gold);

    font-family: "Manrope", sans-serif;
    font-size: 9px;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.sfa25-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;
}

.sfa25-edition-card:hover
.sfa25-edition-card__content h3 {
    color: #f4d58e;
}


/* Meta information */

.sfa25-edition-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 13px;

    margin-bottom: 17px;
}

.sfa25-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;
}

.sfa25-edition-card__meta i {
    color: var(--sfa25-gold);
    font-size: 9px;
}


/* Description */

.sfa25-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;
}


/* Card link */

.sfa25-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.38);

    color: var(--sfa25-gold);

    font-family: "Manrope", sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.45px;
    text-decoration: none;

    transition:
        color 0.3s ease,
        border-color 0.3s ease,
        gap 0.3s ease;
}

.sfa25-edition-card__link:hover {
    border-color: var(--sfa25-gold-light);
    color: var(--sfa25-gold-light);
    gap: 13px;
}


/* ==================================================
   BACK TO WINNERS
================================================== */

.sfa25-editions__back {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 17px;

    margin-top: 50px;
}

.sfa25-editions__back a {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: var(--sfa25-gold);

    font-family: "Manrope", sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-decoration: none;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.sfa25-editions__back a:hover {
    color: var(--sfa25-gold-light);
    transform: translateX(-3px);
}

.sfa25-editions__back > span {
    width: 1px;
    height: 17px;

    background: rgba(226, 182, 95, 0.28);
}

.sfa25-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) {

    .sfa25-editions {
        padding: 90px 0 80px;
    }

    .sfa25-editions__container {
        width: min(100% - 40px, 900px);
    }

    .sfa25-editions__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sfa25-edition-card--archive {
        grid-column: 1 / -1;
        width: min(100%, 440px);
        justify-self: center;
    }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 767px) {

    .sfa25-editions {
        padding: 75px 0 65px;
    }

    .sfa25-editions__container {
        width: calc(100% - 32px);
    }

    .sfa25-editions__header {
        margin-bottom: 40px;
    }

    .sfa25-editions__title {
        font-size: 36px;
    }

    .sfa25-editions__grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .sfa25-edition-card--archive {
        grid-column: auto;
        width: 100%;
    }

    .sfa25-edition-card__visual {
        min-height: 200px;
    }

    .sfa25-editions__back {
        flex-direction: column;
        gap: 11px;

        margin-top: 40px;
    }

    .sfa25-editions__back > span {
        width: 45px;
        height: 1px;
    }

}


/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 430px) {

    .sfa25-editions__container {
        width: calc(100% - 26px);
    }

    .sfa25-editions__title {
        font-size: 31px;
    }

    .sfa25-edition-card__content {
        padding: 24px 21px;
    }

    .sfa25-edition-card__content h3 {
        font-size: 18px;
    }

}
/* Legacy Sabrang editions */

.sfa25-edition-card--legacy
.sfa25-edition-card__visual {
    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(216, 162, 63, 0.14),
            transparent 44%
        ),
        linear-gradient(
            145deg,
            #25140d,
            #0b0705
        );
}

.sfa25-edition-card--legacy:nth-child(even)
.sfa25-edition-card__visual {
    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(132, 24, 36, 0.2),
            transparent 45%
        ),
        linear-gradient(
            145deg,
            #250d11,
            #0b0705
        );
}
/* ==================================================
   SABRANG 2025 — COMPACT FINAL CTA
================================================== */

.sfa25-final-cta,
.sfa25-final-cta * {
    box-sizing: border-box;
}

.sfa25-final-cta {
    position: relative;
    isolation: isolate;

    padding: 65px 0;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 12% 50%,
            rgba(218, 163, 62, 0.11),
            transparent 29%
        ),
        radial-gradient(
            circle at 90% 45%,
            rgba(130, 20, 33, 0.19),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #090604 0%,
            #1b0c0e 50%,
            #090604 100%
        );

    color: #ffffff;
}


/* Top and bottom gold lines */

.sfa25-final-cta::before,
.sfa25-final-cta::after {
    content: "";

    position: absolute;
    right: 0;
    left: 0;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(226, 182, 95, 0.7),
            transparent
        );
}

.sfa25-final-cta::before {
    top: 0;
}

.sfa25-final-cta::after {
    bottom: 0;
}


/* Background glows */

.sfa25-final-cta__glow {
    position: absolute;
    z-index: -1;

    border-radius: 50%;
    filter: blur(95px);

    pointer-events: none;
}

.sfa25-final-cta__glow--left {
    bottom: -140px;
    left: -120px;

    width: 330px;
    height: 330px;

    background: rgba(211, 151, 48, 0.12);
}

.sfa25-final-cta__glow--right {
    top: -150px;
    right: -120px;

    width: 350px;
    height: 350px;

    background: rgba(123, 18, 31, 0.2);
}


/* ==================================================
   CONTAINER
================================================== */

.sfa25-final-cta__container {
    position: relative;
    z-index: 2;

    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}


/* ==================================================
   INNER CTA
================================================== */

.sfa25-final-cta__inner {
    position: relative;
    isolation: isolate;

    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;

    padding: 37px 38px;

    overflow: hidden;

    border: 1px solid rgba(226, 182, 95, 0.35);
    border-radius: 8px;

    background:
        radial-gradient(
            circle at 75% 30%,
            rgba(226, 182, 95, 0.075),
            transparent 32%
        ),
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.045),
            rgba(255, 255, 255, 0.012)
        );

    box-shadow:
        0 28px 65px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}


/* Inner frame */

.sfa25-final-cta__inner::before {
    content: "";

    position: absolute;
    inset: 9px;
    z-index: -1;

    border: 1px solid rgba(226, 182, 95, 0.09);
    border-radius: 4px;

    pointer-events: none;
}


/* Light sweep animation */

.sfa25-final-cta__inner::after {
    content: "";

    position: absolute;
    top: -75%;
    left: -25%;
    z-index: -1;

    width: 22%;
    height: 250%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 230, 175, 0.055),
            transparent
        );

    transform: rotate(17deg);

    animation:
        sfa25CtaShine 8s ease-in-out infinite;

    pointer-events: none;
}


/* ==================================================
   CTA ICON
================================================== */

.sfa25-final-cta__icon {
    flex: 0 0 auto;

    width: 72px;
    height: 72px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(226, 182, 95, 0.5);
    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(226, 182, 95, 0.2),
            rgba(226, 182, 95, 0.035)
        );

    color: var(--sfa25-gold);
    font-size: 25px;

    box-shadow:
        0 15px 32px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);

    animation:
        sfa25CtaIconGlow 3.2s ease-in-out infinite;
}


/* ==================================================
   CTA CONTENT
================================================== */

.sfa25-final-cta__content {
    min-width: 0;
}

.sfa25-final-cta__eyebrow {
    display: block;
    margin-bottom: 8px;

    color: var(--sfa25-gold);

    font-family: "Manrope", sans-serif;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.sfa25-final-cta__content h2 {
    margin: 0 0 10px;

    color: #ffffff;

    font-family: "Cinzel", Georgia, serif;
    font-size: clamp(27px, 3vw, 39px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.sfa25-final-cta__content h2 span {
    color: var(--sfa25-gold);

    background:
        linear-gradient(
            110deg,
            #f6dc98,
            #dca64a 55%,
            #efc978
        );

    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sfa25-final-cta__content p {
    max-width: 625px;
    margin: 0;

    color: rgba(255, 255, 255, 0.58);

    font-family: "Manrope", sans-serif;
    font-size: 12px;
    line-height: 1.7;
}


/* ==================================================
   CTA BUTTONS
================================================== */

.sfa25-final-cta__actions {
    min-width: 215px;

    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 9px;
}

.sfa25-final-cta__button {
    min-height: 46px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    padding: 11px 17px;

    border-radius: 5px;

    font-family: "Manrope", sans-serif;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: 0.35px;
    text-align: center;
    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 */

.sfa25-final-cta__button--gold {
    border: 1px solid var(--sfa25-gold);

    background:
        linear-gradient(
            135deg,
            #f1cf82,
            #d4a045 55%,
            #a86a1b
        );

    color: #100a06;

    box-shadow:
        0 12px 27px rgba(169, 105, 25, 0.24);
}

.sfa25-final-cta__button--gold:hover {
    color: #100a06;

    transform: translateY(-3px);

    box-shadow:
        0 16px 34px rgba(169, 105, 25, 0.4);
}


/* Outline button */

.sfa25-final-cta__button--outline {
    border: 1px solid rgba(255, 255, 255, 0.25);

    background: rgba(255, 255, 255, 0.025);
    color: rgba(255, 255, 255, 0.82);
}

.sfa25-final-cta__button--outline:hover {
    border-color: var(--sfa25-gold);

    background: rgba(226, 182, 95, 0.07);
    color: var(--sfa25-gold);

    transform: translateY(-3px);
}


/* ==================================================
   DECORATIVE CORNERS
================================================== */

.sfa25-final-cta__corner {
    position: absolute;

    width: 20px;
    height: 20px;

    pointer-events: none;
}

.sfa25-final-cta__corner--one {
    top: 18px;
    left: 18px;

    border-top: 1px solid var(--sfa25-gold);
    border-left: 1px solid var(--sfa25-gold);
}

.sfa25-final-cta__corner--two {
    top: 18px;
    right: 18px;

    border-top: 1px solid var(--sfa25-gold);
    border-right: 1px solid var(--sfa25-gold);
}

.sfa25-final-cta__corner--three {
    bottom: 18px;
    left: 18px;

    border-bottom: 1px solid var(--sfa25-gold);
    border-left: 1px solid var(--sfa25-gold);
}

.sfa25-final-cta__corner--four {
    right: 18px;
    bottom: 18px;

    border-right: 1px solid var(--sfa25-gold);
    border-bottom: 1px solid var(--sfa25-gold);
}


/* ==================================================
   ANIMATIONS
================================================== */

@keyframes sfa25CtaShine {

    0%,
    38% {
        left: -25%;
    }

    70%,
    100% {
        left: 120%;
    }

}

@keyframes sfa25CtaIconGlow {

    0%,
    100% {
        box-shadow:
            0 15px 32px rgba(0, 0, 0, 0.28),
            0 0 0 rgba(226, 182, 95, 0);
    }

    50% {
        box-shadow:
            0 15px 32px rgba(0, 0, 0, 0.3),
            0 0 27px rgba(226, 182, 95, 0.14);
    }

}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 991px) {

    .sfa25-final-cta {
        padding: 55px 0;
    }

    .sfa25-final-cta__container {
        width: min(100% - 40px, 900px);
    }

    .sfa25-final-cta__inner {
        grid-template-columns: auto minmax(0, 1fr);
        gap: 24px;
    }

    .sfa25-final-cta__actions {
        grid-column: 1 / -1;

        min-width: 0;

        flex-direction: row;
        justify-content: center;
    }

    .sfa25-final-cta__button {
        min-width: 205px;
    }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 767px) {

    .sfa25-final-cta {
        padding: 48px 0;
    }

    .sfa25-final-cta__container {
        width: calc(100% - 32px);
    }

    .sfa25-final-cta__inner {
        grid-template-columns: 1fr;
        gap: 20px;

        padding: 34px 25px;

        text-align: center;
    }

    .sfa25-final-cta__icon {
        width: 64px;
        height: 64px;

        margin: 0 auto;

        font-size: 22px;
    }

    .sfa25-final-cta__content h2 {
        font-size: 30px;
    }

    .sfa25-final-cta__content h2 span {
        display: block;
    }

    .sfa25-final-cta__content p {
        margin: 0 auto;
    }

    .sfa25-final-cta__actions {
        grid-column: auto;

        flex-direction: column;
    }

    .sfa25-final-cta__button {
        width: 100%;
        min-width: 0;
    }

}


/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 430px) {

    .sfa25-final-cta__container {
        width: calc(100% - 26px);
    }

    .sfa25-final-cta__inner {
        padding: 31px 20px;
    }

    .sfa25-final-cta__content h2 {
        font-size: 27px;
    }

}


/* ==================================================
   ACCESSIBILITY
================================================== */

@media (prefers-reduced-motion: reduce) {

    .sfa25-final-cta__inner::after,
    .sfa25-final-cta__icon {
        animation: none;
    }

}