/* =============================================
   INDONESIA CHRONICLES — Main Stylesheet
   Colors: Batik Red, Gold, Tropical Green
   ============================================= */

:root {
    --red: #8B1A1A;
    --red-dark: #6B1414;
    --red-light: #A52020;
    --gold: #D4A017;
    --gold-light: #E8B822;
    --green: #2D6A4F;
    --green-light: #3A8A65;
    --cream: #FAF6F0;
    --cream-dark: #F0E8DC;
    --brown: #2C1810;
    --brown-light: #5C3A2A;
    --gray: #6B7280;
    --gray-light: #F3F4F6;
    --white: #FFFFFF;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 40px rgba(0,0,0,0.15);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: all 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--cream);
    color: var(--brown);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; }

/* =============================================
   TOP BAR
   ============================================= */
.top-bar {
    background: var(--brown);
    color: var(--cream);
    font-size: 12px;
    padding: 8px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left { display: flex; align-items: center; gap: 12px; }
.top-bar-left .divider { opacity: 0.4; }
.top-bar-left i { color: var(--gold); margin-right: 4px; }

.top-bar-right { display: flex; align-items: center; gap: 20px; }

.language-switcher { display: flex; gap: 4px; }
.lang-btn {
    padding: 2px 10px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
}
.lang-btn:hover, .lang-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--brown);
}

.social-top { display: flex; gap: 12px; }
.social-top a { opacity: 0.6; font-size: 13px; }
.social-top a:hover { opacity: 1; color: var(--gold); }

/* =============================================
   HEADER
   ============================================= */
.header {
    background: var(--white);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.header.scrolled { padding: 10px 0; }

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a { display: flex; flex-direction: column; }
.logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 900;
    color: var(--red);
    line-height: 1;
    letter-spacing: -0.5px;
}
.logo-tagline {
    font-size: 10px;
    color: var(--gray);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 2px;
}

.nav ul { display: flex; gap: 4px; list-style: none; }
.nav a {
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--brown-light);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.nav a:hover, .nav a.active { background: var(--cream); color: var(--red); }
.nav-about {
    background: var(--red) !important;
    color: var(--white) !important;
    border-radius: 20px !important;
}
.nav-about:hover { background: var(--red-dark) !important; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--brown);
    border-radius: 2px;
    transition: var(--transition);
}

/* =============================================
   HERO
   ============================================= */
.hero {
    height: 95vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a0a05 0%, #3D1000 30%, #1a3020 70%, #0a1a2a 100%);
    background-size: cover;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(212, 160, 23, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 26, 26, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 60% 80%, rgba(45, 106, 79, 0.15) 0%, transparent 40%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 10, 5, 0.55);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-label {
    display: inline-block;
    background: rgba(212, 160, 23, 0.2);
    border: 1px solid rgba(212, 160, 23, 0.4);
    color: var(--gold-light);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(42px, 7vw, 80px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-highlight {
    color: var(--gold);
    font-style: italic;
}

.hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 36px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255,255,255,0.5);
    font-size: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: bounce 2s infinite;
}

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

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    border: 2px solid var(--red);
}
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(139,26,26,0.35); }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    border: 2px solid rgba(255,255,255,0.4);
    transition: var(--transition);
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

.btn-read {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--red);
    font-weight: 600;
    font-size: 14px;
    margin-top: 20px;
    transition: var(--transition);
}
.btn-read:hover { gap: 12px; }

.full-width { width: 100%; justify-content: center; }

/* =============================================
   TICKER
   ============================================= */
.ticker-wrap {
    background: var(--red);
    color: var(--white);
    padding: 12px 0;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.ticker-label {
    background: var(--gold);
    color: var(--brown);
    padding: 4px 16px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
    margin-left: 20px;
    border-radius: 3px;
}

.ticker { flex: 1; overflow: hidden; margin-left: 16px; }
.ticker-inner {
    display: flex;
    gap: 60px;
    animation: ticker 40s linear infinite;
    white-space: nowrap;
}
.ticker-inner span { font-size: 13px; }

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* =============================================
   SECTION HEADERS
   ============================================= */
.section-label {
    display: inline-block;
    color: var(--red);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.section-header {
    margin-bottom: 40px;
    position: relative;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--brown);
    line-height: 1.2;
}

.view-all {
    position: absolute;
    right: 0;
    bottom: 8px;
    color: var(--red);
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}
.view-all:hover { gap: 10px; }

/* =============================================
   FEATURED STORY
   ============================================= */
.featured-story {
    padding: 80px 0;
    background: var(--white);
}

.featured-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    align-items: start;
}

