/* =========================================================
   1. ROOT VARIABLES
========================================================= */

:root {
    --color-navy: #071b3d;
    --color-navy-deep: #031532;
    --color-blue: #1e70ed;
    --color-blue-light: #55a7f4;
    --color-red: #ed1c2f;
    --color-red-dark: #d91125;
    --color-yellow: #fcb900;
    --color-purple: #a064d4;
    --color-green: #8ac43f;
    --color-turquoise: #55aab0;
    --color-text: #18253c;
    --color-muted: #586477;
    --color-white: #ffffff;
    --color-off-white: #fffdf9;
    --color-border: rgba(7, 27, 61, 0.14);

    --font-heading: "Manrope", Arial, sans-serif;
    --font-body: "DM Sans", Arial, sans-serif;

    --header-height: 100px;
    --container-width: 1440px;

    --shadow-button:
        0 12px 28px rgba(237, 28, 47, 0.22);

    --shadow-navigation:
        0 20px 50px rgba(3, 21, 50, 0.16);

    --transition-fast:
        180ms cubic-bezier(0.22, 1, 0.36, 1);

    --transition-default:
        320ms cubic-bezier(0.22, 1, 0.36, 1);

    --transition-slow:
        900ms cubic-bezier(0.22, 1, 0.36, 1);
}


/* =========================================================
   2. CSS RESET
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    margin: 0;
    overflow-x: hidden;
    color: var(--color-text);
    background: var(--color-white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img,
picture,
svg {
    display: block;
    max-width: 100%;
}

button,
input,
textarea,
select {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    border: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 12px;
    left: 12px;
    padding: 12px 18px;
    color: var(--color-white);
    border-radius: 6px;
    background: var(--color-navy);
    transform: translateY(-150%);
    transition: transform var(--transition-fast);
}

.skip-link:focus {
    transform: translateY(0);
}


/* =========================================================
   WIST PREMIUM HEADER + HERO
========================================================= */

:root {
    --wist-navy: #061a38;
    --wist-blue: #247cf4;
    --wist-red: #f1263c;
    --wist-gold: #f4b900;

    --hero-container: 1450px;
    --hero-side-space: 58px;

    --utility-height: 42px;
    --navigation-height: 84px;

    --ease-premium:
        cubic-bezier(0.22, 1, 0.36, 1);
}

* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    overflow-x: clip;
}

body {
    font-family: "Manrope", sans-serif;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: absolute;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;
    color: #ffffff;
}

.site-header__container {
    width: min(
        calc(100% - 80px),
        var(--hero-container)
    );
    margin-inline: auto;
}


/* =========================================================
   TOP UTILITY BAR
========================================================= */

.site-header__utility {
    position: relative;
    height: var(--utility-height);

    border-bottom:
        1px solid rgba(255, 255, 255, 0.09);

    background:
        linear-gradient(
            90deg,
            rgba(2, 14, 31, 0.74),
            rgba(7, 27, 56, 0.42),
            rgba(2, 14, 31, 0.7)
        );

    backdrop-filter:
        blur(14px)
        saturate(120%);

    -webkit-backdrop-filter:
        blur(14px)
        saturate(120%);
}

.site-header__utility
.site-header__container {
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.site-header__utility-left,
.site-header__utility-right {
    display: flex;
    align-items: center;
}

.site-header__utility-left {
    gap: 29px;
}

.site-header__utility-right {
    gap: 24px;
}

.site-header__utility-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: rgba(255, 255, 255, 0.82);

    font-size: 10px;
    font-weight: 600;
    white-space: nowrap;

    transition:
        color 250ms ease;
}

.site-header__utility-link:hover {
    color: #ffffff;
}

.site-header__utility-link svg {
    width: 14px;
    height: 14px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.55;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.site-header__utility-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.site-header__utility-nav a {
    color: rgba(255, 255, 255, 0.72);

    font-size: 10px;
    font-weight: 600;

    transition:
        color 250ms ease;
}

.site-header__utility-nav a:hover {
    color: #ffffff;
}

.site-header__language {
    display: inline-flex;
    align-items: center;
    gap: 5px;

    padding: 0;

    color: rgba(255, 255, 255, 0.85);

    border: 0;
    background: transparent;

    font-size: 10px;
    font-weight: 700;

    cursor: pointer;
}

.site-header__language svg {
    width: 13px;
    height: 13px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
}

.site-header__socials {
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-header__socials a {
    width: 27px;
    height: 27px;

    display: grid;
    place-items: center;

    color: rgba(255, 255, 255, 0.86);

    border:
        1px solid rgba(255, 255, 255, 0.12);

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(10px);

    transition:
        color 300ms ease,
        border-color 300ms ease,
        background 300ms ease,
        transform 400ms var(--ease-premium);
}

.site-header__socials a:hover {
    color: #ffffff;

    border-color:
        rgba(91, 160, 255, 0.55);

    background:
        rgba(36, 124, 244, 0.38);

    transform:
        translateY(-2px)
        rotate(-7deg)
        scale(1.06);
}

.site-header__socials svg {
    width: 13px;
    height: 13px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
}


/* =========================================================
   GLASS NAVIGATION
========================================================= */

.site-header__navigation-wrap {
    padding-top: 14px;
}

.site-header__navigation {
    position: relative;

    height: var(--navigation-height);

    display: grid;

    grid-template-columns:
        minmax(235px, 0.9fr)
        minmax(570px, 1.7fr)
        auto;

    align-items: center;

    gap: 28px;

    padding:
        0 18px
        0 27px;

    overflow: hidden;

    border:
        1px solid rgba(255, 255, 255, 0.24);

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.18),
            rgba(255, 255, 255, 0.075)
        );

    box-shadow:
        0 16px 45px rgba(2, 15, 34, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.33),
        inset 0 -16px 35px rgba(23, 75, 145, 0.055);

    backdrop-filter:
        blur(24px)
        saturate(128%);

    -webkit-backdrop-filter:
        blur(24px)
        saturate(128%);

    isolation: isolate;
}

.site-header__navigation::before {
    content: "";

    position: absolute;
    z-index: -1;

    inset: 0;

    background:
        radial-gradient(
            circle at 82% 20%,
            rgba(255, 255, 255, 0.19),
            transparent 34%
        );

    pointer-events: none;
}

.site-header__navigation::after {
    content: "";

    position: absolute;
    z-index: 0;

    top: -90%;
    left: -30%;

    width: 22%;
    height: 280%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.13),
            transparent
        );

    transform: rotate(18deg);

    animation:
        wistHeaderReflection
        10s ease-in-out infinite;

    pointer-events: none;
}

@keyframes wistHeaderReflection {
    0%,
    62% {
        left: -35%;
    }

    85%,
    100% {
        left: 125%;
    }
}

.site-header__brand,
.site-header__main-nav,
.site-header__actions {
    position: relative;
    z-index: 2;
}

.site-header__brand img {
    width: 235px;
    height: auto;

    display: block;
}

.site-header__main-nav {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: clamp(26px, 2.8vw, 49px);
}

.site-header__main-nav a {
    position: relative;

    padding: 15px 0;

    color: rgba(255, 255, 255, 0.93);

    font-size: 14px;
    font-weight: 650;
    white-space: nowrap;

    transition:
        color 250ms ease;
}

.site-header__main-nav a::before {
    content: "";

    position: absolute;

    right: 0;
    bottom: 6px;
    left: 0;

    height: 2px;

    border-radius: 20px;

    background:
        linear-gradient(
            90deg,
            #f4b900,
            #ffda4e
        );

    box-shadow:
        0 0 13px rgba(244, 185, 0, 0.42);

    transform: scaleX(0);
    transform-origin: right;

    transition:
        transform 400ms var(--ease-premium);
}

.site-header__main-nav a:hover {
    color: #ffffff;
}

.site-header__main-nav a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}


/* =========================================================
   HEADER APPLY BUTTON — PREMIUM
========================================================= */

.site-header__apply {
    position: relative;

    min-width: 128px;
    min-height: 49px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    padding-inline: 24px;

    color: #ffffff;

    border:
        1px solid rgba(255, 255, 255, 0.22);

    border-radius: 7px;

    background:
        linear-gradient(
            135deg,
            #ff3549,
            #ef2037
        );

    box-shadow:
        0 14px 30px rgba(239, 32, 55, 0.27),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);

    font-size: 11px;
    font-weight: 800;

    isolation: isolate;

    transition:
        box-shadow 350ms ease,
        transform 500ms var(--ease-premium);
}

.site-header__apply::before {
    content: "";

    position: absolute;
    z-index: -1;

    inset: 0;

    background:
        radial-gradient(
            circle at 50% 120%,
            rgba(255, 255, 255, 0.32),
            transparent 55%
        );

    opacity: 0;

    transform: scale(0.72);

    transition:
        opacity 350ms ease,
        transform 550ms var(--ease-premium);
}

.site-header__apply::after {
    content: "";

    position: absolute;

    top: -80%;
    left: -65%;

    width: 40%;
    height: 260%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.62),
            transparent
        );

    transform: rotate(18deg);

    transition:
        left 850ms var(--ease-premium);
}

.site-header__apply:hover {
    transform:
        perspective(700px)
        rotateX(2deg)
        translateY(-2px)
        scale(1.025);

    box-shadow:
        0 20px 42px rgba(239, 32, 55, 0.35),
        0 0 22px rgba(255, 57, 79, 0.17),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.site-header__apply:hover::before {
    opacity: 1;
    transform: scale(1);
}

.site-header__apply:hover::after {
    left: 135%;
}


/* =========================================================
   MENU
========================================================= */

.site-header__menu {
    width: 48px;
    height: 48px;

    display: none;
    place-items: center;

    padding: 0;

    color: #ffffff;

    border:
        1px solid rgba(255, 255, 255, 0.38);

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.07);

    backdrop-filter: blur(14px);

    cursor: pointer;
}

.site-header__menu span {
    width: 17px;
    height: 1px;

    display: block;

    margin: 2px 0;

    background: currentColor;
}

/* Mobile menu desktopda mutlaqo ko‘rinmasin */
.site-header__mobile-menu {
    display: none;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

/* Faqat tablet/mobile’da ishlasin */
@media (max-width: 1024px) {
    .site-header__mobile-menu {
        position: absolute;
        top: calc(
            var(--utility-height) +
            var(--navigation-height) +
            24px
        );
        right: 25px;
        left: 25px;
        z-index: 1001;

        display: block;
        overflow: hidden;

        visibility: hidden;
        opacity: 0;
        pointer-events: none;

        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 20px;

        background: rgba(5, 25, 54, 0.94);

        backdrop-filter: blur(26px);
        -webkit-backdrop-filter: blur(26px);

        transform: translateY(-14px);

        transition:
            visibility 300ms ease,
            opacity 300ms ease,
            transform 400ms cubic-bezier(0.22, 1, 0.36, 1);
    }

    .site-header__mobile-menu.is-open {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .site-header__mobile-menu nav {
        display: flex;
        flex-direction: column;
        padding: 20px;
    }

    .site-header__mobile-menu a {
        display: block;
        padding: 14px 12px;
        color: #ffffff;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        font-size: 14px;
    }
}

.site-header__main-menu,
.site-header__main-menu ul,
.site-header__utility-menu,
.site-header__mobile-nav,
.site-header__mobile-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-header__main-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.site-header__main-menu > li {
    position: relative;
}

.site-header__main-menu > li > a {
    display: flex;
    align-items: center;
    min-height: 72px;
    text-decoration: none;
}

.site-header__main-menu .menu-item-has-children > a::after {
    content: "";
    width: 7px;
    height: 7px;
    margin-left: 8px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
}

.site-header__main-menu .sub-menu {
    position: absolute;
    top: calc(100% - 4px);
    left: 0;
    z-index: 1000;

    min-width: 240px;
    padding: 10px;

    visibility: hidden;
    opacity: 0;
    pointer-events: none;

    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(17, 24, 39, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(18px);
    box-shadow: 0 16px 40px rgba(17, 24, 39, 0.12);

    transform: translateY(10px);

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;
}

.site-header__main-menu li:hover > .sub-menu,
.site-header__main-menu li:focus-within > .sub-menu {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.site-header__main-menu .sub-menu li {
    position: relative;
}

.site-header__main-menu .sub-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 11px 14px;

    color: #172033;
    text-decoration: none;
    white-space: nowrap;
    border-radius: 10px;
}

.site-header__main-menu .sub-menu a:hover,
.site-header__main-menu .sub-menu a:focus-visible {
    background: rgba(17, 24, 39, 0.06);
}

.site-header__main-menu .sub-menu .sub-menu {
    top: 0;
    left: calc(100% + 8px);
}

.site-header__utility-menu {
    display: flex;
    align-items: center;
    gap: 18px;
}

.site-header__utility-menu a {
    text-decoration: none;
}

/* Mobile menu */

.site-header__mobile-nav > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-header__mobile-nav a {
    display: block;
    padding: 14px 0;
    text-decoration: none;
}

.site-header__mobile-nav .sub-menu {
    padding-left: 18px;
}

.site-header__mobile-nav .sub-menu a {
    padding: 10px 0;
    opacity: 0.85;
}

.site-header__language-switcher {
    position: relative;
}

.site-header__language-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 1100;

    min-width: 150px;
    padding: 8px;

    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);

    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(17, 24, 39, 0.1);
    border-radius: 14px;
    backdrop-filter: blur(18px);

    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        transform 0.2s ease;
}

.site-header__language-switcher.is-open
.site-header__language-dropdown {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.site-header__language-dropdown a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;

    padding: 10px 12px;
    color: #172033;
    text-decoration: none;
    border-radius: 9px;
}

.site-header__language-dropdown a:hover,
.site-header__language-dropdown a:focus-visible {
    background: rgba(17, 24, 39, 0.06);
}

.site-header__language-dropdown a.is-current {
    font-weight: 700;
}

.site-header__language-dropdown small {
    opacity: 0.65;
}


/* =========================================================
   HERO BASE
========================================================= */

.hero-showcase {
    position: relative;

    width: 100%;
    height: 100svh;
    min-height: 760px;

    overflow: hidden;

    color: #ffffff;

    background: #061a38;

    isolation: isolate;
}

.hero-showcase__slides,
.hero-slide {
    position: absolute;
    inset: 0;
}

.hero-slide {
    z-index: 1;

    visibility: hidden;
    opacity: 0;

    transition:
        visibility 950ms ease,
        opacity 950ms ease;
}

.hero-slide.is-active {
    z-index: 2;

    visibility: visible;
    opacity: 1;
}

.hero-slide__media {
    position: absolute;
    inset: 0;

    overflow: hidden;
}

.hero-slide__image,
.hero-slide__video {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center 42%;

    filter:
        saturate(1.02)
        contrast(1.02);

    transform: scale(1.065);

    transition:
        transform 8500ms linear;
}

.hero-slide.is-active
.hero-slide__image,
.hero-slide.is-active
.hero-slide__video {
    transform: scale(1);
}


/* =========================================================
   HERO OVERLAY — LIGHTER AND CLEANER
========================================================= */

.hero-slide__overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(1, 13, 31, 0.92) 0%,
            rgba(2, 17, 39, 0.72) 24%,
            rgba(2, 18, 39, 0.38) 44%,
            rgba(2, 18, 39, 0.08) 66%,
            rgba(2, 18, 39, 0.12) 100%
        ),
        linear-gradient(
            180deg,
            rgba(2, 14, 32, 0.21) 0%,
            transparent 39%,
            rgba(2, 14, 32, 0.18) 100%
        );
}

.hero-slide__overlay--video {
    background:
        linear-gradient(
            90deg,
            rgba(1, 13, 31, 0.89) 0%,
            rgba(2, 17, 39, 0.63) 31%,
            rgba(2, 17, 39, 0.16) 66%,
            rgba(2, 17, 39, 0.12) 100%
        ),
        linear-gradient(
            180deg,
            rgba(1, 13, 31, 0.19),
            rgba(1, 13, 31, 0.18)
        );
}

.hero-slide__overlay--admissions {
    background:
        linear-gradient(
            90deg,
            rgba(1, 13, 31, 0.92),
            rgba(2, 18, 42, 0.65) 38%,
            rgba(2, 18, 42, 0.12) 72%
        ),
        linear-gradient(
            180deg,
            rgba(2, 14, 32, 0.16),
            rgba(2, 14, 32, 0.24)
        );
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-slide__container {
    position: relative;
    z-index: 5;

    width: min(
        calc(100% - 80px),
        var(--hero-container)
    );

    height: 100%;

    margin-inline: auto;
}

.hero-slide__content {
    position: absolute;

    top: 53%;
    left: 20px;

    width: min(610px, 47vw);

    transform: translateY(-50%);
}

.hero-slide__eyebrow {
    display: flex;
    flex-direction: column;

    width: fit-content;

    margin-bottom: 20px;

    color: var(--wist-gold);

    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.hero-slide__eyebrow i {
    width: 31px;
    height: 2px;

    margin-top: 11px;

    background:
        linear-gradient(
            90deg,
            #f4b900,
            #ffd64c
        );

    box-shadow:
        0 0 15px rgba(244, 185, 0, 0.34);
}

.hero-slide__title {
    margin: 0;

    color: #ffffff;

    font-size: clamp(55px, 5.1vw, 82px);
    font-weight: 800;
    line-height: 1.005;
    letter-spacing: -0.067em;
}

.hero-slide__title > span {
    display: block;
}

.hero-slide__gradient {
    width: fit-content;

    color: transparent;

    background:
        linear-gradient(
            90deg,
            #2687ff 0%,
            #635fe6 48%,
            #ff334a 100%
        );

    background-clip: text;
    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;
}

.hero-slide__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 14px;

    margin-top: 34px;
}


/* =========================================================
   HERO BUTTONS — GLASS + LIGHT SWEEP
========================================================= */

.hero-button {
    position: relative;

    min-height: 55px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 27px;

    overflow: hidden;

    padding:
        0 22px;

    border-radius: 7px;

    font-size: 11px;
    font-weight: 800;

    cursor: pointer;

    isolation: isolate;

    transition:
        color 300ms ease,
        border-color 300ms ease,
        background 300ms ease,
        box-shadow 350ms ease,
        transform 500ms var(--ease-premium);
}

.hero-button::before {
    content: "";

    position: absolute;
    z-index: -1;

    inset: 0;

    background:
        radial-gradient(
            circle at
            var(--hero-button-x, 50%)
            var(--hero-button-y, 50%),
            rgba(255, 255, 255, 0.34),
            transparent 50%
        );

    opacity: 0;

    transition:
        opacity 300ms ease;
}

.hero-button::after {
    content: "";

    position: absolute;

    top: -80%;
    left: -65%;

    width: 42%;
    height: 260%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.58),
            transparent
        );

    transform: rotate(18deg);

    transition:
        left 900ms var(--ease-premium);
}

.hero-button:hover::before {
    opacity: 1;
}

.hero-button:hover::after {
    left: 135%;
}

.hero-button svg {
    width: 18px;
    height: 18px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;

    transition:
        transform 400ms var(--ease-premium);
}

.hero-button:hover svg {
    transform: translateX(5px);
}

.hero-button--primary {
    color: #ffffff;

    border:
        1px solid rgba(255, 255, 255, 0.18);

    background:
        linear-gradient(
            135deg,
            #ff3449,
            #ee1f36
        );

    box-shadow:
        0 15px 34px rgba(239, 31, 54, 0.27),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.hero-button--primary:hover {
    transform:
        perspective(700px)
        rotateX(2deg)
        translateY(-2px)
        scale(1.025);

    box-shadow:
        0 21px 45px rgba(239, 31, 54, 0.36),
        0 0 23px rgba(255, 52, 73, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.hero-button--glass {
    color: #ffffff;

    border:
        1px solid rgba(255, 255, 255, 0.57);

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.105),
            rgba(255, 255, 255, 0.035)
        );

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.14);

    backdrop-filter:
        blur(16px)
        saturate(120%);

    -webkit-backdrop-filter:
        blur(16px)
        saturate(120%);
}

.hero-button--glass:hover {
    color: #061a38;

    border-color:
        rgba(255, 255, 255, 0.92);

    background:
        rgba(255, 255, 255, 0.93);

    transform:
        perspective(700px)
        rotateX(2deg)
        translateY(-2px)
        scale(1.02);

    box-shadow:
        0 18px 39px rgba(2, 15, 34, 0.18),
        inset 0 1px 0 #ffffff;
}

button.hero-button {
    border-style: solid;
}


/* =========================================================
   TEXT REVEAL
========================================================= */

.hero-animate {
    opacity: 0;

    filter: blur(9px);

    transform:
        translateY(34px)
        scale(0.985);
}

.hero-slide.is-active
.hero-animate {
    animation:
        heroPremiumReveal
        900ms
        var(--ease-premium)
        forwards;

    animation-delay:
        var(--delay, 0ms);
}

@keyframes heroPremiumReveal {
    to {
        opacity: 1;

        filter: blur(0);

        transform:
            translateY(0)
            scale(1);
    }
}


/* =========================================================
   HERO ARROWS
========================================================= */

.hero-showcase__side-controls {
    position: absolute;
    z-index: 20;

    top: 52%;
    right: max(
        58px,
        calc((100vw - var(--hero-container)) / 2)
    );

    display: flex;
    align-items: center;
    gap: 12px;

    transform: translateY(-50%);
}

.hero-showcase__arrow {
    position: relative;

    width: 47px;
    height: 47px;

    display: grid;
    place-items: center;

    overflow: hidden;

    padding: 0;

    color: #ffffff;

    border:
        1px solid rgba(255, 255, 255, 0.68);

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.07);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.14);

    backdrop-filter: blur(15px);

    cursor: pointer;

    transition:
        border-color 300ms ease,
        background 300ms ease,
        box-shadow 300ms ease,
        transform 450ms var(--ease-premium);
}

.hero-showcase__arrow::before {
    content: "";

    position: absolute;

    inset: 0;

    border-radius: inherit;

    background:
        radial-gradient(
            circle at 50% 100%,
            rgba(255, 255, 255, 0.34),
            transparent 57%
        );

    opacity: 0;

    transform: scale(0.7);

    transition:
        opacity 300ms ease,
        transform 450ms var(--ease-premium);
}

.hero-showcase__arrow:hover {
    border-color:
        rgba(255, 255, 255, 0.94);

    background:
        rgba(36, 124, 244, 0.9);

    box-shadow:
        0 13px 30px rgba(36, 124, 244, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.24);

    transform:
        rotate(-6deg)
        scale(1.08);
}

.hero-showcase__arrow:hover::before {
    opacity: 1;
    transform: scale(1);
}

.hero-showcase__arrow svg {
    position: relative;
    z-index: 2;

    width: 19px;
    height: 19px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   VERTICAL PAGINATION
========================================================= */

.hero-showcase__pagination {
    position: absolute;
    z-index: 20;

    top: calc(52% + 82px);
    right: max(
        58px,
        calc((100vw - var(--hero-container)) / 2)
    );

    display: flex;
    flex-direction: column;

    gap: 18px;
}

.hero-pagination-button {
    position: relative;

    min-width: 40px;

    display: flex;
    align-items: center;

    gap: 9px;

    padding: 0;

    color: rgba(255, 255, 255, 0.42);

    border: 0;
    background: transparent;

    font-size: 11px;
    font-weight: 600;

    cursor: pointer;

    transition:
        color 300ms ease,
        transform 300ms ease;
}

.hero-pagination-button::before {
    content: "";

    width: 0;
    height: 1px;

    background: #ffffff;

    box-shadow:
        0 0 8px rgba(255, 255, 255, 0.3);

    transition:
        width 350ms var(--ease-premium);
}

.hero-pagination-button:hover {
    color: #ffffff;
    transform: translateX(-3px);
}

.hero-pagination-button.is-active {
    color: #ffffff;
    font-weight: 800;
}

.hero-pagination-button.is-active::before {
    width: 17px;
}


/* =========================================================
   BOTTOM COUNTER + PROGRESS
========================================================= */

.hero-showcase__counter {
    position: absolute;
    z-index: 20;

    bottom: 85px;
    left: max(
        78px,
        calc((100vw - var(--hero-container)) / 2 + 20px)
    );

    display: flex;
    align-items: baseline;

    gap: 7px;
}

.hero-showcase__counter strong {
    color: #ffffff;

    font-size: 18px;
    font-weight: 800;
}

.hero-showcase__counter span,
.hero-showcase__counter small {
    color: rgba(255, 255, 255, 0.55);

    font-size: 11px;
    font-weight: 600;
}

.hero-showcase__progress {
    position: absolute;
    z-index: 20;

    bottom: 91px;

    left: max(
        150px,
        calc((100vw - var(--hero-container)) / 2 + 95px)
    );

    width: min(375px, 27vw);
    height: 3px;

    overflow: hidden;

    border-radius: 20px;

    background:
        rgba(255, 255, 255, 0.19);
}

.hero-showcase__progress span {
    width: 0;
    height: 100%;

    display: block;

    border-radius: inherit;

    background:
        linear-gradient(
            90deg,
            #ffffff,
            #cfe5ff
        );

    box-shadow:
        0 0 11px rgba(255, 255, 255, 0.4);
}

.hero-showcase.is-playing
.hero-showcase__progress span {
    animation:
        heroProgress
        var(--hero-delay, 7000ms)
        linear forwards;
}

@keyframes heroProgress {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1300px) {
    .site-header__container,
    .hero-slide__container {
        width:
            calc(100% - 50px);
    }

    .site-header__navigation {
        grid-template-columns:
            minmax(205px, 0.75fr)
            minmax(500px, 1.6fr)
            auto;

        gap: 18px;
    }

    .site-header__brand img {
        width: 205px;
    }

    .site-header__main-nav {
        gap: 25px;
    }

    .site-header__main-nav a {
        font-size: 16px;
    }

    .hero-slide__content {
        width: min(560px, 48vw);
    }

    .hero-slide__title {
        font-size: clamp(52px, 5.3vw, 73px);
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {
    .site-header__utility-left
    .site-header__utility-link:last-child,
    .site-header__utility-nav {
        display: none;
    }

    .site-header__navigation {
        grid-template-columns:
            1fr auto;
    }

    .site-header__main-nav {
        display: none;
    }

    .site-header__menu {
        display: grid;
    }

    .hero-slide__content {
        width: min(600px, 70vw);
    }

    .hero-showcase__pagination {
        display: none;
    }

    .hero-showcase__side-controls {
        top: auto;
        right: 28px;
        bottom: 67px;

        transform: none;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {
    :root {
        --utility-height: 39px;
        --navigation-height: 70px;
    }

    .site-header__container,
    .hero-slide__container {
        width:
            calc(100% - 28px);
    }

    .site-header__utility-left
    .site-header__utility-link:nth-child(2),
    .site-header__utility-right {
        display: none;
    }

    .site-header__navigation-wrap {
        padding-top: 8px;
    }

    .site-header__navigation {
        height:
            var(--navigation-height);

        padding:
            0 10px
            0 15px;

        border-radius: 15px;
    }

    .site-header__brand img {
        width: 178px;
    }

    .site-header__apply {
        display: none;
    }

    .site-header__menu {
        width: 42px;
        height: 42px;
    }

    .hero-showcase {
        min-height: 700px;
    }

    .hero-slide__image,
    .hero-slide__video {
        object-position: 60% center;
    }

    .hero-slide__overlay {
        background:
            linear-gradient(
                90deg,
                rgba(1, 13, 31, 0.88),
                rgba(1, 13, 31, 0.48)
            ),
            linear-gradient(
                180deg,
                rgba(1, 13, 31, 0.2),
                rgba(1, 13, 31, 0.42)
            );
    }

    .hero-slide__content {
        top: 54%;
        left: 0;

        width: 100%;
    }

    .hero-slide__title {
        font-size:
            clamp(48px, 14vw, 65px);
    }

    .hero-slide__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-button {
        width: 100%;
        justify-content: space-between;
    }

    .hero-showcase__side-controls {
        right: 14px;
        bottom: 35px;
    }

    .hero-showcase__counter {
        left: 15px;
        bottom: 47px;
    }

    .hero-showcase__progress {
        right: 120px;
        bottom: 53px;
        left: 69px;

        width: auto;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
    .site-header__navigation::after {
        animation: none;
    }

    .hero-slide,
    .hero-slide__image,
    .hero-slide__video,
    .hero-animate,
    .hero-button,
    .hero-showcase__arrow {
        transition-duration: 0.01ms;
        animation-duration: 0.01ms;
    }
}

/* =========================================================
   GLOBAL RECOGNITION
========================================================= */

.recognition-section {
    position: relative;
    z-index: 4;
    padding:50px 0 20px;
    overflow: hidden;
    isolation: isolate;
}

.recognition-section__container {
    position: relative;
    z-index: 4;
    width: min(calc(100% - 80px), 1440px);
    margin-inline: auto;
}


/* =========================================================
   BACKGROUND
========================================================= */

.recognition-section__background {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.recognition-section__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
}

.recognition-section__orb--gold {
    top: 210px;
    left: -95px;
    width: 205px;
    height: 205px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 193, 0, 0.95),
            rgba(255, 168, 0, 0.72)
        );
}

.recognition-section__orb--blue {
    top: -210px;
    right: -180px;
    width: 460px;
    height: 460px;
    background:
        radial-gradient(
            circle at 35% 55%,
            rgba(72, 139, 244, 0.25),
            rgba(72, 139, 244, 0.06) 67%,
            transparent 73%
        );
}

.recognition-section__dots {
    position: absolute;
    width: 125px;
    height: 100px;
    opacity: 0.25;
    background-image:
        radial-gradient(
            circle,
            #73a0e1 2px,
            transparent 2.5px
        );
    background-size: 21px 21px;
}

.recognition-section__dots--left {
    left: 25px;
    bottom: 70px;
}

.recognition-section__dots--right {
    top: 80px;
    right: 22px;
}

.recognition-section__word {
    position: absolute;
    top: 30px;
    left: 50%;
    color: rgba(7, 27, 61, 0.022);
    font-family: "Manrope", sans-serif;
    font-size: clamp(130px, 18vw, 290px);
    font-weight: 800;
    line-height: 0.8;
    letter-spacing: -0.08em;
    transform: translateX(-50%);
}


/* =========================================================
   HEADER
========================================================= */

.recognition-section__header {
    display: grid;
    grid-template-columns: 1fr 0.72fr;
    align-items: end;
    gap: 75px;
    margin-bottom: 63px;
}

.recognition-section__eyebrow {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 23px;
    color: #e9aa00;
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.recognition-section__eyebrow-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    color: #e9aa00;
    border: 1px solid rgba(255, 255, 255, 0.93);
    border-radius: 50%;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.94),
            rgba(255, 245, 213, 0.7)
        );
    box-shadow:
        0 13px 29px rgba(40, 74, 132, 0.09),
        inset 0 1px 0 #ffffff;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.recognition-section__eyebrow-icon svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.45;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.recognition-section__title {
    margin: 0;
    color: #071b3d;
    font-family: "Manrope", sans-serif;
    font-size: clamp(60px, 6vw, 92px);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.068em;
}

.recognition-section__title span {
    display: block;
    width: fit-content;
    color: transparent;
    background:
        linear-gradient(
            90deg,
            #267cf4 0%,
            #6971e1 50%,
            #f13245 100%
        );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.recognition-section__intro {
    padding-bottom: 5px;
}

.recognition-section__intro p {
    max-width: 505px;
    margin: 0 0 26px;
    color: #60708a;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.82;
}

.recognition-section__link {
    display: inline-flex;
    align-items: center;
    gap: 17px;
    color: #071b3d;
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 800;
}

.recognition-section__link svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 350ms ease;
}

.recognition-section__link:hover svg {
    transform: translateX(6px);
}


/* =========================================================
   MARQUEE
========================================================= */

.recognition-marquee {
    --recognition-gap: 20px;
    --recognition-duration: 42s;

    position: relative;
    z-index: 5;
    width: 100%;
    overflow: hidden;
    padding: 25px 0 37px;
    outline: none;
}

.recognition-marquee__track {
    display: flex;
    width: max-content;
    will-change: transform;
    animation:
        recognitionMarquee
        var(--recognition-duration)
        linear infinite;
}

.recognition-marquee__group {
    display: flex;
    align-items: stretch;
    gap: var(--recognition-gap);
    padding-right: var(--recognition-gap);
}

@keyframes recognitionMarquee {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }
}



/* =========================================================
   CARD
========================================================= */

.recognition-card {
    --partner-rgb: 38, 124, 244;

    position: relative;
    flex: 0 0 255px;
    width: 255px;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    padding: 26px 23px 21px;
    color: #071b3d;
    border: 1px solid rgba(255, 255, 255, 0.93);
    border-radius: 25px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.79),
            rgba(228, 237, 251, 0.53)
        );
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 15px 38px rgba(35, 70, 128, 0.075);
    backdrop-filter:
        blur(24px)
        saturate(126%);
    -webkit-backdrop-filter:
        blur(24px)
        saturate(126%);
    isolation: isolate;
    transition:
        border-color 350ms ease,
        background 350ms ease,
        box-shadow 350ms ease,
        transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.recognition-card::before {
    content: "";
    position: absolute;
    z-index: -3;
    inset: 0;
    background:
        radial-gradient(
            circle at 50% 110%,
            rgba(var(--partner-rgb), 0.22),
            transparent 56%
        );
    opacity: 0;
    transform: scale(0.72);
    transition:
        opacity 350ms ease,
        transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.recognition-card__light {
    position: absolute;
    z-index: -1;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(
            circle at
            var(--recognition-x, 50%)
            var(--recognition-y, 50%),
            rgba(255, 255, 255, 0.95),
            rgba(255, 255, 255, 0.18) 21%,
            transparent 47%
        );
    opacity: 0;
    transition: opacity 250ms ease;
}

.recognition-card__reflection {
    position: absolute;
    z-index: 4;
    top: -70%;
    left: -65%;
    width: 42%;
    height: 245%;
    pointer-events: none;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.74),
            transparent
        );
    transform: rotate(18deg);
    transition:
        left 950ms cubic-bezier(0.22, 1, 0.36, 1);
}

