/* ============================================================
   BK Zagreb Theme - Main Stylesheet
   Modern sports design, mobile-first, lightweight
   ============================================================ */

/* --- Reset & Base --- */
:root {
    --c-navy: #0f1b2d;
    --c-navy-light: #1a2d4a;
    --c-red: #c41e3a;
    --c-red-dark: #a01830;
    --c-red-light: #e8304e;
    --c-gold: #d4a843;
    --c-white: #ffffff;
    --c-off-white: #f5f5f5;
    --c-gray-100: #f0f0f0;
    --c-gray-200: #e0e0e0;
    --c-gray-300: #bdbdbd;
    --c-gray-400: #9e9e9e;
    --c-gray-600: #616161;
    --c-gray-800: #333333;
    --c-text: #1a1a1a;
    --c-text-light: #555555;
    --c-bg: #ffffff;

    --ff-heading: 'Montserrat', system-ui, -apple-system, sans-serif;
    --ff-body: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

    --fs-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.8125rem);
    --fs-sm: clamp(0.8125rem, 0.75rem + 0.3vw, 0.9375rem);
    --fs-base: clamp(0.9375rem, 0.875rem + 0.3vw, 1.0625rem);
    --fs-lg: clamp(1.125rem, 1rem + 0.5vw, 1.3125rem);
    --fs-xl: clamp(1.375rem, 1.1rem + 1vw, 1.75rem);
    --fs-2xl: clamp(1.75rem, 1.3rem + 1.5vw, 2.5rem);
    --fs-3xl: clamp(2.25rem, 1.5rem + 2.5vw, 3.5rem);
    --fs-hero: clamp(2.75rem, 1.8rem + 3.5vw, 5rem);

    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 12px 40px rgba(0,0,0,0.18);

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --header-h: 72px;
    --container: 1200px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--ff-body);
    font-size: var(--fs-base);
    line-height: 1.6;
    color: var(--c-text);
    background: var(--c-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

/* Page entrance: content fades in via pure CSS, no JS dependency */
.site-main {
    animation: contentReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

@keyframes contentReveal {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--c-red);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--c-red-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--ff-heading);
    font-weight: 800;
    line-height: 1.15;
    color: var(--c-navy);
}

h1 { font-size: var(--fs-3xl); }
h2 { font-size: var(--fs-2xl); }
h3 { font-size: var(--fs-xl); }
h4 { font-size: var(--fs-lg); }

ul, ol { list-style: none; }

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding-inline: var(--space-lg);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border-width: 0;
}

/* --- Icons --- */
.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.icon svg {
    width: 1em;
    height: 1em;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.85em 1.8em;
    font-family: var(--ff-heading);
    font-weight: 700;
    font-size: var(--fs-sm);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1;
}

.btn--primary {
    background: var(--c-red);
    color: var(--c-white);
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.35);
}

.btn--primary:hover {
    background: var(--c-red-light);
    color: var(--c-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.45);
}

.btn--outline {
    border: 2px solid var(--c-white);
    color: var(--c-white);
    background: transparent;
}

.btn--outline:hover {
    background: var(--c-white);
    color: var(--c-navy);
}

.btn--outline-dark {
    border: 2px solid var(--c-navy);
    color: var(--c-navy);
    background: transparent;
}

.btn--outline-dark:hover {
    background: var(--c-navy);
    color: var(--c-white);
}

.btn--lg {
    padding: 1.1em 2.4em;
    font-size: var(--fs-base);
}

/* --- Section Common --- */
.section {
    padding: var(--space-4xl) 0;
}

.section--dark {
    background: var(--c-navy);
    color: var(--c-white);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
    color: var(--c-white);
}

.section--gray {
    background: var(--c-gray-100);
}

.section__header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section__label {
    display: inline-block;
    font-family: var(--ff-heading);
    font-size: var(--fs-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--c-red);
    margin-bottom: var(--space-sm);
}

.section--dark .section__label {
    color: var(--c-gold);
}

.section__title {
    margin-bottom: var(--space-md);
}

.section__desc {
    color: var(--c-text-light);
    max-width: 640px;
    margin: 0 auto;
    font-size: var(--fs-lg);
}

.section--dark .section__desc {
    color: var(--c-gray-300);
}