.featured-main { display: flex; flex-direction: column; gap: 24px; }

.featured-image { border-radius: var(--radius); overflow: hidden; height: 380px; }

.featured-img-placeholder {
    height: 100%;
    background: linear-gradient(135deg, #2C1810, #8B1A1A);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--white);
    gap: 16px;
    opacity: 0.9;
}

.featured-img-placeholder .img-overlay {
    position: absolute;
    top: 16px;
    left: 16px;
}

.featured-img-placeholder .img-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0.4;
}

.featured-tag, .article-tag {
    background: var(--gold);
    color: var(--brown);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-category {
    display: inline-block;
    color: var(--red);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.article-category.small { font-size: 10px; }

.featured-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
    color: var(--brown);
}

.featured-text p { color: var(--gray); line-height: 1.8; }

.article-meta {
    display: flex;
    gap: 20px;
    margin-top: 16px;
    font-size: 13px;
    color: var(--gray);
}
.article-meta i { color: var(--red); margin-right: 4px; }

.featured-sidebar { background: var(--cream); border-radius: var(--radius); padding: 24px; }
.featured-sidebar h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--cream-dark);
}

.sidebar-articles { display: flex; flex-direction: column; gap: 20px; }

.sidebar-article {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--cream-dark);
}
.sidebar-article:last-child { border-bottom: none; padding-bottom: 0; }

.sidebar-img {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 20px;
}