.recognition-card__outline {
    position: absolute;
    z-index: -2;
    top: 32px;
    left: 50%;
    color: rgba(var(--partner-rgb), 0.045);
    font-family: "Manrope", sans-serif;
    font-size: 41px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.07em;
    white-space: nowrap;
    transform:
        translateX(-50%)
        scale(1);
    transition:
        color 350ms ease,
        transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.recognition-card__logo {
    position: relative;
    z-index: 3;
    min-height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.recognition-card__logo img {
    width: auto;
    max-width: 100%;
    max-height: 76px;
    display: block;
    object-fit: contain;
    opacity: 0.72;
    filter:
        grayscale(0.9)
        saturate(0.58)
        contrast(0.94);
    transform: scale(0.96);
    transition:
        opacity 350ms ease,
        filter 450ms ease,
        transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.recognition-card__details {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 5px;
    transform: translateY(7px);
    transition:
        transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.recognition-card__details strong {
    color: #071b3d;
    font-size: 13px;
    font-weight: 800;
}

.recognition-card__details span {
    color: #718097;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.045em;
}


/* =========================================================
   CARD HOVER
========================================================= */

.recognition-marquee:has(.recognition-card:hover)
.recognition-card:not(:hover) {
    opacity: 0.68;
    filter: saturate(0.72);
}

.recognition-card:hover,
.recognition-card:focus-visible {
    z-index: 10;
    border-color: rgba(var(--partner-rgb), 0.32);
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.94),
            rgba(var(--partner-rgb), 0.075)
        );
    box-shadow:
        0 23px 55px rgba(34, 70, 128, 0.14),
        0 0 0 5px rgba(255, 255, 255, 0.42),
        inset 0 1px 0 #ffffff;
    transform:
        perspective(950px)
        translateY(-8px)
        rotateX(2deg)
        scale(1.035);
}

.recognition-card:hover::before,
.recognition-card:focus-visible::before {
    opacity: 1;
    transform: scale(1);
}

.recognition-card:hover
.recognition-card__light,
.recognition-card:focus-visible
.recognition-card__light {
    opacity: 1;
}

.recognition-card:hover
.recognition-card__reflection,
.recognition-card:focus-visible
.recognition-card__reflection {
    left: 135%;
}

.recognition-card:hover
.recognition-card__outline,
.recognition-card:focus-visible
.recognition-card__outline {
    color: rgba(var(--partner-rgb), 0.075);
    transform:
        translateX(-50%)
        scale(1.13);
}

.recognition-card:hover
.recognition-card__logo img,
.recognition-card:focus-visible
.recognition-card__logo img {
    opacity: 1;
    filter:
        grayscale(0)
        saturate(1)
        contrast(1);
    transform: scale(1.055);
}

.recognition-card:hover
.recognition-card__details,
.recognition-card:focus-visible
.recognition-card__details {
    transform: translateY(0);
}


/* =========================================================
   INDIVIDUAL LOGO BALANCE
========================================================= */

.recognition-card--cambridge {
    flex-basis: 315px;
    width: 315px;
}

.recognition-card--cambridge
.recognition-card__logo img {
    max-width: 245px;
    max-height: 85px;
}

.recognition-card--pearson
.recognition-card__logo img {
    max-width: 145px;
    max-height: 65px;
}

.recognition-card--cis
.recognition-card__logo img {
    max-width: 145px;
    max-height: 95px;
}

.recognition-card--ieyc
.recognition-card__logo img,
.recognition-card--ipc
.recognition-card__logo img {
    max-width: 145px;
    max-height: 78px;
}

.recognition-card--ucas
.recognition-card__logo img {
    max-width: 155px;
    max-height: 58px;
}


/* =========================================================
   FADES
========================================================= */

.recognition-marquee__fade {
    position: absolute;
    z-index: 20;
    top: 0;
    bottom: 0;
    width: 120px;
    pointer-events: none;
}

.recognition-marquee__fade--left {
    left: 0;
    background:
        linear-gradient(
            90deg,
            #fbfcff,
            rgba(251, 252, 255, 0.82) 36%,
            transparent
        );
}

.recognition-marquee__fade--right {
    right: 0;
    background:
        linear-gradient(
            -90deg,
            #f7f9ff,
            rgba(247, 249, 255, 0.82) 36%,
            transparent
        );
}


/* =========================================================
   STATS
========================================================= */

.recognition-stats {
    position: relative;
    z-index: 4;
    min-height: 116px;
    display: grid;
    grid-template-columns:
        1fr auto
        1fr auto
        1fr;
    align-items: center;
    gap: 32px;
    margin-top: 28px;
    padding: 23px 38px;
    border: 1px solid rgba(255, 255, 255, 0.93);
    border-radius: 25px;
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.75),
            rgba(229, 238, 252, 0.52)
        );
    box-shadow:
        inset 0 1px 0 #ffffff;
    backdrop-filter:
        blur(23px)
        saturate(125%);
    -webkit-backdrop-filter:
        blur(23px)
        saturate(125%);
}

.recognition-stats > i {
    width: 1px;
    height: 48px;
    background:
        linear-gradient(
            transparent,
            rgba(69, 100, 147, 0.17),
            transparent
        );
}

.recognition-stat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 17px;
}

.recognition-stat strong {
    color: #267cf4;
    font-family: "Manrope", sans-serif;
    font-size: 35px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.055em;
}

