:root{
    --bg:#0f062d;
    --bg-soft:#1a0c46;
    --bg-card:#180c3c;
    --text:#ffffff;
    --text-soft:#d7d0ee;
    --muted:#9f97bd;
    --gold:#f0141e;
    --gold-dark:#bd0710;
    --gold-soft:#ff5d66;
    
    --white:#ffffff;
    --line:rgba(255,255,255,.14);
    --shadow:0 24px 70px rgba(0,0,0,.35);
    --radius:26px;
    --container:1180px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
    margin:0;
    font-family:'Century Gothic','CenturyGothic','AppleGothic','Segoe UI',Arial,sans-serif;
    background:var(--bg);
    color:var(--text);
    line-height:1.55;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.container{
    width:min(var(--container),calc(100% - 40px));
    margin-inline:auto;
}
.site-header{
    position:sticky;
    top:0;
    z-index:50;
    background:var(--white);
    color:var(--bg);
    box-shadow:0 10px 30px rgba(0,0,0,.16);
}
.top-band{
    width:min(1380px,calc(100% - 40px));
    margin-inline:auto;
    min-height:126px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:34px;
}
.brand{
    display:flex;
    align-items:center;
    gap:14px;
    padding:10px 0;
}
.brand-logo{
    width:360px;
    max-height:124px;
    object-fit:contain;
    filter:drop-shadow(0 8px 14px rgba(15,6,45,.13));
}
.main-nav{
    display:flex;
    align-items:center;
    gap:8px;
}

.nav-divider{
    width:1px;
    height:28px;
    background:rgba(15,6,45,.16);
    margin:0 4px;
}
.header-socials{
    display:flex;
    align-items:center;
    gap:7px;
}
.header-social-link{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:34px;
    padding:8px 11px;
    border-radius:999px;
    background:rgba(240,20,30,.08);
    color:var(--gold-dark);
    border:1px solid rgba(240,20,30,.20);
    font-size:.72rem;
    font-weight:900;
    letter-spacing:.05em;
    text-transform:uppercase;
    transition:.2s ease;
}
.header-social-link:hover{
    background:var(--gold);
    color:#fff;
    border-color:var(--gold);
}


/* Language switch */
.language-switch{
    display:flex;
    align-items:center;
    gap:6px;
    margin-left:4px;
}
.lang-button{
    display:inline-flex;
    align-items:center;
    gap:5px;
    min-height:34px;
    padding:7px 10px;
    border-radius:999px;
    border:1px solid rgba(15,6,45,.18);
    background:rgba(15,6,45,.04);
    color:#221a3b;
    font-size:.72rem;
    font-weight:950;
    letter-spacing:.04em;
    text-transform:uppercase;
    transition:.2s ease;
}
.lang-button:hover,
.lang-button.active{
    background:var(--bg);
    color:#fff;
    border-color:var(--bg);
}
.lang-button span{
    font-size:1rem;
    line-height:1;
}

.nav-link{
    font-size:.88rem;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.06em;
    padding:12px 16px;
    border-radius:999px;
    color:#221a3b;
    transition:.2s ease;
}
.nav-link:hover,.nav-link.active{
    background:var(--bg);
    color:var(--white);
}
.menu-toggle{
    display:none;
    width:46px;
    height:46px;
    border:0;
    border-radius:14px;
    background:var(--bg);
    padding:12px;
}
.menu-toggle span{
    display:block;
    height:2px;
    margin:5px 0;
    background:white;
    border-radius:999px;
}
.hero{
    position:relative;
    min-height:760px;
    display:grid;
    align-items:end;
    overflow:hidden;
}
.hero-media{
    position:absolute;
    inset:0;
    z-index:0;
}
.hero-media video,
.hero-media img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    transform:scale(1.05);
    animation:heroPanZoom 18s ease-in-out infinite alternate;
    will-change:transform;
}
.hero-overlay{
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at 72% 24%, rgba(240,20,30,.24), transparent 33%),
        linear-gradient(90deg, rgba(15,6,45,.96) 0%, rgba(15,6,45,.76) 42%, rgba(15,6,45,.45) 100%),
        linear-gradient(0deg, rgba(15,6,45,1) 0%, rgba(15,6,45,0) 50%);
    animation:heroGlow 12s ease-in-out infinite alternate;
}
.hero-content{
    position:relative;
    z-index:1;
    padding:120px 0 110px;
}
.eyebrow,.section-label{
    margin:0 0 14px;
    color:var(--gold);
    font-size:.82rem;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.18em;
}
.hero h1,.page-hero h1{
    max-width:860px;
    margin:0;
    font-size:clamp(3.1rem,7vw,6.8rem);
    line-height:.92;
    letter-spacing:-.07em;
    text-wrap:balance;
}
.hero-tagline{
    max-width:680px;
    margin:26px 0 0;
    font-size:clamp(1.22rem,2.2vw,1.85rem);
    color:var(--text-soft);
    font-weight:600;
}
.hero-meta{
    display:block;
    margin-top:32px;
}
.hero-date{
    display:inline-block;
    color:#fff;
    font-size:clamp(1.45rem,2.8vw,2.65rem);
    line-height:1;
    font-weight:950;
    letter-spacing:-.035em;
    text-shadow:0 10px 26px rgba(0,0,0,.35);
}
.hero-actions,.construction-actions{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-top:34px;
}
.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:50px;
    padding:14px 20px;
    border-radius:999px;
    font-weight:900;
    letter-spacing:.02em;
    transition:.2s ease;
}
.btn-primary{
    background:linear-gradient(135deg,var(--gold),var(--gold-dark));
    color:#ffffff;
    box-shadow:0 12px 28px rgba(240,20,30,.26);
}
.btn-primary:hover{transform:translateY(-2px);box-shadow:0 18px 34px rgba(240,20,30,.34)}
.btn-ghost{
    border:1px solid rgba(255,255,255,.38);
    color:#fff;
    background:rgba(255,255,255,.08);
}
.btn-ghost.dark{
    color:var(--bg);
    border-color:rgba(15,6,45,.18);
    background:rgba(15,6,45,.06);
}
.btn-ghost:hover{transform:translateY(-2px);background:rgba(255,255,255,.16)}
.intro-section{
    padding:86px 0 40px;
    background:
        radial-gradient(circle at 14% 0%, rgba(240,20,30,.14), transparent 30%),
        var(--bg);
}
.intro-grid{
    display:grid;
    grid-template-columns:.95fr 1.05fr;
    gap:50px;
    align-items:start;
}
.intro-grid h2,.section-heading h2{
    margin:0;
    font-size:clamp(2rem,4vw,3.7rem);
    line-height:1;
    letter-spacing:-.055em;
    text-wrap:balance;
}
.intro-copy{
    color:var(--text-soft);
    font-size:1.1rem;
}
.intro-copy p{margin-top:0}
.section-block{
    padding:82px 0;
}
.section-heading{
    margin-bottom:34px;
}
.section-heading.center{text-align:center;max-width:760px;margin-inline:auto;margin-bottom:38px}
.section-heading.compact{margin-bottom:24px}
.muted{color:var(--muted);margin-bottom:0}
.category-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}
.category-grid.large{grid-template-columns:repeat(2,1fr)}
.category-card{
    position:relative;
    overflow:hidden;
    min-height:210px;
    border:1px solid var(--line);
    border-radius:var(--radius);
    padding:26px;
    background:
        linear-gradient(145deg,rgba(255,255,255,.11),rgba(255,255,255,.035)),
        var(--bg-card);
    box-shadow:0 18px 50px rgba(0,0,0,.18);
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    isolation:isolate;
}
.category-card::after{
    content:'';
    position:absolute;
    width:170px;
    height:170px;
    right:-50px;
    top:-60px;
    border-radius:50%;
    background:radial-gradient(circle,rgba(240,20,30,.28),transparent 66%);
    z-index:-1;
    transition:.25s ease;
}
.category-card:hover{
    transform:translateY(-4px);
    border-color:rgba(240,20,30,.42);
}
.category-card:hover::after{transform:scale(1.25)}
.category-card span{
    color:var(--gold);
    font-size:.78rem;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.14em;
}
.category-card strong{
    display:block;
    margin:18px 0;
    font-size:1.45rem;
    line-height:1.05;
    letter-spacing:-.035em;
}
.category-card em{
    font-style:normal;
    color:var(--text-soft);
    font-weight:800;
}
.venues-section{
    background:linear-gradient(180deg,rgba(255,255,255,.035),rgba(255,255,255,0));
}
.venues-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}
.venue-card{
    overflow:hidden;
    border-radius:var(--radius);
    background:#fff;
    color:var(--bg);
    box-shadow:var(--shadow);
}
.venue-card img{
    width:100%;
    aspect-ratio:1.35/1;
    object-fit:cover;
}
.venue-content{
    padding:24px;
}
.venue-content h3{
    margin:0 0 8px;
    font-size:1.28rem;
    letter-spacing:-.03em;
}
.venue-content p{
    color:#5b526e;
    margin:0 0 18px;
}
.text-link{
    color:var(--gold-dark);
    font-weight:900;
    text-decoration:underline;
    text-underline-offset:4px;
}
.sponsors-section{
    padding:70px 0 88px;
    overflow:hidden;
    background:#ffffff;
    color:var(--bg);
}
.sponsor-marquee{
    width:100%;
    overflow:hidden;
    background:#ffffff;
    padding:26px 0 30px;
    border-top:1px solid rgba(15,6,45,.08);
    border-bottom:1px solid rgba(15,6,45,.08);
    mask-image:linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent);
}
.sponsor-track{
    display:flex;
    align-items:center;
    gap:30px;
    width:max-content;
    animation:marquee 52s linear infinite;
}
.sponsor-marquee:hover .sponsor-track{animation-play-state:paused}
.sponsor-item{
    flex:0 0 auto;
    width:260px;
    height:auto;
    border-radius:0;
    background:transparent;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:0 18px;
    box-shadow:none;
}
.sponsor-item img{
    width:260px;
    height:auto;
    max-width:100%;
    max-height:none;
    object-fit:contain;
    display:block;
}
@keyframes marquee{
    from{transform:translateX(0)}
    to{transform:translateX(-50%)}
}
@keyframes heroPanZoom{
    0%{transform:scale(1.05) translate3d(0,0,0)}
    50%{transform:scale(1.1) translate3d(-1.2%, -0.8%, 0)}
    100%{transform:scale(1.08) translate3d(1%, 0.8%, 0)}
}
@keyframes heroGlow{
    0%{opacity:.92; filter:saturate(100%)}
    100%{opacity:1; filter:saturate(118%)}
}
.page-hero{
    padding:100px 0;
    background:
        radial-gradient(circle at 20% 20%,rgba(240,20,30,.18),transparent 28%),
        linear-gradient(135deg,var(--bg),#1a0b4d 70%,#2b145e);
}
.page-hero.small{padding:92px 0 76px}
.page-hero p:not(.eyebrow){
    max-width:720px;
    color:var(--text-soft);
    font-size:1.15rem;
}
.construction-block{
    padding:70px 0 100px;
}
.construction-card{
    max-width:760px;
    margin:0 auto;
    padding:44px;
    text-align:center;
    border-radius:var(--radius);
    background:#fff;
    color:var(--bg);
    box-shadow:var(--shadow);
}
.construction-card span{
    color:var(--gold-dark);
    font-size:.8rem;
    text-transform:uppercase;
    letter-spacing:.16em;
    font-weight:900;
}
.construction-card h2{
    margin:12px 0 12px;
    font-size:clamp(2rem,4vw,3.2rem);
    line-height:1;
    letter-spacing:-.05em;
}
.construction-card p{
    color:#5d5470;
    margin:0 auto;
    max-width:560px;
}
.construction-actions{justify-content:center}
.site-footer{
    border-top:1px solid var(--line);
    background:#0a041f;
    color:var(--text-soft);
}
.footer-inner{
    padding:28px 0;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}
.footer-inner strong{display:block;color:#fff}
.footer-inner span{display:block;font-size:.92rem;margin-top:4px}
.back-top{font-weight:900;color:var(--gold)}
.footer-credit{
    border-top:1px solid rgba(255,255,255,.08);
    padding:12px 20px 18px;
    text-align:center;
    color:rgba(255,255,255,.72);
    font-size:.88rem;
    font-weight:700;
}

.footer-inner-expanded{
    align-items:flex-start;
}
.footer-brand-block,
.footer-contact-block{
    display:flex;
    flex-direction:column;
    gap:6px;
}
.footer-credit-line{
    color:#fff;
    font-weight:900;
}
.footer-email{
    color:#fff;
    font-weight:900;
}
.footer-socials{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:6px;
}
.footer-socials a{
    border:1px solid rgba(255,255,255,.16);
    border-radius:999px;
    padding:8px 12px;
    color:var(--text-soft);
    font-weight:900;
    transition:.2s ease;
}
.footer-socials a:hover{
    background:rgba(255,255,255,.1);
    color:#fff;
}
.contact-card{
    max-width:860px;
}
.contact-links{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:12px;
    margin-top:28px;
}


/* Jurado */
.jury-hero .jury-anchor-nav{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-top:34px;
    max-width:1080px;
}
.jury-nav-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:52px;
    padding:15px 22px;
    border-radius:999px;
    border:1px solid rgba(255,255,255,.22);
    background:linear-gradient(135deg,var(--gold),var(--gold-dark));
    color:#fff;
    font-weight:950;
    font-size:.9rem;
    text-transform:uppercase;
    letter-spacing:.055em;
    box-shadow:0 16px 34px rgba(240,20,30,.24);
    transition:transform .2s ease,box-shadow .2s ease,filter .2s ease;
}
.jury-nav-button:hover{
    transform:translateY(-3px);
    box-shadow:0 22px 50px rgba(240,20,30,.34);
    filter:saturate(1.08);
}
.jury-page{
    background:
        radial-gradient(circle at 8% 8%, rgba(240,20,30,.10), transparent 26%),
        radial-gradient(circle at 92% 20%, rgba(255,255,255,.045), transparent 30%);
}
.jury-page.section-block{
    padding-top:34px;
}
.jury-section{
    padding:26px 0 86px;
    scroll-margin-top:120px;
}
.jury-section + .jury-section{
    padding-top:92px;
}
.jury-section-divider{
    display:flex;
    align-items:center;
    gap:18px;
    margin:0 0 38px;
    color:#fff;
}
.jury-section-divider::before,
.jury-section-divider::after{
    content:'';
    height:1px;
    flex:1;
    background:linear-gradient(90deg,transparent,rgba(255,255,255,.20),rgba(240,20,30,.48));
}
.jury-section-divider::after{
    background:linear-gradient(90deg,rgba(240,20,30,.48),rgba(255,255,255,.20),transparent);
}
.jury-section-divider span{
    border:1px solid rgba(240,20,30,.42);
    background:rgba(240,20,30,.12);
    color:#fff;
    border-radius:999px;
    padding:10px 16px;
    font-size:.78rem;
    text-transform:uppercase;
    letter-spacing:.16em;
    font-weight:950;
    white-space:nowrap;
}
.jury-heading{
    max-width:840px;
    margin-bottom:34px;
}
.jury-heading .muted{
    margin-top:12px;
    font-size:1.05rem;
}
.jury-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:0;
    border:1px solid rgba(255,255,255,.10);
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 28px 80px rgba(0,0,0,.28);
}
.jury-card{
overflow:hidden;
    border:0;
    border-bottom:1px solid rgba(255,255,255,.10);
    border-radius:0;
    background:#050507;
    box-shadow:none;
    display:grid;
    grid-template-columns:minmax(300px,390px) 1fr;
    min-height:545px;
    transition:background .25s ease;
}
.jury-card:last-child{
    border-bottom:0;
}
.jury-card-alt{
    background:#242128;
}
.jury-president{
    background:
        linear-gradient(90deg,rgba(240,20,30,.10),rgba(0,0,0,0) 52%),
        #050507;
}
.jury-card-alt.jury-president{
    background:
        linear-gradient(90deg,rgba(240,20,30,.12),rgba(0,0,0,0) 52%),
        #242128;
}
.jury-card:hover{
    background:#09090d;
}
.jury-card-alt:hover{
    background:#2a2730;
}
.jury-photo{
    position:relative;
    width:100%;
    height:100%;
    min-height:545px;
    aspect-ratio:766/1072;
    overflow:hidden;
    background:#111;
}
.jury-photo img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    filter:grayscale(1) contrast(1.05);
    transition:transform .45s ease, filter .45s ease, opacity .45s ease;
}
.jury-card:hover .jury-photo img{
    transform:scale(1.035);
    filter:grayscale(.35) contrast(1.08) saturate(1.05);
}
.jury-photo::after{
    content:'';
    position:absolute;
    inset:0;
    background:
        linear-gradient(90deg,rgba(0,0,0,.12),rgba(0,0,0,.42) 100%),
        linear-gradient(180deg,transparent 48%,rgba(0,0,0,.32) 100%);
    pointer-events:none;
}
.jury-card-content{
    padding:clamp(34px,5.2vw,72px);
    display:flex;
    flex-direction:column;
    justify-content:center;
}
.jury-role-row{
    min-height:auto;
    display:flex;
    align-items:center;
    margin-bottom:18px;
}
.jury-role{
    display:inline-flex;
    align-items:center;
    border:1px solid rgba(255,255,255,.16);
    background:rgba(255,255,255,.08);
    color:rgba(255,255,255,.72);
    border-radius:999px;
    padding:8px 12px;
    font-size:.72rem;
    font-weight:950;
    letter-spacing:.12em;
    text-transform:uppercase;
}
.president-badge{
    color:#fff;
    border-color:rgba(240,20,30,.55);
    background:linear-gradient(135deg,rgba(240,20,30,.95),rgba(189,7,16,.92));
}
.jury-card h3{
    margin:0 0 18px;
    color:var(--gold);
    font-size:clamp(1.8rem,3.4vw,4.15rem);
    line-height:.88;
    letter-spacing:-.075em;
    text-transform:uppercase;
    text-wrap:balance;
}
.jury-card p{
    margin:0;
    max-width:980px;
    color:rgba(255,255,255,.74);
    font-size:1.02rem;
    line-height:1.72;
}

