/* ============================================
   STREAMORA — The Pulse of Internet Culture
   Gen Z media brand: K-Pop, Celebrity, Culture
   ============================================ */

/* --- CSS Reset & Custom Properties --- */
:root {
    --bg-primary: #0D0D12;
    --bg-card: #16161D;
    --bg-elevated: #1E1E28;
    --bg-surface: #252532;
    --primary: #FF006E;
    --primary-light: #FF3D8E;
    --primary-dark: #CC0058;
    --secondary: #8B5CF6;
    --secondary-light: #A78BFA;
    --accent: #06D6A0;
    --accent-light: #34E0B5;
    --highlight: #FFD166;
    --text: #F1F1F4;
    --text-muted: #8888A0;
    --text-dim: #55556A;
    --border: #2A2A3A;
    --border-light: #35354A;
    --gradient-primary: linear-gradient(135deg, #FF006E, #8B5CF6);
    --gradient-secondary: linear-gradient(135deg, #8B5CF6, #06D6A0);
    --gradient-accent: linear-gradient(135deg, #06D6A0, #FFD166);
    --gradient-warm: linear-gradient(135deg, #FF006E, #FFD166);
    --font-heading: 'Space Grotesk', system-ui, sans-serif;
    --font-body: 'DM Sans', system-ui, sans-serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.5);
    --shadow-glow: 0 0 30px rgba(255,0,110,0.15);
}

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

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

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

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

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

ul, ol { list-style: none; }

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

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Trending Ticker Bar --- */
.ticker-bar {
    background: var(--primary);
    display: flex;
    align-items: center;
    height: 36px;
    overflow: hidden;
    position: relative;
    z-index: 1001;
}

.ticker-label {
    background: var(--primary-dark);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 1.5px;
    padding: 0 16px;
    height: 100%;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.ticker-label::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 0;
    width: 0;
    height: 0;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    border-left: 12px solid var(--primary-dark);
}

.ticker-track {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.ticker-content {
    display: flex;
    align-items: center;
    gap: 24px;
    white-space: nowrap;
    animation: ticker-scroll 40s linear infinite;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    padding-left: 24px;
}

.ticker-content span { flex-shrink: 0; }

.ticker-dot {
    width: 4px;
    height: 4px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    display: inline-block;
}

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

/* --- Navigation --- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(13,13,18,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s, box-shadow 0.3s;
}

.site-header.scrolled {
    background: rgba(13,13,18,0.98);
    box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.nav-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: 24px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text);
    background: var(--bg-elevated);
}

.nav-link.active { color: var(--primary); }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-search-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
}

.nav-search-btn:hover {
    color: var(--text);
    border-color: var(--primary);
    background: rgba(255,0,110,0.1);
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 10px;
}

.nav-hamburger span {
    display: block;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
}

.nav-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.active span:nth-child(2) { opacity: 0; }

.nav-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background: rgba(13,13,18,0.95);
    backdrop-filter: blur(30px);
    display: flex;
    align-items: flex-start;
    padding-top: 140px;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.search-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.search-overlay-inner {
    width: 100%;
    max-width: 640px;
    padding: 0 20px;
    position: relative;
}

.search-form-overlay {
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 12px;
}

.search-input-overlay {
    flex: 1;
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 600;
    color: var(--text);
    outline: none;
}

.search-input-overlay::placeholder {
    color: var(--text-dim);
}

.search-submit-overlay {
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    padding: 8px;
}

.search-close {
    position: absolute;
    top: -80px;
    right: 20px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    cursor: pointer;
    transition: all 0.2s;
}

.search-close:hover {
    background: var(--primary);
    border-color: var(--primary);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 40px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    padding: 12px 0;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
    display: block;
    transition: color 0.2s, padding-left 0.2s;
}

.mobile-link:hover {
    color: var(--primary);
    padding-left: 12px;
}

.mobile-social {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.mobile-social a {
    color: var(--text-muted);
    transition: color 0.2s;
}

.mobile-social a:hover { color: var(--primary); }

/* --- Magazine Hero Grid --- */
.hero-magazine {
    padding: 24px 0 0;
}

.magazine-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 16px;
    min-height: 480px;
}

.magazine-main {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: block;
}

.magazine-img-wrap {
    position: absolute;
    inset: 0;
}

.magazine-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.magazine-main:hover .magazine-img-wrap img {
    transform: scale(1.05);
}

.magazine-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(13,13,18,0.95) 0%, rgba(13,13,18,0.4) 50%, rgba(13,13,18,0.1) 100%);
}

.magazine-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    padding: 32px;
}