/* --- Header --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-h);
    transition: background var(--transition), box-shadow var(--transition);
}

.site-header--scrolled {
    background: rgba(15, 27, 45, 0.97);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
}

.is-front-page .site-header:not(.site-header--scrolled) {
    background: transparent;
}

.site-header:not(.is-front-page .site-header) {
    background: var(--c-navy);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
}

.header__logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    z-index: 1001;
}

.header__logo img {
    height: 48px;
    width: auto;
}

.header__logo-text {
    font-family: var(--ff-heading);
    font-weight: 900;
    font-size: var(--fs-lg);
    color: var(--c-white);
    line-height: 1.1;
}

.header__logo-text small {
    display: block;
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--c-gray-300);
    letter-spacing: 0.05em;
}

/* Nav Desktop */
.nav-primary {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-primary .menu {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0;
}

.nav-primary .menu-item a {
    display: block;
    padding: var(--space-xs) var(--space-sm);
    font-family: var(--ff-heading);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.85);
    transition: color var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.nav-primary .menu-item a:hover,
.nav-primary .menu-item.current-menu-item a {
    color: var(--c-white);
}

.nav-primary .menu-item.current-menu-item a {
    position: relative;
}

.nav-primary .menu-item.current-menu-item a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: var(--space-md);
    right: var(--space-md);
    height: 2px;
    background: var(--c-red);
    border-radius: 1px;
}

.nav-cta {
    margin-left: var(--space-xs);
}

.nav-cta .btn {
    font-size: 0.7rem;
    padding: 0.7em 1.3em;
}

/* Hamburger */
.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    color: var(--c-white);
    z-index: 1001;
    font-size: 1.5rem;
}

.nav-toggle .icon--close {
    display: none;
}

.nav-open .nav-toggle .icon--menu {
    display: none;
}

.nav-open .nav-toggle .icon--close {
    display: inline-flex;
}

/* Mobile Nav */
@media (max-width: 991px) {
    .nav-toggle {
        display: flex;
    }

    .nav-primary {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        max-width: 400px;
        background: var(--c-navy);
        flex-direction: column;
        align-items: stretch;
        padding: calc(var(--header-h) + var(--space-xl)) var(--space-xl) var(--space-xl);
        transform: translateX(100%);
        transition: transform var(--transition);
        overflow-y: auto;
        z-index: 1000;
    }

    .nav-open .nav-primary {
        transform: translateX(0);
    }

    .nav-primary .menu {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .nav-primary .menu-item a {
        padding: var(--space-md) 0;
        font-size: var(--fs-base);
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .nav-primary .menu-item.current-menu-item a::after {
        display: none;
    }

    .nav-cta {
        margin: var(--space-xl) 0 0;
    }

    .nav-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
        z-index: 999;
    }

    .nav-open .nav-overlay {
        opacity: 1;
        visibility: visible;
    }
}

@media (min-width: 992px) {
    .nav-overlay {
        display: none;
    }
}

/* --- Page Entrance Animation --- */
.hero__badge,
.hero__title,
.hero__subtitle,
.hero__actions,
.hero__scroll {
    opacity: 0;
    transform: translateY(40px);
}

.hero__badge    { animation: heroEntrance 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards; }
.hero__title    { animation: heroEntrance 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards; }
.hero__subtitle { animation: heroEntrance 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards; }
.hero__actions  { animation: heroEntrance 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards; }
.hero__scroll   { animation: heroEntrance 0.5s cubic-bezier(0.16, 1, 0.3, 1) 1.1s forwards; }

.hero__diamond--1 {
    animation: diamondDrift 20s ease-in-out infinite alternate;
}

.hero__diamond--2 {
    animation: diamondDrift 25s ease-in-out infinite alternate-reverse;
}

.hero__overlay {
    animation: overlayReveal 1.2s ease forwards;
}

@keyframes heroEntrance {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes diamondDrift {
    0%   { transform: rotate(45deg) translate(0, 0); }
    100% { transform: rotate(45deg) translate(30px, -20px); }
}

@keyframes overlayReveal {
    from { opacity: 0.3; }
    to   { opacity: 1; }
}

.site-header {
    animation: headerSlideDown 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

@keyframes headerSlideDown {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    background: var(--c-navy);
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 27, 45, 0.95) 0%,
        rgba(15, 27, 45, 0.8) 40%,
        rgba(196, 30, 58, 0.2) 100%
    );
    z-index: 1;
}

.hero__diamond {
    position: absolute;
    z-index: 1;
    opacity: 0.06;
}

.hero__diamond--1 {
    width: 600px;
    height: 600px;
    border: 2px solid var(--c-white);
    transform: rotate(45deg);
    top: -200px;
    right: -200px;
}

.hero__diamond--2 {
    width: 400px;
    height: 400px;
    border: 2px solid var(--c-red);
    transform: rotate(45deg);
    bottom: -100px;
    left: -100px;
}

.hero__inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: calc(var(--header-h) + var(--space-3xl)) var(--space-lg) var(--space-3xl);
    gap: var(--space-2xl);
}