@media (max-width:900px){
    .sponsor-item{width:240px}
    .nav-divider{display:none}
    .header-socials{width:100%;justify-content:center;flex-wrap:wrap;margin-top:8px}
    .header-social-link{font-size:.76rem}

    .language-switch{width:100%;justify-content:center;margin-top:8px;flex-wrap:wrap}
    .lang-button{font-size:.76rem}


    .top-band{min-height:100px;width:min(100% - 28px,1280px)}
    .brand-logo{width:250px;max-height:92px}
    .menu-toggle{display:block}
    .main-nav{
        position:absolute;
        left:14px;
        right:14px;
        top:calc(100% + 10px);
        display:none;
        flex-direction:column;
        align-items:stretch;
        gap:6px;
        padding:12px;
        background:#fff;
        border-radius:20px;
        box-shadow:0 24px 60px rgba(0,0,0,.22);
    }
    .main-nav.open{display:flex}
    .nav-link{text-align:center}
    .hero{min-height:680px}
    .hero-content{padding:90px 0 82px}
    .intro-grid,.category-grid,.category-grid.large,.venues-grid,.jury-grid{grid-template-columns:1fr}
    .jury-hero .jury-anchor-nav{display:grid;grid-template-columns:repeat(2,1fr)}
    .jury-card{grid-template-columns:1fr;min-height:auto}
    .jury-photo{aspect-ratio:766/1072;min-height:0}
    .jury-card-content{padding:34px 26px 38px}
    .jury-card h3{font-size:clamp(2.2rem,10vw,4rem)}
    .section-block{padding:64px 0}
    .jury-section{padding-bottom:54px}
    .jury-photo{min-height:260px}
}
@media (max-width:560px){
    .brand-logo{width:188px;max-height:76px}
    .top-band{min-height:92px}

    .container{width:min(100% - 28px,var(--container))}
    .hero{min-height:650px}
    .hero h1,.page-hero h1{font-size:clamp(2.6rem,14vw,4.1rem)}
    .hero-tagline{font-size:1.08rem}
    .hero-actions,.construction-actions{display:grid}
    .btn{width:100%}
    .category-card{min-height:190px;padding:22px}
    .construction-card{padding:30px 22px}
    .jury-hero .jury-anchor-nav{grid-template-columns:1fr!important}
    .jury-card-content{padding:30px 22px 34px}
    .jury-photo{min-height:0}
    .jury-grid{border-radius:22px}
    .jury-section-divider span{font-size:.68rem;letter-spacing:.12em;text-align:center;white-space:normal}
    .jury-card p{font-size:.96rem;line-height:1.68}
    .footer-inner{flex-direction:column;text-align:center}
    .sponsor-item{width:190px;padding:0 10px}
}
@media (prefers-reduced-motion:reduce){
    *{scroll-behavior:auto!important;transition:none!important}
    .sponsor-track{animation:none!important;flex-wrap:wrap;justify-content:center;width:auto}
    .hero-media video,.hero-media img,.hero-overlay{animation:none!important}
}