.magazine-topic {
    display: inline-flex;
    align-items: center;
    background: var(--primary);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 4px;
    width: fit-content;
    margin-bottom: 12px;
}

.magazine-topic.small {
    font-size: 10px;
    padding: 4px 10px;
}

.magazine-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
}

.magazine-excerpt {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 12px;
    max-width: 500px;
}

.magazine-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: var(--text-dim);
}

.magazine-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.magazine-side-card {
    position: relative;
    flex: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    display: block;
    min-height: 220px;
}

.magazine-side-img {
    position: absolute;
    inset: 0;
}

.magazine-side-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.magazine-side-card:hover .magazine-side-img img {
    transform: scale(1.05);
}

.magazine-side-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    padding: 20px;
}

.magazine-side-title {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 6px;
}

.magazine-side-meta {
    font-size: 12px;
    color: var(--text-dim);
}

/* --- Topic Pills Strip --- */
.topic-strip {
    padding: 28px 0 12px;
    border-bottom: 1px solid var(--border);
}

.topic-pills {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 4px;
}

.topic-pills::-webkit-scrollbar { display: none; }

.topic-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    white-space: nowrap;
    transition: all 0.2s;
    flex-shrink: 0;
}

.topic-pill:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(255,0,110,0.08);
}

.topic-pill.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.topic-pill svg { opacity: 0.7; }

/* --- Section Headers --- */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.section-header.centered {
    flex-direction: column;
    text-align: center;
    gap: 8px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title-accent {
    width: 4px;
    height: 28px;
    background: var(--primary);
    border-radius: 4px;
    flex-shrink: 0;
}

.section-title-accent.purple { background: var(--secondary); }
.section-title-accent.mint { background: var(--accent); }

.section-subtitle {
    color: var(--text-muted);
    font-size: 15px;
}

.section-link {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
    transition: gap 0.2s;
}

.section-link:hover { gap: 8px; }

/* --- Article Cards Grid --- */
.section-latest {
    padding: 48px 0;
}

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

.article-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(255,0,110,0.3);
}

.card-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.article-card:hover .card-image img {
    transform: scale(1.08);
}

.card-topic-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(13,13,18,0.8);
    backdrop-filter: blur(10px);
    color: var(--primary-light);
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid rgba(255,0,110,0.2);
}

.card-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 8px;
}

.card-excerpt {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 14px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 12px;
    color: var(--text-dim);
}

.card-dot {
    width: 3px;
    height: 3px;
    background: var(--text-dim);
    border-radius: 50%;
}

/* --- K-Pop Spotlight Section --- */
.section-spotlight {
    padding: 48px 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

.spotlight-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 3/4;
    display: block;
}

.spotlight-img {
    position: absolute;
    inset: 0;
}

.spotlight-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.spotlight-card:hover .spotlight-img img {
    transform: scale(1.08);
}

.spotlight-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(13,13,18,0.95) 0%, rgba(13,13,18,0.2) 60%, transparent 100%);
}

.spotlight-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    padding: 20px;
}

.spotlight-label {
    font-size: 11px;
    color: var(--secondary-light);
    font-weight: 500;
    margin-bottom: 8px;
}

.spotlight-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 6px;
}

.spotlight-excerpt {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* --- Culture / Sidebar Section --- */
.section-culture {
    padding: 48px 0;
}

.culture-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 32px;
}

.culture-card {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s;
}

.culture-card:first-child { padding-top: 0; }

.culture-card:hover {
    background: rgba(255,255,255,0.02);
}

.culture-card-img {
    width: 140px;
    height: 100px;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.culture-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.culture-card:hover .culture-card-img img {
    transform: scale(1.06);
}

.culture-card-body h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 6px;
}

.culture-card-body p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Trending Sidebar */
.trending-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 20px;
}

.trending-box-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.trending-list li {
    margin-bottom: 14px;
}

