@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Devanagari:wght@400;500;600;700;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #cb382d; /* Jagran Red */
    --primary-dark: #b52924;
    --primary-light: #e04a3f;
    --accent: #f39c12;
    --text: #1a1a1a;
    --text-light: #666666;
    --text-muted: #999;
    --bg: #f9f9f9; /* Lighter background like Jagran */
    --white: #ffffff;
    --border: #e6e6e6; /* Softer border */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.10);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --radius: 4px; /* Squarer corners */
    --radius-sm: 2px;
    --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; }

body {
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.7;
    font-family: 'Noto Sans Devanagari', 'Inter', 'Segoe UI', sans-serif;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    max-width: 1220px;
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
    box-sizing: border-box;
}

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

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

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

/* ────────────────────────────────────────────
   TOP BAR
──────────────────────────────────────────── */
.top-bar {
    background: #222;
    color: #ccc;
    padding: 7px 0;
    font-size: 0.8rem;
    border-bottom: none;
}

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

.top-bar a {
    color: #ccc;
    font-weight: 500;
}

.top-bar a:hover { color: #fff; }

/* ────────────────────────────────────────────
   LOGO AREA
──────────────────────────────────────────── */
.logo-area {
    background: #b52924; /* Dark red background matching main nav */
    padding: 15px 0;
}

.logo-area .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-decoration: none;
}

.site-logo-img {
    height: 90px;
    width: auto;
    object-fit: contain;
}

.logo-text-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start; /* Align text to the left relative to logo */
}

.logo-text-wrap h1,
.logo-text-wrap .logo-h1 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0;
    line-height: 1.1;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    display: block;
}

.logo-tagline {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
    margin-top: 2px;
    text-align: left;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

/* ────────────────────────────────────────────
   NAVIGATION
──────────────────────────────────────────── */
.main-nav {
    background: #000000; /* Solid black */
    position: sticky;
    top: 0;
    z-index: 200;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.nav-inner {
    display: flex;
    align-items: center;
    position: relative;
}

.main-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    flex: 1;
    justify-content: center;
}

.nav-search-form {
    position: absolute;
    right: 16px;
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 20px;
    padding: 3px 4px;
}

.nav-search-input {
    border: none;
    outline: none;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    width: 160px;
    color: #333;
}

.nav-search-btn {
    background: #b52924;
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s;
}

.nav-search-btn:hover {
    background: #8e1f1c;
}

.main-nav ul::-webkit-scrollbar { display: none; }

.main-nav li a {
    display: block;
    padding: 14px 18px;
    color: rgba(255,255,255,0.9);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.82rem;
    letter-spacing: 0.5px;
    white-space: nowrap;
    transition: background var(--transition), color var(--transition);
    border-bottom: 3px solid transparent;
}

.main-nav li a:hover,
.main-nav li a.active {
    background: rgba(0,0,0,0.2);
    color: #fff;
    border-bottom-color: #fff;
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    flex-direction: column;
    gap: 5px;
    margin-right: 12px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: var(--transition);
}

/* ────────────────────────────────────────────
   BREAKING NEWS TICKER
──────────────────────────────────────────── */
.breaking-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 8px 0;
    overflow: hidden;
}

.breaking-bar .container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.breaking-label {
    background: var(--primary);
    color: #fff;
    padding: 2px 10px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 3px;
    white-space: nowrap;
    flex-shrink: 0;
}

.ticker-wrap {
    overflow: hidden;
    flex: 1;
}

.ticker {
    display: flex;
    animation: ticker 30s linear infinite;
    white-space: nowrap;
    gap: 60px;
}

.ticker a {
    color: var(--text);
    font-size: 0.88rem;
    font-weight: 500;
    white-space: nowrap;
}

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

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

/* ────────────────────────────────────────────
   MAIN CONTENT
──────────────────────────────────────────── */
.main-content-area {
    padding: 36px 0;
    min-height: 60vh;
}

/* ────────────────────────────────────────────
   3-COLUMN HOME LAYOUT (Jagran Style)
──────────────────────────────────────────── */
.home-layout-3col {
    display: grid;
    grid-template-columns: 240px 1fr 300px;
    gap: 30px;
    padding: 30px 0;
    align-items: start;
}

/* SECTION TITLE SPECIFIC TO THIS DESIGN */
.section-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text);
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 16px;
    padding-bottom: 8px;
    padding-left: 0;
    border-left: none;
    border-bottom: 2px solid var(--text);
    display: block;
}

/* LEFT COLUMN - TAZA KHABAR */
.taza-khabar-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.taza-khabar-list li {
    position: relative;
    padding: 14px 0 14px 16px;
    border-bottom: 1px dashed #e5e5e5;
}

.taza-khabar-list li:last-child {
    border-bottom: none;
}

.taza-khabar-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20px;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 1px;
}

.taza-khabar-title {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text);
    display: block;
    margin-bottom: 6px;
}

.taza-khabar-title:hover {
    color: var(--primary);
}

.taza-khabar-cat {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* CENTER COLUMN - MAIN HERO & FEED */
.main-hero-post {
    margin-bottom: 30px;
}

.hero-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 2px;
    margin-bottom: 16px;
}