.food-bg { background: linear-gradient(135deg, #7B3F00, #D2691E); }
.history-bg { background: linear-gradient(135deg, #1a2040, #2D4A8A); }
.nature-bg { background: linear-gradient(135deg, #1a3020, #2D6A4F); }
.tribe-bg { background: linear-gradient(135deg, #1a2040, #006994); }
.cave-bg { background: linear-gradient(135deg, #2a1a0a, #5C3A2A); }
.baduy-bg { background: linear-gradient(135deg, #1a3020, #4A7C59); }
.spice-bg { background: linear-gradient(135deg, #3D2000, #8B4513); }
.jamu-bg { background: linear-gradient(135deg, #2D6A4F, #52B788); }
.gamelan-bg { background: linear-gradient(135deg, #3D1A00, #B8860B); }
.rendang-bg { background: linear-gradient(135deg, #5C0000, #8B1A1A); }

.sidebar-text h5 {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--brown);
    margin-bottom: 6px;
}

.read-time { font-size: 11px; color: var(--gray); }

/* =============================================
   CATEGORIES
   ============================================= */
.categories {
    padding: 80px 0;
    background: var(--cream);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 22px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    display: block;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--red);
}

.cat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 22px;
}

.cat-culture .cat-icon { background: rgba(139,26,26,0.1); color: var(--red); }
.cat-food .cat-icon { background: rgba(123,63,0,0.1); color: #7B3F00; }
.cat-travel .cat-icon { background: rgba(45,106,79,0.1); color: var(--green); }
.cat-history .cat-icon { background: rgba(45,45,130,0.1); color: #2D2D82; }
.cat-language .cat-icon { background: rgba(212,160,23,0.15); color: #A07010; }
.cat-news .cat-icon { background: rgba(44,24,16,0.08); color: var(--brown-light); }
.cat-nature .cat-icon { background: rgba(45,106,79,0.1); color: var(--green); }
.cat-people .cat-icon { background: rgba(139,26,26,0.1); color: var(--red); }

.category-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--brown);
}

.category-card p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.5;
    margin-bottom: 14px;
}

.cat-count {
    font-size: 11px;
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* =============================================
   LATEST ARTICLES
   ============================================= */
.latest-articles {
    padding: 80px 0;
    background: var(--white);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.article-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--cream-dark);
}
.article-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }

.article-img {
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    color: rgba(255,255,255,0.5);
}

.article-img .article-tag {
    position: absolute;
    top: 14px;
    left: 14px;
}

.article-img-icon { font-size: 36px; }

.article-body { padding: 22px; }

.article-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
    color: var(--brown);
}

.article-body p { font-size: 13px; color: var(--gray); line-height: 1.7; }

.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--cream-dark);
    font-size: 12px;
    color: var(--gray);
}

.read-link {
    color: var(--red);
    font-weight: 600;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
}
.read-link:hover { gap: 8px; }

/* =============================================
   DID YOU KNOW
   ============================================= */
.did-you-know {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--brown) 0%, var(--red-dark) 100%);
    color: var(--white);
}

.dyk-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.dyk-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 32px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.dyk-label i { font-size: 18px; }

.dyk-fact {
    display: none;
    animation: fadeIn 0.5s ease;
}
.dyk-fact.active { display: block; }

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

.dyk-fact h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(22px, 3.5vw, 32px);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
    color: var(--gold-light);
}

.dyk-fact p {
    font-size: 16px;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    max-width: 620px;
    margin: 0 auto;
}

.dyk-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 36px;
}

.dyk-prev, .dyk-next {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 14px;
}
.dyk-prev:hover, .dyk-next:hover { background: var(--gold); border-color: var(--gold); color: var(--brown); }

.dyk-dots { display: flex; gap: 8px; }
.dyk-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}
.dyk-dot.active { background: var(--gold); transform: scale(1.3); }

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-section {
    padding: 80px 0;
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 60px;
    align-items: center;
}

.about-img-placeholder {
    background: linear-gradient(135deg, var(--red-dark), var(--brown));
    border-radius: var(--radius);
    height: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.4);
    gap: 16px;
    font-size: 80px;
    margin-bottom: 20px;
}

.about-img-placeholder span {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
}

.about-credentials { display: flex; flex-direction: column; gap: 10px; }

.credential {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 500;
    box-shadow: var(--shadow);
}
.credential i { color: var(--gold); }

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--brown);
}

.about-text p {
    color: var(--gray);
    line-height: 1.9;
    margin-bottom: 16px;
    font-size: 15px;
}

.about-text .btn-primary { margin-top: 8px; }

/* =============================================
   NEWSLETTER
   ============================================= */
.newsletter {
    padding: 80px 0;
    background: var(--white);
}

.newsletter-inner {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    border-radius: 20px;
    padding: 50px;
    border: 1px solid var(--cream-dark);
}

.newsletter-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--brown);
    line-height: 1.2;
    margin-bottom: 16px;
}

.newsletter-text p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 28px;
}

.newsletter-stats {
    display: flex;
    gap: 32px;
}

.stat { display: flex; flex-direction: column; }
.stat strong {
    font-size: 24px;
    font-weight: 900;
    color: var(--red);
    font-family: 'Playfair Display', serif;
}
.stat span { font-size: 12px; color: var(--gray); text-transform: uppercase; letter-spacing: 0.5px; }

.newsletter-form {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
}

.newsletter-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--brown);
}

.newsletter-form input,
.newsletter-form select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--cream-dark);
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--brown);
    background: var(--cream);
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
}

.newsletter-form input:focus,
.newsletter-form select:focus {
    outline: none;
    border-color: var(--red);
    background: var(--white);
}

.form-note {
    font-size: 11px;
    color: var(--gray);
    text-align: center;
    margin-top: 10px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: var(--brown);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--white);
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 280px;
}

.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--brown); }

.footer-links h4 {
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; transition: var(--transition); }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.coming-soon { opacity: 0.4; font-size: 13px !important; }

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}
.footer-bottom a { color: var(--gold); }
.footer-tagline { font-style: italic; color: rgba(255,255,255,0.4); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .articles-grid { grid-template-columns: repeat(2, 1fr); }
    .featured-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .newsletter-inner { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); padding: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
    .nav.open { display: block; }
    .nav ul { flex-direction: column; gap: 4px; }
    .hamburger { display: flex; }
    .top-bar-left span:not(:first-child) { display: none; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .articles-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .newsletter-inner { padding: 30px 20px; }
    .newsletter-stats { gap: 20px; }
}

@media (max-width: 480px) {
    .categories-grid { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .article-meta { flex-direction: column; gap: 6px; }
}