.hero__content {
    flex: 1 1 50%;
    text-align: left;
    max-width: 560px;
}

/* Hero Slideshow - frameless transparent */
.hero__slideshow {
    flex: 1 1 50%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 420px;
    max-width: 580px;
}

.hero__slide-frame {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 380px;
    background: none;
    border: none;
    box-shadow: none;
}

.hero__slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    will-change: transform, opacity, filter;
}

/* Default entrance: zoom from center */
.hero__slide.is-active {
    animation: slideEnterZoom 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Exit: quick fade */
.hero__slide.is-exiting {
    animation: slideExit 0.4s ease-in forwards;
}

/* --- Entrance animation variants (assigned randomly via JS) --- */

/* 1. Zoom from center */
@keyframes slideEnterZoom {
    from { opacity: 0; transform: scale(0.5) translateZ(0); filter: blur(8px); }
    to   { opacity: 1; transform: scale(1) translateZ(0);   filter: blur(0); }
}

/* 2. Slide from left */
@keyframes slideEnterLeft {
    from { opacity: 0; transform: translateX(-120px) scale(0.85); filter: blur(5px); }
    to   { opacity: 1; transform: translateX(0) scale(1);         filter: blur(0); }
}

/* 3. Slide from right */
@keyframes slideEnterRight {
    from { opacity: 0; transform: translateX(120px) scale(0.85); filter: blur(5px); }
    to   { opacity: 1; transform: translateX(0) scale(1);        filter: blur(0); }
}

/* 4. Rise from bottom */
@keyframes slideEnterBottom {
    from { opacity: 0; transform: translateY(80px) scale(0.8); filter: blur(6px); }
    to   { opacity: 1; transform: translateY(0) scale(1);      filter: blur(0); }
}

/* 5. Drop from top */
@keyframes slideEnterTop {
    from { opacity: 0; transform: translateY(-80px) scale(0.8); filter: blur(6px); }
    to   { opacity: 1; transform: translateY(0) scale(1);       filter: blur(0); }
}

/* 6. Zoom + subtle rotate */
@keyframes slideEnterSpin {
    from { opacity: 0; transform: scale(0.4) rotate(-8deg); filter: blur(10px); }
    to   { opacity: 1; transform: scale(1) rotate(0deg);    filter: blur(0); }
}

/* 7. Deep zoom from far back */
@keyframes slideEnterDepth {
    from { opacity: 0; transform: scale(0.3) translateZ(0); filter: blur(12px); }
    60%  { opacity: 1; filter: blur(1px); }
    to   { opacity: 1; transform: scale(1) translateZ(0);   filter: blur(0); }
}

/* Exit animation */
@keyframes slideExit {
    from { opacity: 1; transform: scale(1); filter: blur(0); }
    to   { opacity: 0; transform: scale(1.08); filter: blur(4px); }
}

/* Animation classes applied by JS */
.hero__slide.anim-zoom.is-active    { animation-name: slideEnterZoom; }
.hero__slide.anim-left.is-active    { animation-name: slideEnterLeft; }
.hero__slide.anim-right.is-active   { animation-name: slideEnterRight; }
.hero__slide.anim-bottom.is-active  { animation-name: slideEnterBottom; }
.hero__slide.anim-top.is-active     { animation-name: slideEnterTop; }
.hero__slide.anim-spin.is-active    { animation-name: slideEnterSpin; }
.hero__slide.anim-depth.is-active   { animation-name: slideEnterDepth; }

/* --- Slide images: large, transparent, glowing --- */
.hero__slide img {
    max-width: 95%;
    max-height: 95%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: filter 0.6s ease;
}

/* Glow color per-image class (drop-shadow follows alpha contour) */
.hero__slide img.glow-blue {
    filter: drop-shadow(0 0 15px rgba(77, 166, 255, 0.55))
            drop-shadow(0 0 35px rgba(77, 166, 255, 0.3))
            drop-shadow(0 0 60px rgba(30, 80, 180, 0.15))
            drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}

.hero__slide img.glow-red {
    filter: drop-shadow(0 0 15px rgba(232, 48, 78, 0.55))
            drop-shadow(0 0 35px rgba(232, 48, 78, 0.3))
            drop-shadow(0 0 60px rgba(196, 30, 58, 0.15))
            drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}

.hero__slide img.glow-white {
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.6))
            drop-shadow(0 0 30px rgba(255, 255, 255, 0.3))
            drop-shadow(0 0 55px rgba(200, 200, 255, 0.12))
            drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}