.recognition-stat span {
    max-width: 135px;
    color: #52627b;
    font-size: 11px;
    font-weight: 750;
    line-height: 1.45;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {
    .recognition-section__container {
        width: min(calc(100% - 42px), 900px);
    }

    .recognition-section__header {
        grid-template-columns: 1fr;
        gap: 27px;
        margin-bottom: 42px;
    }

    .recognition-section__intro p {
        max-width: 670px;
    }

    .recognition-marquee {
        --recognition-duration: 36s;
    }

    .recognition-card {
        flex-basis: 230px;
        width: 230px;
        height: 235px;
    }

    .recognition-card--cambridge {
        flex-basis: 285px;
        width: 285px;
    }

    .recognition-stats {
        gap: 18px;
        padding-inline: 25px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {
    .recognition-section {
        padding: 68px 0 65px;
    }

    .recognition-section__container {
        width: min(calc(100% - 28px), 620px);
    }

    .recognition-section__header {
        text-align: center;
    }

    .recognition-section__eyebrow {
        justify-content: center;
    }

    .recognition-section__title {
        font-size: clamp(51px, 14vw, 70px);
    }

    .recognition-section__title span {
        margin-inline: auto;
    }

    .recognition-section__intro p {
        margin-inline: auto;
    }

    .recognition-section__link {
        justify-content: center;
    }

    .recognition-marquee {
        --recognition-gap: 14px;
        --recognition-duration: 30s;
        padding-top: 15px;
    }

    .recognition-card {
        flex-basis: 215px;
        width: 215px;
        height: 225px;
        padding-inline: 19px;
    }

    .recognition-card--cambridge {
        flex-basis: 270px;
        width: 270px;
    }

    .recognition-marquee__fade {
        width: 35px;
    }

    .recognition-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 28px 22px;
    }

    .recognition-stats > i {
        width: 100%;
        height: 1px;
        background:
            linear-gradient(
                90deg,
                transparent,
                rgba(69, 100, 147, 0.16),
                transparent
            );
    }

    .recognition-stat {
        justify-content: flex-start;
    }

    .recognition-section__orb--gold {
        left: -105px;
    }

    .recognition-section__word,
    .recognition-section__dots {
        display: none;
    }
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

.recognition-card:focus-visible {
    outline: 3px solid rgba(38, 124, 244, 0.24);
    outline-offset: 4px;
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
    .recognition-marquee__track {
        animation: none;
    }

    .recognition-card,
    .recognition-card::before,
    .recognition-card__logo img,
    .recognition-card__reflection,
    .recognition-card__outline {
        transition-duration: 0.01ms;
    }
}



/* =========================================================
   LEADERSHIP MESSAGE SECTION
========================================================= */

.leadership-section {
    position: relative;
    z-index: 1;
    min-height: 880px;
    padding: 105px 0 65px;
    overflow: hidden;
    isolation: isolate;
    background:
        #ffffff;
}


.leadership-container {
    position: relative;
    z-index: 5;
    width: min(
        calc(100% - 120px),
        var(--container-width, 1440px)
    );
    margin-inline: auto;
}

.leadership-grid {
    display: grid;
    grid-template-columns:
        minmax(420px, 0.78fr)
        minmax(620px, 1.22fr);
    align-items: center;
    gap: clamp(55px, 6vw, 105px);
}


/* =========================================================
   LEADERSHIP LEFT CONTENT
========================================================= */

.leadership-content {
    position: relative;
    z-index: 5;
    max-width: 555px;
    padding-left: 12px;
}

.leadership-eyebrow {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 28px;
    color: var(--color-yellow, #fcb900);
    font-family: var(--font-heading, "Manrope", sans-serif);
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

.leadership-eyebrow__icon {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    color: #f2ad00;
    border: 1px solid rgba(7, 27, 61, 0.08);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.87);
    box-shadow:
        0 8px 24px rgba(7, 27, 61, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.leadership-eyebrow__icon svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.leadership-eyebrow__shape {
    width: 14px;
    height: 14px;
    background: currentColor;
    clip-path:
        polygon(
            0 0,
            100% 0,
            100% 55%,
            55% 55%,
            55% 100%,
            0 100%
        );
}

.leadership-title {
    margin: 0 0 32px;
    color: var(--color-navy, #071b3d);
    font-family: var(--font-heading, "Manrope", sans-serif);
    font-size: clamp(62px, 5.4vw, 86px);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.065em;
}

.leadership-title > span {
    display: block;
}

.leadership-title__gradient {
    margin-top: 8px;
    color: transparent;
    background:
        linear-gradient(
            90deg,
            #2479f3 0%,
            #2f85f6 72%,
            #ed293c 100%
        );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.leadership-title__dot {
    color: var(--color-red, #ed1c2f);
    -webkit-text-fill-color: var(--color-red, #ed1c2f);
}

.leadership-quote {
    position: relative;
    margin: 0 0 28px;
    padding: 43px 0 0;
    border: 0;
}

.leadership-quote__mark {
    position: absolute;
    top: -3px;
    left: -2px;
    color: var(--color-yellow, #fcb900);
    font-family: Georgia, serif;
    font-size: 73px;
    font-weight: 700;
    line-height: 1;
}

.leadership-quote p {
    max-width: 525px;
    margin: 0;
    color: #142a4c;
    font-family: var(--font-body, "DM Sans", sans-serif);
    font-size: 17px;
    font-weight: 500;
    line-height: 1.66;
}

.leadership-signature {
    display: flex;
    align-items: center;
    gap: 17px;
    margin-bottom: 27px;
}

.leadership-signature__line {
    width: 22px;
    height: 2px;
    margin-top: -14px;
    background: var(--color-navy, #071b3d);
}

.leadership-signature__name {
    margin-bottom: 4px;
    color: #092448;
    font-family:
        "Brush Script MT",
        "Segoe Script",
        cursive;
    font-size: 38px;
    font-weight: 500;
    line-height: 1;
    transform: rotate(-4deg);
    transform-origin: left center;
}

.leadership-signature__role {
    margin: 12px 0 0;
    color: #1b2c4a;
    font-size: 14px;
    font-weight: 600;
}

.leadership-button {
    position: relative;
    min-width: 240px;
    min-height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 0 30px;
    overflow: hidden;
    color: #ffffff;
    border-radius: 8px;
    background:
        linear-gradient(
            135deg,
            #ff3647 0%,
            #eb1d31 100%
        );
    box-shadow:
        0 17px 35px rgba(237, 28, 47, 0.27);
    font-family: var(--font-heading, "Manrope", sans-serif);
    font-size: 15px;
    font-weight: 700;
    isolation: isolate;
    transition:
        transform 350ms cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

.leadership-button::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -70%;
    left: -30%;
    width: 55%;
    height: 250%;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.32),
            transparent
        );
    transform: rotate(18deg) translateX(-210%);
    transition: transform 700ms ease;
}

.leadership-button svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 300ms ease;
}

.leadership-button:hover,
.leadership-button:focus-visible {
    transform: translateY(-4px);
    box-shadow:
        0 22px 45px rgba(237, 28, 47, 0.34);
}

.leadership-button:hover::before,
.leadership-button:focus-visible::before {
    transform: rotate(18deg) translateX(420%);
}

.leadership-button:hover svg,
.leadership-button:focus-visible svg {
    transform: translateX(5px);
}


/* =========================================================
   LEADERSHIP MEDIA
========================================================= */

.leadership-media-wrapper {
    position: relative;
    min-width: 0;
    padding-bottom: 122px;
}

.leadership-media {
    position: relative;
    height: 540px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.74);
    border-radius: 32px;
    background: #dce5ef;
    box-shadow:
        0 30px 80px rgba(20, 65, 145, 0.19),
        0 2px 0 rgba(255, 255, 255, 0.84) inset;
}

.leadership-media::before {
    content: "";
    position: absolute;
    z-index: 4;
    inset: 0;
    border-radius: inherit;
    box-shadow:
        inset 0 0 0 1px rgba(51, 119, 241, 0.18),
        inset 0 0 34px rgba(255, 255, 255, 0.22);
    pointer-events: none;
}

.leadership-media__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 26%;
    transition:
        transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.leadership-media:hover .leadership-media__video {
    transform: scale(1.025);
}

.leadership-media__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(231, 243, 255, 0.57) 0%,
            rgba(255, 255, 255, 0.07) 37%,
            rgba(7, 27, 61, 0.04) 100%
        );
    pointer-events: none;
}


/* =========================================================
   PLAY BUTTON
========================================================= */

.leadership-play {
    position: absolute;
    z-index: 7;
    top: 60px;
    left: 42px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 15px;
    padding: 0;
    color: var(--color-navy, #071b3d);
    background: transparent;
    cursor: pointer;
}

.leadership-play__circle {
    position: relative;
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    color: #1876f2;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
    box-shadow:
        0 16px 36px rgba(25, 81, 165, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    transition:
        color 300ms ease,
        background-color 300ms ease,
        transform 350ms cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 350ms ease;
}

.leadership-play__circle::before {
    content: "";
    position: absolute;
    inset: -10px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.8);
    transition:
        opacity 350ms ease,
        transform 350ms ease;
}

.leadership-play__circle svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.leadership-play__text {
    font-family: var(--font-heading, "Manrope", sans-serif);
    font-size: 17px;
    font-weight: 800;
    line-height: 1.35;
    text-align: center;
}

.leadership-play:hover .leadership-play__circle,
.leadership-play:focus-visible .leadership-play__circle {
    color: #ffffff;
    background: #1976f3;
    transform: scale(1.07);
    box-shadow:
        0 18px 45px rgba(25, 118, 243, 0.36);
}

.leadership-play:hover .leadership-play__circle::before,
.leadership-play:focus-visible .leadership-play__circle::before {
    opacity: 1;
    transform: scale(1);
}


.leadership-media.is-playing
.leadership-play {
    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transform:
        translateY(-12px)
        scale(0.94);
}

.leadership-media-wrapper {
    position: relative;
}

.leadership-statistics {
    position: relative;
    z-index: 8;
}

/* Video ishlayotganida controls yopilib qolmasin */
.leadership-media.is-playing + .leadership-statistics {
    transform: translateY(18px);
}


/* =========================================================
   STATISTICS GLASS CARD
========================================================= */

.leadership-statistics {
    position: absolute;
    z-index: 10;
    right: 0;
    bottom: 15px;
    width: calc(100% + 30px);
    min-height: 155px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 2px solid rgba(255, 255, 255, 0.76);
    border-radius: 27px;
    background:
        linear-gradient(
            110deg,
            rgba(255, 255, 255, 0.82),
            rgba(231, 240, 255, 0.64)
        );
    box-shadow:
        0 26px 65px rgba(36, 82, 165, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(22px);
}

.leadership-statistic {
    position: relative;
    display: flex;
    align-items: center;
    gap: 17px;
    min-width: 0;
    padding: 28px 30px;
}

.leadership-statistic:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 25px;
    right: 0;
    bottom: 25px;
    width: 1px;
    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(7, 27, 61, 0.15),
            transparent
        );
}

.leadership-statistic__icon {
    flex: 0 0 auto;
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    color: #ffffff;
    border-radius: 50%;
    box-shadow:
        0 14px 30px rgba(7, 27, 61, 0.17);
    transition:
        transform 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

.leadership-statistic:hover .leadership-statistic__icon {
    transform: translateY(-5px) rotate(-4deg);
}

.leadership-statistic__icon--blue {
    background:
        linear-gradient(
            145deg,
            #398cf7,
            #156bf1
        );
}

.leadership-statistic__icon--red {
    background:
        linear-gradient(
            145deg,
            #ff4654,
            #ec1f32
        );
}

.leadership-statistic__icon--purple {
    background:
        linear-gradient(
            145deg,
            #bc6fe2,
            #9746d1
        );
}

.leadership-statistic__icon svg {
    width: 33px;
    height: 33px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.leadership-statistic__content {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.leadership-statistic__number {
    margin-bottom: 5px;
    font-family: var(--font-heading, "Manrope", sans-serif);
    font-size: 35px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.035em;
}

.leadership-statistic__number--blue {
    color: #2379f3;
}

.leadership-statistic__number--red {
    color: #ef2d3e;
}

.leadership-statistic__number--purple {
    color: #a65cdb;
}

.leadership-statistic__label {
    color: #172a49;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
}


/* =========================================================
   BOTTOM QUOTE CARD
========================================================= */

.leadership-highlight {
    position: relative;
    z-index: 6;
    width: 82%;
    min-height: 125px;
    display: flex;
    align-items: center;
    gap: 42px;
    margin: 48px auto 0;
    padding: 28px 70px;
    border: 1px solid rgba(72, 117, 200, 0.18);
    border-radius: 21px;
    background:
        linear-gradient(
            110deg,
            rgba(255, 255, 255, 0.91),
            rgba(235, 242, 255, 0.75)
        );
    box-shadow:
        0 22px 58px rgba(51, 96, 181, 0.13),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(18px);
}

.leadership-highlight__mark {
    flex: 0 0 auto;
    height: 70px;
    color: #317df3;
    font-family: Georgia, serif;
    font-size: 105px;
    font-weight: 700;
    line-height: 1;
}

.leadership-highlight__content {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.leadership-highlight blockquote {
    margin: 0;

    color: #071b3d;

    font-size: clamp(18px, 1.7vw, 25px);
    font-weight: 600;
    line-height: 1.55;
}

.leadership-highlight cite {
    position: relative;

    width: fit-content;

    padding-left: 38px;

    color: #267cf4;

    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 800;
    font-style: normal;
    letter-spacing: 0.03em;
}

.leadership-highlight cite::before {
    content: "";

    position: absolute;

    top: 50%;
    left: 0;

    width: 26px;
    height: 2px;

    background: #f0b000;

    transform: translateY(-50%);
}


/* =========================================================
   DECORATIONS
========================================================= */

.leadership-decoration {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    pointer-events: none;
}


.leadership-decoration--red {
    top: 250px;
    right: -125px;
    width: 280px;
    height: 280px;
    background:
        linear-gradient(
            145deg,
            #ff4051,
            #e91e31
        );
}

.leadership-decoration--yellow {
    left: -115px;
    bottom: 55px;
    width: 205px;
    height: 205px;
    background:
        linear-gradient(
            145deg,
            #ffca00,
            #ffad00
        );
}



/* =========================================================
   VIDEO MODAL
========================================================= */

.leadership-modal {
    position: fixed;
    z-index: 1000;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 30px;
    visibility: hidden;
    opacity: 0;
    transition:
        visibility 300ms ease,
        opacity 300ms ease;
}

.leadership-modal.is-open {
    visibility: visible;
    opacity: 1;
}

.leadership-modal__backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    background: rgba(2, 15, 37, 0.83);
    backdrop-filter: blur(12px);
    cursor: pointer;
}

.leadership-modal__dialog {
    position: relative;
    z-index: 2;
    width: min(100%, 1050px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 22px;
    background: #071b3d;
    box-shadow:
        0 35px 100px rgba(0, 0, 0, 0.44);
    transform: translateY(30px) scale(0.97);
    transition:
        transform 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

.leadership-modal.is-open .leadership-modal__dialog {
    transform: translateY(0) scale(1);
}

.leadership-modal__video {
    overflow: hidden;
    border-radius: inherit;
    aspect-ratio: 16 / 9;
}

.leadership-modal__video video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    background: #000000;
}

.leadership-modal__close {
    position: absolute;
    z-index: 5;
    top: -18px;
    right: -18px;
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 50%;
    background: #ed1c2f;
    box-shadow:
        0 12px 30px rgba(237, 28, 47, 0.35);
    cursor: pointer;
}

.leadership-modal__close span {
    position: absolute;
    top: 23px;
    left: 14px;
    width: 20px;
    height: 2px;
    background: #ffffff;
}

.leadership-modal__close span:first-child {
    transform: rotate(45deg);
}

.leadership-modal__close span:last-child {
    transform: rotate(-45deg);
}

body.leadership-modal-open {
    overflow: hidden;
}


/* =========================================================
   RESPONSIVE — LAPTOP
========================================================= */

@media (max-width: 1350px) {
    .leadership-container {
        width: min(
            calc(100% - 70px),
            1220px
        );
    }

    .leadership-grid {
        grid-template-columns:
            minmax(390px, 0.82fr)
            minmax(550px, 1.18fr);
        gap: 55px;
    }

    .leadership-title {
        font-size: 67px;
    }

    .leadership-quote p {
        font-size: 15px;
    }

    .leadership-media {
        height: 485px;
    }

    .leadership-statistics {
        min-height: 137px;
    }

    .leadership-statistic {
        gap: 13px;
        padding: 24px 20px;
    }

    .leadership-statistic__icon {
        width: 55px;
        height: 55px;
    }

    .leadership-statistic__number {
        font-size: 30px;
    }

    .leadership-statistic__label {
        font-size: 12px;
    }
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1050px) {
    .leadership-section {
        padding-top: 90px;
    }

    .leadership-container {
        width: min(
            calc(100% - 48px),
            900px
        );
    }

    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .leadership-content {
        max-width: 680px;
        padding-left: 0;
    }

    .leadership-title {
        font-size: clamp(58px, 8vw, 76px);
    }

    .leadership-quote p {
        max-width: 650px;
        font-size: 17px;
    }

    .leadership-media-wrapper {
        padding-bottom: 105px;
    }

    .leadership-media {
        height: 590px;
    }

    .leadership-statistics {
        left: 50%;
        right: auto;
        width: 94%;
        transform: translateX(-50%);
    }

    .leadership-highlight {
        width: 94%;
        margin-top: 50px;
        padding-inline: 45px;
    }

    .leadership-decoration--red {
        top: 56%;
    }
}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 767px) {
    .leadership-section {
        min-height: 0;
        padding: 72px 0 55px;
    }

    .leadership-container {
        width: min(
            calc(100% - 32px),
            680px
        );
    }

    .leadership-grid {
        gap: 44px;
    }

    .leadership-eyebrow {
        gap: 10px;
        margin-bottom: 23px;
        font-size: 11px;
    }

    .leadership-eyebrow__icon {
        width: 39px;
        height: 39px;
    }

    .leadership-title {
        margin-bottom: 26px;
        font-size: clamp(48px, 15vw, 67px);
        line-height: 1;
    }

    .leadership-quote {
        padding-top: 34px;
    }

    .leadership-quote__mark {
        font-size: 62px;
    }

    .leadership-quote p {
        font-size: 15px;
        line-height: 1.7;
    }

    .leadership-signature__name {
        font-size: 32px;
    }

    .leadership-button {
        width: 100%;
        min-height: 56px;
    }

    .leadership-media-wrapper {
        padding-bottom: 0;
    }

    .leadership-media {
        height: 480px;
        border-radius: 24px;
    }

    .leadership-media__image {
        object-position: 60% center;
    }

    .leadership-play {
        top: 30px;
        left: 24px;
    }

    .leadership-play__circle {
        width: 64px;
        height: 64px;
    }

    .leadership-play__text {
        font-size: 14px;
    }

    .leadership-statistics {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        width: 100%;
        grid-template-columns: 1fr;
        margin-top: -42px;
        border-radius: 22px;
        transform: none;
    }

    .leadership-statistic {
        min-height: 106px;
        padding: 20px 25px;
    }

    .leadership-statistic:not(:last-child)::after {
        top: auto;
        right: 22px;
        bottom: 0;
        left: 22px;
        width: auto;
        height: 1px;
        background:
            linear-gradient(
                90deg,
                transparent,
                rgba(7, 27, 61, 0.14),
                transparent
            );
    }

    .leadership-statistic__icon {
        width: 57px;
        height: 57px;
    }

    .leadership-statistic__number {
        font-size: 31px;
    }

    .leadership-statistic__label {
        font-size: 13px;
    }

    .leadership-highlight {
        width: 100%;
        align-items: flex-start;
        gap: 14px;
        margin-top: 34px;
        padding: 28px 23px;
        border-radius: 17px;
    }

    .leadership-highlight__mark {
        height: 46px;
        font-size: 72px;
    }

    .leadership-highlight p {
        font-size: 14px;
        line-height: 1.7;
    }

    .leadership-decoration--red {
        top: 51%;
        right: -145px;
        width: 230px;
        height: 230px;
    }

    .leadership-decoration--yellow {
        display: none;
    }

    .leadership-dot-pattern--top {
        right: 15px;
    }

    .leadership-dot-pattern--bottom {
        display: none;
    }

    .leadership-modal {
        padding: 16px;
    }

    .leadership-modal__close {
        top: -13px;
        right: -8px;
        width: 42px;
        height: 42px;
    }

    .leadership-modal__close span {
        top: 20px;
        left: 12px;
        width: 18px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {
    .leadership-title {
        font-size: 48px;
    }

    .leadership-media {
        height: 410px;
    }

    .leadership-play {
        top: 20px;
        left: 18px;
    }

    .leadership-play__circle {
        width: 56px;
        height: 56px;
    }

    .leadership-play__circle svg {
        width: 25px;
        height: 25px;
    }
}

/* =========================================================
   OUR PROGRAMS SECTION
========================================================= */

.programs-section {
    position: relative;
    z-index: 2;
    padding: 60px 0 110px;
    overflow: hidden;
    isolation: isolate;
}

.programs-container {
    position: relative;
    z-index: 5;
    width: min(
        calc(100% - 120px),
        var(--container-width, 1440px)
    );
    margin-inline: auto;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.programs-heading {
    margin-bottom: 56px;
}

.programs-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 23px;
    color: var(--color-yellow, #fcb900);
    font-family: var(--font-heading, "Manrope", sans-serif);
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.programs-eyebrow__icon {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(7, 27, 61, 0.08);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.88);
    box-shadow:
        0 9px 25px rgba(7, 27, 61, 0.07);
}

.programs-eyebrow__icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.programs-eyebrow__shape {
    width: 13px;
    height: 13px;
    background: currentColor;
    clip-path:
        polygon(
            0 0,
            100% 0,
            100% 52%,
            52% 52%,
            52% 100%,
            0 100%
        );
}

.programs-heading__row {
    display: grid;
    grid-template-columns:
        minmax(420px, 0.9fr)
        minmax(420px, 1.1fr);
    align-items: end;
    gap: 80px;
}

.programs-title {
    margin: 0;
    color: var(--color-navy, #071b3d);
    font-family: var(--font-heading, "Manrope", sans-serif);
    font-size: clamp(58px, 5vw, 78px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.06em;
}

.programs-title span {
    color: transparent;
    background:
        linear-gradient(
            90deg,
            #237bf4 0%,
            #2e83f5 65%,
            #ed263a 100%
        );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.programs-heading__description {
    max-width: 610px;
    justify-self: end;
}

.programs-heading__description p {
    margin: 0 0 22px;
    color: #526078;
    font-family: var(--font-body, "DM Sans", sans-serif);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.7;
}

.programs-view-all {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    color: var(--color-navy, #071b3d);
    font-family: var(--font-heading, "Manrope", sans-serif);
    font-size: 14px;
    font-weight: 800;
}

.programs-view-all svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 300ms ease;
}

.programs-view-all:hover,
.programs-view-all:focus-visible {
    color: #ed263a;
}

.programs-view-all:hover svg,
.programs-view-all:focus-visible svg {
    transform: translateX(6px);
}


/* =========================================================
   PROGRAM CARDS
========================================================= */

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.program-card {
    --program-accent: #267cf4;
    --program-accent-rgb: 38, 124, 244;

    position: relative;
    max-height: 420px;
    display: grid;
    grid-template-columns: 52% 48%;
    overflow: hidden;
    border: 1px solid rgba(7, 27, 61, 0.08);
    border-radius: 25px;
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.98),
            rgba(249, 251, 255, 0.9)
        );
    box-shadow:
        0 17px 45px rgba(26, 62, 120, 0.09),
        inset 0 1px 0 rgba(255, 255, 255, 0.96);
    isolation: isolate;
    transition:
        transform 450ms cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 450ms cubic-bezier(0.22, 1, 0.36, 1),
        border-color 300ms ease;
}

.program-card::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -110px;
    left: -90px;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(var(--program-accent-rgb), 0.14),
            rgba(var(--program-accent-rgb), 0)
        );
    transition:
        transform 500ms cubic-bezier(0.22, 1, 0.36, 1),
        opacity 300ms ease;
}

.program-card::after {
    content: "";
    position: absolute;
    z-index: 4;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    border-radius: 0 0 10px 0;
    background: var(--program-accent);
    transition: height 450ms cubic-bezier(0.22, 1, 0.36, 1);
}

.program-card--blue {
    --program-accent: #267cf4;
    --program-accent-rgb: 38, 124, 244;
}

.program-card--green {
    --program-accent: #7bbb31;
    --program-accent-rgb: 123, 187, 49;
}

.program-card--red {
    --program-accent: #ed293c;
    --program-accent-rgb: 237, 41, 60;
}

.program-card:hover {
    border-color:
        rgba(var(--program-accent-rgb), 0.25);
    transform: translateY(-11px);
    box-shadow:
        0 29px 75px rgba(26, 62, 120, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.program-card:hover::before {
    transform: scale(1.25);
}

.program-card:hover::after {
    height: 100%;
}


/* =========================================================
   CARD CONTENT
========================================================= */

.program-card__content {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    padding: 34px 26px 28px 30px;
}

.program-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.program-card__icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    color: #ffffff;
    border-radius: 50%;
    background:
        linear-gradient(
            145deg,
            rgba(var(--program-accent-rgb), 0.82),
            var(--program-accent)
        );
    box-shadow:
        0 13px 28px rgba(var(--program-accent-rgb), 0.28);
    transition:
        transform 450ms cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 300ms ease;
}

.program-card:hover .program-card__icon {
    transform:
        translateY(-4px)
        rotate(-6deg)
        scale(1.06);
    box-shadow:
        0 18px 34px rgba(var(--program-accent-rgb), 0.36);
}

.program-card__icon svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.program-card__age {
    width: fit-content;
    margin-bottom: 11px;
    padding: 6px 11px;
    color: var(--program-accent);
    border:
        1px solid
        rgba(var(--program-accent-rgb), 0.16);
    border-radius: 100px;
    background:
        rgba(var(--program-accent-rgb), 0.07);
    font-family: var(--font-heading, "Manrope", sans-serif);
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
}

.program-card__title {
    margin: 0 0 16px;
    color: var(--color-navy, #071b3d);
    font-family: var(--font-heading, "Manrope", sans-serif);
    font-size: 21px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.025em;
}

.program-card__description {
    margin: 0 0 26px;
    color: #59667b;
    font-family: var(--font-body, "DM Sans", sans-serif);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.68;
}

.program-card__link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    color: var(--program-accent);
    font-family: var(--font-heading, "Manrope", sans-serif);
    font-size: 13px;
    font-weight: 800;
}

.program-card__arrow {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(var(--program-accent-rgb), 0.2);
    border-radius: 50%;
    background: rgba(var(--program-accent-rgb), 0.07);
    transition:
        color 300ms ease,
        background-color 300ms ease,
        transform 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

.program-card__arrow svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.program-card__link:hover .program-card__arrow,
.program-card__link:focus-visible .program-card__arrow {
    color: #ffffff;
    background: var(--program-accent);
    transform: translateX(6px);
}


/* =========================================================
   CARD IMAGE
========================================================= */

/* =========================================================
   PROGRAM CARD — HOVER IMAGE GALLERY
========================================================= */

.program-card__media {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: #e7edf5;
}

.program-card__gallery-image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    display: block;
    object-fit: cover;
    object-position: center;

    opacity: 0;
    visibility: hidden;

    filter:
        saturate(0.96)
        contrast(1);

    transform:
        scale(1.08)
        translateX(8px);

    transition:
        opacity 420ms ease,
        visibility 420ms ease,
        transform 850ms cubic-bezier(0.22, 1, 0.36, 1),
        filter 450ms ease;

    will-change:
        opacity,
        transform;
}

.program-card__gallery-image.is-active {
    z-index: 2;

    opacity: 1;
    visibility: visible;

    transform:
        scale(1)
        translateX(0);
}

.program-card:hover
.program-card__gallery-image.is-active,
.program-card:focus-within
.program-card__gallery-image.is-active {
    filter:
        saturate(1.08)
        contrast(1.02);

    transform:
        scale(1.045)
        translateX(0);
}


/* Soft overlay */
.program-card__media-overlay {
    position: absolute;
    z-index: 4;
    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            rgba(5, 24, 53, 0.02) 0%,
            transparent 55%,
            rgba(5, 24, 53, 0.11) 100%
        );
}


/* Diagonal reflection */
.program-card__media-reflection {
    position: absolute;
    z-index: 5;

    top: -65%;
    left: -65%;

    width: 39%;
    height: 235%;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.5),
            transparent
        );

    transform: rotate(18deg);

    transition:
        left 950ms cubic-bezier(0.22, 1, 0.36, 1);
}

.program-card:hover
.program-card__media-reflection,
.program-card:focus-within
.program-card__media-reflection {
    left: 135%;
}


/* Bottom label must stay above images */
.program-card__image-label {
    position: absolute;
    z-index: 8;
}


/* Small image indicators */
.program-card__gallery-progress {
    position: absolute;
    z-index: 8;

    top: 20px;
    right: 20px;

    display: flex;
    align-items: center;
    gap: 6px;

    padding: 8px 10px;

    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 30px;

    background: rgba(5, 24, 53, 0.18);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18);

    backdrop-filter: blur(13px);
    -webkit-backdrop-filter: blur(13px);

    opacity: 0;
    transform: translateY(-8px);

    transition:
        opacity 350ms ease,
        transform 450ms cubic-bezier(0.22, 1, 0.36, 1);
}

.program-card:hover
.program-card__gallery-progress,
.program-card:focus-within
.program-card__gallery-progress {
    opacity: 1;
    transform: translateY(0);
}

.program-card__gallery-progress span {
    width: 6px;
    height: 6px;

    display: block;

    border-radius: 20px;

    background: rgba(255, 255, 255, 0.46);

    transition:
        width 300ms ease,
        background 300ms ease;
}

.program-card__gallery-progress span.is-active {
    width: 20px;
    background: #ffffff;
}


/* Prevent unwanted layout issues */
.program-card__media > img {
    max-width: none;
}


/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .program-card__gallery-image {
        transition-duration: 0.01ms;
    }

    .program-card__media-reflection {
        display: none;
    }
}


.program-card__image-label {
    position: absolute;
    z-index: 3;
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 10px 12px;
    color: #071b3d;
    border: 1px solid rgba(255, 255, 255, 0.64);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.77);
    box-shadow:
        0 10px 24px rgba(7, 27, 61, 0.12);
    backdrop-filter: blur(12px);
    font-family: var(--font-heading, "Manrope", sans-serif);
    font-size: 10px;
    font-weight: 800;
    text-align: center;
}



/* =========================================================
   DECORATIONS
========================================================= */

.programs-decoration {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    pointer-events: none;
}



/* =========================================================
   RESPONSIVE — LAPTOP
========================================================= */

@media (max-width: 1350px) {
    .programs-container {
        width: min(
            calc(100% - 70px),
            1220px
        );
    }

    .programs-grid {
        gap: 18px;
    }

    .program-card {
        min-height: 350px;
        grid-template-columns: 56% 44%;
    }

    .program-card__content {
        padding: 28px 20px 25px 24px;
    }

    .program-card__title {
        font-size: 18px;
    }

    .program-card__description {
        font-size: 12px;
    }

    .program-card__icon {
        width: 47px;
        height: 47px;
    }
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1050px) {
    .programs-section {
        padding: 90px 0;
    }

    .programs-container {
        width: min(
            calc(100% - 48px),
            900px
        );
    }

    .programs-heading__row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .programs-heading__description {
        max-width: 680px;
        justify-self: start;
    }

    .programs-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .program-card {
        min-height: 360px;
        grid-template-columns: 48% 52%;
    }

    .program-card__content {
        padding: 35px 32px;
    }

    .program-card__title {
        font-size: 23px;
    }

    .program-card__description {
        font-size: 14px;
    }
}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 767px) {
    .programs-section {
        padding: 72px 0 65px;
    }

    .programs-container {
        width: min(
            calc(100% - 32px),
            680px
        );
    }

    .programs-heading {
        margin-bottom: 38px;
    }

    .programs-eyebrow {
        gap: 10px;
        margin-bottom: 20px;
        font-size: 11px;
    }

    .programs-eyebrow__icon {
        width: 39px;
        height: 39px;
    }

    .programs-title {
        font-size: clamp(47px, 14vw, 64px);
    }

    .programs-heading__description p {
        font-size: 14px;
    }

    .program-card {
        min-height: 0;
        grid-template-columns: 1fr;
        border-radius: 22px;
    }

    .program-card__content {
        min-height: 305px;
        padding: 29px 25px 28px;
    }

    .program-card__media {
        height: 285px;
        order: -1;
    }

    .program-card__media::before {
        border-left: 0;
        border-bottom:
            1px solid rgba(255, 255, 255, 0.55);
    }

    .program-card__top {
        margin-bottom: 23px;
    }

    .program-card__number {
        font-size: 31px;
    }

    .program-card__title {
        font-size: 21px;
    }

    .program-card__description {
        font-size: 13.5px;
    }

    .programs-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
        margin-top: 30px;
        padding: 23px;
    }

    .programs-decoration--blue {
        right: -165px;
    }

    .programs-decoration--yellow {
        display: none;
    }

    .programs-dots--left {
        display: none;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {
    .programs-title {
        font-size: 46px;
    }

    .program-card__media {
        height: 235px;
    }

    .program-card__content {
        min-height: 315px;
    }
}

/* =========================================================
   PROGRAMS → LIFE AT WIST CONNECTION
========================================================= */

.programs-section {
    padding-bottom: 72px;
}

.life-section {
    position: relative;
    z-index: 3;
    margin-top: -1px;
    padding: 90px 0 100px;
    overflow: hidden;
    isolation: isolate;
}

.life-section::before {
    content: "";
    position: absolute;
    z-index: -2;
    top: -210px;
    left: 50%;
    width: 780px;
    height: 430px;
    border: 1px solid rgba(7, 27, 61, 0.04);
    border-radius: 50%;
    transform: translateX(-50%);
}

.life-container {
    position: relative;
    z-index: 5;
    width: min(
        calc(100% - 120px),
        var(--container-width, 1440px)
    );
    margin-inline: auto;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.life-heading {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

.life-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
    color: #f3b400;
    font-family: var(--font-heading, "Manrope", sans-serif);
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.life-eyebrow__icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    color: #257bf4;
    border: 1px solid rgba(7, 27, 61, 0.07);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.88);
    box-shadow:
        0 10px 26px rgba(30, 72, 146, 0.09);
}

.life-eyebrow__icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.life-eyebrow__shape {
    width: 13px;
    height: 13px;
    background: currentColor;
    clip-path:
        polygon(
            0 0,
            100% 0,
            100% 52%,
            52% 52%,
            52% 100%,
            0 100%
        );
}

.life-title {
    margin: 0 0 19px;
    color: #071b3d;
    font-family: var(--font-heading, "Manrope", sans-serif);
    font-size: clamp(62px, 5.4vw, 86px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.065em;
}

.life-title span {
    color: transparent;
    background:
        linear-gradient(
            90deg,
            #247cf4 0%,
            #3683f2 50%,
            #ed293c 100%
        );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.life-description {
    max-width: 650px;
    margin: 0 auto;
    color: #58677f;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.75;
}


/* =========================================================
   CARDS GRID
========================================================= */

.life-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.life-card {
    --life-accent: #267cf4;
    --life-accent-rgb: 38, 124, 244;

    position: relative;
    min-width: 0;
    padding-bottom: 195px;
    transition:
        transform 450ms cubic-bezier(0.22, 1, 0.36, 1);
}

.life-card--blue {
    --life-accent: #267cf4;
    --life-accent-rgb: 38, 124, 244;
}

.life-card--green {
    --life-accent: #77bb36;
    --life-accent-rgb: 119, 187, 54;
}

.life-card--red {
    --life-accent: #ed293c;
    --life-accent-rgb: 237, 41, 60;
}

.life-card:hover {
    transform: translateY(-10px);
}


/* =========================================================
   CARD IMAGE
========================================================= */

.life-card__media {
    position: relative;
    height: 360px;
    display: block;
    overflow: hidden;
    border: 1px solid rgba(var(--life-accent-rgb), 0.2);
    border-radius: 24px;
    background: #e9eef5;
    box-shadow:
        0 20px 50px rgba(27, 65, 130, 0.12);
}

.life-card__media::before {
    content: "";
    position: absolute;
    z-index: 3;
    inset: 0;
    border-radius: inherit;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.46);
    pointer-events: none;
}

.life-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition:
        transform 900ms cubic-bezier(0.22, 1, 0.36, 1),
        filter 450ms ease;
}

.life-card:hover .life-card__media img {
    transform: scale(1.07);
    filter: saturate(1.08);
}

.life-card__image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(7, 27, 61, 0.01) 35%,
            rgba(7, 27, 61, 0.13) 100%
        );
    pointer-events: none;
}


/* =========================================================
   GLASS CARD
========================================================= */

.life-card__glass {
    position: absolute;
    z-index: 6;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 255px;
    margin: 0 1px;
    padding: 55px 34px 29px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 25px;
    background:
        linear-gradient(
            125deg,
            rgba(255, 255, 255, 0.88),
            rgba(242, 247, 255, 0.7)
        );
    box-shadow:
        0 22px 55px rgba(32, 73, 144, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(21px);
    -webkit-backdrop-filter: blur(21px);
    transition:
        border-color 350ms ease,
        box-shadow 450ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 450ms cubic-bezier(0.22, 1, 0.36, 1);
}

.life-card:hover .life-card__glass {
    border-color:
        rgba(var(--life-accent-rgb), 0.25);
    box-shadow:
        0 30px 75px rgba(32, 73, 144, 0.2),
        0 0 45px rgba(var(--life-accent-rgb), 0.09),
        inset 0 1px 0 rgba(255, 255, 255, 0.98);
    transform: translateY(-5px);
}


/* =========================================================
   CARD ICON
========================================================= */

.life-card__icon {
    position: absolute;
    top: -38px;
    left: 34px;
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.56);
    border-radius: 19px;
    background:
        linear-gradient(
            145deg,
            rgba(var(--life-accent-rgb), 0.82),
            var(--life-accent)
        );
    box-shadow:
        0 15px 33px rgba(var(--life-accent-rgb), 0.31);
    transition:
        transform 450ms cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 350ms ease;
}

.life-card:hover .life-card__icon {
    transform:
        translateY(-5px)
        rotate(-5deg)
        scale(1.05);
    box-shadow:
        0 20px 42px rgba(var(--life-accent-rgb), 0.38);
}

.life-card__icon svg {
    width: 33px;
    height: 33px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   CARD CONTENT
========================================================= */

.life-card__title {
    margin: 0 0 17px;
    color: #071b3d;
    font-family: var(--font-heading, "Manrope", sans-serif);
    font-size: 23px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.03em;
}

.life-card__text {
    min-height: 75px;
    margin: 0 0 23px;
    color: #5a687d;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.7;
}

.life-card__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: var(--life-accent);
    font-family: var(--font-heading, "Manrope", sans-serif);
    font-size: 14px;
    font-weight: 800;
}

.life-card__arrow {
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(7, 27, 61, 0.06);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.82);
    box-shadow:
        0 9px 22px rgba(26, 63, 126, 0.09);
    transition:
        color 300ms ease,
        background-color 300ms ease,
        box-shadow 300ms ease,
        transform 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

.life-card__arrow svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.life-card:hover .life-card__arrow,
.life-card:focus-visible .life-card__arrow {
    color: #ffffff;
    background: var(--life-accent);
    box-shadow:
        0 12px 27px rgba(var(--life-accent-rgb), 0.29);
    transform: translateX(6px);
}


/* =========================================================
   STATS
========================================================= */

.life-stats {
    width: 82%;
    min-height: 112px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 58px auto 0;
    border: 1px solid rgba(50, 96, 181, 0.13);
    border-radius: 26px;
    background:
        linear-gradient(
            115deg,
            rgba(255, 255, 255, 0.87),
            rgba(238, 244, 255, 0.66)
        );
    box-shadow:
        0 22px 55px rgba(40, 79, 151, 0.11),
        inset 0 1px 0 rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.life-stat {
    position: relative;
    display: flex;
    align-items: center;
    gap: 17px;
    min-width: 0;
    padding: 22px 27px;
}

.life-stat:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 25px;
    right: 0;
    bottom: 25px;
    width: 1px;
    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(7, 27, 61, 0.12),
            transparent
        );
}

.life-stat__icon {
    flex: 0 0 auto;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    transition:
        transform 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

.life-stat:hover .life-stat__icon {
    transform:
        translateY(-4px)
        rotate(-4deg);
}

.life-stat__icon--blue {
    color: #267cf4;
    background: rgba(38, 124, 244, 0.09);
}

.life-stat__icon--green {
    color: #71b63a;
    background: rgba(113, 182, 58, 0.1);
}

.life-stat__icon--red {
    color: #ed293c;
    background: rgba(237, 41, 60, 0.09);
}

.life-stat__icon--purple {
    color: #9b5bd3;
    background: rgba(155, 91, 211, 0.1);
}

.life-stat__icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.life-stat > div:last-child {
    display: flex;
    flex-direction: column;
}

.life-stat__number {
    margin-bottom: 4px;
    font-family: var(--font-heading, "Manrope", sans-serif);
    font-size: 25px;
    font-weight: 800;
    line-height: 1;
}

.life-stat__number--blue {
    color: #267cf4;
}

.life-stat__number--green {
    color: #6eb23a;
}

.life-stat__number--red {
    color: #ed293c;
}

.life-stat__number--purple {
    color: #9b5bd3;
}

.life-stat__label {
    color: #283955;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
}


/* =========================================================
   DECORATIONS
========================================================= */

.life-decoration {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    pointer-events: none;
}

.life-decoration--blue {
    top: -180px;
    right: -110px;
    width: 320px;
    height: 320px;
    background:
        linear-gradient(
            145deg,
            #3e91f7,
            #1b70ef
        );
}

.life-decoration--yellow {
    left: -125px;
    bottom: -135px;
    width: 260px;
    height: 260px;
    background:
        linear-gradient(
            145deg,
            #ffca00,
            #ffae00
        );
}

.life-dots {
    position: absolute;
    z-index: 1;
    width: 115px;
    height: 90px;
    pointer-events: none;
    opacity: 0.72;
    background-image:
        radial-gradient(
            circle,
            #247cf4 2px,
            transparent 2.5px
        );
    background-size: 23px 23px;
}

.life-dots--left {
    top: 37px;
    left: 39px;
    background-image:
        radial-gradient(
            circle,
            #f0b000 2px,
            transparent 2.5px
        );
}

.life-dots--right {
    right: 24px;
    bottom: 28px;
}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1350px) {
    .life-container {
        width: min(
            calc(100% - 70px),
            1220px
        );
    }

    .life-grid {
        gap: 22px;
    }

    .life-card__media {
        height: 325px;
    }

    .life-card__glass {
        padding-inline: 28px;
    }

    .life-card__title {
        font-size: 21px;
    }

    .life-stats {
        width: 90%;
    }

    .life-stat {
        padding-inline: 20px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {
    .programs-section {
        padding-bottom: 55px;
    }

    .life-section {
        padding: 78px 0 85px;
    }

    .life-container {
        width: min(
            calc(100% - 48px),
            900px
        );
    }

    .life-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .life-card {
        max-width: 760px;
        margin-inline: auto;
    }

    .life-card__media {
        height: 470px;
    }

    .life-card__glass {
        min-height: 235px;
    }

    .life-card__text {
        min-height: auto;
    }

    .life-stats {
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
    }

    .life-stat:nth-child(2)::after {
        display: none;
    }

    .life-stat:nth-child(-n + 2)::before {
        content: "";
        position: absolute;
        right: 24px;
        bottom: 0;
        left: 24px;
        height: 1px;
        background:
            linear-gradient(
                90deg,
                transparent,
                rgba(7, 27, 61, 0.11),
                transparent
            );
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {
    .programs-section {
        padding-bottom: 40px;
    }

    .life-section {
        padding: 68px 0 65px;
    }

    .life-container {
        width: min(
            calc(100% - 32px),
            680px
        );
    }

    .life-heading {
        margin-bottom: 40px;
    }

    .life-eyebrow {
        gap: 10px;
        font-size: 11px;
    }

    .life-eyebrow__icon {
        width: 40px;
        height: 40px;
    }

    .life-title {
        font-size: clamp(49px, 14vw, 66px);
    }

    .life-description {
        font-size: 14px;
    }

    .life-grid {
        gap: 30px;
    }

    .life-card {
        padding-bottom: 0;
    }

    .life-card__media {
        height: 310px;
        border-radius: 22px;
    }

    .life-card__glass {
        position: relative;
        right: auto;
        bottom: auto;
        left: auto;
        min-height: 0;
        margin: -50px 10px 0;
        padding: 56px 24px 25px;
        border-radius: 22px;
    }

    .life-card__icon {
        left: 24px;
        width: 61px;
        height: 61px;
        border-radius: 17px;
    }

    .life-card__title {
        font-size: 21px;
    }

    .life-card__text {
        font-size: 13.5px;
    }

    .life-stats {
        grid-template-columns: 1fr;
        margin-top: 40px;
        border-radius: 22px;
    }

    .life-stat {
        min-height: 95px;
        padding: 20px 24px;
    }

    .life-stat:not(:last-child)::after {
        top: auto;
        right: 22px;
        bottom: 0;
        left: 22px;
        width: auto;
        height: 1px;
        background:
            linear-gradient(
                90deg,
                transparent,
                rgba(7, 27, 61, 0.12),
                transparent
            );
    }

    .life-stat:nth-child(-n + 2)::before {
        display: none;
    }

    .life-decoration--blue {
        right: -190px;
    }

    .life-decoration--yellow,
    .life-dots--left,
    .life-dots--right {
        display: none;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {
    .life-title {
        font-size: 48px;
    }

    .life-card__media {
        height: 270px;
    }
}



/* =========================================================
   SLIDER
========================================================= */

/* =========================================================
   WIST TWO-DIRECTION GALLERY
========================================================= */

.wist-gallery-section {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(
            circle at 87% 18%,
            rgba(215, 229, 255, 0.42),
            transparent 31%
        ),
        radial-gradient(
            circle at 3% 78%,
            rgba(255, 239, 199, 0.52),
            transparent 27%
        ),
        linear-gradient(
            145deg,
            #ffffff 0%,
            #fafcff 55%,
            #f3f7ff 100%
        );
}

.wist-gallery-container {
    position: relative;
    z-index: 3;
    width: min(calc(100% - 80px), 1480px);
    margin-inline: auto;
}


/* =========================================================
   HEADING
========================================================= */

.wist-gallery-heading {
    position: relative;
    z-index: 5;
    margin-bottom: 56px;
}

.wist-gallery-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    color: #efb100;
    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.wist-gallery-eyebrow__icon {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    color: #efb100;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.92),
            rgba(255, 246, 219, 0.7)
        );
    box-shadow:
        0 12px 27px rgba(48, 78, 130, 0.1),
        inset 0 1px 0 #ffffff;
    backdrop-filter: blur(14px);
}

.wist-gallery-eyebrow__icon svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.wist-gallery-heading__row {
    display: grid;
    grid-template-columns: 1fr 0.72fr;
    align-items: end;
    gap: 70px;
}

.wist-gallery-title {
    margin: 0;
    color: #071b3d;
    font-family: "Manrope", sans-serif;
    font-size: clamp(61px, 6vw, 92px);
    font-weight: 800;
    line-height: 0.96;
    letter-spacing: -0.068em;
}

.wist-gallery-title span {
    color: transparent;
    background:
        linear-gradient(
            90deg,
            #287cf1,
            #397ded 58%,
            #e83547
        );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.wist-gallery-heading__right p {
    max-width: 500px;
    margin: 0 0 25px;
    color: #60708a;
    font-size: 16px;
    line-height: 1.8;
}

.wist-gallery-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wist-gallery-control {
    width: 53px;
    height: 53px;
    display: grid;
    place-items: center;
    padding: 0;
    color: #0b2851;
    border: 1px solid rgba(21, 55, 104, 0.09);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.86);
    box-shadow:
        0 13px 30px rgba(39, 76, 139, 0.09),
        inset 0 1px 0 #ffffff;
    cursor: pointer;
    transition:
        color 300ms ease,
        background 300ms ease,
        transform 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

.wist-gallery-control svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.wist-gallery-control:hover {
    color: #ffffff;
    background: #267cf4;
    transform:
        scale(1.07)
        rotate(-5deg);
}


/* =========================================================
   SLIDER
========================================================= */

.wist-gallery-slider {
    --gallery-gap: 22px;
    --gallery-duration: 42s;

    position: relative;
    width: calc(100% + 160px);
    margin-left: -80px;
    overflow: hidden;
    padding: 18px 0 24px;
    outline: none;
}

.wist-gallery-row {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.wist-gallery-row + .wist-gallery-row {
    margin-top: 22px;
}

.wist-gallery-track {
    width: max-content;
    display: flex;
    align-items: center;
    gap: var(--gallery-gap);
    will-change: transform;
}

.wist-gallery-track--top {
    animation:
        wistGalleryMoveRight
        var(--gallery-duration)
        linear infinite;
}

.wist-gallery-track--bottom {
    transform: translateX(-35%);
    animation:
        wistGalleryMoveLeft
        var(--gallery-duration)
        linear infinite;
}

@keyframes wistGalleryMoveRight {
    from {
        transform: translateX(-42%);
    }

    to {
        transform: translateX(0%);
    }
}

@keyframes wistGalleryMoveLeft {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(-42%);
    }
}



/* =========================================================
   SLIDES
========================================================= */

.wist-gallery-slide {
    position: relative;
    flex: 0 0 auto;
    width: clamp(270px, 26vw, 410px);
    height: 245px;
    display: block;
    padding: 0;
    overflow: visible;
    border: 0;
    border-radius: 28px;
    background: transparent;
    cursor: pointer;
    outline: none;
}

.wist-gallery-slide--large {
    width: clamp(330px, 31vw, 490px);
}

.wist-gallery-slide__media {
    position: absolute;
    inset: 0;
    display: block;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 28px;
    background: #e5ebf3;
    box-shadow:
        0 17px 42px rgba(35, 70, 128, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    transition:
        border-color 350ms ease,
        transform 650ms cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 350ms ease;
}

.wist-gallery-slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition:
        transform 900ms cubic-bezier(0.22, 1, 0.36, 1),
        filter 450ms ease;
}

.wist-gallery-slide__overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.04),
            transparent 43%,
            rgba(5, 23, 52, 0.12)
        );
}

.wist-gallery-slide__reflection {
    position: absolute;
    top: -65%;
    left: -65%;
    width: 40%;
    height: 235%;
    pointer-events: none;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.45),
            transparent
        );
    transform: rotate(18deg);
    transition:
        left 950ms cubic-bezier(0.22, 1, 0.36, 1);
}


/* =========================================================
   PREMIUM HOVER
========================================================= */

.wist-gallery-slide:hover
.wist-gallery-slide__media,
.wist-gallery-slide:focus-visible
.wist-gallery-slide__media {
    border-color: rgba(58, 132, 242, 0.42);
    transform:
        perspective(900px)
        rotateX(1.5deg)
        rotateY(-2deg)
        scale(1.018);
    box-shadow:
        0 22px 52px rgba(35, 70, 128, 0.16),
        0 0 0 5px rgba(255, 255, 255, 0.42),
        inset 0 1px 0 #ffffff;
}

.wist-gallery-slide:hover img,
.wist-gallery-slide:focus-visible img {
    transform: scale(1.055);
    filter:
        saturate(1.08)
        contrast(1.015);
}

.wist-gallery-slide:hover
.wist-gallery-slide__reflection,
.wist-gallery-slide:focus-visible
.wist-gallery-slide__reflection {
    left: 135%;
}


/* =========================================================
   SIDE FADES
========================================================= */

.wist-gallery-slider__fade {
    position: absolute;
    z-index: 10;
    top: 0;
    bottom: 0;
    width: 125px;
    pointer-events: none;
}

.wist-gallery-slider__fade--left {
    left: 0;
    background:
        linear-gradient(
            90deg,
            #f9fbff,
            rgba(249, 251, 255, 0.78) 35%,
            transparent
        );
}

.wist-gallery-slider__fade--right {
    right: 0;
    background:
        linear-gradient(
            -90deg,
            #f6f9ff,
            rgba(246, 249, 255, 0.78) 35%,
            transparent
        );
}


/* =========================================================
   YELLOW DECORATION
========================================================= */

.wist-gallery-decoration--yellow {
    position: absolute;
    top: 195px;
    left: -115px;
    width: 245px;
    height: 245px;
    border-radius: 50%;
    background:
        linear-gradient(
            145deg,
            #ffc000,
            #ffae00
        );
    opacity: 0.98;
    pointer-events: none;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {
    .wist-gallery-container {
        width: min(calc(100% - 42px), 900px);
    }

    .wist-gallery-heading__row {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .wist-gallery-slider {
        width: calc(100% + 84px);
        margin-left: -42px;
    }

    .wist-gallery-slide {
        width: 330px;
        height: 220px;
    }

    .wist-gallery-slide--large {
        width: 390px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {
    .wist-gallery-section {
        padding: 65px 0 75px;
    }

    .wist-gallery-container {
        width: min(calc(100% - 28px), 620px);
    }

    .wist-gallery-heading {
        text-align: center;
    }

    .wist-gallery-eyebrow {
        justify-content: center;
    }

    .wist-gallery-title {
        font-size: clamp(53px, 15vw, 72px);
    }

    .wist-gallery-heading__right p {
        margin-inline: auto;
    }

    .wist-gallery-controls {
        justify-content: center;
    }

    .wist-gallery-slider {
        width: calc(100% + 28px);
        margin-left: -14px;
        --gallery-gap: 14px;
        --gallery-duration: 34s;
    }

    .wist-gallery-slide {
        width: 260px;
        height: 185px;
    }

    .wist-gallery-slide--large {
        width: 295px;
    }

    .wist-gallery-row + .wist-gallery-row {
        margin-top: 14px;
    }

    .wist-gallery-slider__fade {
        width: 35px;
    }

    .wist-gallery-decoration--yellow {
        top: 235px;
        left: -90px;
        width: 170px;
        height: 170px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
    .wist-gallery-track {
        animation: none;
    }

    .wist-gallery-slide img,
    .wist-gallery-slide__media,
    .wist-gallery-slide__reflection {
        transition-duration: 0.01ms;
    }
}


/* =========================================================
   FOOTER
========================================================= */

.wist-gallery-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    max-width: 900px;
    margin: 28px auto 0;
}

.wist-gallery-counter {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #738096;
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 800;
}

.wist-gallery-counter__line {
    position: relative;
    width: 190px;
    height: 3px;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(7, 27, 61, 0.09);
}

.wist-gallery-counter__line i {
    position: absolute;
    inset: 0 auto 0 0;
    width: 16.666%;
    border-radius: inherit;
    background:
        linear-gradient(
            90deg,
            #267cf4,
            #ed293c
        );
    transition:
        width 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.wist-gallery-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #071b3d;
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 800;
}

.wist-gallery-link svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 300ms ease;
}

.wist-gallery-link:hover {
    color: #ed293c;
}

.wist-gallery-link:hover svg {
    transform: translateX(6px);
}


/* =========================================================
   DECORATIONS
========================================================= */

.wist-gallery-decoration {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    pointer-events: none;
}

.wist-gallery-decoration--yellow {
    top: 230px;
    left: -135px;
    width: 255px;
    height: 255px;
    background:
        linear-gradient(
            145deg,
            #ffca00,
            #ffad00
        );
}

.wist-gallery-decoration--blue {
    top: -160px;
    right: -130px;
    width: 305px;
    height: 305px;
    background:
        linear-gradient(
            145deg,
            #4091f7,
            #176cf0
        );
}

.wist-gallery-dots {
    position: absolute;
    z-index: 1;
    width: 110px;
    height: 90px;
    opacity: 0.7;
    pointer-events: none;
    background-size: 22px 22px;
}

.wist-gallery-dots--left {
    top: 62px;
    left: 34px;
    background-image:
        radial-gradient(
            circle,
            #efb000 2px,
            transparent 2.5px
        );
}

.wist-gallery-dots--right {
    right: 27px;
    bottom: 58px;
    background-image:
        radial-gradient(
            circle,
            #267cf4 2px,
            transparent 2.5px
        );
}

/* =========================================================
   NATIVE DIALOG LIGHTBOX
========================================================= */

.wist-gallery-lightbox {
    width: 100%;
    max-width: none;
    height: 100%;
    max-height: none;

    margin: 0;
    padding: 28px;

    overflow: hidden;

    color: #ffffff;

    border: 0;
    background: transparent;

    opacity: 0;

    transition:
        opacity 280ms ease,
        display 280ms allow-discrete,
        overlay 280ms allow-discrete;
}

.wist-gallery-lightbox[open] {
    display: grid;
    place-items: center;

    opacity: 1;
}

@starting-style {
    .wist-gallery-lightbox[open] {
        opacity: 0;
    }
}

.wist-gallery-lightbox::backdrop {
    background: rgba(3, 14, 34, 0.86);

    backdrop-filter:
        blur(17px)
        saturate(112%);

    -webkit-backdrop-filter:
        blur(17px)
        saturate(112%);

    opacity: 0;

    transition:
        opacity 280ms ease,
        display 280ms allow-discrete,
        overlay 280ms allow-discrete;
}

.wist-gallery-lightbox[open]::backdrop {
    opacity: 1;
}

@starting-style {
    .wist-gallery-lightbox[open]::backdrop {
        opacity: 0;
    }
}


/* Main viewer */

.wist-gallery-lightbox__content {
    position: relative;

    width: min(1180px, calc(100vw - 70px));
    height: min(820px, calc(100dvh - 60px));

    display: grid;
    grid-template-columns:
        82px minmax(0, 1fr) 82px;

    align-items: center;

    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            rgba(8, 30, 66, 0.98),
            rgba(3, 16, 39, 0.99)
        );

    box-shadow:
        0 42px 120px rgba(0, 0, 0, 0.52),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);

    transform:
        translateY(24px)
        scale(0.97);

    transition:
        transform 420ms
        cubic-bezier(0.22, 1, 0.36, 1);
}

.wist-gallery-lightbox[open]
.wist-gallery-lightbox__content {
    transform:
        translateY(0)
        scale(1);
}


/* Image */

.wist-gallery-lightbox__figure {
    position: relative;

    width: 100%;
    height: calc(100% - 34px);

    min-width: 0;
    margin: 0;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 23px;

    background: #031129;
}

.wist-gallery-lightbox__figure img {
    width: 100%;
    height: calc(100% - 70px);

    display: block;

    object-fit: cover;
    object-position: center;

    background:
        radial-gradient(
            circle at center,
            rgba(38, 124, 244, 0.1),
            transparent 55%
        ),
        #031129;

    opacity: 1;

    transition:
        opacity 190ms ease,
        transform 430ms
        cubic-bezier(0.22, 1, 0.36, 1);
}

.wist-gallery-lightbox__figure img.is-changing {
    opacity: 0;

    transform:
        scale(0.985)
        translateX(8px);
}


/* Caption */

.wist-gallery-lightbox__caption {
    min-height: 70px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 24px;
    padding: 14px 22px;

    color: rgba(255, 255, 255, 0.82);

    border-top:
        1px solid rgba(255, 255, 255, 0.1);

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.08),
            rgba(255, 255, 255, 0.025)
        );

    backdrop-filter: blur(17px);
    -webkit-backdrop-filter: blur(17px);

    font-size: 13px;
}

.wist-gallery-lightbox__caption > span:first-child {
    overflow: hidden;

    text-overflow: ellipsis;
    white-space: nowrap;
}

.wist-gallery-lightbox__counter {
    flex: 0 0 auto;

    display: flex;
    align-items: baseline;

    gap: 7px;
}

.wist-gallery-lightbox__counter strong {
    color: #ffffff;

    font-size: 18px;
    font-weight: 800;
}

.wist-gallery-lightbox__counter i,
.wist-gallery-lightbox__counter span {
    color: rgba(255, 255, 255, 0.5);

    font-size: 11px;
    font-style: normal;
}


/* Navigation */

.wist-gallery-lightbox__navigation {
    position: relative;
    z-index: 5;

    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    justify-self: center;

    padding: 0;
    overflow: hidden;

    color: #ffffff;

    border:
        1px solid rgba(255, 255, 255, 0.26);

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.14),
            rgba(255, 255, 255, 0.045)
        );

    box-shadow:
        inset 0 1px 0
        rgba(255, 255, 255, 0.17);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    cursor: pointer;

    transition:
        background 300ms ease,
        border-color 300ms ease,
        box-shadow 300ms ease,
        transform 450ms
        cubic-bezier(0.22, 1, 0.36, 1);
}

.wist-gallery-lightbox__navigation:hover {
    border-color:
        rgba(255, 255, 255, 0.85);

    background:
        linear-gradient(
            145deg,
            #378bfa,
            #176cf0
        );

    box-shadow:
        0 16px 38px
        rgba(23, 108, 240, 0.34);

    transform:
        rotate(-6deg)
        scale(1.08);
}

.wist-gallery-lightbox__navigation svg {
    width: 24px;
    height: 24px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* Close */

.wist-gallery-lightbox__close {
    position: absolute;
    z-index: 10;

    top: -18px;
    right: -18px;

    width: 48px;
    height: 48px;

    padding: 0;

    border:
        1px solid rgba(255, 255, 255, 0.26);

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #ff3549,
            #ed293c
        );

    box-shadow:
        0 15px 34px
        rgba(237, 41, 60, 0.38);

    cursor: pointer;

    transition:
        background 300ms ease,
        transform 420ms
        cubic-bezier(0.22, 1, 0.36, 1);
}

.wist-gallery-lightbox__close span {
    position: absolute;

    top: 22px;
    left: 13px;

    width: 21px;
    height: 2px;

    background: #ffffff;
}

.wist-gallery-lightbox__close span:first-child {
    transform: rotate(45deg);
}

.wist-gallery-lightbox__close span:last-child {
    transform: rotate(-45deg);
}

.wist-gallery-lightbox__close:hover {
    background: #267cf4;

    transform:
        rotate(90deg)
        scale(1.08);
}


/* Page lock */

html.wist-gallery-lightbox-open,
body.wist-gallery-lightbox-open {
    overflow: hidden !important;

    overscroll-behavior: none;
}


/* Mobile */

@media (max-width: 767px) {
    .wist-gallery-lightbox {
        padding: 14px;
    }

    .wist-gallery-lightbox__content {
        width: 100%;
        height: min(82dvh, 680px);

        grid-template-columns: 1fr;

        border-radius: 22px;
    }

    .wist-gallery-lightbox__figure {
        grid-column: 1;
        grid-row: 1;

        height: 100%;

        border-radius: 19px;
    }

    .wist-gallery-lightbox__navigation {
        position: absolute;

        top: 50%;

        width: 48px;
        height: 48px;

        transform: translateY(-50%);
    }

    .wist-gallery-lightbox__navigation:hover {
        transform:
            translateY(-50%)
            scale(1.06);
    }

    .wist-gallery-lightbox__navigation--previous {
        left: 10px;
    }

    .wist-gallery-lightbox__navigation--next {
        right: 10px;
    }

    .wist-gallery-lightbox__close {
        top: -10px;
        right: -4px;
    }

    .wist-gallery-lightbox__caption {
        padding-inline: 15px;
    }

    .wist-gallery-lightbox__caption > span:first-child {
        max-width: 68%;
    }
}

/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1350px) {
    .wist-gallery-container {
        width: min(
            calc(100% - 70px),
            1220px
        );
    }

    .wist-gallery-slider {
        height: 510px;
    }

    .wist-gallery-slide {
        width: 380px;
        height: 455px;
    }

    .wist-gallery-slide.is-far-left {
        transform:
            translate(-50%, -50%)
            translateX(-440px)
            scale(0.67);
    }

    .wist-gallery-slide.is-left {
        transform:
            translate(-50%, -50%)
            translateX(-235px)
            scale(0.83);
    }

    .wist-gallery-slide.is-right {
        transform:
            translate(-50%, -50%)
            translateX(235px)
            scale(0.83);
    }

    .wist-gallery-slide.is-far-right {
        transform:
            translate(-50%, -50%)
            translateX(440px)
            scale(0.67);
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {
    .wist-gallery-section {
        padding: 80px 0 85px;
    }

    .wist-gallery-container {
        width: min(
            calc(100% - 48px),
            900px
        );
    }

    .wist-gallery-heading__row {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .wist-gallery-heading__right {
        max-width: 680px;
        justify-self: start;
    }

    .wist-gallery-slider {
        height: 480px;
    }

    .wist-gallery-slide {
        width: 340px;
        height: 420px;
    }

    .wist-gallery-slide.is-far-left {
        transform:
            translate(-50%, -50%)
            translateX(-350px)
            scale(0.64);
    }

    .wist-gallery-slide.is-left {
        transform:
            translate(-50%, -50%)
            translateX(-190px)
            scale(0.8);
    }

    .wist-gallery-slide.is-right {
        transform:
            translate(-50%, -50%)
            translateX(190px)
            scale(0.8);
    }

    .wist-gallery-slide.is-far-right {
        transform:
            translate(-50%, -50%)
            translateX(350px)
            scale(0.64);
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {
    .wist-gallery-section {
        padding: 68px 0 70px;
    }

    .wist-gallery-container {
        width: min(
            calc(100% - 32px),
            680px
        );
    }

    .wist-gallery-title {
        font-size: clamp(48px, 14vw, 64px);
    }

    .wist-gallery-heading__right p {
        font-size: 14px;
    }

    .wist-gallery-slider {
        height: 440px;
        margin-inline: -16px;
    }

    .wist-gallery-slide {
        width: min(75vw, 300px);
        height: 390px;
        border-width: 5px;
        border-radius: 23px;
    }

    .wist-gallery-slide.is-far-left {
        opacity: 0;
        transform:
            translate(-50%, -50%)
            translateX(-250px)
            scale(0.6);
    }

    .wist-gallery-slide.is-left {
        transform:
            translate(-50%, -50%)
            translateX(-115px)
            scale(0.76);
    }

    .wist-gallery-slide.is-right {
        transform:
            translate(-50%, -50%)
            translateX(115px)
            scale(0.76);
    }

    .wist-gallery-slide.is-far-right {
        opacity: 0;
        transform:
            translate(-50%, -50%)
            translateX(250px)
            scale(0.6);
    }

    .wist-gallery-slide.is-active:hover {
        transform:
            translate(-50%, -50%)
            scale(1);
    }

    .wist-gallery-footer {
        align-items: flex-start;
        flex-direction: column;
        margin-top: 20px;
    }

    .wist-gallery-counter__line {
        width: 145px;
    }

    .wist-gallery-decoration--yellow,
    .wist-gallery-dots {
        display: none;
    }

    .wist-gallery-decoration--blue {
        right: -190px;
    }

    .wist-gallery-lightbox {
        padding: 16px;
    }
}

/* =========================================================
   UPCOMING EVENTS SECTION
========================================================= */

.wist-events {
    position: relative;
    z-index: 3;
    padding: 105px 0 100px;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(
            circle at 18% 18%,
            rgba(255, 246, 225, 0.75) 0%,
            rgba(255, 252, 245, 0.18) 34%,
            transparent 62%
        ),
        radial-gradient(
            circle at 82% 76%,
            rgba(48, 119, 242, 0.1) 0%,
            transparent 55%
        ),
        linear-gradient(
            180deg,
            #f9fbff 0%,
            #fffdf9 50%,
            #f7faff 100%
        );
}

.wist-events::before {
    content: "";
    position: absolute;
    z-index: -3;
    top: -330px;
    left: 50%;
    width: 900px;
    height: 650px;
    border: 1px solid rgba(7, 27, 61, 0.035);
    border-radius: 50%;
    transform: translateX(-50%);
}

.wist-events__container {
    position: relative;
    z-index: 5;
    width: min(
        calc(100% - 110px),
        var(--container-width, 1440px)
    );
    margin-inline: auto;
}


/* =========================================================
   BACKGROUND GEOMETRIC SHAPES
========================================================= */

.wist-events__shape {
    position: absolute;
    z-index: -2;
    pointer-events: none;
}

.wist-events__shape--blue {
    top: -235px;
    right: -140px;
    width: 410px;
    height: 430px;
    border-radius:
        0 0 0 76%;
    background:
        linear-gradient(
            145deg,
            #4c96f7 0%,
            #2476f0 100%
        );
    transform: rotate(-4deg);
}

.wist-events__shape--black {
    top: 170px;
    right: -28px;
    width: 225px;
    height: 330px;
    border-radius:
        55% 0 0 55%;
    background: #151515;
    transform:
        rotate(-15deg)
        translateX(28px);
    opacity: 0.97;
}

.wist-events__shape--purple {
    top: 255px;
    right: -68px;
    width: 165px;
    height: 275px;
    border-radius:
        60% 0 0 60%;
    background:
        linear-gradient(
            145deg,
            #b385df,
            #9260ca
        );
    transform: rotate(-15deg);
}

.wist-events__shape--pink {
    left: -75px;
    bottom: -120px;
    width: 390px;
    height: 390px;
    border-radius:
        0 58% 58% 0;
    background: #f9d9dd;
    opacity: 0.8;
}

.wist-events__shape--red {
    left: -135px;
    bottom: -45px;
    width: 290px;
    height: 420px;
    border-radius:
        0 58% 58% 0;
    background:
        linear-gradient(
            145deg,
            #ff4350,
            #e92b3a
        );
    transform: rotate(15deg);
}

.wist-events__shape--light-blue {
    left: 65px;
    bottom: -230px;
    width: 360px;
    height: 470px;
    border-radius:
        55% 55% 0 0;
    background: #dce8fc;
    opacity: 0.85;
    transform: rotate(-20deg);
}

.wist-events__dots {
    position: absolute;
    z-index: 1;
    width: 120px;
    height: 95px;
    pointer-events: none;
    opacity: 0.7;
    background-size: 22px 22px;
}

.wist-events__dots--left {
    top: 295px;
    left: 22px;
    background-image:
        radial-gradient(
            circle,
            #f1b100 2px,
            transparent 2.5px
        );
}

.wist-events__dots--right {
    right: 20px;
    bottom: 160px;
    background-image:
        radial-gradient(
            circle,
            #327ff2 2px,
            transparent 2.5px
        );
}


/* =========================================================
   HEADER
========================================================= */

.wist-events__header {
    margin-bottom: 54px;
}

.wist-events__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    color: #f2b200;
    font-family: var(--font-heading, "Manrope", sans-serif);
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.wist-events__eyebrow-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    color: #247af4;
    border: 1px solid rgba(7, 27, 61, 0.07);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.88);
    box-shadow:
        0 10px 28px rgba(27, 68, 138, 0.09);
    backdrop-filter: blur(12px);
}

.wist-events__eyebrow-icon svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.wist-events__eyebrow-mark {
    width: 14px;
    height: 14px;
    background: currentColor;
    clip-path:
        polygon(
            0 0,
            100% 0,
            100% 52%,
            52% 52%,
            52% 100%,
            0 100%
        );
}

.wist-events__header-grid {
    display: grid;
    grid-template-columns:
        minmax(580px, 1.1fr)
        minmax(400px, 0.9fr);
    align-items: end;
    gap: 80px;
}

.wist-events__title-wrapper {
    position: relative;
}

.wist-events__title {
    margin: 0;
    color: #071b3d;
    font-family: var(--font-heading, "Manrope", sans-serif);
    font-size: clamp(60px, 5vw, 80px);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.065em;
}

.wist-events__title-line {
    display: block;
}

.wist-events__title-gradient {
    color: transparent;
    background:
        linear-gradient(
            90deg,
            #287df4 0%,
            #3d84ef 48%,
            #ed293c 100%
        );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.wist-events__title-decoration {
    position: absolute;
    top: 18px;
    right: 12px;
    width: 46px;
    height: 46px;
}

.wist-events__title-decoration i {
    position: absolute;
    width: 23px;
    height: 23px;
    background: #f5ba00;
}

.wist-events__title-decoration i:first-child {
    right: 0;
    top: 0;
}

.wist-events__title-decoration i:last-child {
    left: 0;
    bottom: 0;
}

.wist-events__intro {
    max-width: 520px;
    justify-self: end;
}

.wist-events__intro p {
    margin: 0 0 23px;
    color: #53627a;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.65;
}

.wist-events__view-all {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 7px;
    color: #146ef0;
    font-family: var(--font-heading, "Manrope", sans-serif);
    font-size: 15px;
    font-weight: 800;
}

.wist-events__view-all::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    border-radius: 20px;
    background:
        linear-gradient(
            90deg,
            #267cf4,
            rgba(38, 124, 244, 0.08)
        );
    transform-origin: left;
    transition: transform 300ms ease;
}

.wist-events__view-all svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 300ms ease;
}

.wist-events__view-all:hover {
    color: #ed293c;
}

.wist-events__view-all:hover::after {
    transform: scaleX(0.72);
}

.wist-events__view-all:hover svg {
    transform: translateX(6px);
}


/* =========================================================
   SLIDER
========================================================= */

.wist-events-slider {
    position: relative;
}

.wist-events-slider__viewport {
    overflow: hidden;
    margin-inline: -15px;
    padding:
        10px 15px
        34px;
}

.wist-events-slider__track {
    display: flex;
    align-items: stretch;
    gap: 24px;
    transition:
        transform 700ms
        cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}


/* =========================================================
   EVENT CARD
========================================================= */

/* =========================================================
   EVENT STORIES SLIDER
========================================================= */

.wist-event-stories {
    --events-gap: 34px;
    --events-per-view: 3;

    position: relative;
    width: 100%;
    min-width: 0;
}

.wist-event-stories__viewport {
    width: 100%;
    min-width: 0;
    overflow: hidden;
    padding:
        22px
        8px
        36px;
    margin-inline: -8px;
    touch-action: pan-y;
}

.wist-event-stories__track {
    display: flex;
    align-items: stretch;
    gap: var(--events-gap);
    transition:
        transform 850ms
        cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}


/* =========================================================
   CARD
========================================================= */

.event-story-card {
    --event-accent: #267cf4;
    --event-accent-rgb: 38, 124, 244;

    position: relative;
    flex:
        0 0
        calc(
            (
                100% -
                (
                    var(--events-per-view) - 1
                ) *
                var(--events-gap)
            ) /
            var(--events-per-view)
        );
    min-width: 0;
    height: 620px;
}

.event-story-card__link {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
    color: inherit;
    border-radius: 32px;
    outline: none;
    isolation: isolate;
}


/* =========================================================
   IMAGE
========================================================= */

.event-story-card__media {
    position: absolute;
    inset: 0 0 255px;
    overflow: hidden;
    border: 1px solid
        rgba(var(--event-accent-rgb), 0.28);
    border-radius:
        31px 31px
        25px 25px;
    background: #e9eef5;
    box-shadow:
        0 25px 58px
        rgba(34, 72, 133, 0.13);
}

.event-story-card__image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition:
        transform 950ms
        cubic-bezier(0.22, 1, 0.36, 1),
        filter 450ms ease;
}

.event-story-card__media-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            transparent 42%,
            rgba(4, 20, 47, 0.17) 100%
        );
}

