/* ============================================================
   BLOG SECTIONS SHOWCASE — CSS
   Full-width demo sections for blog/news layouts
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
    --bg: #0a0a0f;
    --bg2: #12121a;
    --bg3: #1a1a28;
    --card: rgba(255, 255, 255, 0.04);
    --card-hover: rgba(255, 255, 255, 0.08);
    --glass: rgba(255, 255, 255, 0.06);
    --text: #f0f0f5;
    --text2: #a0a0b8;
    --text3: #6b6b80;
    --accent: #7c5cfc;
    --accent2: #00d4ff;
    --gradient: linear-gradient(135deg, #7c5cfc, #00d4ff);
    --border: rgba(255, 255, 255, 0.08);
    --border2: rgba(255, 255, 255, 0.12);
    --red: #ef4444;
    --green: #22c55e;
    --blue: #3b82f6;
    --orange: #f97316;
    --pink: #ec4899;
    --radius: 12px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 3px;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: .75rem 0;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
}

.nav-logo span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-back {
    padding: .5rem 1rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text2);
    font-size: .82rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav-back:hover {
    background: var(--card-hover);
    color: var(--text);
}

/* Section Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Separator / Label */
.section-label {
    padding: 4rem 0 2rem;
    text-align: center;
    position: relative;
}

.section-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
}

.section-label-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    font-size: .85rem;
    border-radius: 50%;
    margin-bottom: .75rem;
}

.section-label h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: .35rem;
}

.section-label p {
    font-size: .85rem;
    color: var(--text3);
    max-width: 500px;
    margin: 0 auto;
}

/* Hero */
.page-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 3rem;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(124, 92, 252, 0.15), transparent 70%);
    pointer-events: none;
}

.page-hero h1 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    position: relative;
}

.page-hero h1 .gtext {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-hero p {
    font-size: 1.1rem;
    color: var(--text2);
    max-width: 550px;
    margin: 0 auto;
    position: relative;
}

/* ============================================================
   DEMO SECTIONS (full-width, wrapped in .demo-wrapper)
   ============================================================ */
.demo-wrapper {
    margin: 0 auto 1rem;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg2);
}

/* Placeholder Images */
.img-placeholder {
    background: linear-gradient(135deg, #1e293b, #334155);
    position: relative;
    overflow: hidden;
}

.img-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(124, 92, 252, 0.1), rgba(0, 212, 255, 0.05));
}

.img-placeholder.warm {
    background: linear-gradient(135deg, #44403C, #78350F);
}

.img-placeholder.cool {
    background: linear-gradient(135deg, #1e3a5f, #0c4a6e);
}

.img-placeholder.pink {
    background: linear-gradient(135deg, #831843, #be185d);
}

.img-placeholder.green {
    background: linear-gradient(135deg, #14532d, #15803d);
}

.img-placeholder.purple {
    background: linear-gradient(135deg, #4c1d95, #7c3aed);
}

/* 1. HERO MOSAIC */
.hero-mosaic {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4px;
    min-height: 450px;
}

.hero-mosaic-main {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
}

.hero-mosaic-main .cat-badge {
    display: inline-block;
    padding: .25rem .75rem;
    background: var(--red);
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    margin-bottom: .75rem;
    width: fit-content;
}

.hero-mosaic-main h2 {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: .5rem;
    color: #fff;
}

.hero-mosaic-main p {
    font-size: .85rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 450px;
}

.hero-mosaic-main .meta {
    font-size: .75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: .5rem;
}

.hero-mosaic-side {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 4px;
}

.hero-mosaic-item {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem;
}

.hero-mosaic-item .cat-badge {
    display: inline-block;
    padding: .2rem .5rem;
    background: var(--blue);
    color: #fff;
    font-size: .6rem;
    font-weight: 700;
    border-radius: 3px;
    text-transform: uppercase;
    margin-bottom: .5rem;
    width: fit-content;
}

.hero-mosaic-item h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.hero-mosaic-item .meta {
    font-size: .7rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: .35rem;
}

/* 2. TRENDING BAR */
.trending-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--bg3);
    border-bottom: 1px solid var(--border);
    overflow-x: auto;
}

.trending-label {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .4rem .75rem;
    background: var(--red);
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    border-radius: 4px;
    white-space: nowrap;
    flex-shrink: 0;
}

.trending-label::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    animation: blink 1.2s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .3;
    }
}

.trending-items {
    display: flex;
    gap: .75rem;
    overflow-x: auto;
}

.trending-items::-webkit-scrollbar {
    display: none;
}

.trending-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    white-space: nowrap;
    padding: .4rem .75rem;
    background: var(--card);
    border-radius: 6px;
    font-size: .78rem;
    color: var(--text2);
    transition: var(--transition);
    flex-shrink: 0;
    cursor: pointer;
}

.trending-item:hover {
    background: var(--card-hover);
    color: var(--text);
}