/* Active image: gentle floating */
.hero__slide.is-active img {
    animation: heroImageFloat 5s ease-in-out infinite alternate;
}

/* Dot navigation */
.hero__slide-dots {
    display: flex;
    gap: var(--space-xs);
    justify-content: center;
    margin-top: var(--space-lg);
    position: relative;
    z-index: 2;
}

.hero__slide-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all var(--transition);
}

.hero__slide-dot.is-active {
    background: var(--c-red-light);
    box-shadow: 0 0 8px var(--c-red-light);
    transform: scale(1.3);
}

@media (max-width: 991px) {
    .hero__inner {
        flex-direction: column;
        text-align: center;
        padding-top: calc(var(--header-h) + var(--space-2xl));
        padding-bottom: var(--space-2xl);
    }
    .hero__content {
        text-align: center;
        max-width: 100%;
    }
    .hero__slideshow {
        width: 100%;
        max-width: 420px;
        min-height: 300px;
    }
    .hero__slide-frame {
        min-height: 280px;
    }
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-md);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-full);
    font-family: var(--ff-heading);
    font-size: var(--fs-xs);
    font-weight: 700;
    color: var(--c-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-xl);
    backdrop-filter: blur(8px);
}

.hero__badge .icon {
    font-size: 1.1em;
}

.hero__title {
    font-size: var(--fs-hero);
    color: var(--c-white);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: var(--space-lg);
}

.hero__title span {
    display: block;
    color: var(--c-red-light);
}

.hero__subtitle {
    font-size: var(--fs-lg);
    color: var(--c-gray-300);
    margin-bottom: var(--space-2xl);
    max-width: 600px;
    margin-inline: auto;
    line-height: 1.7;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

@media (max-width: 991px) {
    .hero__actions {
        justify-content: center;
    }
}

.hero__scroll {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255,255,255,0.5);
    font-size: 1.5rem;
    animation: hero-bounce 2s infinite;
}

@keyframes hero-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* --- News / Vijesti --- */
.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

@media (min-width: 600px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .news-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.news-card {
    background: var(--c-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.news-card .post-thumb {
    aspect-ratio: 3/2;
    overflow: hidden;
}

.news-card .post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.news-card:hover .post-thumb img {
    transform: scale(1.05);
}

.news-card .post-thumb--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--c-gray-100);
    color: var(--c-gray-300);
    font-size: 3rem;
}

.news-card__body {
    padding: var(--space-lg);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-card__meta {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--fs-xs);
    color: var(--c-gray-400);
    margin-bottom: var(--space-sm);
}

.cat-badge {
    display: inline-block;
    padding: 2px 8px;
    background: rgba(196, 30, 58, 0.1);
    color: var(--c-red);
    font-size: var(--fs-xs);
    font-weight: 600;
    border-radius: var(--radius-sm);
    text-decoration: none;
}

.cat-badge:hover {
    background: var(--c-red);
    color: var(--c-white);
}

.news-card__title {
    font-size: var(--fs-lg);
    margin-bottom: var(--space-sm);
    line-height: 1.3;
}

.news-card__title a {
    color: var(--c-navy);
    text-decoration: none;
}

.news-card__title a:hover {
    color: var(--c-red);
}

.news-card__excerpt {
    color: var(--c-text-light);
    font-size: var(--fs-sm);
    margin-bottom: var(--space-lg);
    flex: 1;
}

.news-card__link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--ff-heading);
    font-size: var(--fs-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--c-red);
}