.hero-placeholder {
    width: 100%;
    height: 380px;
    background: #e6e6e6;
    margin-bottom: 16px;
}

.hero-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.3;
    color: var(--text);
    margin-bottom: 12px;
}

.hero-title:hover {
    color: var(--primary);
}

.hero-meta, .feed-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
}

.meta-cat {
    color: var(--primary);
}

.center-feed-list {
    display: flex;
    flex-direction: column;
}

.feed-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.feed-item img {
    width: 160px;
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.feed-placeholder {
    width: 160px;
    height: 100px;
    background: #e6e6e6;
    border-radius: 4px;
    flex-shrink: 0;
}

.feed-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feed-title {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text);
    margin-bottom: 10px;
}

.feed-title:hover {
    color: var(--primary);
}

/* RIGHT COLUMN - FEATURED BLOCK */
.right-featured-block {
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 24px;
}

.featured-header {
    background: #000;
    padding: 12px;
    text-align: center;
}

.featured-video-placeholder {
    position: relative;
    padding: 4px;
}

/* ────────────────────────────────────────────
   MARQUEE HERO SECTION
──────────────────────────────────────────── */
.marquee-wrapper {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    margin-bottom: 36px;
}

.marquee-hero-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
}

.marquee-hero-grid .post-card:first-child {
    grid-row: span 2;
}

.marquee-hero-grid .post-card:first-child .post-card-img { height: 320px; }

/* ────────────────────────────────────────────
   POST CARD
──────────────────────────────────────────── */
.post-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.post-card-img {
    height: 190px;
    width: 100%;
    object-fit: cover;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    position: relative;
    overflow: hidden;
}

.post-card-img-placeholder {
    height: 190px;
    background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
    font-size: 2rem;
}

.post-card-content {
    padding: 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.post-card-cat {
    color: var(--primary);
    font-size: 0.73rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.post-card-title {
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.45;
    color: var(--text);
    flex: 1;
}

.post-card:hover .post-card-title { color: var(--primary); }

.post-card-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.post-card-meta::before {
    content: '';
    display: block;
    width: 20px;
    height: 1px;
    background: var(--border);
}

/* ────────────────────────────────────────────
   NEWS GRIDS
──────────────────────────────────────────── */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

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

/* ────────────────────────────────────────────
   HOMEPAGE LAYOUT
──────────────────────────────────────────── */
.home-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
}

.home-main {}

.home-sidebar {}

/* ────────────────────────────────────────────
   SIDEBAR WIDGETS
──────────────────────────────────────────── */
.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    margin-bottom: 24px;
    border: 1px solid var(--border);
}