.trending-item .num {
    color: var(--accent);
    font-weight: 700;
    font-size: .7rem;
}

/* 3. LATEST ARTICLES GRID */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 2rem;
}

.article-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.article-card:hover {
    border-color: rgba(124, 92, 252, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.article-card-img {
    height: 180px;
}

.article-card-body {
    padding: 1.25rem;
}

.article-card-cat {
    font-size: .7rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: .5rem;
}

.article-card-title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: .5rem;
    color: var(--text);
}

.article-card-excerpt {
    font-size: .8rem;
    color: var(--text3);
    line-height: 1.5;
    margin-bottom: .75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card-meta {
    display: flex;
    justify-content: space-between;
    font-size: .72rem;
    color: var(--text3);
}

/* 4. CATEGORY SECTION */
.category-section {
    padding: 2rem;
}

.category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.category-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.category-header h3::before {
    content: '';
    width: 4px;
    height: 24px;
    background: var(--accent);
    border-radius: 2px;
}

.category-header a {
    font-size: .8rem;
    color: var(--accent);
    font-weight: 500;
}

.category-header a:hover {
    text-decoration: underline;
}

.category-articles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.cat-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
}

.cat-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-2px);
}

.cat-card-img {
    height: 140px;
}

.cat-card-body {
    padding: 1rem;
}

.cat-card-title {
    font-size: .88rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: .35rem;
}

.cat-card-meta {
    font-size: .7rem;
    color: var(--text3);
}

/* 5. FEATURED / EDITOR'S PICK */
.featured-section {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 1.5rem;
    padding: 2rem;
}

.featured-main {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
}

.featured-main .badge-pick {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: .35rem .8rem;
    background: var(--orange);
    color: #fff;
    font-size: .65rem;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
}

.featured-main h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    margin-bottom: .5rem;
}

.featured-main p {
    font-size: .8rem;
    color: rgba(255, 255, 255, 0.7);
}

.featured-sidebar {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.featured-sidebar-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: var(--transition);
    align-items: center;
}

.featured-sidebar-item:hover {
    border-color: rgba(249, 115, 22, 0.3);
}

.featured-sidebar-item .thumb {
    width: 80px;
    height: 60px;
    border-radius: 6px;
    flex-shrink: 0;
}

.featured-sidebar-item .info h4 {
    font-size: .85rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: .15rem;
}

.featured-sidebar-item .info span {
    font-size: .7rem;
    color: var(--text3);
}

/* 6. POPULAR / MOST READ */
.popular-section {
    padding: 2rem;
}

.popular-header {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.popular-header::before {
    content: '';
    width: 4px;
    height: 24px;
    background: var(--orange);
    border-radius: 2px;
}

.popular-list {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.popular-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: .75rem 1rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: var(--transition);
}

.popular-item:hover {
    background: var(--card-hover);
    border-color: rgba(249, 115, 22, 0.25);
}

.popular-item .rank {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
    width: 40px;
    text-align: center;
    flex-shrink: 0;
}

.popular-item .thumb {
    width: 70px;
    height: 50px;
    border-radius: 6px;
    flex-shrink: 0;
}

.popular-item .info {
    flex: 1;
}

.popular-item .info h4 {
    font-size: .85rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: .15rem;
}

.popular-item .info span {
    font-size: .7rem;
    color: var(--text3);
}

/* 7. OPINION / EDITORIAL */
.opinion-section {
    padding: 2rem;
}

.opinion-header {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.opinion-header::before {
    content: '';
    width: 4px;
    height: 24px;
    background: var(--pink);
    border-radius: 2px;
}

.opinion-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.opinion-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: var(--transition);
}

.opinion-card:hover {
    border-color: rgba(236, 72, 153, 0.3);
}

.opinion-card .author {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1rem;
}

.opinion-card .avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
}

.opinion-card .author-name {
    font-weight: 600;
    font-size: .85rem;
}

.opinion-card .author-role {
    font-size: .7rem;
    color: var(--text3);
}

.opinion-card blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-style: italic;
    color: var(--text2);
    line-height: 1.5;
    padding-left: 1rem;
    border-left: 3px solid var(--pink);
}

/* 8. VIDEO / MULTIMEDIA */
.video-section {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 1.25rem;
    padding: 2rem;
}