.news-card__link:hover {
    gap: var(--space-sm);
}

.section__footer {
    text-align: center;
    margin-top: var(--space-2xl);
}

/* --- Categories / Age Groups --- */
.categories-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 600px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.category-card {
    position: relative;
    padding: var(--space-2xl) var(--space-lg);
    text-align: center;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition);
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--c-red);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.category-card__icon {
    font-size: 2.5rem;
    color: var(--c-red);
    margin-bottom: var(--space-md);
}

.category-card__name {
    font-size: var(--fs-lg);
    color: var(--c-white);
    margin-bottom: var(--space-xs);
}

.category-card__ages {
    font-size: var(--fs-sm);
    color: var(--c-gray-400);
    margin-bottom: var(--space-md);
}

.category-card__schedule {
    font-size: var(--fs-xs);
    color: var(--c-gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
}

.category-card__schedule .icon {
    color: var(--c-gold);
}

/* --- Training Schedule --- */
.schedule-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--c-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.schedule-table thead {
    background: var(--c-navy);
    color: var(--c-white);
}

.schedule-table th {
    padding: var(--space-md) var(--space-lg);
    font-family: var(--ff-heading);
    font-size: var(--fs-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-align: left;
}

.schedule-table td {
    padding: var(--space-md) var(--space-lg);
    border-bottom: 1px solid var(--c-gray-200);
    font-size: var(--fs-sm);
}

.schedule-table tbody tr:last-child td {
    border-bottom: none;
}

.schedule-table tbody tr:hover {
    background: var(--c-gray-100);
}

.schedule-table .schedule-group {
    font-family: var(--ff-heading);
    font-weight: 700;
    color: var(--c-navy);
}

.schedule-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 calc(-1 * var(--space-lg));
    padding: 0 var(--space-lg);
}

/* --- CTA Banner --- */
.cta-banner {
    position: relative;
    padding: var(--space-4xl) 0;
    background: var(--c-red);
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    border: 80px solid rgba(255,255,255,0.06);
    border-radius: 50%;
}

.cta-banner__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-banner__title {
    font-size: var(--fs-2xl);
    color: var(--c-white);
    margin-bottom: var(--space-md);
}

.cta-banner__text {
    font-size: var(--fs-lg);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-xl);
}

.cta-banner .btn--outline:hover {
    background: var(--c-white);
    color: var(--c-red);
}

/* --- Sponsors --- */
.sponsors-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: var(--space-2xl);
}

.sponsor-item {
    opacity: 0.5;
    transition: opacity var(--transition);
    max-width: 150px;
}

.sponsor-item:hover {
    opacity: 1;
}

.sponsor-item img {
    max-height: 60px;
    width: auto;
    filter: grayscale(100%);
    transition: filter var(--transition);
}

.sponsor-item:hover img {
    filter: grayscale(0);
}

/* --- Footer --- */
.site-footer {
    background: var(--c-navy);
    color: rgba(255, 255, 255, 0.7);
    padding-top: var(--space-4xl);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
}

@media (min-width: 600px) {
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .footer__grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer__brand {
    max-width: 320px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    text-decoration: none;
}

.footer__logo img {
    height: 48px;
}

.footer__logo-text {
    font-family: var(--ff-heading);
    font-weight: 800;
    font-size: var(--fs-lg);
    color: var(--c-white);
}

.footer__desc {
    font-size: var(--fs-sm);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.footer__heading {
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--c-white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-lg);
}

.footer__links a {
    display: block;
    padding: var(--space-xs) 0;
    color: rgba(255,255,255,0.6);
    font-size: var(--fs-sm);
    transition: color var(--transition);
}

.footer__links a:hover {
    color: var(--c-white);
}

.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    font-size: var(--fs-sm);
}

.footer__contact-item .icon {
    color: var(--c-red);
    margin-top: 2px;
    flex-shrink: 0;
}

.footer__bottom {
    margin-top: var(--space-3xl);
    padding: var(--space-lg) 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    font-size: var(--fs-xs);
}

.social-links {
    display: flex;
    gap: var(--space-sm);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    transition: all var(--transition);
}