.trending-list li:last-child { margin-bottom: 0; }

.trending-list a,
.trending-list li > span:first-child + div {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.trending-list a { transition: opacity 0.2s; }
.trending-list a:hover { opacity: 0.8; }

.trending-rank {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    min-width: 28px;
    flex-shrink: 0;
}

.trending-topic {
    font-size: 11px;
    color: var(--secondary-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 2px;
}

.trending-title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
    display: block;
}

/* Follow Box */
.follow-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
}

.follow-box-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.follow-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.follow-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}

.follow-link:hover {
    border-color: var(--primary);
    background: rgba(255,0,110,0.08);
}

/* --- Newsletter Section --- */
.section-newsletter {
    padding: 48px 0 64px;
}

.newsletter-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 56px 40px;
    text-align: center;
    overflow: hidden;
}

.newsletter-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--primary);
    top: -100px;
    right: -50px;
}

.shape-2 {
    width: 250px;
    height: 250px;
    background: var(--secondary);
    bottom: -80px;
    left: -30px;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--accent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.newsletter-inner {
    position: relative;
    z-index: 2;
    max-width: 520px;
    margin: 0 auto;
}

.newsletter-inner h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

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

.newsletter-form-hero {
    display: flex;
    gap: 8px;
    max-width: 440px;
    margin: 0 auto 12px;
}

.newsletter-form-hero input {
    flex: 1;
    padding: 14px 18px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s;
}

.newsletter-form-hero input:focus {
    border-color: var(--primary);
}

.newsletter-form-hero input::placeholder {
    color: var(--text-dim);
}

.newsletter-form-hero button {
    padding: 14px 28px;
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--radius-sm);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
    white-space: nowrap;
}

.newsletter-form-hero button:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.newsletter-form-hero button.subscribed {
    background: var(--accent);
}

.newsletter-note {
    font-size: 12px;
    color: var(--text-dim);
}

/* --- Footer --- */
.site-footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--border);
    position: relative;
}

.footer-wave {
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    height: 60px;
    pointer-events: none;
}

.footer-wave svg {
    width: 100%;
    height: 100%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding: 60px 0 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    transition: all 0.2s;
}

.footer-social a:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: rgba(255,0,110,0.1);
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    color: var(--text);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-muted);
    font-size: 14px;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.footer-newsletter p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 14px;
}

.newsletter-form {
    display: flex;
    gap: 6px;
}

.newsletter-input {
    flex: 1;
    padding: 10px 14px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 14px;
    outline: none;
    min-width: 0;
}

.newsletter-input:focus {
    border-color: var(--primary);
}

.newsletter-input::placeholder {
    color: var(--text-dim);
}

.newsletter-btn {
    padding: 10px 16px;
    background: var(--primary);
    border: none;
    border-radius: var(--radius-sm);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
    white-space: nowrap;
}

.newsletter-btn:hover { opacity: 0.85; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-top: 1px solid var(--border);
    font-size: 13px;
    color: var(--text-dim);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: var(--text-dim);
    transition: color 0.2s;
}

.footer-bottom-links a:hover { color: var(--text-muted); }

/* --- Articles Listing Page --- */
.page-header {
    padding: 48px 0 24px;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
}

.articles-controls {
    padding: 0 0 32px;
}

.controls-row {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.articles-search-form { width: 100%; }

.search-input-wrap {
    display: flex;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 4px 4px 4px 14px;
    transition: border-color 0.2s;
}

.search-input-wrap:focus-within {
    border-color: var(--primary);
}

.search-input-wrap .search-icon {
    color: var(--text-dim);
    flex-shrink: 0;
    margin-right: 10px;
}

.articles-search-input {
    flex: 1;
    background: none;
    border: none;
    color: var(--text);
    font-size: 15px;
    padding: 10px 0;
    outline: none;
    min-width: 0;
}

.articles-search-input::placeholder {
    color: var(--text-dim);
}

.articles-search-btn {
    padding: 10px 20px;
    background: var(--primary);
    border: none;
    border-radius: 6px;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}

.articles-search-btn:hover { opacity: 0.85; }

.topic-filters {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 2px;
}

.topic-filters::-webkit-scrollbar { display: none; }

.filter-tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    white-space: nowrap;
    transition: all 0.2s;
    flex-shrink: 0;
}