.sidebar-widget-title {
    background: var(--primary);
    color: #fff;
    padding: 12px 16px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sidebar-post-list {
    list-style: none;
}

.sidebar-post-item {
    display: flex;
    gap: 10px;
    padding: 12px 14px;
    border-bottom: 1px solid var(--border);
    transition: background var(--transition);
}

.sidebar-post-item:last-child { border-bottom: none; }
.sidebar-post-item:hover { background: #fef9f9; }

.sidebar-post-item img {
    width: 72px;
    height: 58px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    background: #f0f0f0;
}

.sidebar-post-item-content { flex: 1; }

.sidebar-post-title {
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text);
}

.sidebar-post-item:hover .sidebar-post-title { color: var(--primary); }

.sidebar-post-date {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ────────────────────────────────────────────
   LIST-STYLE POST
──────────────────────────────────────────── */
.post-list-item {
    display: flex;
    gap: 14px;
    background: var(--white);
    border-radius: var(--radius-sm);
    overflow: hidden;
    padding: 10px;
    border: 1px solid var(--border);
    margin-bottom: 12px;
    transition: box-shadow var(--transition), transform var(--transition);
}

.post-list-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.post-list-item img {
    width: 100px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.post-list-content { flex: 1; }

.post-list-title {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 6px;
    color: var(--text);
}

.post-list-item:hover .post-list-title { color: var(--primary); }

/* ────────────────────────────────────────────
   SINGLE POST
──────────────────────────────────────────── */
.single-post-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
}

.single-post-wrapper {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.single-post-breadcrumb {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.single-post-breadcrumb a { color: var(--primary); }

.single-post-cat-badge {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 14px;
}

.single-post-title {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 14px;
    color: var(--text);
}

.single-post-meta {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.single-post-meta strong { color: var(--text); }

.single-post-img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin-bottom: 28px;
}

.single-post-content {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text);
}

.single-post-content p { margin-bottom: 1.4em; }

.single-post-content h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 2em 0 0.6em;
    color: var(--text);
    border-left: 4px solid var(--primary);
    padding-left: 12px;
}

.single-post-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 1.6em 0 0.5em;
    color: var(--text);
}

.single-post-content img {
    border-radius: var(--radius-sm);
    margin: 1.5em auto;
    max-width: 100%;
}

.single-post-content blockquote {
    border-left: 4px solid var(--primary);
    padding: 12px 20px;
    background: #fef5f5;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 1.5em 0;
    color: var(--text);
    font-style: italic;
}

.single-post-tags {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.tag-label {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-light);
}

.tag {
    background: var(--bg);
    border: 1px solid var(--border);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    color: var(--text);
    transition: var(--transition);
}

.tag:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* Share Buttons */
.share-section {
    margin-top: 24px;
    padding: 16px;
    background: var(--bg);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.share-label {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-light);
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    border: none;
    transition: opacity var(--transition);
}

.share-btn:hover { opacity: 0.85; }
.share-btn.fb { background: #1877f2; }
.share-btn.tw { background: #1da1f2; }
.share-btn.wa { background: #25d366; }

/* ────────────────────────────────────────────
   FOOTER
──────────────────────────────────────────── */
.main-footer {
    background: #111827;
    color: #d1d5db;
    padding: 56px 0 20px;
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 36px;
    margin-bottom: 36px;
    padding-bottom: 30px;
    border-bottom: 1px solid #374151;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.footer-about {
    font-size: 0.88rem;
    line-height: 1.7;
    color: #9ca3af;
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: 18px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col ul li a {
    color: #9ca3af;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.footer-col ul li a::before {
    content: '›';
    color: var(--primary-light);
    font-weight: bold;
}

.footer-col ul li a:hover { color: var(--primary-light); padding-left: 4px; }

.footer-bottom {
    text-align: center;
    padding-top: 16px;
    color: #6b7280;
    font-size: 0.85rem;
}

/* ────────────────────────────────────────────
   PAGINATION
──────────────────────────────────────────── */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 30px 0;
}

.pagination a, .pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid var(--border);
    background: var(--white);
    transition: var(--transition);
}

.pagination a:hover, .pagination span.current {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* ────────────────────────────────────────────
   CATEGORY PAGE HERO
──────────────────────────────────────────── */
.category-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    padding: 28px 0;
    margin-bottom: 30px;
}

.category-hero h1 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 4px;
}

.category-hero p { color: rgba(255,255,255,0.8); font-size: 0.9rem; }

/* ────────────────────────────────────────────
   RESPONSIVE
──────────────────────────────────────────── */
@media (max-width: 1024px) {
    .news-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .home-layout-3col {
        grid-template-columns: 200px 1fr 250px;
        gap: 20px;
    }
}

@media (max-width: 900px) {
    .home-layout,
    .single-post-layout { grid-template-columns: 1fr; }
    .home-sidebar { order: -1; }
    
    .home-layout-3col {
        grid-template-columns: 1fr;
    }
    .col-left, .col-right {
        order: 2;
    }
    .col-center {
        order: 1;
    }
    .feed-item img {
        width: 120px;
        height: 80px;
    }
}

@media (max-width: 768px) {
    .site-logo-img { height: 60px; }
    .logo { gap: 12px; justify-content: center; }
    .logo-text-wrap { align-items: center; }
    .logo-text-wrap h1 { font-size: 1.8rem; letter-spacing: 1px; }
    .logo-tagline { font-size: 0.8rem; letter-spacing: 1px; text-align: center; }
    
    .main-nav { background: transparent; box-shadow: none; height: 0; padding: 0; }
    .nav-search-form { display: none; }
    
    .nav-toggle { 
        display: flex; 
        position: absolute; 
        right: 16px; 
        top: 50%; 
        transform: translateY(-50%); 
        z-index: 1000;
    }
    
    .main-nav ul { justify-content: flex-start; }
    
    .main-nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 0; /* Changed from 100% since main-nav is height 0 */
        left: 0;
        right: 0;
        background: var(--primary-dark);
        z-index: 300;
        box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    }
    
    .main-nav ul.is-open { display: flex; }
    
    .main-nav li a {
        border-bottom: 1px solid rgba(255,255,255,0.1);
        border-left: none;
        padding: 14px 20px;
    }

    .marquee-hero-grid {
        grid-template-columns: 1fr;
    }

    .marquee-hero-grid .post-card:first-child {
        grid-row: span 1;
    }

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

    .single-post-title { font-size: 1.5rem; }
    .single-post-wrapper { padding: 18px; }
    .footer-grid { grid-template-columns: 1fr; }
    .top-bar .date-time { display: none; }
}

@media (max-width: 480px) {
    .news-grid,
    .news-grid-4 { grid-template-columns: 1fr; }
    
    .feed-item { flex-direction: column; gap: 12px; }
    .feed-item img { width: 100%; height: auto; aspect-ratio: 16/9; }
    .feed-placeholder { width: 100%; height: 180px; }
    
    .hero-img, .hero-placeholder { height: 220px; }
    .hero-title { font-size: 1.5rem; }
    
    .home-layout-3col { gap: 40px; padding: 20px 0; }
    
    .site-logo-img { height: 45px; }
    .logo { gap: 8px; flex-direction: row; }
    .logo-text-wrap { align-items: flex-start; }
    .logo-text-wrap h1 { font-size: 1.3rem; letter-spacing: 0.5px; }
    .logo-tagline { font-size: 0.65rem; letter-spacing: 0.5px; text-align: left; }
}