.social-link:hover {
    color: var(--c-white);
}

.social-link--facebook:hover {
    background: #1877f2;
}

.social-link--instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-link--youtube:hover {
    background: #ff0000;
}

/* --- Single Post --- */
.entry-header {
    padding: calc(var(--header-h) + var(--space-3xl)) 0 var(--space-2xl);
    background: var(--c-navy);
    color: var(--c-white);
}

.entry-header .container {
    max-width: 800px;
}

.entry-header__meta {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
    font-size: var(--fs-sm);
    color: var(--c-gray-300);
}

.entry-header__title {
    font-size: var(--fs-2xl);
    color: var(--c-white);
}

.entry-content {
    padding: var(--space-3xl) 0;
}

.entry-content .container {
    max-width: 800px;
}

.entry-content p {
    margin-bottom: var(--space-lg);
}

.entry-content img {
    border-radius: var(--radius-md);
    margin: var(--space-xl) 0;
}

.entry-content h2,
.entry-content h3 {
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
}

.entry-content ul,
.entry-content ol {
    margin-bottom: var(--space-lg);
    padding-left: var(--space-xl);
    list-style: disc;
}

.entry-content ol {
    list-style: decimal;
}

.entry-content blockquote {
    margin: var(--space-xl) 0;
    padding: var(--space-lg) var(--space-xl);
    border-left: 4px solid var(--c-red);
    background: var(--c-gray-100);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
    color: var(--c-text-light);
}

/* Featured Image on single */
.entry-hero-image {
    margin-top: -2rem;
    margin-bottom: var(--space-2xl);
}

.entry-hero-image img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

/* Post Navigation */
.post-navigation {
    padding: var(--space-2xl) 0;
    border-top: 1px solid var(--c-gray-200);
}

.post-navigation .container {
    max-width: 800px;
    display: flex;
    justify-content: space-between;
    gap: var(--space-xl);
}

.post-navigation a {
    font-family: var(--ff-heading);
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--c-navy);
}

.post-navigation a:hover {
    color: var(--c-red);
}

.post-navigation__label {
    display: block;
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--c-gray-400);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: var(--space-xs);
}

/* --- Archive --- */
.archive-header {
    padding: calc(var(--header-h) + var(--space-3xl)) 0 var(--space-2xl);
    background: var(--c-navy);
    color: var(--c-white);
    text-align: center;
}

.archive-header h1 {
    color: var(--c-white);
    font-size: var(--fs-2xl);
}

.archive-content {
    padding: var(--space-3xl) 0;
}

/* Pagination */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: var(--space-2xl) 0 0;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 var(--space-sm);
    border-radius: var(--radius-md);
    font-family: var(--ff-heading);
    font-size: var(--fs-sm);
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition);
}

.pagination a {
    background: var(--c-gray-100);
    color: var(--c-text);
}

.pagination a:hover {
    background: var(--c-navy);
    color: var(--c-white);
}

.pagination .current {
    background: var(--c-red);
    color: var(--c-white);
}

/* --- Page Template --- */
.page-header {
    padding: calc(var(--header-h) + var(--space-3xl)) 0 var(--space-2xl);
    background: var(--c-navy);
    color: var(--c-white);
    text-align: center;
}

.page-header h1 {
    color: var(--c-white);
    font-size: var(--fs-2xl);
}

.page-content {
    padding: var(--space-3xl) 0;
}

.page-content .container {
    max-width: 900px;
}

.page-content p {
    margin-bottom: var(--space-lg);
}

.page-content img {
    border-radius: var(--radius-md);
    margin: var(--space-xl) 0;
}

/* --- 404 --- */
.error-404 {
    min-height: calc(100vh - var(--header-h));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-4xl) var(--space-lg);
    background: var(--c-navy);
    color: var(--c-white);
}

.error-404__number {
    font-family: var(--ff-heading);
    font-size: clamp(6rem, 15vw, 12rem);
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, var(--c-red) 0%, var(--c-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-lg);
}

.error-404 h1 {
    color: var(--c-white);
    font-size: var(--fs-2xl);
    margin-bottom: var(--space-md);
}

.error-404 p {
    color: var(--c-gray-300);
    font-size: var(--fs-lg);
    margin-bottom: var(--space-2xl);
    max-width: 500px;
    margin-inline: auto;
}

