/* ==============================================
   RESET E VARIABILI
   ============================================== */
:root {
    --primary: #333382;
    --accent: #D3E4FC;
    --dark: #0a0a0f;
    --dark-light: #1a1a2e;
    --white: #ffffff;
    --gray: #a0a0a0;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Courier New', 'Courier', monospace;
    background: var(--dark);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ==============================================
   NAVBAR
   ============================================== */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.main-nav:hover {
    background: rgba(10, 10, 15, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.nav-logo {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-edition {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    padding: 0.25rem 1rem;
    background: linear-gradient(135deg, rgba(51, 51, 130, 0.2), rgba(211, 228, 252, 0.1));
    border: 1px solid rgba(211, 228, 252, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.nav-edition:hover {
    color: rgba(255, 255, 255, 1);
    border-color: rgba(211, 228, 252, 0.4);
    background: linear-gradient(135deg, rgba(51, 51, 130, 0.3), rgba(211, 228, 252, 0.15));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--accent);
}

/* ==============================================
   HERO CON IMMAGINE DI SFONDO
   ============================================== */
.hero-simple {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at center, rgba(51, 51, 130, 0.2) 0%, rgba(10, 10, 15, 1) 70%);
}

.hero-backgrounds {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    animation: heroZoom 20s ease-in-out infinite alternate;
    filter: blur(0px) brightness(0.7);
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(51, 51, 130, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(211, 228, 252, 0.3) 0%, transparent 50%),
        linear-gradient(135deg, rgba(51, 51, 130, 0.6) 0%, rgba(10, 10, 15, 0.8) 100%);
    animation: gradientShift 10s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.hero-bg.active {
    opacity: 1;
    z-index: 1;
}

@keyframes heroZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.15);
    }
}

.hero-container {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1100px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(10, 10, 15, 0.15);
    backdrop-filter: blur(30px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero-eyebrow {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: rgba(211, 228, 252, 0.9);
    font-weight: 700;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.2s;
    background: linear-gradient(90deg, var(--accent), var(--primary), var(--accent));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s ease forwards 0.2s, shimmer 3s linear infinite;
}

.hero-container h1 {
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: 0.02em;
    font-family: 'Inter', 'Courier New', sans-serif;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.4s;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent) 50%, #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px rgba(211, 228, 252, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: var(--accent);
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    border-right: 3px solid transparent;
    white-space: nowrap;
    display: inline-block;
    min-height: 2rem;
    /* Nasconde il testo fino a quando non inizia typing */
    opacity: 0;
}

.hero-subtitle.typing {
    opacity: 1;
    border-right-color: var(--accent);
    animation: blink 0.75s step-end infinite;
}

/* IMPORTANTE: Mantiene visibile anche dopo che typing è finito */
.hero-subtitle.typed {
    opacity: 1 !important;
}

.hero-description {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    line-height: 1.8;
    max-width: 700px;
    opacity: 0;
    margin-bottom: 2rem;
}

.hero-description.visible {
    animation: fadeInUp 1s ease forwards;
}

@keyframes blink {
    from, to { border-color: transparent; }
    50% { border-color: var(--accent); }
}

.scroll-indicator {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1.2s;
    z-index: 10;
    transition: opacity 0.5s ease, transform 0.5s ease;
    margin-top: 3rem;
}

.scroll-indicator span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.scroll-arrow {
    font-size: 2rem;
    color: var(--accent);
    animation: bounce 2s ease-in-out infinite;
    text-shadow: 0 2px 10px rgba(211, 228, 252, 0.5);
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.6;
    }
    50% {
        transform: translateY(12px);
        opacity: 1;
    }
}

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

/* ==============================================
   STORY SECTIONS - DUE COLONNE CON ANIMAZIONI
   ============================================== */
.story-section {
    min-height: 100vh;
    position: relative;
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--dark) 0%, rgba(26, 26, 46, 0.5) 100%);
    overflow: hidden;
}

.story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, rgba(10, 10, 15, 0.85) 0%, rgba(10, 10, 15, 0.5) 50%, rgba(10, 10, 15, 0.85) 100%),
        url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1600&q=80') center/cover fixed;
    opacity: 0.5;
    z-index: 0;
}