.event-story-card__reflection {
    position: absolute;
    top: -55%;
    left: -65%;
    width: 43%;
    height: 215%;
    pointer-events: none;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.31),
            transparent
        );
    transform: rotate(18deg);
    transition:
        left 950ms
        cubic-bezier(0.22, 1, 0.36, 1);
}

.event-story-card__link:hover
.event-story-card__image {
    transform: scale(1.055);
    filter:
        saturate(1.07)
        contrast(1.015);
}

.event-story-card__link:hover
.event-story-card__reflection {
    left: 135%;
}


/* =========================================================
   REAL GLASS PANEL
========================================================= */

.event-story-card__glass {
    position: absolute;
    z-index: 5;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 365px;
    overflow: visible;
    border: 1px solid
        rgba(255, 255, 255, 0.9);
    border-radius: 31px;
    background:
        linear-gradient(
            143deg,
            rgba(255, 255, 255, 0.74),
            rgba(235, 241, 251, 0.55)
        );
     box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 1),
        inset 0 -18px 34px rgba(var(--event-accent-rgb), 0.035);
    backdrop-filter:
        blur(27px)
        saturate(130%);
    -webkit-backdrop-filter:
        blur(27px)
        saturate(130%);
    transition:
        transform 550ms
        cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 350ms ease,
        background 350ms ease;
}

.event-story-card__glass::before {
    content: "";
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: inherit;
    pointer-events: none;
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.38),
            transparent 38%,
            rgba(var(--event-accent-rgb), 0.04)
        );
}

.event-story-card__cursor-light {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: inherit;
    pointer-events: none;
    background:
        radial-gradient(
            circle at
            var(--event-light-x, 50%)
            var(--event-light-y, 50%),
            rgba(255, 255, 255, 0.96),
            rgba(255, 255, 255, 0.17) 22%,
            transparent 47%
        );
    opacity: 0;
    transition: opacity 250ms ease;
}

.event-story-card__link:hover
.event-story-card__glass {
    transform: translateY(-9px);
    background:
        linear-gradient(
            143deg,
            rgba(255, 255, 255, 0.81),
            rgba(228, 238, 253, 0.61)
        );
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 1),
        inset 0 -18px 34px rgba(var(--event-accent-rgb), 0.045);
}

.event-story-card__link:hover
.event-story-card__cursor-light {
    opacity: 1;
}


/* =========================================================
   DATE BADGE
========================================================= */

.event-story-card__date {
    position: absolute;
    z-index: 9;
    top: -40px;
    left: 42px;
    min-width: 150px;
    min-height: 80px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 13px 20px;
    color: #071b3d;
    border: 1px solid
        rgba(255, 255, 255, 0.88);
    border-radius: 22px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.88),
            rgba(227, 238, 255, 0.68)
        );
    box-shadow:
        0 18px 40px
        rgba(36, 75, 139, 0.17),
        inset 0 1px 0 #ffffff,
        inset 0 -15px 28px
        rgba(var(--event-accent-rgb), 0.05);
    backdrop-filter:
        blur(21px)
        saturate(125%);
    -webkit-backdrop-filter:
        blur(21px)
        saturate(125%);
    transition:
        color 350ms ease,
        background 350ms ease,
        transform 450ms
        cubic-bezier(0.22, 1, 0.36, 1);
}

.event-story-card__date strong {
    color: var(--event-accent);
    font-family: "Manrope", sans-serif;
    font-size: 43px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.06em;
}

.event-story-card__date > span {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.event-story-card__date b {
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
}

.event-story-card__date small {
    color: #718098;
    font-family: "Manrope", sans-serif;
    font-size: 10px;
    font-weight: 700;
}

.event-story-card__link:hover
.event-story-card__date {
    color: #ffffff;
    background:
        linear-gradient(
            145deg,
            rgba(var(--event-accent-rgb), 0.87),
            var(--event-accent)
        );
    transform:
        rotate(-3deg)
        scale(1.035);
    box-shadow:
        0 22px 46px
        rgba(var(--event-accent-rgb), 0.3);
}

.event-story-card__link:hover
.event-story-card__date strong,
.event-story-card__link:hover
.event-story-card__date small {
    color: #ffffff;
}


/* =========================================================
   CONTENT
========================================================= */

.event-story-card__content {
    position: relative;
    z-index: 3;
    min-height: 365px;
    display: flex;
    flex-direction: column;
    padding: 73px 42px 32px;
}

.event-story-card__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
    color: #6b7b93;
    font-family: "Manrope", sans-serif;
    font-size: 10px;
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.event-story-card__meta span:first-child {
    color: var(--event-accent);
}

.event-story-card__meta i {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--event-accent);
}

.event-story-card__content h3 {
    margin: 0 0 18px;
    color: #071b3d;
    font-family: "Manrope", sans-serif;
    font-size: clamp(24px, 2vw, 31px);
    font-weight: 800;
    line-height: 1.14;
    letter-spacing: -0.045em;
}

.event-story-card__content p {
    margin: 0;
    color: #60708a;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.78;
}