.filter-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.filter-count {
    font-size: 11px;
    background: rgba(255,255,255,0.15);
    padding: 1px 6px;
    border-radius: 10px;
}

.filter-tab.active .filter-count {
    background: rgba(255,255,255,0.25);
}

.results-summary {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.articles-results {
    padding-bottom: 64px;
}

/* Pagination */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.page-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    transition: all 0.2s;
}

.page-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.page-numbers {
    display: flex;
    gap: 4px;
}

.page-num {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    transition: all 0.2s;
}

.page-num:hover {
    background: var(--bg-elevated);
    color: var(--text);
}

.page-num.active {
    background: var(--primary);
    color: #fff;
}

.page-ellipsis {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dim);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 80px 20px;
}

.empty-icon {
    margin-bottom: 20px;
}

.empty-state h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.empty-state p {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 15px;
}

/* --- Article Detail Page --- */
.article-hero {
    position: relative;
    height: 480px;
    overflow: hidden;
}

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

.article-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(13,13,18,1) 0%, rgba(13,13,18,0.6) 40%, rgba(13,13,18,0.2) 100%);
}

.article-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding-bottom: 40px;
}

.article-topic-badge {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 4px;
    margin-bottom: 14px;
    transition: background 0.2s;
}

.article-topic-badge:hover {
    background: var(--primary-light);
}

.article-hero-title {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    max-width: 700px;
    margin-bottom: 16px;
}

.article-hero-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 14px;
    flex-wrap: wrap;
}

.article-hero-meta em {
    color: var(--text-dim);
    font-style: normal;
}

.meta-sep {
    width: 4px;
    height: 4px;
    background: var(--text-dim);
    border-radius: 50%;
}

.article-body-wrap {
    padding: 48px 0 64px;
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
}

.article-content {
    max-width: 100%;
    min-width: 0;
}

.article-excerpt-body {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
}

.article-content h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 14px;
}

.article-content p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 18px;
}

.article-content blockquote {
    border-left: 3px solid var(--primary);
    padding-left: 20px;
    margin: 24px 0;
    font-style: italic;
    color: var(--text);
}

.article-content ul,
.article-content ol {
    padding-left: 24px;
    margin-bottom: 18px;
    color: var(--text-muted);
}

.article-content li {
    margin-bottom: 8px;
    list-style: disc;
    font-size: 16px;
    line-height: 1.6;
}

.article-source {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 0;
    margin-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 14px;
    color: var(--text-dim);
}

.article-source a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.article-share {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    margin-top: 24px;
    border-top: 1px solid var(--border);
}

.share-label {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
}

.share-buttons {
    display: flex;
    gap: 8px;
}

.share-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
}

.share-btn:hover {
    color: var(--text);
    border-color: var(--primary);
    background: rgba(255,0,110,0.1);
}

/* Article Sidebar */
.article-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.sidebar-section {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 20px;
}

.sidebar-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.related-card {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    transition: opacity 0.2s;
}

.related-card:last-child { border-bottom: none; }
.related-card:hover { opacity: 0.8; }

.related-card img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.related-topic {
    font-size: 11px;
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 500;
    display: block;
    margin-bottom: 2px;
}

.related-card h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
    margin-bottom: 4px;
}

.related-date {
    font-size: 12px;
    color: var(--text-dim);
}

.sidebar-newsletter {
    background: var(--bg-card);
}

.sidebar-newsletter p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 14px;
}

.sidebar-nl-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-nl-form input {
    padding: 10px 14px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 14px;
    outline: none;
}

.sidebar-nl-form input:focus {
    border-color: var(--primary);
}

.sidebar-nl-form input::placeholder {
    color: var(--text-dim);
}

.sidebar-nl-form button {
    padding: 10px;
    background: var(--primary);
    border: none;
    border-radius: var(--radius-sm);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.sidebar-nl-form button:hover { opacity: 0.85; }

/* --- About Page --- */
.about-hero {
    padding: 80px 0 48px;
    text-align: center;
}

.about-hero-inner {
    max-width: 700px;
    margin: 0 auto;
}

.about-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 16px;
    padding: 6px 14px;
    border: 1px solid rgba(255,0,110,0.3);
    border-radius: 100px;
}