/* --- Animations (Intersection Observer) --- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* --- About Section --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.about__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.stat {
    text-align: center;
    padding: var(--space-md);
    background: var(--c-gray-100);
    border-radius: var(--radius-md);
}

.stat__number {
    font-family: var(--ff-heading);
    font-size: var(--fs-2xl);
    font-weight: 900;
    color: var(--c-red);
    line-height: 1;
}

.stat__label {
    font-size: var(--fs-xs);
    color: var(--c-text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: var(--space-xs);
}

/* --- Instagram Feed --- */
.insta-grid {
    width: 100%;
}

.insta-feed {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.insta-post {
    background: var(--c-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}

.insta-post:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.insta-post__img {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--c-gray-200);
}

.insta-post__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.insta-post:hover .insta-post__img img {
    transform: scale(1.05);
}

.insta-post__body {
    padding: var(--space-md);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.insta-post__caption {
    font-size: var(--fs-sm);
    color: var(--c-text-light);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.insta-post__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: var(--space-sm);
    padding-top: var(--space-sm);
    border-top: 1px solid var(--c-gray-200);
    font-size: var(--fs-xs);
    color: var(--c-gray-400);
}

.insta-post__meta a {
    color: var(--c-red);
    font-weight: 600;
    text-decoration: none;
}

.insta-post__meta a:hover {
    text-decoration: underline;
}

.insta-placeholder {
    grid-column: 1 / -1;
    text-align: center;
    padding: var(--space-4xl) var(--space-xl);
    color: var(--c-gray-400);
}

.insta-placeholder__icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.insta-placeholder__icon svg {
    width: 48px;
    height: 48px;
}

/* --- Google Map --- */
.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 16/9;
    background: var(--c-gray-200);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- Utility --- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-lg { margin-top: var(--space-lg); }
.mb-lg { margin-bottom: var(--space-lg); }

/* ============================================================
   Glow Effects & Sports Visual System
   Reusable CSS classes for transparent PNG/SVG glow effects
   ============================================================ */

/* Base glow image - uses drop-shadow to follow alpha contour */
.glow-image {
    filter: drop-shadow(0 0 10px rgba(77, 166, 255, 0.45))
            drop-shadow(0 0 25px rgba(77, 166, 255, 0.25))
            drop-shadow(0 0 50px rgba(77, 166, 255, 0.12));
    transition: filter 0.4s ease;
}

.glow-image:hover {
    filter: drop-shadow(0 0 14px rgba(77, 166, 255, 0.6))
            drop-shadow(0 0 35px rgba(77, 166, 255, 0.35))
            drop-shadow(0 0 60px rgba(77, 166, 255, 0.18));
}

/* Blue glow - stadium lights / night game feel */
.glow-blue {
    filter: drop-shadow(0 0 10px rgba(77, 166, 255, 0.5))
            drop-shadow(0 0 28px rgba(77, 166, 255, 0.3))
            drop-shadow(0 0 50px rgba(30, 80, 180, 0.15));
}

/* Red glow - energy / team color accent */
.glow-red {
    filter: drop-shadow(0 0 10px rgba(232, 48, 78, 0.5))
            drop-shadow(0 0 28px rgba(232, 48, 78, 0.3))
            drop-shadow(0 0 50px rgba(196, 30, 58, 0.15));
}

/* White glow - clean highlight / spotlight effect */
.glow-white {
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6))
            drop-shadow(0 0 22px rgba(255, 255, 255, 0.3))
            drop-shadow(0 0 45px rgba(255, 255, 255, 0.12));
}

/* Animated glow pulse - cycles through team colors */
.glow-pulse {
    animation: glowColorCycle 5s ease-in-out infinite;
}

@keyframes glowColorCycle {
    0%, 100% {
        filter: drop-shadow(0 0 12px rgba(77, 166, 255, 0.5))
                drop-shadow(0 0 30px rgba(77, 166, 255, 0.25));
    }
    33% {
        filter: drop-shadow(0 0 12px rgba(232, 48, 78, 0.5))
                drop-shadow(0 0 30px rgba(232, 48, 78, 0.25));
    }
    66% {
        filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.5))
                drop-shadow(0 0 30px rgba(255, 255, 255, 0.2));
    }
}