.event-story-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    color: var(--event-accent);
    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 800;
}

.event-story-card__arrow {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    color: var(--event-accent);
    border: 1px solid
        rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.9),
            rgba(230, 239, 253, 0.66)
        );
    box-shadow:
        0 12px 28px
        rgba(35, 72, 133, 0.1),
        inset 0 1px 0 #ffffff;
    font-size: 20px;
    transition:
        color 300ms ease,
        background 300ms ease,
        transform 350ms
        cubic-bezier(0.22, 1, 0.36, 1);
}

.event-story-card__link:hover
.event-story-card__arrow {
    color: #ffffff;
    background: var(--event-accent);
    transform:
        translateX(5px)
        rotate(-7deg);
}

.event-story-card__footer--location {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin-top: auto;
}

.event-story-card__location-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.event-story-card__location-icon svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: var(--event-accent);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.event-story-card__location-text {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--event-accent);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

/* =========================================================
   CONTROLS
========================================================= */

.wist-event-stories__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-top: 17px;
}

.wist-event-stories__control {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    padding: 0;
    color: #15396d;
    border: 1px solid
        rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.9),
            rgba(226, 238, 255, 0.68)
        );
    box-shadow:
        0 14px 31px
        rgba(36, 74, 136, 0.12),
        inset 0 1px 0 #ffffff;
    backdrop-filter: blur(15px);
    cursor: pointer;
    font-size: 20px;
    transition:
        color 300ms ease,
        background 300ms ease,
        transform 300ms ease;
}

.wist-event-stories__control--next {
    color: #ffffff;
    background: #176ff0;
}

.wist-event-stories__control:hover {
    color: #ffffff;
    background: #176ff0;
    transform: scale(1.08);
}

.wist-event-stories__pagination {
    display: flex;
    align-items: center;
    gap: 8px;
}

.wist-event-stories__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 20px;
    background: #cbd3df;
    cursor: pointer;
    transition:
        width 300ms ease,
        background 300ms ease;
}

.wist-event-stories__dot.is-active {
    width: 27px;
    background: #176ff0;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {
    .wist-event-stories {
        --events-per-view: 2;
        --events-gap: 25px;
    }

    .event-story-card {
        height: 605px;
    }

    .event-story-card__content {
        padding-inline: 31px;
    }

    .event-story-card__date {
        left: 31px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {
    .wist-event-stories {
        --events-per-view: 1;
        --events-gap: 17px;
    }

    .wist-event-stories__viewport {
        overflow: hidden;
        padding-inline: 3px;
        margin-inline: -3px;
    }

    .event-story-card {
        height: 605px;
    }

    .event-story-card__media {
        inset-bottom: 270px;
    }

    .event-story-card__glass {
        min-height: 385px;
    }

    .event-story-card__content {
        min-height: 385px;
        padding:
            72px
            25px
            27px;
    }

    .event-story-card__date {
        left: 24px;
        min-width: 155px;
    }

    .event-story-card__date strong {
        font-size: 38px;
    }

    .event-story-card__content h3 {
        font-size: 27px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
    .wist-event-stories__track,
    .event-story-card__image,
    .event-story-card__glass,
    .event-story-card__reflection {
        transition-duration: 0.01ms;
    }
}

/* =========================================================
   WISTAGRAPH CINEMATIC SECTION
========================================================= */

.wistagraph {
    position: relative;
    z-index: 4;
    min-height: 100svh;
    height: 1000px;
    max-height: 1080px;
    overflow: hidden;
    isolation: isolate;
    color: #ffffff;
    background: #020914;
}

.wistagraph__container {
    position: relative;
    z-index: 10;
    width: min(calc(100% - 80px), 1500px);
    height: 100%;
    margin-inline: auto;
}


/* =========================================================
   BACKGROUND
========================================================= */

.wistagraph__background,
.wistagraph__background-image,
.wistagraph__background-vignette,
.wistagraph__background-glow,
.wistagraph__background-stars,
.wistagraph__background-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.wistagraph__background-image {
    background:
        radial-gradient(
            circle at 54% 33%,
            rgba(16, 81, 141, 0.28) 0%,
            rgba(5, 30, 57, 0.19) 27%,
            transparent 58%
        ),
        linear-gradient(
            110deg,
            #01060d 0%,
            #04101e 34%,
            #05162a 54%,
            #020811 100%
        );
}

.wistagraph__background-vignette {
    z-index: 2;
    background:
        radial-gradient(
            ellipse at center,
            transparent 34%,
            rgba(0, 0, 0, 0.27) 66%,
            rgba(0, 0, 0, 0.85) 100%
        ),
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.12) 0%,
            transparent 40%,
            rgba(0, 0, 0, 0.85) 100%
        );
}

.wistagraph__background-glow {
    z-index: 1;
    left: 28%;
    width: 55%;
    background:
        radial-gradient(
            ellipse at 50% 32%,
            rgba(43, 127, 255, 0.18),
            transparent 62%
        );
    filter: blur(25px);
}

.wistagraph__background-stars {
    z-index: 1;
    opacity: 0.65;
    background-image:
        radial-gradient(
            circle,
            rgba(63, 153, 255, 0.78) 1px,
            transparent 1.5px
        );
    background-size: 53px 53px;
    mask-image:
        radial-gradient(
            ellipse at 55% 30%,
            #000 0%,
            transparent 70%
        );
}

.wistagraph__background-grid {
    z-index: 1;
    opacity: 0.08;
    background-image:
        linear-gradient(
            rgba(54, 121, 210, 0.14) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(54, 121, 210, 0.14) 1px,
            transparent 1px
        );
    background-size: 80px 80px;
    mask-image:
        linear-gradient(
            180deg,
            transparent,
            #000 42%,
            transparent 88%
        );
}


/* =========================================================
   DECORATIVE SHAPES
========================================================= */

.wistagraph__shape {
    position: absolute;
    z-index: 3;
    pointer-events: none;
}

.wistagraph__shape--blue {
    top: -280px;
    right: -180px;
    width: 550px;
    height: 500px;
    border-radius: 0 0 0 100%;
    background:
        linear-gradient(
            145deg,
            #3489fb 0%,
            #145ed7 72%,
            #0c42a7 100%
        );
    box-shadow:
        0 30px 100px rgba(37, 117, 244, 0.2);
}

.wistagraph__shape--purple {
    left: -250px;
    bottom: 20px;
    width: 390px;
    height: 500px;
    border-radius: 0 65% 65% 0;
    background:
        radial-gradient(
            circle at 65% 45%,
            rgba(183, 88, 213, 0.9),
            rgba(87, 22, 120, 0.6) 55%,
            rgba(38, 8, 63, 0.12) 78%
        );
    filter: blur(1px);
}

.wistagraph__shape--pink {
    left: -160px;
    bottom: -420px;
    width: 760px;
    height: 570px;
    border-radius: 50%;
    background:
        linear-gradient(
            145deg,
            #f6c8d0,
            #e99cac
        );
    box-shadow:
        0 -20px 100px rgba(239, 167, 183, 0.15);
}


/* =========================================================
   TOP BAR
========================================================= */

.wistagraph__topbar {
    position: absolute;
    z-index: 30;
    top: 45px;
    right: 0;
    display: flex;
    align-items: center;
    gap: 25px;
}

.wistagraph__counter {
    display: flex;
    align-items: baseline;
    gap: 5px;
    min-width: 54px;
    font-family: "Manrope", sans-serif;
}

.wistagraph__counter strong {
    font-size: 18px;
    font-weight: 700;
}

.wistagraph__counter span,
.wistagraph__counter small {
    color: rgba(255, 255, 255, 0.33);
    font-size: 12px;
}

.wistagraph__top-progress {
    position: relative;
    width: 125px;
    height: 1px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.16);
}

.wistagraph__top-progress span {
    position: absolute;
    inset: 0 auto 0 0;
    width: 20%;
    background: #ffffff;
    transition:
        width 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.wistagraph__menu-link {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.wistagraph__menu-icon {
    width: 55px;
    height: 55px;
    display: grid;
    place-content: center;
    gap: 7px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    background: rgba(19, 34, 55, 0.82);
    backdrop-filter: blur(15px);
    transition:
        background-color 300ms ease,
        transform 300ms ease;
}

.wistagraph__menu-icon i {
    width: 18px;
    height: 1px;
    background: #ffffff;
}

.wistagraph__menu-link:hover .wistagraph__menu-icon {
    background: #267cf4;
    transform: rotate(8deg);
}


/* =========================================================
   INTRO
========================================================= */

.wistagraph__intro {
    position: absolute;
    z-index: 20;
    top: 55px;
    left: 0;
    width: 355px;
}

.wistagraph__eyebrow {
    display: block;
    margin-bottom: 14px;
    color: #3d91ff;
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.13em;
}

.wistagraph__title {
    margin: 0 0 20px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(36px, 3vw, 50px);
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: -0.045em;
}

.wistagraph__title span {
    display: block;
}

.wistagraph__description {
    max-width: 330px;
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.67);
    font-size: 15px;
    line-height: 1.65;
}

.wistagraph__discover {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 0;
    color: #48a0ff;
    border: 0;
    background: transparent;
    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
}

.wistagraph__discover svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    transition: transform 300ms ease;
}

.wistagraph__discover:hover svg {
    transform: translateX(6px);
}


/* =========================================================
   MAGAZINE STAGE
========================================================= */

.wistagraph__stage {
    position: absolute;
    z-index: 12;
    inset: 125px 0 115px;
    perspective: 1800px;
    touch-action: pan-y;
    user-select: none;
}

.wistagraph__track {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.wistagraph-issue {
    position: absolute;
    top: 53%;
    left: 52%;
    width: 390px;
    height: 550px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform:
        translate(-50%, -50%)
        scale(0.6);
    transition:
        transform 850ms cubic-bezier(0.22, 1, 0.36, 1),
        opacity 600ms ease,
        visibility 600ms ease,
        filter 600ms ease;
    will-change: transform;
}

.wistagraph-issue__cover {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(160, 202, 255, 0.38);
    border-radius: 2px;
    background: #06101d;
    box-shadow:
        0 45px 100px rgba(0, 0, 0, 0.55),
        0 10px 30px rgba(0, 0, 0, 0.42);
    cursor: pointer;
    transform-style: preserve-3d;
    transition:
        border-color 400ms ease,
        box-shadow 450ms ease,
        transform 450ms cubic-bezier(0.22, 1, 0.36, 1);
}

.wistagraph-issue__cover::before {
    content: "";
    position: absolute;
    z-index: 5;
    top: 0;
    left: 0;
    width: 15px;
    height: 100%;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.72),
            rgba(255, 255, 255, 0.08),
            rgba(0, 0, 0, 0.2)
        );
    pointer-events: none;
}

.wistagraph-issue__cover::after {
    content: "";
    position: absolute;
    z-index: -1;
    right: 4%;
    bottom: -34px;
    left: 4%;
    height: 38px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.75);
    filter: blur(18px);
}

.wistagraph-issue__cover img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.wistagraph-issue__glass {
    position: absolute;
    z-index: 4;
    inset: 0;
    background:
        linear-gradient(
            115deg,
            rgba(255, 255, 255, 0.11) 0%,
            transparent 24%,
            transparent 70%,
            rgba(81, 157, 255, 0.08) 100%
        );
    pointer-events: none;
}


/* Far left */
.wistagraph-issue.is-far-left {
    z-index: 2;
    opacity: 0.28;
    visibility: visible;
    pointer-events: auto;
    filter:
        brightness(0.46)
        saturate(0.6)
        blur(1px);
    transform:
        translate(-50%, -50%)
        translateX(-620px)
        translateY(70px)
        rotateY(20deg)
        scale(0.65);
}


/* Left */
.wistagraph-issue.is-left {
    z-index: 6;
    opacity: 0.74;
    visibility: visible;
    pointer-events: auto;
    filter:
        brightness(0.78)
        saturate(0.82);
    transform:
        translate(-50%, -50%)
        translateX(-350px)
        translateY(24px)
        rotateY(13deg)
        scale(0.88);
}


/* Active */
.wistagraph-issue.is-active {
    z-index: 12;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    filter: none;
    transform:
        translate(-50%, -50%)
        translateX(0)
        translateY(-2px)
        rotateY(0)
        scale(1.09);
}

.wistagraph-issue.is-active
.wistagraph-issue__cover {
    border-color: rgba(91, 167, 255, 0.84);
    box-shadow:
        0 55px 130px rgba(0, 0, 0, 0.65),
        0 0 0 1px rgba(72, 148, 255, 0.25),
        0 0 42px rgba(31, 116, 255, 0.22);
}

.wistagraph-issue.is-active
.wistagraph-issue__cover:hover {
    transform: translateY(-10px);
    box-shadow:
        0 70px 150px rgba(0, 0, 0, 0.72),
        0 0 0 1px rgba(85, 162, 255, 0.38),
        0 0 60px rgba(35, 122, 255, 0.28);
}


/* Right */
.wistagraph-issue.is-right {
    z-index: 6;
    opacity: 0.74;
    visibility: visible;
    pointer-events: auto;
    filter:
        brightness(0.78)
        saturate(0.82);
    transform:
        translate(-50%, -50%)
        translateX(350px)
        translateY(24px)
        rotateY(-13deg)
        scale(0.88);
}


/* Far right */
.wistagraph-issue.is-far-right {
    z-index: 2;
    opacity: 0.28;
    visibility: visible;
    pointer-events: auto;
    filter:
        brightness(0.46)
        saturate(0.6)
        blur(1px);
    transform:
        translate(-50%, -50%)
        translateX(620px)
        translateY(70px)
        rotateY(-20deg)
        scale(0.65);
}


/* Reflection floor */
.wistagraph__stage::after {
    content: "";
    position: absolute;
    z-index: -1;
    right: 6%;
    bottom: -82px;
    left: 6%;
    height: 240px;
    background:
        linear-gradient(
            180deg,
            rgba(37, 104, 180, 0.09),
            rgba(1, 6, 13, 0)
        );
    transform:
        perspective(900px)
        rotateX(70deg);
    filter: blur(16px);
}


/* =========================================================
   ARROWS
========================================================= */

.wistagraph__arrow {
    position: absolute;
    z-index: 30;
    top: 54%;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    padding: 0;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    background: rgba(6, 17, 31, 0.72);
    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(15px);
    cursor: pointer;
    transform: translateY(-50%);
    transition:
        color 300ms ease,
        background-color 300ms ease,
        transform 300ms ease;
}

.wistagraph__arrow--previous {
    left: 0;
}

.wistagraph__arrow--next {
    right: 0;
}

.wistagraph__arrow svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
}

.wistagraph__arrow:hover {
    background: #267cf4;
    transform:
        translateY(-50%)
        scale(1.08);
}


/* =========================================================
   ISSUE INFO
========================================================= */

.wistagraph__issue-info {
    position: absolute;
    z-index: 20;
    left: 50%;
    bottom: 83px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 4px;
    transform: translateX(-50%);
    text-align: center;
}

.wistagraph__issue-info span {
    color: #58a3ff;
    font-family: "Manrope", sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.13em;
}

.wistagraph__issue-info strong {
    color: rgba(255, 255, 255, 0.78);
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 600;
}


/* =========================================================
   BOTTOM BAR
========================================================= */

.wistagraph__bottom {
    position: absolute;
    z-index: 25;
    right: 0;
    bottom: 25px;
    left: 0;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.wistagraph__bottom-left {
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.68);
    font-family: "Manrope", sans-serif;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.wistagraph__mouse {
    position: relative;
    width: 18px;
    height: 28px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 12px;
}

.wistagraph__mouse i {
    position: absolute;
    top: 5px;
    left: 50%;
    width: 2px;
    height: 6px;
    border-radius: 2px;
    background: #ffffff;
    transform: translateX(-50%);
    animation: wistagraphMouse 1.6s infinite;
}

@keyframes wistagraphMouse {
    0% {
        opacity: 0;
        transform: translate(-50%, 0);
    }

    35% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate(-50%, 9px);
    }
}

.wistagraph__pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.wistagraph__pagination-button {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.46);
    cursor: pointer;
    transition:
        width 300ms ease,
        border-radius 300ms ease,
        background-color 300ms ease;
}

.wistagraph__pagination-button.is-active {
    width: 27px;
    border-radius: 20px;
    background: #398cff;
}

.wistagraph__fullscreen {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0;
    color: rgba(255, 255, 255, 0.82);
    border: 0;
    background: transparent;
    font-family: "Manrope", sans-serif;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    cursor: pointer;
}

.wistagraph__fullscreen svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    transition: transform 300ms ease;
}

.wistagraph__fullscreen:hover {
    color: #58a3ff;
}

.wistagraph__fullscreen:hover svg {
    transform: scale(1.12);
}


/* =========================================================
   MAGAZINE READER
========================================================= */

.magazine-reader {
    position: fixed;
    z-index: 5000;
    inset: 0;
    display: flex;
    flex-direction: column;
    visibility: hidden;
    opacity: 0;
    background: #020913;
    transition:
        visibility 350ms ease,
        opacity 350ms ease;
}

.magazine-reader.is-open {
    visibility: visible;
    opacity: 1;
}

.magazine-reader__background {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 50% 20%,
            rgba(38, 124, 244, 0.15),
            transparent 52%
        ),
        #020913;
    pointer-events: none;
}

.magazine-reader__header {
    position: relative;
    z-index: 3;
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 12px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(4, 15, 29, 0.82);
    backdrop-filter: blur(18px);
}

.magazine-reader__branding {
    display: flex;
    align-items: baseline;
    gap: 18px;
    color: #ffffff;
}

.magazine-reader__branding span {
    font-family: "Manrope", sans-serif;
    font-size: 21px;
    font-weight: 800;
}

.magazine-reader__branding strong {
    color: rgba(255, 255, 255, 0.56);
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 600;
}

.magazine-reader__actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.magazine-reader__download {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 17px;
    color: #ffffff;
    border-radius: 8px;
    background: #267cf4;
    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 700;
}

.magazine-reader__download svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
}

.magazine-reader__close {
    position: relative;
    width: 43px;
    height: 43px;
    padding: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
}

.magazine-reader__close span {
    position: absolute;
    top: 21px;
    left: 12px;
    width: 19px;
    height: 1px;
    background: #ffffff;
}

.magazine-reader__close span:first-child {
    transform: rotate(45deg);
}

.magazine-reader__close span:last-child {
    transform: rotate(-45deg);
}

.magazine-reader__content {
    position: relative;
    z-index: 2;
    flex: 1;
    min-height: 0;
    padding: 18px;
}

.magazine-reader__content iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
    border-radius: 12px;
    background: #111827;
    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.42);
}