/* News section */
.news-page,.home-news-section,.news-article-section{
    background:radial-gradient(circle at 8% 0%,rgba(240,20,30,.08),transparent 26%),radial-gradient(circle at 92% 12%,rgba(255,255,255,.05),transparent 28%);
}
.news-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:24px;
}
.news-card{
    overflow:hidden;
    border-radius:28px;
    border:1px solid rgba(255,255,255,.12);
    background:linear-gradient(145deg,rgba(255,255,255,.10),rgba(255,255,255,.045)),var(--bg-card);
    box-shadow:0 18px 48px rgba(0,0,0,.22);
}
.news-card-image{
    display:block;
    aspect-ratio:16/8.6;
    overflow:hidden;
    background:rgba(255,255,255,.06);
}
.news-card-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .5s ease;
}
.news-card:hover .news-card-image img{transform:scale(1.045)}
.news-card-body{padding:24px 24px 26px}
.news-date{
    display:inline-flex;
    margin-bottom:12px;
    padding:7px 11px;
    border-radius:999px;
    background:linear-gradient(135deg,#ff0015,#ff3b30);
    color:#fff;
    font-size:.72rem;
    font-weight:950;
    letter-spacing:.08em;
    text-transform:uppercase;
}
.news-card h3{
    margin:0 0 12px;
    color:#fff;
    font-size:clamp(1.35rem,2.3vw,2.25rem);
    line-height:1;
    letter-spacing:-.045em;
    text-wrap:balance;
}
.news-card h3 a{color:#fff}
.news-card p{
    margin:0 0 18px;
    color:rgba(255,255,255,.72);
    font-size:1rem;
    line-height:1.6;
}
.news-detail-hero{
    position:relative;
    min-height:620px;
    display:flex;
    align-items:flex-end;
    overflow:hidden;
    background:#050114;
}
.news-detail-media{position:absolute;inset:0}
.news-detail-media img{width:100%;height:100%;object-fit:cover;display:block;filter:saturate(1.04) contrast(1.04)}
.news-detail-overlay{position:absolute;inset:0;background:linear-gradient(90deg,rgba(15,6,45,.94),rgba(15,6,45,.72) 42%,rgba(15,6,45,.18)),linear-gradient(0deg,rgba(15,6,45,.94),transparent 52%)}
.news-detail-heading{
    position:relative;
    z-index:1;
    padding:130px 0 74px;
    max-width:1050px;
}
.news-back{
    display:inline-flex;
    margin-bottom:22px;
    padding:10px 14px;
    border-radius:999px;
    border:1px solid rgba(255,255,255,.22);
    background:rgba(255,255,255,.08);
    color:#fff;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.06em;
    font-size:.78rem;
}
.news-date.big{margin-bottom:18px}
.news-detail-heading h1{
    max-width:1080px;
    margin:0 0 24px;
    color:#fff;
    font-size:clamp(2.35rem,5.8vw,5.25rem);
    line-height:1.06;
    letter-spacing:-.055em;
    text-wrap:balance;
}
.news-detail-heading p{
    max-width:760px;
    margin:0;
    color:rgba(255,255,255,.82);
    font-size:clamp(1.06rem,2vw,1.35rem);
    line-height:1.55;
}
.news-article-card{
    max-width:980px;
    margin:0 auto;
    border-radius:30px;
    border:1px solid rgba(255,255,255,.12);
    background:linear-gradient(145deg,rgba(255,255,255,.10),rgba(255,255,255,.045)),var(--bg-card);
    padding:clamp(26px,5vw,58px);
    box-shadow:0 18px 48px rgba(0,0,0,.22);
}

.news-article-featured-image{
    margin:0 0 clamp(26px,4vw,42px);
    border-radius:24px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.12);
    box-shadow:0 18px 46px rgba(0,0,0,.26);
    background:rgba(255,255,255,.06);
}
.news-article-featured-image img{
    width:100%;
    height:auto;
    display:block;
}

.news-article-card p{
    margin:0 0 22px;
    color:rgba(255,255,255,.78);
    font-size:1.08rem;
    line-height:1.82;
}
.news-article-card h2{
    margin:34px 0 16px;
    color:#fff;
    font-size:clamp(1.8rem,3vw,3rem);
    line-height:1;
    letter-spacing:-.045em;
}
.news-article-card .article-bullet{
    padding-left:16px;
    border-left:3px solid var(--gold);
    color:#fff;
    font-weight:750;
}
@media (max-width:900px){
    .news-grid{grid-template-columns:1fr}
    .news-detail-hero{min-height:560px}
    .news-detail-overlay{background:linear-gradient(0deg,rgba(15,6,45,.96),rgba(15,6,45,.62) 62%,rgba(15,6,45,.18))}
}
@media (max-width:560px){
    .news-card-body{padding:20px}
    .news-detail-heading{padding:112px 0 56px}
    .news-detail-heading h1{font-size:clamp(2.15rem,12vw,3.65rem);line-height:1.04;letter-spacing:-.05em}
    .news-article-card{border-radius:24px}
    .news-article-featured-image{border-radius:18px}
}