.story-section.dark {
    background: linear-gradient(180deg, rgba(26, 26, 46, 0.8) 0%, var(--dark) 100%);
}

.story-section.dark::before {
    background: 
        linear-gradient(90deg, rgba(10, 10, 15, 0.85) 0%, rgba(10, 10, 15, 0.5) 50%, rgba(10, 10, 15, 0.85) 100%),
        url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1600&q=80') center/cover fixed;
    opacity: 0.5;
}

.story-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

/* COLONNA SINISTRA: TESTO CON ANIMAZIONI */
.story-text {
    padding: 2rem 0;
    padding-right: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.category-tag {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 1.5rem;
    font-weight: 600;
    opacity: 0;
    animation: slideInLeft 0.8s ease forwards;
}

.story-text h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
    opacity: 0;
    animation: slideInLeft 0.8s ease forwards 0.2s;
}

.lead-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 2rem;
    opacity: 0;
    animation: slideInLeft 0.8s ease forwards 0.4s;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.story-details {
    display: flex;
    gap: 3rem;
    margin: 2rem 0;
    opacity: 0;
    animation: slideInLeft 0.8s ease forwards 0.6s;
}

.detail-item {
    display: flex;
    flex-direction: column;
}

.detail-item strong {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    animation: countUp 2s ease forwards;
}

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

.detail-item span {
    font-size: 0.9rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
}

blockquote {
    border-left: 3px solid var(--primary);
    padding-left: 2rem;
    margin: 2rem 0;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--accent);
    opacity: 0;
    animation: slideInLeft 0.8s ease forwards 0.6s;
}

blockquote cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    font-style: normal;
    color: var(--gray);
}

.features-list {
    list-style: none;
    margin: 2rem 0;
}

.features-list li {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 1rem;
    opacity: 0;
    animation: slideInLeft 0.6s ease forwards;
}

.features-list li:nth-child(1) { animation-delay: 0.4s; }
.features-list li:nth-child(2) { animation-delay: 0.5s; }
.features-list li:nth-child(3) { animation-delay: 0.6s; }
.features-list li:nth-child(4) { animation-delay: 0.7s; }

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    margin-top: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: slideInLeft 0.8s ease forwards 0.8s;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--primary);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateX(10px);
    border-color: var(--accent);
    color: var(--white);
}

/* COLONNA DESTRA: IMMAGINI SCROLLANTI CON EFFETTI */
.story-images {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 75vh;
}

.image-scroll-wrapper {
    width: 100%;
    height: 75vh;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 0;
}

.scroll-image {
    position: absolute;
    width: 90%;
    height: 85%;
    border-radius: 20px;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
    
    /* Bordo con gradiente animato */
    border: 3px solid transparent;
    background: 
        linear-gradient(var(--dark), var(--dark)) padding-box,
        linear-gradient(135deg, 
            rgba(51, 51, 130, 0.4) 0%,
            rgba(211, 228, 252, 0.6) 25%,
            rgba(51, 51, 130, 0.8) 50%,
            rgba(211, 228, 252, 0.6) 75%,
            rgba(51, 51, 130, 0.4) 100%
        ) border-box;
    background-size: 200% 200%;
    
    /* Ombra 3D multi-layer */
    box-shadow: 
        0 2px 8px rgba(51, 51, 130, 0.15),
        0 8px 24px rgba(51, 51, 130, 0.2),
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.scroll-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), filter 0.6s ease;
    border-radius: 17px; /* Slightly smaller to show border */
}

.scroll-image.active {
    opacity: 1;
    transform: translateY(0) scale(1) !important;
    z-index: 2;
    
    /* Animazione del bordo gradiente */
    animation: borderGradient 4s ease infinite, glowPulse 3s ease-in-out infinite;
    
    /* Glow effect potenziato */
    box-shadow: 
        0 0 20px rgba(51, 51, 130, 0.4),
        0 0 40px rgba(211, 228, 252, 0.3),
        0 2px 8px rgba(51, 51, 130, 0.2),
        0 8px 24px rgba(51, 51, 130, 0.25),
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 8px rgba(51, 51, 130, 0.2);
}