body.magazine-reader-open {
    overflow: hidden;
}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1350px) {
    .wistagraph {
        height: 900px;
    }

    .wistagraph__container {
        width: min(calc(100% - 60px), 1240px);
    }

    .wistagraph__intro {
        width: 290px;
    }

    .wistagraph__title {
        font-size: 39px;
    }

    .wistagraph-issue {
        width: 335px;
        height: 475px;
    }

    .wistagraph-issue.is-left {
        transform:
            translate(-50%, -50%)
            translateX(-295px)
            translateY(25px)
            rotateY(13deg)
            scale(0.87);
    }

    .wistagraph-issue.is-right {
        transform:
            translate(-50%, -50%)
            translateX(295px)
            translateY(25px)
            rotateY(-13deg)
            scale(0.87);
    }

    .wistagraph-issue.is-far-left {
        transform:
            translate(-50%, -50%)
            translateX(-500px)
            translateY(65px)
            rotateY(20deg)
            scale(0.64);
    }

    .wistagraph-issue.is-far-right {
        transform:
            translate(-50%, -50%)
            translateX(500px)
            translateY(65px)
            rotateY(-20deg)
            scale(0.64);
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {
    .wistagraph {
        min-height: 900px;
        height: auto;
        max-height: none;
        padding: 80px 0 45px;
    }

    .wistagraph__container {
        width: min(calc(100% - 42px), 900px);
        min-height: 810px;
    }

    .wistagraph__topbar {
        top: -44px;
    }

    .wistagraph__intro {
        position: relative;
        top: auto;
        width: 100%;
        max-width: 540px;
    }

    .wistagraph__stage {
        inset: 230px 0 100px;
    }

    .wistagraph-issue {
        top: 52%;
        left: 50%;
        width: 320px;
        height: 455px;
    }

    .wistagraph-issue.is-left {
        transform:
            translate(-50%, -50%)
            translateX(-205px)
            translateY(28px)
            rotateY(10deg)
            scale(0.78);
    }

    .wistagraph-issue.is-right {
        transform:
            translate(-50%, -50%)
            translateX(205px)
            translateY(28px)
            rotateY(-10deg)
            scale(0.78);
    }

    .wistagraph-issue.is-far-left,
    .wistagraph-issue.is-far-right {
        opacity: 0;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {
    .wistagraph {
        min-height: 820px;
        padding-top: 70px;
    }

    .wistagraph__container {
        width: min(calc(100% - 28px), 620px);
        min-height: 740px;
    }

    .wistagraph__topbar {
        top: -48px;
        right: 0;
    }

    .wistagraph__top-progress,
    .wistagraph__menu-link > span:last-child {
        display: none;
    }

    .wistagraph__menu-icon {
        width: 44px;
        height: 44px;
    }

    .wistagraph__intro {
        text-align: center;
    }

    .wistagraph__title {
        font-size: 37px;
    }

    .wistagraph__description {
        margin-inline: auto;
        font-size: 13px;
    }

    .wistagraph__stage {
        inset: 245px -14px 100px;
        overflow: hidden;
    }

    .wistagraph-issue {
        width: min(70vw, 285px);
        height: 405px;
    }

    .wistagraph-issue.is-active {
        transform:
            translate(-50%, -50%)
            scale(1);
    }

    .wistagraph-issue.is-left {
        opacity: 0.42;
        transform:
            translate(-50%, -50%)
            translateX(-145px)
            translateY(28px)
            rotateY(8deg)
            scale(0.72);
    }

    .wistagraph-issue.is-right {
        opacity: 0.42;
        transform:
            translate(-50%, -50%)
            translateX(145px)
            translateY(28px)
            rotateY(-8deg)
            scale(0.72);
    }

    .wistagraph__arrow {
        width: 46px;
        height: 46px;
    }

    .wistagraph__arrow--previous {
        left: 4px;
    }

    .wistagraph__arrow--next {
        right: 4px;
    }

    .wistagraph__issue-info {
        bottom: 74px;
    }

    .wistagraph__bottom {
        grid-template-columns: 1fr auto;
    }

    .wistagraph__bottom-left {
        display: none;
    }

    .wistagraph__pagination {
        justify-content: flex-start;
    }

    .wistagraph__shape--blue {
        top: -200px;
        right: -260px;
    }

    .wistagraph__shape--purple,
    .wistagraph__shape--pink {
        opacity: 0.4;
    }

    .magazine-reader__header {
        min-height: 64px;
        padding: 10px 12px;
    }

    .magazine-reader__branding strong,
    .magazine-reader__download span {
        display: none;
    }

    .magazine-reader__download {
        width: 42px;
        padding: 0;
        justify-content: center;
    }

    .magazine-reader__content {
        padding: 8px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
    .wistagraph-issue,
    .wistagraph-issue__cover,
    .wistagraph__top-progress span {
        transition-duration: 0.01ms !important;
    }

    .wistagraph__mouse i {
        animation: none;
    }
}

/* =========================================================
   WISTAGRAPH — BOOK OPENS FROM THE COVER
========================================================= */

.wistagraph-issue {
    transform-style: preserve-3d;
}

.wistagraph-issue__book {
    position: absolute !important;
    z-index: 120;

    top: 50% !important;
    left: 50% !important;

    width: min(980px, calc(100vw - 180px)) !important;
    height: min(650px, calc(100% - 20px)) !important;

    display: block;

    visibility: hidden;
    opacity: 0;
    pointer-events: none;

    transform:
        translate(-50%, calc(-50% + 28px)) !important;

    transition:
        opacity 380ms ease,
        visibility 380ms ease,
        transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.wistagraph-issue.is-book-open
.wistagraph-issue__book {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;

    transform:
        translate(-50%, -50%) !important;
}

.wistagraph-issue.is-book-open
.wistagraph-issue__cover {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform:
        perspective(1500px)
        rotateY(-110deg);

    transform-origin: left center;

    transition:
        opacity 260ms ease,
        visibility 260ms ease,
        transform 850ms cubic-bezier(0.22, 1, 0.36, 1);
}

.wistagraph-issue.is-book-open
.wistagraph-issue__book {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;

    transform:
        translate(-50%, -50%)
        scale(1);
}


/* Other magazines fade, but section remains visible */

.wistagraph.has-open-book
.wistagraph-issue:not(.is-book-open) {
    opacity: 0.12;
    pointer-events: none;
    filter:
        brightness(0.35)
        blur(2px);
}

.wistagraph.has-open-book
.wistagraph__arrow,
.wistagraph.has-open-book
.wistagraph__pagination,
.wistagraph.has-open-book
.wistagraph__issue-info {
    opacity: 0;
    pointer-events: none;
}


/* Book pages */

/* =========================================================
   PAGEFLIP — CORRECT PAGE SIZE
========================================================= */

.wistagraph-issue__book-pages {
    position: absolute !important;

    top: 50% !important;
    left: 50% !important;

    width: min(860px, calc(100% - 110px)) !important;
    height: min(610px, calc(100% - 32px)) !important;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: visible !important;

    transform: translate(-50%, -50%) !important;

    perspective: 2200px;
}

/*
 * PageFlip sahifalarining o‘lchamini kutubxona boshqaradi.
 */
.wistagraph-issue__book-page {
    position: relative;

    overflow: hidden;

    background: #ffffff;

    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.wistagraph-issue__book-page canvas {
    width: 100% !important;
    height: 100% !important;

    display: block;

    object-fit: fill;

    background: #ffffff;
}

/*
 * Kutubxona yaratgan konteyner.
 * Transform yoki absolute koordinata bermaymiz.
 */
.wistagraph-issue__book-pages .stf__parent {
    margin: auto !important;
}

.wistagraph-issue__book-pages .stf__wrapper {
    margin: auto !important;
}

.wistagraph-issue__book-pages .stf__block {
    box-shadow:
        0 35px 95px rgba(0, 0, 0, 0.58);
}

/* Chap sahifaning markaz tomoni */
.wistagraph-issue__book-pages .stf__item.--left {
    box-shadow:
        inset -22px 0 30px rgba(0, 0, 0, 0.12);
}

/* O‘ng sahifaning markaz tomoni */
.wistagraph-issue__book-pages .stf__item.--right {
    box-shadow:
        inset 22px 0 30px rgba(0, 0, 0, 0.1);
}


/* Close */

.wistagraph-issue__book-close {
    position: absolute;
    z-index: 50;

    top: -20px;
    right: -20px;

    width: 48px;
    height: 48px;

    padding: 0;

    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 50%;

    background: #ed293c;

    box-shadow:
        0 16px 36px rgba(237, 41, 60, 0.35);

    cursor: pointer;

    transition:
        background 300ms ease,
        transform 400ms cubic-bezier(0.22, 1, 0.36, 1);
}

.wistagraph-issue__book-close:hover {
    background: #267cf4;

    transform:
        rotate(90deg)
        scale(1.08);
}

.wistagraph-issue__book-close span {
    position: absolute;

    top: 23px;
    left: 13px;

    width: 21px;
    height: 2px;

    background: #ffffff;
}

.wistagraph-issue__book-close span:first-child {
    transform: rotate(45deg);
}

.wistagraph-issue__book-close span:last-child {
    transform: rotate(-45deg);
}


/* Page arrows */

.wistagraph-issue__book-arrow {
    position: absolute;
    z-index: 45;

    top: 50%;

    width: 52px;
    height: 52px;

    display: grid;
    place-items: center;

    padding: 0;

    color: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;

    background: rgba(4, 17, 35, 0.78);

    box-shadow:
        0 15px 38px rgba(0, 0, 0, 0.38);

    backdrop-filter: blur(14px);

    cursor: pointer;

    transform: translateY(-50%);
}

.wistagraph-issue__book-arrow--previous {
    left: -24px;
}

.wistagraph-issue__book-arrow--next {
    right: -24px;
}

.wistagraph-issue__book-arrow:hover {
    background: #267cf4;
}

.wistagraph-issue__book-arrow svg {
    width: 21px;
    height: 21px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
}


/* Counter */

.wistagraph-issue__book-counter {
    position: absolute;

    right: 0;
    bottom: -31px;
    left: 0;

    display: flex;
    justify-content: center;
    gap: 7px;

    color: rgba(255, 255, 255, 0.55);

    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 700;
}

.wistagraph-issue__book-counter span:first-child {
    color: #ffffff;
}


/* Tablet */

@media (max-width: 1024px) {
    .wistagraph-issue.is-book-open,
    .wistagraph-issue__book {
        width: min(90vw, 760px);
        height: 520px;
    }

    .wistagraph-issue__book-pages {
        width: min(82vw, 680px);
        height: 480px;
    }
}


/* Mobile */

@media (max-width: 767px) {
    .wistagraph-issue.is-book-open,
    .wistagraph-issue__book {
        width: min(92vw, 400px);
        height: 520px;
    }

    .wistagraph-issue__book-pages {
        width: min(84vw, 360px);
        height: 480px;
    }

    .wistagraph-issue__book-arrow {
        width: 42px;
        height: 42px;
    }

    .wistagraph-issue__book-arrow--previous {
        left: -7px;
    }

    .wistagraph-issue__book-arrow--next {
        right: -7px;
    }
}

.wistagraph__arrow {
    pointer-events: auto !important;
}

.wistagraph__arrow svg {
    pointer-events: none;
}

/* =========================================================
   WISTAGRAPH INLINE BOOK — POSITION FIX
   Eng oxirida turishi shart
========================================================= */

/*
 * Kitob ochilganda active article butun stage maydonini
 * egallaydi. Bu modal emas — shu section ichida qoladi.
 */
.wistagraph-issue.is-book-open,
.wistagraph-issue.is-active.is-book-open {
    position: absolute !important;
    z-index: 100 !important;

    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;

    width: 100% !important;
    height: 100% !important;

    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;

    filter: none !important;

    transform: none !important;
}


/* Kitob sahnaning aniq markazida turadi */

.wistagraph-issue__book {
    position: absolute !important;
    z-index: 120;

    top: 50% !important;
    left: 50% !important;

    width: min(920px, calc(100vw - 210px)) !important;
    height: min(620px, calc(100% - 40px)) !important;

    display: block;

    visibility: hidden;
    opacity: 0;
    pointer-events: none;

    transform:
        translate(-50%, -50%)
        scale(0.82) !important;

    transform-origin: center;

    transition:
        opacity 350ms ease,
        visibility 350ms ease,
        transform 750ms cubic-bezier(0.22, 1, 0.36, 1);
}

.wistagraph-issue.is-book-open
.wistagraph-issue__book {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;

    transform:
        translate(-50%, -50%)
        scale(1) !important;
}


/* Eski cover butunlay yashiriladi */

.wistagraph-issue.is-book-open
.wistagraph-issue__cover {
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;

    transform:
        perspective(1600px)
        rotateY(-110deg)
        translateX(-30px) !important;
}


/* PageFlip container */

.wistagraph-issue__book-pages {
    position: absolute !important;

    top: 50% !important;
    left: 50% !important;

    width: min(820px, calc(100% - 100px)) !important;
    height: min(570px, calc(100% - 35px)) !important;

    overflow: visible !important;

    transform:
        translate(-50%, -50%) !important;

    perspective: 2200px;
}


/* PageFlip kutubxonasi yaratadigan asosiy wrapper */

.wistagraph-issue__book-pages
.stf__parent {
    position: absolute !important;

    top: 50% !important;
    left: 50% !important;

    margin: 0 !important;

    transform:
        translate(-50%, -50%) !important;
}

.wistagraph-issue__book-pages
.stf__wrapper {
    margin: 0 auto !important;
}


/* Kitob soyasi */

.wistagraph-issue__book-pages::after {
    content: "";

    position: absolute;
    z-index: -2;

    right: 8%;
    bottom: -25px;
    left: 8%;

    height: 45px;

    border-radius: 50%;

    background:
        rgba(0, 0, 0, 0.68);

    filter: blur(23px);

    pointer-events: none;
}


/* Kitob arrowlari */

.wistagraph-issue__book-arrow {
    position: absolute !important;
    z-index: 150;

    top: 50% !important;

    transform:
        translateY(-50%) !important;
}

.wistagraph-issue__book-arrow--previous {
    left: 0 !important;
}

.wistagraph-issue__book-arrow--next {
    right: 0 !important;
}

.wistagraph-issue__book-arrow:hover {
    transform:
        translateY(-50%)
        scale(1.08) !important;
}


/* X tugmasi kitobning yuqori o‘ngida */

.wistagraph-issue__book-close {
    position: absolute !important;
    z-index: 160;

    top: 0 !important;
    right: 0 !important;
}


/* Counter kitob tagida markazda */

.wistagraph-issue__book-counter {
    position: absolute !important;

    right: 0 !important;
    bottom: -4px !important;
    left: 0 !important;

    z-index: 150;

    display: flex;
    justify-content: center;
}


/* Boshqa jurnallar orqada yumshoq ko‘rinsin */

.wistagraph.has-open-book
.wistagraph-issue:not(.is-book-open) {
    opacity: 0.1 !important;
    visibility: visible;
    pointer-events: none !important;

    filter:
        brightness(0.28)
        blur(2px) !important;
}


/* Carousel arrowlari kitob ochilganda yashirinadi */

.wistagraph.has-open-book
.wistagraph__arrow,
.wistagraph.has-open-book
.wistagraph__pagination,
.wistagraph.has-open-book
.wistagraph__issue-info {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}


/* Intro saqlanadi, faqat xiralashadi */

.wistagraph.has-open-book
.wistagraph__intro {
    opacity: 0.28;

    transition:
        opacity 350ms ease;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {
    .wistagraph-issue__book {
        width:
            min(880px, calc(100vw - 70px)) !important;

        height:
            min(590px, calc(100% - 30px)) !important;
    }

    .wistagraph-issue__book-pages {
        width:
            min(760px, calc(100% - 85px)) !important;

        height:
            min(540px, calc(100% - 35px)) !important;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {
    .wistagraph-issue__book {
        width:
            calc(100vw - 22px) !important;

        height:
            min(570px, calc(100% - 10px)) !important;
    }

    .wistagraph-issue__book-pages {
        width:
            calc(100% - 48px) !important;

        height:
            calc(100% - 38px) !important;
    }

    .wistagraph-issue__book-arrow {
        width: 42px;
        height: 42px;
    }

    .wistagraph-issue__book-arrow--previous {
        left: -2px !important;
    }

    .wistagraph-issue__book-arrow--next {
        right: -2px !important;
    }

    .wistagraph-issue__book-close {
        top: 3px !important;
        right: 3px !important;
    }
}

/* =========================================================
   FLIPBOOK LOADING STATE
========================================================= */

.wistagraph-issue__book-pages {
    opacity: 0;
    visibility: hidden;

    transition:
        opacity 450ms ease,
        visibility 450ms ease;
}

.wistagraph-issue__book.is-ready
.wistagraph-issue__book-pages {
    opacity: 1;
    visibility: visible;
}


/* Loader */

.wistagraph-issue__book-loader {
    position: absolute;
    z-index: 140;

    top: 50%;
    left: 50%;

    min-width: 220px;

    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 28px 32px;

    color: #ffffff;
    text-align: center;

    border:
        1px solid rgba(255, 255, 255, 0.15);

    border-radius: 24px;

    background:
        rgba(5, 22, 47, 0.7);

    box-shadow:
        0 26px 65px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);

    backdrop-filter:
        blur(20px)
        saturate(120%);

    -webkit-backdrop-filter:
        blur(20px)
        saturate(120%);

    transform:
        translate(-50%, -50%);

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transition:
        opacity 300ms ease,
        visibility 300ms ease;
}

.wistagraph-issue__book.is-loading
.wistagraph-issue__book-loader {
    opacity: 1;
    visibility: visible;
}

.wistagraph-issue__book.is-ready
.wistagraph-issue__book-loader {
    opacity: 0;
    visibility: hidden;
}


/* Spinner */

.wistagraph-issue__book-loader-spinner {
    width: 46px;
    height: 46px;

    display: block;

    margin-bottom: 17px;

    border:
        3px solid rgba(255, 255, 255, 0.16);

    border-top-color: #267cf4;
    border-radius: 50%;

    animation:
        wistagraphBookLoading
        800ms linear infinite;
}

.wistagraph-issue__book-loader strong {
    font-family:
        var(--font-heading, "Manrope", sans-serif);

    font-size: 15px;
    font-weight: 800;
}

.wistagraph-issue__book-loader small {
    display: block;

    margin-top: 7px;

    color: rgba(255, 255, 255, 0.58);

    font-size: 11px;
    font-weight: 600;
}

@keyframes wistagraphBookLoading {
    to {
        transform: rotate(360deg);
    }
}


/* Loading vaqtida arrowlar va counter yashirinadi */

.wistagraph-issue__book.is-loading
.wistagraph-issue__book-arrow,
.wistagraph-issue__book.is-loading
.wistagraph-issue__book-counter {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.wistagraph-issue__book.is-ready
.wistagraph-issue__book-arrow,
.wistagraph-issue__book.is-ready
.wistagraph-issue__book-counter {
    opacity: 1;
    visibility: visible;
}


/* =========================================================
   WIST UNIFORM SHOWCASE
========================================================= */

.uniform-showcase {
    position: relative;
    overflow: hidden;
    padding: 80px 0 60px;
    background:
        radial-gradient(
            circle at 58% 32%,
            rgba(71, 130, 230, 0.08),
            transparent 34%
        ),
        linear-gradient(
            145deg,
            #ffffff,
            #f6f9ff 60%,
            #edf3fc
        );
}

.uniform-showcase__container {
    position: relative;
    z-index: 5;
    width: min(calc(100% - 80px), 1480px);
    margin-inline: auto;
}


/* BACKGROUND */

.uniform-showcase__word {
    position: absolute;
    top: -22px;
    right: -5px;
    color: rgba(8, 38, 84, 0.035);
    font-family: var(--font-heading, sans-serif);
    font-size: clamp(140px, 20vw, 320px);
    font-weight: 800;
    line-height: 1;
    pointer-events: none;
}

.uniform-showcase__decor {
    position: absolute;
    pointer-events: none;
}

.uniform-showcase__decor--yellow {
    right: -140px;
    bottom: 180px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background:
        linear-gradient(
            145deg,
            #ffd53c,
            #ffad12
        );
    opacity: 0.9;
}

.uniform-showcase__decor--blue {
    right: 7%;
    top: 13%;
    width: 390px;
    height: 390px;
    border: 1px solid rgba(35, 111, 240, 0.1);
    border-radius: 50%;
}


/* =========================================================
   TOP
========================================================= */

.uniform-showcase__top {
    display: grid;
    grid-template-columns:
        minmax(280px, 0.8fr)
        minmax(480px, 1.5fr)
        minmax(260px, 0.72fr);
    gap: 28px;
    align-items: stretch;
}


/* =========================================================
   INTRO
========================================================= */

.uniform-showcase__intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 25px 5px;
}

.uniform-showcase__eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    color: #176ff0;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.uniform-showcase__eyebrow span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #176ff0;
}

.uniform-showcase__title {
    margin: 0;
    color: #09234d;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(51px, 4.5vw, 72px);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.uniform-showcase__title span {
    display: block;
    margin-top: 7px;
    color: #176ff0;
}

.uniform-showcase__line {
    width: 55px;
    height: 3px;
    margin: 33px 0 27px;
    background: #f0b500;
}

.uniform-showcase__description {
    max-width: 335px;
    margin: 0 0 36px;
    color: #50617a;
    font-size: 15px;
    line-height: 1.8;
}


/* CTA */

.uniform-showcase__primary {
    align-self: flex-start;
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    gap: 25px;
    padding: 0 10px 0 28px;
    color: #fff;
    border-radius: 100px;
    background:
        linear-gradient(
            110deg,
            #073478,
            #021b47
        );
    box-shadow:
        0 16px 35px rgba(3, 36, 84, 0.18);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.uniform-showcase__primary > span:last-child {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    color: #072556;
    border-radius: 50%;
    background: #fff;
    transition:
        color 300ms ease,
        background-color 300ms ease,
        transform 300ms ease;
}

.uniform-showcase__primary:hover > span:last-child {
    color: #fff;
    background: #176ff0;
    transform: translateX(4px);
}

.uniform-showcase__primary svg,
.uniform-showcase__secondary svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.uniform-showcase__secondary {
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
    padding-bottom: 5px;
    color: #163259;
    border-bottom: 1px solid rgba(7, 36, 82, 0.25);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}


/* =========================================================
   MAIN PHOTO
========================================================= */

.uniform-showcase__visual {
    min-width: 0;
}

.uniform-showcase__photo {
    position: relative;
    height: 600px;
    overflow: hidden;
    border-radius: 31px;
    background: #dfe5ee;
    box-shadow:
        0 28px 70px rgba(18, 52, 102, 0.14);
}

.uniform-showcase__hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transform: scale(1.035);
    filter: saturate(0.93);
    transition:
        opacity 650ms ease,
        transform 1200ms cubic-bezier(0.22, 1, 0.36, 1),
        filter 700ms ease;
}

.uniform-showcase__hero-image.is-active {
    opacity: 1;
    transform: scale(1);
    filter: saturate(1);
}

.uniform-showcase__photo:hover
.uniform-showcase__hero-image.is-active {
    transform: scale(1.02);
}

.uniform-showcase__photo-overlay {
    position: absolute;
    z-index: 3;
    inset: auto 0 0;
    height: 32%;
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(5, 25, 57, 0.16)
        );
}


/* SLIDER UI */

.uniform-showcase__slider-ui {
    position: absolute;
    z-index: 10;
    bottom: 24px;
    left: 24px;
    min-height: 52px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 0 24px;
    color: #fff;
    border-radius: 100px;
    background: rgba(4, 25, 58, 0.65);
    backdrop-filter: blur(18px);
    font-size: 11px;
    font-weight: 700;
}

.uniform-showcase__count {
    color: #f2bd1c;
    font-size: 14px;
}

.uniform-showcase__divider {
    opacity: 0.6;
}

.uniform-showcase__dots {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-left: 7px;
}

.uniform-showcase__dots button {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.55);
    cursor: pointer;
}

.uniform-showcase__dots button.is-active {
    background: #f3bb16;
}


/* ARROWS */

.uniform-showcase__arrows {
    position: absolute;
    z-index: 10;
    right: 22px;
    bottom: 22px;
    display: flex;
    gap: 10px;
}

.uniform-showcase__arrows button {
    width: 51px;
    height: 51px;
    display: grid;
    place-items: center;
    padding: 0;
    color: #143567;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.9);
    box-shadow:
        0 12px 27px rgba(14, 44, 87, .13);
    cursor: pointer;
    transition:
        color 300ms ease,
        background 300ms ease,
        transform 300ms ease;
}

.uniform-showcase__arrows button:hover {
    color: #fff;
    background: #176ff0;
    transform: scale(1.08);
}

.uniform-showcase__arrows svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   IDENTITY
========================================================= */

.uniform-showcase__identity {
    position: relative;
    display: flex;
    align-items: center;
    padding: 45px 30px;
}

.uniform-showcase__identity::before {
    content: "";
    position: absolute;
    top: 10%;
    left: 0;
    width: 370px;
    height: 370px;
    border: 1px solid rgba(38, 105, 213, .09);
    border-radius: 50%;
}

.uniform-showcase__identity-inner {
    position: relative;
    z-index: 2;
}

.uniform-showcase__identity h3 {
    max-width: 230px;
    margin: 0;
    color: #25446e;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 33px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.04em;
}

.uniform-showcase__identity h3 + span {
    width: 53px;
    height: 3px;
    display: block;
    margin: 26px 0;
    background: #efb514;
}

.uniform-showcase__identity p {
    max-width: 260px;
    margin: 0;
    color: #526985;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   CATEGORY CARDS
========================================================= */

.uniform-showcase__categories {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.uniform-category {
    --uniform-accent: #176ff0;

    position: relative;
    min-width: 0;
    height: 280px;
    overflow: hidden;
    padding: 0;
    color: #fff;
    border: 0;
    border-radius: 24px;
    background: #15345f;
    box-shadow:
        0 20px 45px rgba(21, 54, 101, 0.12);
    text-align: left;
    cursor: pointer;
    isolation: isolate;
}

.uniform-category > img {
    position: absolute;
    z-index: -3;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition:
        transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.uniform-category:hover > img,
.uniform-category.is-active > img {
    transform: scale(1.05);
}


/* colour overlay using admin accent */

.uniform-category__gradient {
    position: absolute;
    z-index: -2;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            color-mix(
                in srgb,
                var(--uniform-accent) 78%,
                #10284e
            ) 0%,
            color-mix(
                in srgb,
                var(--uniform-accent) 51%,
                transparent
            ) 52%,
            rgba(4, 20, 47, .08) 100%
        );
    opacity: .9;
}

.uniform-category::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(4, 23, 53, .04),
            rgba(3, 19, 46, .45)
        );
}


/* CONTENT */

.uniform-category__content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    padding: 26px;
}

.uniform-category__content small {
    margin-bottom: 10px;
    color: rgba(255,255,255,.88);
    font-size: 22px;
    font-weight: 800;
}

.uniform-category__content strong {
    max-width: 175px;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.035em;
}

.uniform-category__content > span {
    max-width: 165px;
    margin-top: 15px;
    color: rgba(255,255,255,.83);
    font-size: 11px;
    line-height: 1.55;
}

.uniform-category__content i {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    margin-top: auto;
    color: #133465;
    border-radius: 50%;
    background: #fff;
    font-style: normal;
    transition:
        color 300ms ease,
        background 300ms ease,
        transform 300ms ease;
}

.uniform-category:hover
.uniform-category__content i {
    color: #fff;
    background: var(--uniform-accent);
    transform: translateX(5px);
}

.uniform-category__content svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1250px) {

    .uniform-showcase__container {
        width: min(calc(100% - 50px), 1180px);
    }

    .uniform-showcase__top {
        grid-template-columns:
            280px
            minmax(450px, 1fr);
    }

    .uniform-showcase__identity {
        display: none;
    }

}


@media (max-width: 950px) {

    .uniform-showcase__top {
        grid-template-columns: 1fr;
    }

    .uniform-showcase__intro {
        max-width: 650px;
        padding-bottom: 20px;
    }

    .uniform-showcase__photo {
        height: 620px;
    }

    .uniform-showcase__categories {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 650px) {

    .uniform-showcase {
        padding: 55px 0 40px;
    }

    .uniform-showcase__container {
        width: min(calc(100% - 28px), 600px);
    }

    .uniform-showcase__intro {
        text-align: center;
    }

    .uniform-showcase__eyebrow {
        justify-content: center;
    }

    .uniform-showcase__title {
        font-size: clamp(47px, 13vw, 62px);
    }

    .uniform-showcase__line {
        margin-inline: auto;
    }

    .uniform-showcase__description {
        margin-inline: auto;
    }

    .uniform-showcase__primary,
    .uniform-showcase__secondary {
        align-self: center;
    }

    .uniform-showcase__photo {
        height: 520px;
        border-radius: 23px;
    }

    .uniform-showcase__slider-ui {
        left: 15px;
        bottom: 16px;
    }

    .uniform-showcase__arrows {
        right: 15px;
        bottom: 15px;
    }

    .uniform-showcase__arrows button {
        width: 45px;
        height: 45px;
    }

    .uniform-showcase__categories {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .uniform-showcase__categories::-webkit-scrollbar {
        display: none;
    }

    .uniform-category {
        flex: 0 0 82%;
        height: 300px;
        scroll-snap-align: start;
    }

}


/* =========================================================
   WIST CANTEEN — EDITORIAL FOOD SHOWCASE
========================================================= */

.canteen-showcase {
    position: relative;
    z-index: 3;
    padding: 80px 0 55px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 55% 35%,
            rgba(63, 126, 233, 0.07),
            transparent 38%
        ),
        linear-gradient(
            145deg,
            #ffffff 0%,
            #f9fbff 50%,
            #eef4fd 100%
        );
}

.canteen-showcase__container {
    width: min(calc(100% - 80px), 1480px);
    margin-inline: auto;
}


/* =========================================================
   MAIN LAYOUT
========================================================= */

.canteen-showcase__main {
    display: grid;

    grid-template-columns:
        minmax(260px, 0.78fr)
        minmax(460px, 1.55fr)
        minmax(285px, 0.75fr);

    gap: 22px;

    align-items: stretch;
}


/* =========================================================
   INTRO
========================================================= */

.canteen-showcase__intro {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding:
        45px 18px
        45px 5px;
}

.canteen-showcase__eyebrow {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 35px;

    color: #176ff0;

    font-family:
        var(--font-heading, "Manrope", sans-serif);

    font-size: 13px;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.08em;
}

.canteen-showcase__eyebrow span {
    width: 9px;
    height: 9px;

    flex: 0 0 auto;

    border-radius: 50%;

    background: #176ff0;
}

.canteen-showcase__title {
    margin: 0;

    color: #071b3d;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(54px, 4.8vw, 78px);

    font-weight: 500;

    line-height: 0.98;

    letter-spacing: -0.055em;
}

.canteen-showcase__title span {
    display: block;

    margin-top: 10px;
}

.canteen-showcase__title-line {
    width: 53px;
    height: 3px;

    margin:
        34px 0
        27px;

    background: #e8ae16;
}

.canteen-showcase__description {
    max-width: 315px;

    margin:
        0 0 34px;

    color: #50617a;

    font-size: 15px;

    line-height: 1.9;
}

.canteen-showcase__actions {
    display: flex;
    flex-direction: column;

    align-items: flex-start;

    gap: 23px;
}


/* =========================================================
   CTA
========================================================= */

.canteen-showcase__primary-cta {
    min-height: 58px;

    display: inline-flex;

    align-items: center;

    gap: 23px;

    padding:
        0 10px
        0 27px;

    color: #ffffff;

    border-radius: 999px;

    background:
        linear-gradient(
            110deg,
            #083275,
            #031c4a
        );

    box-shadow:
        0 18px 38px
        rgba(5, 36, 87, 0.19);

    font-family:
        var(--font-heading, "Manrope", sans-serif);

    font-size: 13px;

    font-weight: 700;

    text-decoration: none;
}

.canteen-showcase__primary-cta-icon {
    width: 40px;
    height: 40px;

    display: grid;

    place-items: center;

    color: #071b3d;

    border-radius: 50%;

    background: #ffffff;

    transition:
        color 300ms ease,
        background-color 300ms ease,
        transform 400ms
        cubic-bezier(0.22, 1, 0.36, 1);
}

.canteen-showcase__primary-cta:hover
.canteen-showcase__primary-cta-icon {
    color: #ffffff;

    background: #176ff0;

    transform: translateX(5px);
}

.canteen-showcase__primary-cta svg,
.canteen-showcase__secondary-cta svg {
    width: 18px;
    height: 18px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.7;

    stroke-linecap: round;

    stroke-linejoin: round;
}

.canteen-showcase__secondary-cta {
    display: inline-flex;

    align-items: center;

    gap: 14px;

    padding-bottom: 5px;

    color: #53627a;

    border-bottom:
        1px solid rgba(83, 98, 122, 0.3);

    font-size: 13px;

    font-weight: 600;

    text-decoration: none;

    transition:
        color 250ms ease,
        border-color 250ms ease;
}

.canteen-showcase__secondary-cta:hover {
    color: #176ff0;

    border-color: #176ff0;
}


/* =========================================================
   PHOTO
========================================================= */

.canteen-showcase__visual {
    min-width: 0;
}

.canteen-showcase__photo {
    position: relative;

    height: 670px;

    overflow: hidden;

    border-radius: 28px;

    background: #071b3d;

    box-shadow:
        0 30px 70px
        rgba(7, 27, 61, 0.15);

    isolation: isolate;
}

.canteen-showcase__food {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: bottom;

    opacity: 0;

    transform:
        scale(1.045);

    filter:
        saturate(0.9);

    transition:
        opacity 700ms ease,
        transform 1300ms
        cubic-bezier(0.22, 1, 0.36, 1),
        filter 900ms ease;

    pointer-events: none;
}

.canteen-showcase__food.is-active {
    opacity: 1;

    transform:
        scale(1);

    filter:
        saturate(1);
}

.canteen-showcase__photo:hover
.canteen-showcase__food.is-active {
    transform:
        scale(1.025);
}


/* =========================================================
   PHOTO OVERLAY
========================================================= */

.canteen-showcase__photo-gradient {
    position: absolute;

    z-index: 3;

    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            rgba(3, 19, 47, 0.04) 20%,
            rgba(3, 20, 49, 0.04) 50%,
            rgba(2, 17, 43, 0.94) 100%
        );
}

.canteen-showcase__photo-content {
    position: absolute;
    z-index: 7;

    top: 30px;
    left: 32px;
    right: auto;
    bottom: auto;

    max-width: 330px;
}

.canteen-showcase__photo-number {
    display: block;

    margin-bottom: 12px;

    color: #f2bb19;

    font-family:
        var(--font-heading, "Manrope", sans-serif);

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 0.08em;
}

.canteen-showcase__photo-category {
    margin:
        0 0 11px;

    color: #ffffff;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(34px, 3vw, 48px);

    font-weight: 500;

    line-height: 1;

    letter-spacing: -0.04em;
}

.canteen-showcase__photo-content p {
    max-width: 330px;

    margin: 0;

    color:
        rgba(255, 255, 255, 0.87);

    font-size: 14px;

    line-height: 1.55;
}


/* =========================================================
   PHOTO ARROWS
========================================================= */

.canteen-showcase__photo-controls {
    position: absolute;

    z-index: 9;

    right: 28px;
    bottom: 32px;

    display: flex;

    align-items: center;

    gap: 10px;
}

.canteen-showcase__photo-arrow {
    width: 50px;
    height: 50px;

    display: grid;

    place-items: center;

    padding: 0;

    color: #ffffff;

    border:
        1px solid rgba(255, 255, 255, 0.25);

    border-radius: 50%;

    background:
        rgba(2, 20, 49, 0.25);

    backdrop-filter:
        blur(15px);

    cursor: pointer;

    transition:
        color 250ms ease,
        background-color 250ms ease,
        transform 300ms ease;
}

.canteen-showcase__photo-arrow--primary {
    color: #071b3d;

    background: #ffffff;
}

.canteen-showcase__photo-arrow:hover {
    color: #ffffff;

    background: #176ff0;

    transform:
        scale(1.08);
}

.canteen-showcase__photo-arrow svg {
    width: 20px;
    height: 20px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.8;

    stroke-linecap: round;

    stroke-linejoin: round;
}


/* =========================================================
   DOTS
========================================================= */

.canteen-showcase__dots {
    position: absolute;

    z-index: 10;

    bottom: 23px;
    left: 50%;

    display: flex;

    gap: 8px;

    transform: translateX(-50%);
}

.canteen-showcase__dots button {
    width: 7px;
    height: 7px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.35);

    cursor: pointer;

    transition:
        width 300ms ease,
        background-color 300ms ease;
}

.canteen-showcase__dots button.is-active {
    width: 20px;

    border-radius: 30px;

    background: #f2b500;
}


/* =========================================================
   NUTRITION CARD
========================================================= */

.canteen-showcase__nutrition-card {
    position: relative;

    min-width: 0;

    display: flex;

    flex-direction: column;

    padding:
        34px 30px
        29px;

    border:
        1px solid rgba(255, 255, 255, 0.86);

    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.9),
            rgba(231, 240, 253, 0.72)
        );

    box-shadow:
        0 30px 70px
        rgba(34, 75, 143, 0.14);

    backdrop-filter:
        blur(25px);

    transition:
        opacity 320ms ease,
        transform 450ms
        cubic-bezier(0.22, 1, 0.36, 1);
}

.canteen-showcase__nutrition-card.is-changing {
    opacity: 0;

    transform:
        translateX(12px)
        scale(0.985);
}

.canteen-showcase__nutrition-label {
    align-self: flex-start;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    min-height: 42px;

    margin-bottom: 29px;

    padding:
        0 16px
        0 7px;

    color: #16346b;

    border:
        1px solid rgba(255, 255, 255, 0.87);

    border-radius: 999px;

    background:
        rgba(255, 255, 255, 0.58);

    font-size: 10px;

    font-weight: 800;

    text-transform: uppercase;
}

.canteen-showcase__nutrition-label-icon {
    width: 30px;
    height: 30px;

    display: grid;

    place-items: center;

    color: #e8a900;

    border-radius: 50%;

    background: #ffffff;
}

.canteen-showcase__nutrition-label-icon svg {
    width: 17px;
    height: 17px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.6;
}

.canteen-showcase__nutrition-title {
    margin:
        0 0 23px;

    color: #071b3d;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(32px, 2.3vw, 43px);

    font-weight: 500;

    line-height: 1.02;

    letter-spacing: -0.045em;
}

.canteen-showcase__nutrition-line {
    width: 49px;
    height: 2px;

    margin-bottom: 26px;

    background: #e5ad16;
}

.canteen-showcase__nutrition-description {
    margin:
        0 0 27px;

    color: #52627b;

    font-size: 13px;

    line-height: 1.75;
}


/* =========================================================
   NUTRITION STATS
========================================================= */

.canteen-showcase__nutrition-stats {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    margin-top: auto;

    padding:
        26px 0;

    border-top:
        1px solid rgba(7, 27, 61, 0.08);

    border-bottom:
        1px solid rgba(7, 27, 61, 0.08);
}

.canteen-showcase__nutrition-stats > div {
    display: flex;

    align-items: center;

    flex-direction: column;

    text-align: center;
}

.canteen-showcase__nutrition-stats > div:not(:last-child) {
    border-right:
        1px solid rgba(7, 27, 61, 0.08);
}

.canteen-showcase__nutrition-stats svg {
    width: 21px;
    height: 21px;

    margin-bottom: 9px;

    fill: none;

    stroke: #17447c;

    stroke-width: 1.6;

    stroke-linecap: round;

    stroke-linejoin: round;
}

.canteen-showcase__nutrition-stats strong {
    color: #071b3d;

    font-size: 17px;

    font-weight: 800;
}

.canteen-showcase__nutrition-stats span {
    margin-top: 3px;

    color: #69768a;

    font-size: 9px;
}


/* =========================================================
   PORTION NOTE
========================================================= */

.canteen-showcase__portion-note {
    display: flex;

    align-items: center;

    gap: 14px;

    padding:
        25px 4px
        21px;
}

.canteen-showcase__portion-note > span {
    width: 40px;
    height: 40px;

    flex: 0 0 auto;

    display: grid;

    place-items: center;

    color: #349b5a;

    border-radius: 50%;

    background:
        rgba(81, 190, 112, 0.1);
}

.canteen-showcase__portion-note svg {
    width: 20px;
    height: 20px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.6;
}

.canteen-showcase__portion-note p {
    margin: 0;

    color: #52627b;

    font-size: 12px;

    line-height: 1.55;
}


/* =========================================================
   VIEW MEAL
========================================================= */

.canteen-showcase__view-meal {
    min-height: 56px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding:
        0 9px
        0 25px;

    color: #ffffff;

    border-radius: 999px;

    background:
        linear-gradient(
            110deg,
            #083174,
            #031d4b
        );

    text-decoration: none;

    font-size: 12px;

    font-weight: 700;
}

.canteen-showcase__view-meal > span:last-child {
    width: 39px;
    height: 39px;

    display: grid;

    place-items: center;

    color: #071b3d;

    border-radius: 50%;

    background: #ffffff;

    transition:
        color 300ms ease,
        background-color 300ms ease,
        transform 300ms ease;
}

.canteen-showcase__view-meal:hover
> span:last-child {
    color: #ffffff;

    background: #176ff0;

    transform: translateX(3px);
}

.canteen-showcase__view-meal svg {
    width: 18px;
    height: 18px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.7;

    stroke-linecap: round;

    stroke-linejoin: round;
}


/* =========================================================
   CATEGORIES
========================================================= */

.canteen-showcase__categories {
    display: grid;

    grid-template-columns:
        repeat(5, minmax(0, 1fr));

    margin-top: 34px;

    overflow: hidden;

    border:
        1px solid rgba(7, 27, 61, 0.07);

    border-radius: 25px;

    background:
        rgba(255, 255, 255, 0.62);

    box-shadow:
        0 22px 60px
        rgba(34, 75, 143, 0.11);

    backdrop-filter:
        blur(24px);
}

.canteen-category {
    --canteen-accent: #176ff0;

    position: relative;

    min-width: 0;

    min-height: 150px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding:
        25px 27px
        35px;

    color: #071b3d;

    border: 0;

    border-right:
        1px solid rgba(7, 27, 61, 0.075);

    background: transparent;

    text-align: left;

    cursor: pointer;

    transition:
        background-color 300ms ease;
}

.canteen-category:last-child {
    border-right: 0;
}

.canteen-category:nth-child(1) {
    --canteen-accent: #f1aa19;
}

.canteen-category:nth-child(2) {
    --canteen-accent: #51a858;
}

.canteen-category:nth-child(3) {
    --canteen-accent: #287ceb;
}

.canteen-category:nth-child(4) {
    --canteen-accent: #ef7643;
}

.canteen-category:nth-child(5) {
    --canteen-accent: #d9498a;
}

.canteen-category:hover,
.canteen-category.is-active {
    background:
        linear-gradient(
            145deg,
            color-mix(
                in srgb,
                var(--canteen-accent) 8%,
                transparent
            ),
            rgba(255, 255, 255, 0.1)
        );
}

.canteen-category__number {
    margin-bottom: 9px;

    color:
        var(--canteen-accent);

    font-size: 21px;

    font-weight: 800;
}

.canteen-category__body {
    display: flex;

    flex-direction: column;

    gap: 7px;
}

.canteen-category__body strong {
    color: #071b3d;

    font-size: 16px;

    font-weight: 800;

    line-height: 1.2;
}

.canteen-category__body small {
    max-width: 170px;

    color: #66748b;

    font-size: 11px;

    line-height: 1.5;
}

.canteen-category__progress {
    position: absolute;

    right: 27px;
    bottom: 17px;
    left: 27px;

    height: 3px;

    overflow: hidden;

    border-radius: 20px;

    background:
        rgba(7, 27, 61, 0.08);
}

.canteen-category__progress i {
    position: absolute;

    inset:
        0 auto
        0 0;

    width: 0;

    border-radius: inherit;

    background:
        var(--canteen-accent);
}

.canteen-category.is-active
.canteen-category__progress i {
    animation:
        canteenCategoryProgress
        6000ms linear forwards;
}

@keyframes canteenCategoryProgress {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}


/* =========================================================
   1300
========================================================= */

@media (max-width: 1300px) {

    .canteen-showcase__container {
        width:
            min(
                calc(100% - 50px),
                1200px
            );
    }

    .canteen-showcase__main {
        grid-template-columns:
            290px
            minmax(420px, 1fr)
            280px;
    }

    .canteen-showcase__photo {
        height: 610px;
    }

    .canteen-showcase__title {
        font-size: 58px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .canteen-showcase {
        padding:
            65px 0
            45px;
    }

    .canteen-showcase__container {
        width:
            min(
                calc(100% - 42px),
                900px
            );
    }

    .canteen-showcase__main {
        grid-template-columns:
            minmax(0, 1fr)
            300px;
    }

    .canteen-showcase__intro {
        grid-column:
            1 / -1;

        padding:
            0 0 45px;

        max-width: 600px;
    }

    .canteen-showcase__description {
        max-width: 430px;
    }

    .canteen-showcase__photo {
        height: 600px;
    }

    .canteen-showcase__categories {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .canteen-category {
        border-bottom:
            1px solid rgba(7, 27, 61, 0.075);
    }

    .canteen-category:nth-child(2n) {
        border-right: 0;
    }

    .canteen-category:last-child {
        grid-column:
            1 / -1;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 720px) {

    .canteen-showcase {
        padding:
            52px 0
            35px;
    }

    .canteen-showcase__container {
        width:
            min(
                calc(100% - 28px),
                620px
            );
    }

    .canteen-showcase__main {
        display: flex;

        flex-direction: column;

        gap: 22px;
    }

    .canteen-showcase__intro {
        padding:
            0 0 20px;

        text-align: center;
    }

    .canteen-showcase__eyebrow {
        justify-content: center;

        margin-bottom: 24px;
    }

    .canteen-showcase__title {
        font-size:
            clamp(48px, 14vw, 64px);
    }

    .canteen-showcase__title-line {
        margin-inline: auto;
    }

    .canteen-showcase__description {
        margin-inline: auto;
    }

    .canteen-showcase__actions {
        align-items: center;
    }

    .canteen-showcase__photo {
        height:
            min(
                130vw,
                580px
            );

        border-radius: 22px;
    }

    .canteen-showcase__photo-content {
        right: 25px;
        bottom: 95px;
        left: 24px;
    }

    .canteen-showcase__photo-category {
        font-size: 35px;
    }

    .canteen-showcase__photo-controls {
        right: 22px;
        bottom: 27px;
    }

    .canteen-showcase__dots {
        left: 27px;
        bottom: 47px;

        transform: none;
    }

    .canteen-showcase__nutrition-card {
        padding:
            28px 23px;

        border-radius: 22px;
    }

    .canteen-showcase__categories {
        display: flex;

        overflow-x: auto;

        scroll-snap-type:
            x mandatory;

        border-radius: 21px;

        scrollbar-width: none;
    }

    .canteen-showcase__categories::-webkit-scrollbar {
        display: none;
    }

    .canteen-category {
        flex:
            0 0 245px;

        min-height: 145px;

        scroll-snap-align:
            start;
    }

    .canteen-category:last-child {
        border-right: 0;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .canteen-showcase__food,
    .canteen-showcase__nutrition-card,
    .canteen-showcase__photo-arrow,
    .canteen-showcase__primary-cta-icon {
        transition-duration: 0.01ms;
    }

    .canteen-category.is-active
    .canteen-category__progress i {
        animation: none;

        width: 100%;
    }

}

/* =========================================================
   FACILITY CINEMATIC CANVAS
========================================================= */

.facility-canvas {
    --active-color: #267cf4;

    position: relative;
    min-height: 980px;
    padding: 80px 0 44px;
    overflow: hidden;
    color: #071b3d;
    background: #eaf2ff;
    isolation: isolate;
}

.facility-canvas__backgrounds {
    position: absolute;
    inset: 0;
    z-index: -3;
}

.facility-canvas__background {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    opacity: 0;
    visibility: hidden;

    filter:
        saturate(1.03)
        contrast(1.01);

    transform: scale(1.065);

    transition:
        opacity 900ms ease,
        visibility 900ms ease,
        transform 7000ms linear;
}

.facility-canvas__background.is-active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.facility-canvas__overlay {
    position: absolute;
    z-index: -2;
    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(3, 17, 42, 0.94) 0%,
            rgba(4, 23, 53, 0.88) 18%,
            rgba(5, 29, 64, 0.68) 34%,
            rgba(7, 38, 79, 0.28) 54%,
            rgba(255, 255, 255, 0.06) 72%,
            rgba(255, 255, 255, 0.18) 100%
        ),
        linear-gradient(
            180deg,
            rgba(3, 18, 43, 0.16) 0%,
            transparent 58%,
            rgba(8, 36, 75, 0.18) 100%
        );
}

.facility-canvas__container {
    position: relative;
    z-index: 3;

    width: min(calc(100% - 80px), 1480px);
    margin-inline: auto;
}


/* =========================================================
   MAIN COMPOSITION
========================================================= */

.facility-canvas__main {
    position: relative;
    min-height: 650px;
}


/* =========================================================
   LEFT INTRO
========================================================= */

.facility-canvas__intro {
    position: absolute;
    top: 45px;
    left: 0;

    width: min(610px, 46vw);
}

.facility-canvas__eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;

    color: #176cf0;

    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.045em;
}

.facility-canvas__eyebrow-icon {
    width: 30px;
    height: 30px;

    display: grid;
    place-items: center;
}

.facility-canvas__eyebrow-icon svg {
    width: 25px;
    height: 25px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.facility-canvas__intro-line {
    width: 45px;
    height: 2px;

    display: block;

    margin: 26px 0 28px;

    background: #efb000;
}

.facility-canvas__title {
    margin: 0;

    color: #ffffff;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(55px, 5.1vw, 84px);
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: -0.055em;
}

.facility-canvas__description {
    max-width: 530px;

    margin: 30px 0 0;

    color: #ffffff;

    font-size: 16px;
    font-weight: 500;
    line-height: 1.75;
}


/* =========================================================
   RIGHT DETAIL GLASS PANEL
========================================================= */

.facility-canvas__detail {
    position: absolute;
    top: 0;
    right: 0;

    width: 375px;
    min-height: 560px;

    overflow: hidden;

    padding: 36px 34px 30px;

    border:
        1px solid rgba(255, 255, 255, 0.92);

    border-radius: 35px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.77),
            rgba(220, 232, 249, 0.65)
        );

    box-shadow:
        0 34px 80px rgba(20, 55, 108, 0.2),
        inset 0 1px 0 #ffffff;

    backdrop-filter:
        blur(28px)
        saturate(125%);

    -webkit-backdrop-filter:
        blur(28px)
        saturate(125%);

    transition:
        border-color 500ms ease,
        box-shadow 500ms ease;
}

.facility-canvas__detail::before {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    background:
        radial-gradient(
            circle at 86% 82%,
            color-mix(
                in srgb,
                var(--active-color) 17%,
                transparent
            ),
            transparent 48%
        );
}

.facility-canvas__detail-top {
    position: relative;
    z-index: 3;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.facility-canvas__detail-top > strong {
    color: var(--active-color);

    font-family: "Manrope", sans-serif;
    font-size: 20px;
    font-weight: 800;
}

.facility-canvas__dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.facility-canvas__dot {
    width: 9px;
    height: 9px;

    padding: 0;

    border: 0;
    border-radius: 50%;

    background: rgba(55, 77, 111, 0.23);

    cursor: pointer;

    transition:
        width 300ms ease,
        background 300ms ease;
}

.facility-canvas__dot.is-active {
    width: 25px;

    border-radius: 20px;

    background: var(--active-color);
}

.facility-canvas__detail-title {
    position: relative;
    z-index: 3;

    margin: 34px 0 0;

    color: #071b3d;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 45px;
    font-weight: 500;
    line-height: 1.01;
    letter-spacing: -0.045em;
}

.facility-canvas__detail-line {
    position: relative;
    z-index: 3;

    width: 44px;
    height: 2px;

    display: block;

    margin: 28px 0 25px;

    background: var(--active-color);
}

.facility-canvas__detail-description {
    position: relative;
    z-index: 3;

    min-height: 104px;

    margin: 0;

    color: #61718b;

    font-size: 14px;
    line-height: 1.75;
}


/* =========================================================
   METRICS
========================================================= */

.facility-canvas__metrics {
    position: relative;
    z-index: 3;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    margin-top: 29px;
}

.facility-canvas__metric {
    min-width: 0;

    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 0 9px;

    text-align: center;

    border-right:
        1px solid rgba(65, 90, 129, 0.14);
}

.facility-canvas__metric:last-child {
    border-right: 0;
}

.facility-canvas__metric-icon {
    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    margin-bottom: 7px;

    color: var(--active-color);
}

.facility-canvas__metric-icon svg {
    width: 25px;
    height: 25px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.facility-canvas__metric strong {
    color: #071b3d;

    font-family: "Manrope", sans-serif;
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}

.facility-canvas__metric small {
    margin-top: 8px;

    color: #667791;

    font-size: 9px;
    font-weight: 600;
    line-height: 1.35;
}


/* =========================================================
   EXPLORE BUTTON
========================================================= */

.facility-canvas__link {
    position: relative;
    z-index: 3;

    min-height: 54px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    overflow: hidden;

    margin-top: 29px;
    padding: 0 20px;

    color: #ffffff;

    border-radius: 100px;

    background:
        linear-gradient(
            135deg,
            var(--active-color),
            #176cf0
        );

    box-shadow:
        0 17px 36px
        color-mix(
            in srgb,
            var(--active-color) 25%,
            transparent
        );

    font-size: 12px;
    font-weight: 800;
}

.facility-canvas__link::before {
    content: "";

    position: absolute;

    top: -80%;
    left: -60%;

    width: 36%;
    height: 260%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.7),
            transparent
        );

    transform: rotate(18deg);

    transition:
        left 850ms cubic-bezier(0.22, 1, 0.36, 1);
}

.facility-canvas__link:hover::before {
    left: 135%;
}

.facility-canvas__link svg {
    width: 19px;
    height: 19px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;

    transition:
        transform 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

.facility-canvas__link:hover svg {
    transform: translateX(5px);
}


/* =========================================================
   THUMBNAIL FOOTER
========================================================= */

.facility-canvas__footer-wrap {
    position: relative;

    display: grid;
    grid-template-columns:
        50px minmax(0, 1fr) 50px;

    align-items: center;
    gap: 14px;

    margin-top: -18px;
}
.facility-canvas__thumbnails {
    display: flex;
    gap: 18px;

    overflow-x: auto;
    overflow-y: hidden;

    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;

    scrollbar-width: none;
}

.facility-canvas__thumbnails::-webkit-scrollbar {
    display: none;
}

.facility-thumbnail {
    flex: 0 0 220px;
    min-width: 220px;
	background: transparent;
}

.facility-thumbnail__image {
    position: relative;

    width: 100%;
    aspect-ratio: 1.42 / 1;

    display: block;

    overflow: hidden;

    border:
        2px solid transparent;

    border-radius: 23px;

    background: #dde6f2;

    box-shadow:
        0 15px 36px rgba(29, 66, 121, 0.12);

    transition:
        border-color 350ms ease,
        box-shadow 350ms ease,
        transform 550ms cubic-bezier(0.22, 1, 0.36, 1);
}

.facility-thumbnail__image::after {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            transparent 57%,
            rgba(5, 24, 53, 0.13)
        );
}

.facility-thumbnail img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    filter:
        saturate(0.88)
        contrast(0.98);

    transform: scale(1);

    transition:
        filter 350ms ease,
        transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.facility-thumbnail strong {
    display: block;

    margin-top: 12px;

    color: #ffffff;

    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
    text-align: center;

    transition:
        color 300ms ease,
        transform 400ms cubic-bezier(0.22, 1, 0.36, 1);
}

.facility-thumbnail:hover
.facility-thumbnail__image {
    border-color:
        color-mix(
            in srgb,
            var(--facility-color) 55%,
            transparent
        );

    transform:
        translateY(-5px)
        scale(1.015);

    box-shadow:
        0 21px 44px
        color-mix(
            in srgb,
            var(--facility-color) 21%,
            transparent
        );
}

.facility-thumbnail:hover img {
    filter:
        saturate(1.08)
        contrast(1.01);

    transform: scale(1.06);
}

.facility-thumbnail:hover strong {
    color: var(--facility-color);
    transform: translateY(-2px);
}

.facility-thumbnail.is-active
.facility-thumbnail__image {
    border-color: var(--facility-color);

    box-shadow:
        0 20px 47px
        color-mix(
            in srgb,
            var(--facility-color) 24%,
            transparent
        ),
        0 0 0 5px rgba(255, 255, 255, 0.44);
}

.facility-thumbnail.is-active img {
    filter:
        saturate(1.09)
        contrast(1.02);

    transform: scale(1.035);
}

.facility-thumbnail.is-active strong {
    color: var(--facility-color);
}


/* =========================================================
   FOOTER ARROWS
========================================================= */

.facility-canvas__arrow {
    width: 50px;
    height: 50px;

    display: grid;
    place-items: center;

    padding: 0;

    color: #173c75;

    border:
        1px solid rgba(255, 255, 255, 0.93);

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.78);

    box-shadow:
        0 16px 35px rgba(31, 65, 117, 0.11);

    backdrop-filter: blur(15px);

    cursor: pointer;

    transition:
        color 300ms ease,
        background 300ms ease,
        transform 450ms cubic-bezier(0.22, 1, 0.36, 1);
}

.facility-canvas__arrow:hover {
    color: #ffffff;
    background: var(--active-color);

    transform:
        rotate(-6deg)
        scale(1.08);
}

.facility-canvas__arrow svg {
    width: 20px;
    height: 20px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   CONTENT TRANSITION
========================================================= */

.facility-canvas__detail.is-changing
.facility-canvas__detail-title,
.facility-canvas__detail.is-changing
.facility-canvas__detail-description,
.facility-canvas__detail.is-changing
.facility-canvas__metrics,
.facility-canvas__detail.is-changing
.facility-canvas__link {
    opacity: 0;

    filter: blur(7px);

    transform: translateY(18px);
}

.facility-canvas__detail-title,
.facility-canvas__detail-description,
.facility-canvas__metrics,
.facility-canvas__link {
    opacity: 1;

    filter: blur(0);

    transform: translateY(0);

    transition:
        opacity 500ms ease,
        filter 500ms ease,
        transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {
    .facility-canvas {
        min-height: auto;
    }

    .facility-canvas__container {
        width: calc(100% - 42px);
    }

    .facility-canvas__main {
        min-height: 790px;
    }

    .facility-canvas__intro {
        width: min(540px, 57vw);
    }

    .facility-canvas__detail {
        top: 170px;

        width: 330px;
    }

    .facility-canvas__thumbnails {
        display: flex;

        overflow-x: auto;

        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .facility-canvas__thumbnails::-webkit-scrollbar {
        display: none;
    }

    .facility-thumbnail {
        flex: 0 0 245px;

        scroll-snap-align: center;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {
    .facility-canvas {
        padding: 55px 0 35px;
    }

    .facility-canvas__container {
        width: calc(100% - 26px);
    }

    .facility-canvas__overlay {
        background:
            linear-gradient(
                180deg,
                rgba(255, 255, 255, 0.96) 0%,
                rgba(255, 255, 255, 0.75) 43%,
                rgba(10, 42, 86, 0.18) 70%,
                rgba(235, 243, 255, 0.92) 100%
            );
    }

    .facility-canvas__main {
        min-height: auto;

        display: flex;
        flex-direction: column;

        gap: 30px;
    }

    .facility-canvas__intro {
        position: relative;
        inset: auto;

        width: 100%;
    }

    .facility-canvas__title {
        font-size:
            clamp(48px, 13vw, 62px);
    }

    .facility-canvas__detail {
        position: relative;
        inset: auto;

        width: calc(100% - 12px);
        min-height: auto;

        margin: 90px auto 0;

        padding: 29px 21px 24px;

        border-radius: 28px;
    }

    .facility-canvas__detail-title {
        font-size: 39px;
    }

    .facility-canvas__detail-description {
        min-height: auto;
    }

    .facility-canvas__footer-wrap {
        grid-template-columns:
            40px minmax(0, 1fr) 40px;

        gap: 7px;

        margin-top: 32px;
    }

    .facility-thumbnail {
        flex-basis: 205px;
    }

    .facility-thumbnail__image {
        border-radius: 18px;
    }

    .facility-canvas__arrow {
        width: 40px;
        height: 40px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
    .facility-canvas__background,
    .facility-thumbnail,
    .facility-thumbnail__image,
    .facility-thumbnail img {
        transition-duration: 0.01ms;
    }
}

/* =========================================================
   LEADERSHIP TEAM
========================================================= */

.leadership-team {
    position: relative;
    z-index: 3;
    min-height: 1060px;
    padding: 85px 0 70px;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(
            circle at 78% 18%,
            rgba(213, 230, 255, 0.48),
            transparent 34%
        ),
        radial-gradient(
            circle at 13% 80%,
            rgba(255, 245, 220, 0.54),
            transparent 31%
        ),
        linear-gradient(
            145deg,
            #ffffff 0%,
            #f9fbff 52%,
            #eff5ff 100%
        );
}

.leadership-team__container {
    position: relative;
    z-index: 5;
    width: min(calc(100% - 80px), 1480px);
    margin-inline: auto;
}

.leadership-team__layout {
    display: grid;
    grid-template-columns: 1fr 1.65fr;
    gap: 64px;
    align-items: start;
}

/* =========================================================
   BACKGROUND
========================================================= */

.leadership-team__background {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.leadership-team__word {
    position: absolute;
    top: 30px;
    right: 50px;
    color: rgba(7, 27, 61, 0.035);
    font-family: "Manrope", sans-serif;
    font-size: clamp(110px, 12vw, 200px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.07em;
}

.leadership-team__shape {
    position: absolute;
    border-radius: 50%;
}

.leadership-team__shape--blue {
    top: -240px;
    right: -180px;
    width: 520px;
    height: 520px;
    background:
        radial-gradient(
            circle at 30% 40%,
            rgba(136, 182, 255, 0.45),
            rgba(79, 135, 230, 0.14) 62%,
            transparent 72%
        );
}

.leadership-team__shape--cream {
    left: -240px;
    bottom: -260px;
    width: 610px;
    height: 610px;
    background:
        radial-gradient(
            circle at 62% 35%,
            rgba(255, 245, 221, 0.85),
            rgba(245, 222, 175, 0.22) 65%,
            transparent 74%
        );
}

.leadership-team__arc {
    position: absolute;
    left: -185px;
    bottom: -360px;
    width: 710px;
    height: 710px;
    border: 1px solid rgba(224, 174, 56, 0.3);
    border-radius: 50%;
}

.leadership-team__dots {
    position: absolute;
    left: 15px;
    top: 500px;
    width: 125px;
    height: 100px;
    opacity: 0.35;
    background-image:
        radial-gradient(
            circle,
            #6f9be1 2px,
            transparent 2.5px
        );
    background-size: 22px 22px;
}

/* =========================================================
   INTRO
========================================================= */

.leadership-team__intro {
    padding-top: 7px;
}

.leadership-team__eyebrow {
    display: flex;
    flex-direction: column;
    width: fit-content;
    margin-bottom: 28px;
    color: #071b3d;
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.leadership-team__eyebrow i {
    width: 42px;
    height: 2px;
    margin-top: 13px;
    background: #efb51c;
}

.leadership-team__title {
    margin: 0;
    color: #071b3d;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(55px, 5vw, 79px);
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: -0.058em;
}

.leadership-team__title > span {
    display: block;
    margin-top: 7px;
}

.leadership-team__dot {
    color: #176ff0;
}

.leadership-team__description {
    max-width: 395px;
    margin: 30px 0 38px;
    color: #62718a;
    font-size: 15px;
    line-height: 1.86;
}

.leadership-team__cta {
    min-height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    min-width: 330px;
    padding: 0 10px 0 28px;
    color: #176ff0;
    border: 1px solid rgba(72, 129, 216, 0.22);
    border-radius: 100px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.79),
            rgba(228, 239, 255, 0.5)
        );
    box-shadow:
        0 17px 38px rgba(35, 76, 143, 0.1),
        inset 0 1px 0 #ffffff;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 800;
}

.leadership-team__cta-icon {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    color: #ffffff;
    border-radius: 50%;
    background: #176ff0;
    box-shadow:
        0 12px 26px rgba(23, 111, 240, 0.24);
    transition:
        background-color 300ms ease,
        transform 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

.leadership-team__cta-icon svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.leadership-team__cta:hover
.leadership-team__cta-icon {
    background: #e92f3a;
    transform:
        translateX(5px)
        rotate(-7deg);
}

/* =========================================================
   LEADER CARDS
========================================================= */

.leader-card {
    position: relative;
    min-width: 0;
}

.leader-card__button {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
    padding: 0;
    overflow: hidden;
    color: inherit;
    border: 1px solid rgba(255, 255, 255, 0.83);
    border-radius: 28px;
    background: #e6edf6;
    box-shadow:
        0 27px 65px rgba(40, 77, 139, 0.16);
    cursor: pointer;
    text-align: left;
    isolation: isolate;
}

.leader-card--featured {
    height: 560px;
    margin-bottom: 25px;
}

.leadership-team__grid {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.leadership-team__grid .leader-card {
    height: 435px;
}

.leader-card__image-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.leader-card__image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center 27%;
    transition:
        transform 850ms cubic-bezier(0.22, 1, 0.36, 1),
        filter 450ms ease;
}

.leader-card__image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            transparent 35%,
            rgba(3, 18, 42, 0.23) 100%
        );
}

.leader-card__image-reflection {
    position: absolute;
    top: -50%;
    left: -55%;
    width: 40%;
    height: 210%;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.26),
            transparent
        );
    transform: rotate(17deg);
    transition:
        left 950ms cubic-bezier(0.22, 1, 0.36, 1);
}

.leader-card__button:hover
.leader-card__image {
    transform: scale(1.045);
    filter: saturate(1.05);
}

.leader-card__button:hover
.leader-card__image-reflection {
    left: 135%;
}

/* =========================================================
   GLASS CARD
========================================================= */

.leader-card__glass {
    position: absolute;
    z-index: 5;
    right: 14px;
    bottom: 13px;
    left: 14px;
    min-height: 120px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.79);
    border-radius: 22px;
    background:
        linear-gradient(
            140deg,
            rgba(255, 255, 255, 0.68),
            rgba(225, 235, 249, 0.48)
        );
    box-shadow:
        0 24px 58px rgba(21, 55, 112, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.98),
        inset 0 -20px 40px rgba(70, 123, 201, 0.06);
    backdrop-filter:
        blur(25px)
        saturate(130%);
    -webkit-backdrop-filter:
        blur(25px)
        saturate(130%);
    transition:
        min-height 450ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 500ms cubic-bezier(0.22, 1, 0.36, 1),
        background-color 350ms ease;
}

.leader-card--featured .leader-card__glass {
    right: auto;
    bottom: 18px;
    left: 18px;
    width: min(72%, 570px);
    border-radius: 27px 80px 27px 27px;
}

.leader-card__light {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at var(--leader-x, 50%)
            var(--leader-y, 50%),
            rgba(255, 255, 255, 0.95),
            rgba(255, 255, 255, 0.22) 22%,
            transparent 46%
        );
    opacity: 0;
    pointer-events: none;
    transition: opacity 260ms ease;
}

.leader-card__shine {
    position: absolute;
    top: -55%;
    left: -55%;
    width: 38%;
    height: 220%;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.42),
            transparent
        );
    transform: rotate(18deg);
    transition:
        left 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.leader-card__button:hover
.leader-card__light {
    opacity: 1;
}

.leader-card__button:hover
.leader-card__shine {
    left: 135%;
}

.leader-card__button:hover
.leader-card__glass {
    transform: translateY(-8px);
    background:
        linear-gradient(
            140deg,
            rgba(255, 255, 255, 0.77),
            rgba(211, 229, 254, 0.58)
        );
}

.leader-card__content {
    position: relative;
    z-index: 3;
    padding: 28px 24px 20px;
}

.leader-card--featured .leader-card__content {
    padding: 28px 31px 23px;
}

.leader-card__number,
.leader-card__corner-number {
    color: #176ff0;
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    font-weight: 800;
}

.leader-card__number {
    display: inline-grid;
    place-items: center;
    min-width: 38px;
    height: 38px;
    margin-bottom: 17px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.46);
}

.leader-card__corner-number {
    position: absolute;
    z-index: 6;
    top: 17px;
    left: 17px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.76);
    border-radius: 12px;
    background: rgba(239, 246, 255, 0.78);
    box-shadow:
        0 10px 23px rgba(37, 79, 145, 0.12);
    backdrop-filter: blur(14px);
}