.about-hero-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 18px;
}

.about-hero-text {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.about-mission {
    padding: 32px 0 48px;
}

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

.mission-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px;
}

.mission-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    margin-bottom: 18px;
}

.mission-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.mission-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.about-story {
    padding: 48px 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.story-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.story-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.story-image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.story-image-accent {
    position: absolute;
    bottom: -12px;
    right: -12px;
    width: 60%;
    height: 60%;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.3;
}

.story-text h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 18px;
}

.story-text p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

.story-text strong {
    color: var(--text);
}

/* Team Section */
.about-team {
    padding: 64px 0;
}

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

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}

.team-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
}

.team-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 16px;
    border: 3px solid var(--border);
    transition: border-color 0.3s;
}

.team-card:hover .team-photo {
    border-color: var(--primary);
}

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

.team-card h3 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 4px;
}

.team-role {
    font-size: 13px;
    color: var(--primary);
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
}

.team-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Stats Section */
.about-stats {
    padding: 48px 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
}

/* About CTA */
.about-cta {
    padding: 64px 0;
}

.cta-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 56px 40px;
    text-align: center;
}

.cta-card h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.cta-card p {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 560px;
    margin: 0 auto 28px;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Contact Page --- */
.contact-page {
    padding: 64px 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-info h1 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 14px;
}

.contact-info > p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-detail {
    display: flex;
    gap: 14px;
}

.contact-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--primary);
    flex-shrink: 0;
}

.contact-detail h4 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 2px;
}

.contact-detail p {
    font-size: 14px;
    color: var(--text-muted);
}

.contact-social h4 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
}

.contact-social-links {
    display: flex;
    gap: 10px;
}

.contact-social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    transition: all 0.2s;
}

.contact-social-links a:hover {
    color: var(--primary);
    border-color: var(--primary);
}

.contact-form-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.contact-form h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
}

.form-error {
    background: rgba(255,0,110,0.1);
    border: 1px solid rgba(255,0,110,0.3);
    color: var(--primary-light);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 14px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-dim);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238888A0' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.form-group textarea { resize: vertical; }

.contact-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon { margin-bottom: 16px; }

.contact-success h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-success p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* --- 404 Page --- */
.error-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
}

.error-code {
    font-family: var(--font-heading);
    font-size: 120px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 12px;
    display: block;
}

.error-content h1 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.error-content p {
    color: var(--text-muted);
    margin-bottom: 28px;
    font-size: 16px;
}

.error-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

/* --- Buttons --- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--radius-sm);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

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

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(255,0,110,0.08);
}

/* --- Scroll Reveal Animations --- */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .magazine-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .magazine-main { min-height: 400px; }

    .magazine-sidebar {
        flex-direction: row;
    }

    .magazine-side-card { min-height: 180px; }

    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .spotlight-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .culture-layout {
        grid-template-columns: 1fr;
    }

    .culture-sidebar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .article-layout {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        position: static;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .story-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }

    .magazine-title { font-size: 24px; }
    .magazine-content { padding: 20px; }

    .magazine-sidebar {
        flex-direction: column;
    }

    .articles-grid {
        grid-template-columns: 1fr;
    }

    .spotlight-grid {
        grid-template-columns: 1fr 1fr;
    }

    .culture-sidebar {
        grid-template-columns: 1fr;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .about-hero-title { font-size: 32px; }
    .article-hero { height: 360px; }
    .article-hero-title { font-size: 28px; }

    .contact-info h1 { font-size: 36px; }
    .form-row { grid-template-columns: 1fr; }

    .newsletter-card { padding: 40px 20px; }
    .newsletter-inner h2 { font-size: 24px; }
    .newsletter-form-hero {
        flex-direction: column;
    }

    .page-title { font-size: 28px; }

    .search-input-overlay { font-size: 22px; }

    .stat-number { font-size: 32px; }

    .cta-card {
        padding: 40px 24px;
    }

    .cta-card h2 { font-size: 24px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }

    .spotlight-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .stats-strip {
        grid-template-columns: 1fr 1fr;
    }

    .about-hero-title { font-size: 28px; }
    .magazine-title { font-size: 20px; }
}