/* Motion trail - speed/movement blur behind subject */
.motion-trail {
    position: relative;
}

.motion-trail::before {
    content: '';
    position: absolute;
    inset: 5% 10% 5% 5%;
    background: linear-gradient(
        90deg,
        rgba(77, 166, 255, 0.25) 0%,
        rgba(77, 166, 255, 0.08) 40%,
        transparent 100%
    );
    filter: blur(18px);
    border-radius: 50%;
    transform: translateX(-15%) scaleX(1.4);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    pointer-events: none;
}

.motion-trail.is-visible::before,
.motion-trail:hover::before {
    opacity: 1;
}

.motion-trail--red::before {
    background: linear-gradient(
        90deg,
        rgba(232, 48, 78, 0.25) 0%,
        rgba(232, 48, 78, 0.08) 40%,
        transparent 100%
    );
}

/* Hero zoom-in - image enters from background with scale */
.hero-zoom-in {
    opacity: 0;
    transform: scale(0.7) translateZ(0);
    filter: blur(5px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1s cubic-bezier(0.16, 1, 0.3, 1),
                filter 0.8s ease-out;
    will-change: transform, opacity, filter;
}

.hero-zoom-in.is-visible {
    opacity: 1;
    transform: scale(1) translateZ(0);
    filter: blur(0);
}

/* Hero depth image - enters from behind with 3D depth effect */
.hero-depth-image {
    opacity: 0;
    transform: scale(0.6) perspective(600px) translateZ(-80px);
    filter: blur(8px);
    transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.1s,
                transform 1.2s cubic-bezier(0.22, 1, 0.36, 1),
                filter 0.9s ease-out 0.1s;
    will-change: transform, opacity, filter;
}

.hero-depth-image.is-visible {
    opacity: 1;
    transform: scale(1) perspective(600px) translateZ(0);
    filter: blur(0);
}

/* Sports poster effect - combined glow + entrance + float */
.sports-poster-effect {
    opacity: 0;
    transform: scale(0.65) translateY(30px) translateZ(0);
    filter: blur(6px)
            drop-shadow(0 0 0 transparent);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1.1s cubic-bezier(0.16, 1, 0.3, 1),
                filter 1s ease-out;
    will-change: transform, opacity, filter;
}

.sports-poster-effect.is-visible {
    opacity: 1;
    transform: scale(1) translateY(0) translateZ(0);
    filter: blur(0)
            drop-shadow(0 0 12px rgba(77, 166, 255, 0.4))
            drop-shadow(0 0 30px rgba(77, 166, 255, 0.2));
    animation: sportsFloat 5s ease-in-out 1.2s infinite alternate;
}

/* Floating animation for active hero images */
@keyframes heroImageFloat {
    0%   { transform: translateY(0) scale(1); }
    100% { transform: translateY(-6px) scale(1.02); }
}

/* Sports poster continuous float */
@keyframes sportsFloat {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-8px); }
}

/* Ambient glow behind active slide image */
.hero__slide.is-active::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70%;
    height: 70%;
    transform: translate(-50%, -50%);
    background: radial-gradient(
        ellipse at center,
        rgba(77, 166, 255, 0.12) 0%,
        rgba(77, 166, 255, 0.04) 50%,
        transparent 75%
    );
    filter: blur(30px);
    pointer-events: none;
    z-index: -1;
    animation: ambientPulse 4s ease-in-out infinite alternate;
}

@keyframes ambientPulse {
    from { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    to   { opacity: 1;   transform: translate(-50%, -50%) scale(1.1); }
}

/* ============================================================
   Reduced Motion - Accessibility
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
    .fade-in, .fade-in-left, .fade-in-right,
    .hero-zoom-in, .hero-depth-image, .sports-poster-effect {
        opacity: 1;
        transform: none;
        filter: none;
    }
    .glow-image, .glow-blue, .glow-red, .glow-white {
        filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    }
    .motion-trail::before {
        display: none;
    }
    .hero__slide,
    .hero__slide.is-active,
    .hero__slide.is-exiting {
        animation: none !important;
        filter: none;
        transform: none;
        opacity: 0;
    }
    .hero__slide.is-active {
        opacity: 1;
    }
    .hero__slide.is-active img {
        animation: none;
    }
    .hero__slide.is-active::before {
        animation: none;
    }
}