.leader-card__heading h3 {
    margin: 0 0 5px;
    color: #071b3d;
    font-family: "Manrope", sans-serif;
    font-size: 23px;
    font-weight: 800;
    letter-spacing: -0.035em;
}

.leader-card--featured
.leader-card__heading h3 {
    font-size: 29px;
}

.leader-card__heading p {
    margin: 0;
    color: #176ff0;
    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 800;
}

.leader-card__line {
    width: 35px;
    height: 2px;
    display: block;
    margin: 19px 0;
    background: #efb51c;
}

.leader-card__tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    color: #43536d;
    font-size: 11px;
    font-weight: 600;
}

.leader-card__tags i {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #176ff0;
}

.leader-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 22px;
    color: #176ff0;
    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 800;
}

.leader-card__footer svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    transition: transform 300ms ease;
}

.leader-card__button:hover
.leader-card__footer svg {
    transform: translateX(6px);
}

.leader-card__seal,
.leader-card__role-icon {
    position: absolute;
    z-index: 4;
    display: grid;
    place-items: center;
    color: #176ff0;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.26);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
}

.leader-card__seal {
    right: 26px;
    bottom: 34px;
    width: 105px;
    height: 105px;
    border-style: double;
}

.leader-card__seal span {
    font-family: Georgia, serif;
    font-size: 44px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow:
        0 3px 20px rgba(7, 27, 61, 0.26);
}

.leader-card__role-icon {
    top: 30px;
    right: 25px;
    width: 65px;
    height: 65px;
}

.leader-card__role-icon svg {
    width: 29px;
    height: 29px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
}

/* =========================================================
   MODAL
========================================================= */

.leader-modal {
    position: fixed;
    z-index: 5000;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 25px;
    visibility: hidden;
    opacity: 0;
    transition:
        visibility 350ms ease,
        opacity 350ms ease;
}

.leader-modal.is-open {
    visibility: visible;
    opacity: 1;
}

.leader-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 17, 41, 0.48);
    backdrop-filter: blur(13px);
}