.scroll-image.active img {
    transform: scale(1.05);
    filter: brightness(1.05) contrast(1.05);
}

/* Animazioni */
@keyframes borderGradient {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes glowPulse {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(51, 51, 130, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 25px rgba(211, 228, 252, 0.7));
    }
}

/* Effetto hover sulle immagini non attive */
.scroll-image:not(.active):hover {
    border-color: rgba(211, 228, 252, 0.3);
    box-shadow: 
        0 0 15px rgba(51, 51, 130, 0.3),
        0 8px 24px rgba(0, 0, 0, 0.4);
}

/* Effetto shine/riflesso luminoso */
.scroll-image.active::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0) 40%,
        rgba(211, 228, 252, 0.3) 45%,
        rgba(255, 255, 255, 0.5) 50%,
        rgba(211, 228, 252, 0.3) 55%,
        rgba(255, 255, 255, 0) 60%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(45deg);
    animation: shine 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 10;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* Effetto particelle luminose agli angoli */
.scroll-image.active::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    background: radial-gradient(
        circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(211, 228, 252, 0.4) 0%,
        rgba(51, 51, 130, 0.2) 20%,
        transparent 50%
    );
    opacity: 0.6;
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: screen;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: var(--white);
    font-size: 0.9rem;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-image.active .image-caption {
    transform: translateY(0);
}

/* === CONTROLLI MODERNI GALLERY WIDGET === */
.image-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 1.2rem;
    width: 100%;
}
.control-btn {
    background: rgba(51, 51, 130, 0.12);
    border: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    color: var(--accent);
    box-shadow: 0 2px 8px rgba(51,51,130,0.08);
}
.control-btn:hover {
    background: rgba(51, 51, 130, 0.25);
    color: #fff;
}
.image-dots {
    display: flex;
    gap: 0.4rem;
    align-items: center;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.dot.active {
    width: 24px;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1);
}

/* ==============================================
   GRIGLIA ARTICOLI CON ANIMAZIONI
   ============================================== */
.articles-grid {
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.articles-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(180deg, rgba(10, 10, 15, 0.95) 0%, rgba(10, 10, 15, 0.85) 100%),
        url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?w=1600&q=80') center/cover fixed;
    opacity: 0.2;
    z-index: 0;
}

.grid-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 4rem;
    font-weight: 800;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.articles-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.article-card {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.article-card:nth-child(1) { animation-delay: 0.1s; }
.article-card:nth-child(2) { animation-delay: 0.2s; }
.article-card:nth-child(3) { animation-delay: 0.3s; }
.article-card:nth-child(4) { animation-delay: 0.4s; }
.article-card:nth-child(5) { animation-delay: 0.5s; }
.article-card:nth-child(6) { animation-delay: 0.6s; }

.article-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(51, 51, 130, 0.4);
}

.article-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                filter 0.6s ease;
    filter: brightness(0.9);
}

.article-card:hover img {
    transform: scale(1.15);
    filter: brightness(1.1);
}

.article-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 60%, transparent);
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.5s ease;
}

.article-card:hover .article-content {
    transform: translateY(0);
    opacity: 1;
}

.article-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--accent);
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.article-card h3 {
    font-size: 1.2rem;
    line-height: 1.3;
}

/* ==============================================
   FOOTER
   ============================================== */
.main-footer {
    padding: 4rem 2rem 2rem;
    background: #000;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin: 0 auto 2rem;
    opacity: 0.8;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-nav a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--white);
}

.copyright {
    font-size: 0.85rem;
    color: var(--gray);
}

/* ==============================================
   RESPONSIVE
   ============================================== */
@media (max-width: 1024px) {
    .story-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .story-text {
        position: relative;
        top: 0;
    }
    
    .story-images {
        height: 60vh;
    }
    
    .image-scroll-wrapper {
        height: 60vh;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-simple {
        height: 80vh;
    }
    
    .articles-wrapper {
        grid-template-columns: 1fr;
    }
}