.video-player {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-play-btn {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    border: 2px solid rgba(255, 255, 255, 0.25);
}

.video-play-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.video-playlist {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    overflow-y: auto;
    max-height: 400px;
}

.video-playlist-item {
    display: flex;
    gap: .75rem;
    padding: .75rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: var(--transition);
    align-items: center;
    cursor: pointer;
}

.video-playlist-item:hover {
    background: var(--card-hover);
}

.video-playlist-item.active {
    border-color: var(--accent);
    background: rgba(124, 92, 252, 0.08);
}

.video-playlist-item .vthumb {
    width: 80px;
    height: 50px;
    border-radius: 4px;
    flex-shrink: 0;
    position: relative;
}

.video-playlist-item .vthumb::after {
    content: '\25B6';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: .6rem;
    background: rgba(0, 0, 0, 0.3);
    pointer-events: none;
    border-radius: 4px;
}

.video-playlist-item .vinfo h4 {
    font-size: .78rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: .1rem;
}

.video-playlist-item .vinfo span {
    font-size: .65rem;
    color: var(--text3);
}

/* 9. NEWSLETTER CTA */
.newsletter-section {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(124, 92, 252, 0.15), rgba(0, 212, 255, 0.1));
    text-align: center;
}

.newsletter-section h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: .5rem;
}

.newsletter-section p {
    font-size: .85rem;
    color: var(--text2);
    margin-bottom: 1.5rem;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    gap: .5rem;
    justify-content: center;
    max-width: 420px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: .7rem 1.25rem;
    background: var(--bg);
    border: 1px solid var(--border2);
    border-radius: 8px;
    color: var(--text);
    font-size: .85rem;
    outline: none;
    font-family: 'Inter', sans-serif;
}

.newsletter-form input:focus {
    border-color: var(--accent);
}

.newsletter-form button {
    padding: .7rem 1.5rem;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: .85rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
}

.newsletter-form button:hover {
    opacity: .9;
    transform: translateY(-1px);
}

/* 10. TAGS CLOUD */
.tags-section {
    padding: 2rem;
}

.tags-header {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.tags-header::before {
    content: '';
    width: 4px;
    height: 24px;
    background: var(--accent2);
    border-radius: 2px;
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.tag-pill {
    padding: .4rem 1rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: .78rem;
    color: var(--text2);
    transition: var(--transition);
    cursor: pointer;
}

.tag-pill:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.tag-pill.lg {
    font-size: .9rem;
    padding: .5rem 1.25rem;
    font-weight: 600;
}

.tag-pill.sm {
    font-size: .7rem;
    padding: .3rem .75rem;
}

/* 11. SIDEBAR LAYOUT */
.sidebar-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 1.5rem;
    padding: 2rem;
}

.sidebar-main .article-full {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.sidebar-main .article-full-img {
    height: 250px;
}

.sidebar-main .article-full-body {
    padding: 1.5rem;
}

.sidebar-main .article-full-body h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: .75rem;
    line-height: 1.3;
}

.sidebar-main .article-full-body p {
    font-size: .85rem;
    color: var(--text2);
    line-height: 1.7;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.sidebar-widget {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
}

.sidebar-widget h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: .95rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid var(--border);
}

.sidebar-search {
    display: flex;
    gap: .5rem;
}

.sidebar-search input {
    flex: 1;
    padding: .5rem .75rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text);
    font-size: .8rem;
    outline: none;
    font-family: 'Inter', sans-serif;
}

.sidebar-search button {
    padding: .5rem .75rem;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: .8rem;
    cursor: pointer;
}

.sidebar-links {
    list-style: none;
}

.sidebar-links li {
    padding: .4rem 0;
    border-bottom: 1px solid var(--border);
}

.sidebar-links li:last-child {
    border: none;
}

.sidebar-links a {
    font-size: .8rem;
    color: var(--text2);
    transition: var(--transition);
}

.sidebar-links a:hover {
    color: var(--accent);
}

.sidebar-social {
    display: flex;
    gap: .5rem;
}

.sidebar-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card-hover);
    border-radius: 8px;
    font-size: .85rem;
    transition: var(--transition);
}

.sidebar-social a:hover {
    background: var(--accent);
    color: #fff;
}

/* 12. MEGA FOOTER */
.mega-footer {
    background: var(--bg3);
    border-top: 1px solid var(--border);
    padding: 3rem 2rem 1.5rem;
}

.mega-footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.mega-footer-col h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: .95rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text);
}

.mega-footer-col ul {
    list-style: none;
}

.mega-footer-col li {
    margin-bottom: .4rem;
}

.mega-footer-col a {
    font-size: .8rem;
    color: var(--text3);
    transition: var(--transition);
}

.mega-footer-col a:hover {
    color: var(--accent);
}

.mega-footer-bottom {
    max-width: 1400px;
    margin: 2rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .75rem;
    color: var(--text3);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-mosaic {
        grid-template-columns: 1fr;
    }

    .articles-grid {
        grid-template-columns: 1fr;
    }

    .category-articles {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-section {
        grid-template-columns: 1fr;
    }

    .opinion-cards {
        grid-template-columns: 1fr;
    }

    .video-section {
        grid-template-columns: 1fr;
    }

    .sidebar-layout {
        grid-template-columns: 1fr;
    }

    .mega-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .newsletter-form {
        flex-direction: column;
    }
}