.leader-modal__panel {
    position: relative;
    z-index: 2;
    width: min(100%, 980px);
    min-height: 590px;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 30px;
    background:
        linear-gradient(
            140deg,
            rgba(255, 255, 255, 0.82),
            rgba(225, 237, 255, 0.7)
        );
    box-shadow:
        0 45px 130px rgba(4, 20, 50, 0.37),
        inset 0 1px 0 #ffffff;
    backdrop-filter: blur(30px);
    transform:
        translateY(35px)
        scale(0.96);
    transition:
        transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.leader-modal.is-open
.leader-modal__panel {
    transform:
        translateY(0)
        scale(1);
}

.leader-modal__light {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(
            circle at 80% 10%,
            rgba(255, 255, 255, 0.86),
            transparent 36%
        );
}

.leader-modal__close {
    position: absolute;
    z-index: 5;
    top: 20px;
    right: 20px;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.52);
    cursor: pointer;
}

.leader-modal__close span {
    position: absolute;
    top: 22px;
    left: 13px;
    width: 19px;
    height: 1px;
    background: #071b3d;
}

.leader-modal__close span:first-child {
    transform: rotate(45deg);
}

.leader-modal__close span:last-child {
    transform: rotate(-45deg);
}

.leader-modal__image-wrap {
    min-height: 590px;
}

.leader-modal__image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
}

.leader-modal__content {
    position: relative;
    z-index: 2;
    padding: 90px 65px 55px;
}

.leader-modal__eyebrow {
    display: block;
    margin-bottom: 20px;
    color: #176ff0;
    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.leader-modal__title {
    margin: 0;
    color: #071b3d;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 52px;
    font-weight: 500;
    line-height: 1;
}

.leader-modal__role {
    margin: 12px 0 0;
    color: #176ff0;
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    font-weight: 800;
}

.leader-modal__line {
    width: 47px;
    height: 2px;
    display: block;
    margin: 27px 0;
    background: #efb51c;
}

.leader-modal__experience {
    display: block;
    margin-bottom: 18px;
    color: #071b3d;
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 800;
}

.leader-modal__bio {
    margin: 0 0 34px;
    color: #617089;
    font-size: 14px;
    line-height: 1.85;
}

.leader-modal__link {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 0 22px;
    color: #ffffff;
    border-radius: 100px;
    background: #071b3d;
    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 800;
}

.leader-modal__link svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

body.leader-modal-open {
    overflow: hidden;
}

/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1300px) {
    .leadership-team__container {
        width: min(calc(100% - 60px), 1180px);
    }

    .leadership-team__layout {
        gap: 40px;
    }

    .leadership-team__title {
        font-size: 62px;
    }

    .leader-card--featured {
        height: 520px;
    }

    .leadership-team__grid .leader-card {
        height: 410px;
    }

    .leader-card__tags {
        gap: 7px;
        font-size: 10px;
    }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {
    .leadership-team {
        min-height: 0;
        padding-top: 70px;
    }

    .leadership-team__container {
        width: min(calc(100% - 42px), 900px);
    }

    .leadership-team__layout {
        display: block;
    }

    .leadership-team__intro {
        max-width: 660px;
        margin-bottom: 55px;
    }

    .leader-card--featured {
        height: 570px;
    }

    .leadership-team__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .leadership-team__grid .leader-card:last-child {
        grid-column: 1 / -1;
        width: calc(50% - 13px);
        margin-inline: auto;
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {
    .leadership-team {
        padding: 60px 0 40px;
    }

    .leadership-team__container {
        width: min(calc(100% - 28px), 620px);
    }

    .leadership-team__intro {
        text-align: center;
    }

    .leadership-team__eyebrow {
        margin-inline: auto;
    }

    .leadership-team__eyebrow i {
        margin-inline: auto;
    }

    .leadership-team__title {
        font-size: clamp(49px, 14vw, 65px);
    }

    .leadership-team__description {
        margin-inline: auto;
    }

    .leadership-team__cta {
        min-width: 0;
        width: 100%;
    }

    .leader-card--featured {
        height: 590px;
    }

    .leader-card--featured
    .leader-card__glass {
        right: 12px;
        left: 12px;
        width: auto;
        border-radius: 22px;
    }

    .leader-card__seal {
        display: none;
    }

    .leadership-team__grid {
        display: flex;
        gap: 15px;
        overflow-x: auto;
        padding-bottom: 10px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .leadership-team__grid::-webkit-scrollbar {
        display: none;
    }

    .leadership-team__grid .leader-card,
    .leadership-team__grid .leader-card:last-child {
        flex: 0 0 88%;
        width: auto;
        height: 500px;
        scroll-snap-align: center;
    }

    .leader-card__role-icon {
        width: 56px;
        height: 56px;
    }

    .leader-modal {
        padding: 12px;
    }

    .leader-modal__panel {
        display: block;
        max-height: calc(100svh - 24px);
        overflow-y: auto;
    }

    .leader-modal__image-wrap {
        min-height: 330px;
        height: 330px;
    }

    .leader-modal__content {
        padding: 42px 26px 35px;
    }

    .leader-modal__title {
        font-size: 42px;
    }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
    .leader-card__image,
    .leader-card__glass,
    .leader-modal__panel {
        transition-duration: 0.01ms;
    }
}

/* =========================================================
   WIST NEWS
========================================================= */

.wist-news {
    position: relative;
    z-index: 3;
    padding: 100px 0 110px;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(
            circle at 92% 12%,
            rgba(218, 231, 255, 0.46),
            transparent 30%
        ),
        radial-gradient(
            circle at 3% 94%,
            rgba(255, 243, 218, 0.58),
            transparent 29%
        ),
        linear-gradient(
            145deg,
            #ffffff 0%,
            #fbfcff 54%,
            #f4f8ff 100%
        );
}

.wist-news__container {
    position: relative;
    z-index: 5;
    width: min(calc(100% - 80px), 1480px);
    margin-inline: auto;
}


/* =========================================================
   DECORATION
========================================================= */

.wist-news__decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.wist-news__decor-circle {
    position: absolute;
    top: -240px;
    right: -170px;
    width: 510px;
    height: 510px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle at 30% 50%,
            rgba(106, 159, 245, 0.19),
            rgba(76, 129, 220, 0.06) 66%,
            transparent 72%
        );
}

.wist-news__decor-dots {
    position: absolute;
    left: 18px;
    bottom: 90px;
    width: 126px;
    height: 95px;
    opacity: 0.31;
    background-image:
        radial-gradient(
            circle,
            #77a0df 2px,
            transparent 2.5px
        );
    background-size: 22px 22px;
}


/* =========================================================
   HEADER
========================================================= */

.wist-news__header {
    display: grid;
    grid-template-columns: 1fr 0.72fr;
    align-items: end;
    gap: 80px;
    margin-bottom: 65px;
}

.wist-news__eyebrow {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 23px;
    color: #efb000;
    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.wist-news__eyebrow-icon {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    color: #efb000;
    border: 1px solid rgba(255, 255, 255, 0.91);
    border-radius: 50%;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.92),
            rgba(255, 247, 220, 0.72)
        );
    box-shadow:
        0 12px 27px rgba(65, 84, 121, 0.1),
        inset 0 1px 0 #ffffff;
    backdrop-filter: blur(14px);
}

.wist-news__eyebrow-icon svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.wist-news__title {
    margin: 0;
    color: #071b3d;
    font-family: "Manrope", sans-serif;
    font-size: clamp(60px, 6vw, 91px);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.065em;
}

.wist-news__title span {
    color: transparent;
    background:
        linear-gradient(
            90deg,
            #267cf4,
            #277df4 55%,
            #f03343
        );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.wist-news__header-content {
    padding-bottom: 6px;
}

.wist-news__header-content p {
    max-width: 480px;
    margin: 0 0 25px;
    color: #60708a;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
}

.wist-news__view-all {
    display: inline-flex;
    align-items: center;
    gap: 17px;
    color: #071b3d;
    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 800;
}

.wist-news__view-all svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 300ms ease;
}

.wist-news__view-all:hover svg {
    transform: translateX(6px);
}


/* =========================================================
   GRID
========================================================= */

.wist-news__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 38px;
}


/* =========================================================
   CARD
========================================================= */

.news-card {
    --news-accent: #267cf4;
    --news-accent-rgb: 38, 124, 244;

    position: relative;
    min-width: 0;
    height: 620px;
}

.news-card__link {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
    color: inherit;
    border-radius: 31px;
    outline: none;
}

.news-card__image-wrap {
    position: absolute;
    inset: 0 0 270px;
    overflow: hidden;
    border: 1px solid rgba(var(--news-accent-rgb), 0.3);
    border-radius: 30px 30px 24px 24px;
    background: #e8edf4;
    box-shadow:
        0 24px 58px rgba(38, 72, 131, 0.13);
}

.news-card__image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition:
        transform 900ms cubic-bezier(0.22, 1, 0.36, 1),
        filter 450ms ease;
}

.news-card__image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            transparent 42%,
            rgba(4, 22, 52, 0.16) 100%
        );
}

.news-card__reflection {
    position: absolute;
    top: -55%;
    left: -60%;
    width: 40%;
    height: 215%;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent
        );
    transform: rotate(18deg);
    transition:
        left 950ms cubic-bezier(0.22, 1, 0.36, 1);
}

.news-card__link:hover
.news-card__image {
    transform: scale(1.055);
    filter: saturate(1.06);
}

.news-card__link:hover
.news-card__reflection {
    left: 135%;
}


/* =========================================================
   GLASS PANEL
========================================================= */

.news-card__glass {
    position: absolute;
    z-index: 5;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 365px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.87);
    border-radius: 30px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.74),
            rgba(229, 238, 253, 0.55)
        );
    box-shadow:
        0 30px 75px rgba(38, 76, 139, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        inset 0 -24px 50px rgba(var(--news-accent-rgb), 0.045);
    backdrop-filter:
        blur(26px)
        saturate(128%);
    -webkit-backdrop-filter:
        blur(26px)
        saturate(128%);
    transition:
        transform 550ms cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 350ms ease,
        background-color 350ms ease;
}

.news-card__glass::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.32),
            transparent 38%,
            rgba(var(--news-accent-rgb), 0.04)
        );
}

.news-card__cursor-light {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(
            circle at var(--news-x, 50%)
            var(--news-y, 50%),
            rgba(255, 255, 255, 0.95),
            rgba(255, 255, 255, 0.17) 22%,
            transparent 47%
        );
    opacity: 0;
    transition: opacity 250ms ease;
}

.news-card__link:hover
.news-card__glass {
    transform: translateY(-9px);
    box-shadow:
        0 38px 92px rgba(38, 76, 139, 0.2),
        0 0 55px rgba(var(--news-accent-rgb), 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        inset 0 -24px 50px rgba(var(--news-accent-rgb), 0.06);
}

.news-card__link:hover
.news-card__cursor-light {
    opacity: 1;
}


/* =========================================================
   ICON
========================================================= */

.news-card__icon {
    position: absolute;
    z-index: 8;
    top: -48px;
    left: 45px;
    width: 84px;
    height: 84px;
    display: grid;
    place-items: center;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 23px;
    background:
        linear-gradient(
            145deg,
            rgba(var(--news-accent-rgb), 0.82),
            var(--news-accent)
        );
    box-shadow:
        0 20px 42px rgba(var(--news-accent-rgb), 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.32);
    transition:
        transform 500ms cubic-bezier(0.22, 1, 0.36, 1),
        border-radius 350ms ease;
}

.news-card__icon svg {
    width: 37px;
    height: 37px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.news-card__link:hover
.news-card__icon {
    border-radius: 50%;
    transform:
        rotate(-8deg)
        scale(1.07);
}


/* =========================================================
   CONTENT
========================================================= */

.news-card__content {
    position: relative;
    z-index: 4;
    min-height: 365px;
    display: flex;
    flex-direction: column;
    padding: 52px 45px 33px;
}

.news-card__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 17px;
    color: #718098;
    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.035em;
}

.news-card__meta time {
    color: var(--news-accent);
}

.news-card__meta > span[aria-hidden="true"] {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--news-accent);
}

.news-card__content h3 {
    margin: 0 0 19px;
    color: #071b3d;
    font-family: "Manrope", sans-serif;
    font-size: clamp(24px, 2vw, 31px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.045em;
}

.news-card__content p {
    margin: 0;
    color: #60708a;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8;
}

.news-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 28px;
    color: var(--news-accent);
    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 800;
}

.news-card__arrow {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    color: var(--news-accent);
    border: 1px solid rgba(255, 255, 255, 0.88);
    border-radius: 50%;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.89),
            rgba(232, 240, 253, 0.63)
        );
    box-shadow:
        0 12px 27px rgba(35, 72, 134, 0.1),
        inset 0 1px 0 #ffffff;
    backdrop-filter: blur(14px);
    transition:
        color 300ms ease,
        background-color 300ms ease,
        transform 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

.news-card__arrow svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.news-card__link:hover
.news-card__arrow {
    color: #ffffff;
    background: var(--news-accent);
    transform:
        translateX(5px)
        rotate(-7deg);
}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1250px) {
    .wist-news__container {
        width: min(calc(100% - 60px), 1160px);
    }

    .wist-news__grid {
        gap: 24px;
    }

    .news-card {
        height: 600px;
    }

    .news-card__content {
        padding-inline: 31px;
    }

    .news-card__icon {
        left: 31px;
    }

    .news-card__content h3 {
        font-size: 25px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {
    .wist-news {
        padding-top: 80px;
    }

    .wist-news__container {
        width: min(calc(100% - 42px), 900px);
    }

    .wist-news__header {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-bottom: 50px;
    }

    .wist-news__header-content p {
        max-width: 650px;
    }

    .wist-news__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .news-card:last-child {
        grid-column: 1 / -1;
        width: calc(50% - 12px);
        margin-inline: auto;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {
    .wist-news {
        padding: 65px 0 75px;
    }

    .wist-news__container {
        width: min(calc(100% - 28px), 620px);
    }

    .wist-news__header {
        text-align: center;
    }

    .wist-news__eyebrow {
        justify-content: center;
    }

    .wist-news__title {
        font-size: clamp(52px, 15vw, 70px);
    }

    .wist-news__header-content p {
        margin-inline: auto;
    }

    .wist-news__view-all {
        justify-content: center;
    }

    .wist-news__grid {
        display: flex;
        gap: 17px;
        overflow-x: auto;
        padding:
            15px
            max(0px, calc((100vw - 88%) / 2))
            30px;
        margin-inline: -14px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .wist-news__grid::-webkit-scrollbar {
        display: none;
    }

    .news-card,
    .news-card:last-child {
        flex: 0 0 88%;
        width: auto;
        height: 605px;
        margin: 0;
        scroll-snap-align: center;
    }

    .news-card__image-wrap {
        inset-bottom: 280px;
    }

    .news-card__glass {
        min-height: 380px;
    }

    .news-card__content {
        min-height: 380px;
        padding:
            52px
            27px
            27px;
    }

    .news-card__icon {
        left: 27px;
        width: 76px;
        height: 76px;
    }

    .news-card__content h3 {
        font-size: 27px;
    }

    .wist-news__decor-dots {
        display: none;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
    .news-card__image,
    .news-card__glass,
    .news-card__reflection {
        transition-duration: 0.01ms;
    }
}


/* =========================================================
   WIST FOOTER
========================================================= */

.wist-footer {
    position: relative;
    z-index: 3;
    padding: 155px 0 28px;
    overflow: hidden;
    isolation: isolate;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 91% 12%,
            rgba(36, 111, 231, 0.26),
            transparent 30%
        ),
        radial-gradient(
            circle at 7% 90%,
            rgba(238, 181, 28, 0.1),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #061e45 0%,
            #041a3c 48%,
            #031631 100%
        );
}

.wist-footer__container {
    position: relative;
    z-index: 5;
    width: min(calc(100% - 80px), 1480px);
    margin-inline: auto;
}


/* =========================================================
   CURVE
========================================================= */

.wist-footer__curve {
    position: absolute;
    z-index: 7;
    top: -1px;
    right: 0;
    left: 0;
    height: 122px;
    overflow: hidden;
    color: #ffffff;
    pointer-events: none;
}

.wist-footer__curve svg {
    width: 100%;
    height: 100%;
    display: block;
}


/* =========================================================
   BACKGROUND DECORATIONS
========================================================= */

.wist-footer__background {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}

.wist-footer__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(20px);
}

.wist-footer__glow--blue {
    top: 70px;
    right: -180px;
    width: 540px;
    height: 540px;
    background:
        radial-gradient(
            circle,
            rgba(38, 124, 244, 0.23),
            transparent 70%
        );
}

.wist-footer__glow--gold {
    left: -230px;
    bottom: -260px;
    width: 520px;
    height: 520px;
    background:
        radial-gradient(
            circle,
            rgba(240, 181, 28, 0.12),
            transparent 70%
        );
}

.wist-footer__word {
    position: absolute;
    right: 2%;
    bottom: 25px;
    color: rgba(255, 255, 255, 0.018);
    font-family: "Manrope", sans-serif;
    font-size: clamp(150px, 19vw, 310px);
    font-weight: 800;
    line-height: 0.8;
    letter-spacing: -0.08em;
}

.wist-footer__mesh {
    position: absolute;
    inset: 0;
    opacity: 0.16;
    background-image:
        linear-gradient(
            rgba(130, 174, 238, 0.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(130, 174, 238, 0.08) 1px,
            transparent 1px
        );
    background-size: 70px 70px;
    mask-image:
        linear-gradient(
            90deg,
            transparent,
            #000 25%,
            #000 82%,
            transparent
        );
}

.wist-footer__wave {
    position: absolute;
    border: 1px solid rgba(67, 139, 240, 0.14);
    border-radius: 50%;
}

.wist-footer__wave--left {
    left: -320px;
    bottom: -520px;
    width: 760px;
    height: 760px;
    box-shadow:
        0 0 0 26px rgba(67, 139, 240, 0.025),
        0 0 0 55px rgba(67, 139, 240, 0.018);
}

.wist-footer__wave--right {
    top: 105px;
    right: -420px;
    width: 650px;
    height: 650px;
    box-shadow:
        0 0 0 30px rgba(238, 181, 28, 0.025);
}

.wist-footer__dots {
    position: absolute;
    right: 30px;
    bottom: 60px;
    width: 130px;
    height: 95px;
    opacity: 0.32;
    background-image:
        radial-gradient(
            circle,
            #4f8ee9 2px,
            transparent 2.5px
        );
    background-size: 22px 22px;
}


/* =========================================================
   MAIN GRID
========================================================= */

.wist-footer__main {
    display: grid;
    grid-template-columns:
        minmax(280px, 1.25fr)
        minmax(150px, 0.7fr)
        minmax(170px, 0.75fr)
        minmax(310px, 1.08fr);
    gap: 60px;
    align-items: start;
    padding-bottom: 60px;
}


/* =========================================================
   BRAND
========================================================= */

.wist-footer__brand {
    display: inline-block;
    margin-bottom: 28px;
}

.wist-footer__logo {
    width: 250px;
    height: auto;
    display: block;
}

.wist-footer__description {
    max-width: 340px;
    margin: 0 0 30px;
    color: rgba(224, 235, 250, 0.7);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.85;
}

.wist-footer__socials {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 11px;
    padding-top: 20px;
}

.wist-footer__social {
    position: relative;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 14px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.07),
            rgba(255, 255, 255, 0.025)
        );
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.065);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition:
        color 300ms ease,
        border-color 300ms ease,
        background-color 300ms ease,
        transform 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

.wist-footer__social-light {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    background:
        radial-gradient(
            circle at var(--social-x, 50%)
            var(--social-y, 50%),
            rgba(255, 255, 255, 0.38),
            transparent 55%
        );
    transition: opacity 250ms ease;
}

.wist-footer__social svg {
    position: relative;
    z-index: 2;
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.55;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.wist-footer__social:hover {
    color: #ffffff;
    border-color: rgba(77, 151, 255, 0.52);
    background: rgba(38, 124, 244, 0.18);
    transform:
        rotate(-7deg)
        scale(1.07);
}

.wist-footer__social:hover
.wist-footer__social-light {
    opacity: 1;
}


/* =========================================================
   LINKS
========================================================= */

.wist-footer__accordion-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 24px;
    padding: 0;
    color: #ffffff;
    border: 0;
    background: transparent;
    text-align: left;
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 800;
    cursor: default;
}

.wist-footer__accordion-trigger > span:first-child {
    position: relative;
    padding-bottom: 13px;
}

.wist-footer__accordion-trigger > span:first-child::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 34px;
    height: 2px;
    background: #f0b51c;
}

.wist-footer__accordion-icon {
    display: none;
}

.wist-footer__accordion-panel {
    overflow: visible;
}

.wist-footer__links {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.wist-footer__links a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0;
    color: rgba(222, 233, 248, 0.68);
    font-size: 16px;
    font-weight: 500;
    transition:
        color 250ms ease,
        transform 300ms ease;
}

.wist-footer__links a::before {
    content: "";
    width: 0;
    height: 1px;
    margin-right: 0;
    background: #4c92fa;
    transition:
        width 300ms cubic-bezier(0.22, 1, 0.36, 1),
        margin-right 300ms ease;
}

.wist-footer__links a::after {
    content: "";
    width: 4px;
    height: 4px;
    margin-left: 8px;
    border-radius: 50%;
    background: #f0b51c;
    opacity: 0;
    transform: scale(0);
    transition:
        opacity 250ms ease,
        transform 300ms ease;
}

.wist-footer__links a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.wist-footer__links a:hover::before {
    width: 17px;
    margin-right: 9px;
}

.wist-footer__links a:hover::after {
    opacity: 1;
    transform: scale(1);
}


/* =========================================================
   CONTACT GLASS PANEL
========================================================= */

.wist-footer__contact {
    position: relative;
    min-height: 365px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 26px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.075),
            rgba(255, 255, 255, 0.025)
        );
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.075);
    backdrop-filter:
        blur(22px)
        saturate(120%);
    -webkit-backdrop-filter:
        blur(22px)
        saturate(120%);
}

.wist-footer__contact::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.07),
            transparent 45%,
            rgba(38, 124, 244, 0.04)
        );
}

.wist-footer__contact-light {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(
            circle at var(--contact-x, 50%)
            var(--contact-y, 50%),
            rgba(255, 255, 255, 0.2),
            transparent 43%
        );
    opacity: 0;
    transition: opacity 250ms ease;
}

.wist-footer__contact:hover
.wist-footer__contact-light {
    opacity: 1;
}

.wist-footer__contact-shine {
    position: absolute;
    top: -50%;
    left: -60%;
    width: 38%;
    height: 210%;
    pointer-events: none;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.12),
            transparent
        );
    transform: rotate(18deg);
    transition:
        left 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.wist-footer__contact:hover
.wist-footer__contact-shine {
    left: 135%;
}

.wist-footer__contact-content {
    position: relative;
    z-index: 3;
    padding: 32px 30px 28px;
}

.wist-footer__contact-label {
    display: block;
    margin-bottom: 25px;
    color: #ffffff;
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 800;
}

.wist-footer__contact-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.wist-footer__contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    color: rgba(226, 237, 250, 0.76);
    font-size: 16px;
    line-height: 1.65;
}

.wist-footer__contact-list a {
    color: inherit;
    transition: color 250ms ease;
}

.wist-footer__contact-list a:hover {
    color: #ffffff;
}

.wist-footer__contact-list address {
    color: inherit;
    font-style: normal;
}

.wist-footer__contact-icon {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    color: #6aa6ff;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.045);
}

.wist-footer__contact-icon svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.55;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.wist-footer__tour {
    min-height: 55px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 9px 0 21px;
    color: #071b3d;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 100px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.94),
            rgba(232, 241, 255, 0.82)
        );
    box-shadow:
        inset 0 1px 0 #ffffff;
    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 800;
    transition:
        color 300ms ease,
        background-color 300ms ease;
}

.wist-footer__tour-arrow {
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    color: #ffffff;
    border-radius: 50%;
    background: #176ff0;
    transition:
        background-color 300ms ease,
        transform 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

.wist-footer__tour-arrow svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.wist-footer__tour:hover {
    color: #ffffff;
    background: #176ff0;
}

.wist-footer__tour:hover
.wist-footer__tour-arrow {
    background: #ed303e;
    transform:
        translateX(4px)
        rotate(-7deg);
}


/* =========================================================
   PARTNERS
========================================================= */

.wist-footer__partners {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    align-items: center;
    gap: 45px;
    padding: 34px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.075);
    border-bottom: 1px solid rgba(255, 255, 255, 0.075);
}

.wist-footer__partners-heading {
    display: flex;
    flex-direction: column;
    gap: 11px;
    color: rgba(226, 236, 249, 0.65);
    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.wist-footer__partners-heading i {
    width: 45px;
    height: 2px;
    background: #f0b51c;
}

.wist-footer__partners-list {
    display: grid;
    grid-template-columns: repeat(5, minmax(100px, 1fr));
    align-items: center;
    gap: 35px;
}

.wist-footer__partners-list a img {
    max-width: 100%;
    max-height: 58px;

    object-fit: contain;

    opacity: 0.82;

    filter:
        grayscale(1)
        saturate(0)
        brightness(1.55)
        contrast(0.72);

    transition:
        opacity 300ms ease,
        filter 350ms ease,
        transform 400ms cubic-bezier(0.22, 1, 0.36, 1);
}

.wist-footer__partners-list a:hover img {
    opacity: 1;

    filter:
        grayscale(0)
        saturate(1)
        brightness(1)
        contrast(1);

    transform:
        translateY(-3px)
        scale(1.035);
}


/* =========================================================
   BOTTOM
========================================================= */

.wist-footer__bottom {
    display: grid;
    grid-template-columns: 1.2fr auto 0.8fr;
    align-items: center;
    gap: 30px;
    padding-top: 25px;
    color: rgba(219, 231, 247, 0.5);
    font-size: 10px;
    line-height: 1.6;
}

.wist-footer__bottom p {
    margin: 0;
}

.wist-footer__legal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.wist-footer__legal a,
.wist-footer__credit a {
    color: rgba(227, 237, 250, 0.65);
    transition: color 250ms ease;
}

.wist-footer__legal a:hover,
.wist-footer__credit a:hover {
    color: #ffffff;
}

.wist-footer__credit {
    text-align: right;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {
    .wist-footer__container {
        width: min(calc(100% - 50px), 950px);
    }

    .wist-footer__main {
        grid-template-columns: 1.1fr 0.7fr 0.7fr;
        gap: 45px;
    }

    .wist-footer__contact {
        grid-column: 1 / -1;
        min-height: 0;
    }

    .wist-footer__contact-content {
        display: grid;
        grid-template-columns: 0.75fr 1.3fr 0.8fr;
        align-items: center;
        gap: 25px;
    }

    .wist-footer__contact-label,
    .wist-footer__contact-list {
        margin-bottom: 0;
    }

    .wist-footer__partners {
        grid-template-columns: 1fr;
    }

    .wist-footer__partners-list {
        gap: 25px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {
    .wist-footer {
        margin-top: 60px;
        padding: 125px 0 24px;
    }

    .wist-footer__container {
        width: min(calc(100% - 28px), 620px);
    }

    .wist-footer__main {
        display: block;
        padding-bottom: 35px;
    }

    .wist-footer__brand-column {
        margin-bottom: 35px;
        text-align: center;
    }

    .wist-footer__logo {
        width: 220px;
        margin-inline: auto;
    }

    .wist-footer__description {
        margin-inline: auto;
    }

    .wist-footer__socials {
        justify-content: center;
    }

    .wist-footer__link-column {
        border-top: 1px solid rgba(255, 255, 255, 0.075);
    }

    .wist-footer__accordion-trigger {
        min-height: 62px;
        margin: 0;
        cursor: pointer;
    }

    .wist-footer__accordion-trigger > span:first-child {
        padding-bottom: 0;
    }

    .wist-footer__accordion-trigger > span:first-child::after {
        display: none;
    }

    .wist-footer__accordion-icon {
        position: relative;
        width: 20px;
        height: 20px;
        display: block;
    }

    .wist-footer__accordion-icon i {
        position: absolute;
        top: 9px;
        left: 3px;
        width: 14px;
        height: 1px;
        background: rgba(255, 255, 255, 0.75);
        transition: transform 300ms ease;
    }

    .wist-footer__accordion-icon i:last-child {
        transform: rotate(90deg);
    }

    .wist-footer__accordion-trigger[aria-expanded="true"]
    .wist-footer__accordion-icon i:last-child {
        transform: rotate(0);
    }

    .wist-footer__accordion-panel {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition:
            max-height 450ms cubic-bezier(0.22, 1, 0.36, 1),
            opacity 300ms ease,
            padding-bottom 300ms ease;
    }

    .wist-footer__accordion-panel.is-open {
        max-height: 420px;
        padding-bottom: 25px;
        opacity: 1;
    }

    .wist-footer__links {
        gap: 16px;
    }

    .wist-footer__contact {
        margin-top: 30px;
    }

    .wist-footer__contact-content {
        display: block;
        padding: 28px 23px 24px;
    }

    .wist-footer__contact-label {
        margin-bottom: 24px;
    }

    .wist-footer__contact-list {
        margin-bottom: 27px;
    }

    .wist-footer__partners {
        gap: 24px;
        padding-block: 30px;
    }

    .wist-footer__partners-heading {
        align-items: center;
        text-align: center;
    }

    .wist-footer__partners-list {
        display: flex;
        gap: 32px;
        overflow-x: auto;
        padding: 5px 15px 15px;
        margin-inline: -14px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .wist-footer__partners-list::-webkit-scrollbar {
        display: none;
    }

    .wist-footer__partners-list a {
        flex: 0 0 130px;
        scroll-snap-align: center;
    }

    .wist-footer__bottom {
        grid-template-columns: 1fr;
        gap: 16px;
        text-align: center;
    }

    .wist-footer__legal {
        flex-wrap: wrap;
    }

    .wist-footer__credit {
        text-align: center;
    }

    .wist-footer__word,
    .wist-footer__dots {
        display: none;
    }
}
