
/* RESET */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { line-height: 1.6; color: #333; }
img { max-width: 100%; display: block; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.section { padding: 4rem 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; }

/* === NEWS MAGAZINE LAYOUT === */
.news-magazine {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #ffffff;
    color: #1e293b;
    font-size: 16px;
}

/* Breaking News Ticker */
.breaking-news-bar {
    background: #DC143C;
    color: white;
    padding: 12px 0;
    overflow: hidden;
    position: relative;
}

.breaking-label {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: #8B0000;
    padding: 12px 20px;
    font-weight: 800;
    letter-spacing: 1px;
    font-size: 14px;
    z-index: 10;
}

.ticker-wrap {
    margin-left: 100px;
    width: calc(100% - 100px);
    overflow: hidden;
}

.ticker-move {
    display: flex;
    animation: ticker 60s linear infinite;
}

.ticker-item {
    white-space: nowrap;
    padding: 0 40px;
    font-size: 14px;
    font-weight: 500;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-text {
    padding-left: 120px;
    font-size: 14px;
}

/* Header */
.magazine-header {
    background: white;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #f1f5f9;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-logo {
    height: 50px;
    width: auto;
}

.site-title {
    font-size: 32px;
    font-weight: 800;
    color: #DC143C;
    letter-spacing: -0.5px;
    line-height: 1;
}

.site-tagline {
    font-size: 11px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-top: 4px;
}

.header-actions {
    display: flex;
    gap: 15px;
}

.search-btn {
    background: none;
    border: 1px solid #e2e8f0;
    padding: 10px 15px;
    border-radius: 6px;
    cursor: pointer;
    color: #64748b;
    transition: all 0.2s;
}

.search-btn:hover {
    background: #f8fafc;
    color: #DC143C;
    border-color: #DC143C;
}

/* Main Navigation */
.main-nav {
    padding: 0;
}

.main-nav ul {
    display: flex;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.main-nav li {
    position: relative;
}

.main-nav a {
    display: block;
    padding: 15px 20px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #475569;
    transition: all 0.2s;
    position: relative;
}

.main-nav a:hover,
.main-nav a.active {
    color: #DC143C;
}

.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 3px;
    background: #DC143C;
}

/* Hero Story Section */
.hero-section {
    padding: 40px 0;
    background: #f8fafc;
}

.hero-story {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.hero-story img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.hero-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-source {
    color: #DC143C;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.hero-content h2 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #0f172a;
}

.hero-content p {
    color: #475569;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.hero-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.hero-meta span {
    color: #64748b;
    font-size: 14px;
}

/* Latest Headlines */
.latest-headlines {
    padding: 60px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-divider {
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, #DC143C, transparent);
    margin-left: 20px;
}

.view-all {
    color: #DC143C;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

.view-all:hover {
    color: #8B0000;
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.news-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-card-content {
    padding: 20px;
}

.news-source {
    color: #DC143C;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.news-card h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
    color: #0f172a;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #f1f5f9;
}

.news-time {
    color: #94a3b8;
    font-size: 13px;
}

.news-link {
    color: #DC143C;
    font-weight: 600;
    font-size: 13px;
    transition: color 0.2s;
}

.news-link:hover {
    color: #8B0000;
}

/* Main Grid Layout */
.main-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    padding: 40px 0;
}

.primary-content {
    min-width: 0;
}

/* Category Sections */
.category-section {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 2px solid #f1f5f9;
}

.category-section:last-child {
    border-bottom: none;
}

.category-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    color: white;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.category-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.2s;
}

.category-card:hover {
    border-color: #DC143C;
    box-shadow: 0 4px 12px rgba(220,20,60,0.1);
}

.category-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.category-card-content {
    padding: 18px;
}

.category-card h4 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
    color: #0f172a;
}

.category-card p {
    color: #64748b;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 12px;
}

/* Sidebar */
.sidebar-content {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.sidebar-widget {
    background: white;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid #e2e8f0;
}

.widget-title {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #DC143C;
}

/* Trending List */
.trending-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.trending-item {
    display: flex;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f1f5f9;
}

.trending-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.trending-number {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    background: #DC143C;
    color: white;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
}

.trending-content h4 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 5px;
    color: #0f172a;
}

.trending-content h4 a:hover {
    color: #DC143C;
}

.trending-meta {
    font-size: 12px;
    color: #94a3b8;
}

/* Newsletter Widget */
.newsletter-widget {
    background: linear-gradient(135deg, #DC143C, #8B0000);
    color: white;
}

.newsletter-widget .widget-title {
    color: white;
    border-bottom-color: rgba(255,255,255,0.3);
}

.newsletter-widget p {
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-form input {
    padding: 12px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 6px;
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.6);
}

.btn-subscribe {
    padding: 12px;
    background: white;
    color: #DC143C;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-subscribe:hover {
    background: #FFD700;
    color: #8B0000;
}

/* Sources Widget */
.sources-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.source-badge {
    background: #f8fafc;
    padding: 8px 12px;
    border-radius: 6px;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: #475569;
    border: 1px solid #e2e8f0;
}

/* Category Links */
.category-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.category-links a {
    padding: 10px 15px;
    background: #f8fafc;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    color: #475569;
    transition: all 0.2s;
}

.category-links a:hover {
    background: #DC143C;
    color: white;
}

/* Ad Placeholder */
.ad-placeholder {
    background: #f8fafc;
    border: 2px dashed #e2e8f0;
    border-radius: 8px;
    padding: 60px 20px;
    text-align: center;
    color: #94a3b8;
    font-size: 14px;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: #DC143C;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #8B0000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220,20,60,0.3);
}

.btn-load-more {
    display: block;
    margin: 40px auto 0;
    padding: 15px 40px;
    background: white;
    border: 2px solid #DC143C;
    color: #DC143C;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-load-more:hover {
    background: #DC143C;
    color: white;
}

.load-more-container {
    text-align: center;
    padding: 40px 0;
}

/* Loading & Error States */
.loading,
.error {
    text-align: center;
    padding: 40px;
    color: #64748b;
    font-size: 16px;
}

.error {
    color: #DC143C;
}

/* Category Header */
.category-header {
    padding: 60px 0;
    color: white;
    text-align: center;
}

.category-header-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
}

.category-badge-large {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.category-page-content {
    min-height: 600px;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
}

/* Sources Page */
.sources-section {
    padding: 60px 0;
}

.sources-intro {
    background: #f8fafc;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
}

.sources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.source-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 30px;
    transition: all 0.2s;
}

.source-card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border-color: #DC143C;
}

.source-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #DC143C;
}

.source-header h2 {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
}

.source-badge.established {
    background: #f8fafc;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
}

.source-description {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 20px;
}

.source-coverage h4,
.source-feeds h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #0f172a;
    margin-bottom: 12px;
}

.coverage-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.coverage-tags li {
    background: #f1f5f9;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    color: #475569;
}

.feed-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feed-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: #f8fafc;
    border-radius: 4px;
}

.feed-category {
    font-weight: 600;
    font-size: 13px;
    color: #475569;
}

.feed-list a {
    color: #DC143C;
    font-size: 12px;
    font-weight: 600;
    text-decoration: underline;
}

.feed-list a:hover {
    color: #8B0000;
}

/* Technical Info */
.technical-info {
    background: #f8fafc;
    padding: 40px;
    border-radius: 8px;
    margin-top: 40px;
}

.technical-info h2 {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 30px;
    text-align: center;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.info-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.info-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #DC143C;
    margin-bottom: 12px;
}

.info-card p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
}

/* About Page */
.about-content-section {
    padding: 60px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.about-main h2 {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    margin: 40px 0 20px 0;
}

.about-main h2:first-child {
    margin-top: 0;
}

.about-main p {
    color: #475569;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-main a {
    color: #DC143C;
    text-decoration: underline;
}

.about-main a:hover {
    color: #8B0000;
}

.feature-list,
.commitment-list {
    list-style: disc;
    padding-left: 25px;
    margin: 20px 0;
}

.feature-list li,
.commitment-list li {
    color: #475569;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
}

.approach-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.approach-card {
    background: #f8fafc;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #DC143C;
}

.approach-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.approach-card p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
}

.sources-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.source-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.source-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: #DC143C;
    margin-bottom: 8px;
}

.source-item p {
    color: #64748b;
    font-size: 13px;
    line-height: 1.5;
}

.about-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.facts-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.fact-item {
    background: #f8fafc;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.fact-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: #DC143C;
    margin-bottom: 5px;
}

.fact-label {
    display: block;
    font-size: 12px;
    color: #64748b;
    font-weight: 600;
}

/* Footer */
.magazine-footer {
    background: #0f172a;
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 18px;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 20px;
}

.footer-section p {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.7;
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-section a {
    color: #cbd5e1;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: #FFD700;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #334155;
    text-align: center;
}

.footer-bottom p {
    color: #94a3b8;
    font-size: 13px;
    margin-bottom: 8px;
}

.disclaimer {
    font-size: 12px;
    color: #64748b;
}

/* === LEGACY LAYOUTS (for other pages) === */
.layout-modern { font-family: 'Inter', sans-serif; background: #ffffff; color: #1e293b; }
.modern-nav { background: #fff; padding: 1.2rem 0; border-bottom: 1px solid #e2e8f0; }
.modern-nav .logo { font-weight: 700; font-size: 1.25rem; color: #0f172a; letter-spacing: -0.5px; }
.modern-nav .links { display: flex; gap: 2rem; }
.modern-nav .links a { font-weight: 500; color: #64748b; font-size: 0.95rem; transition: color 0.2s; }
.modern-nav .links a:hover { color: #2563eb; }
.modern-hero { padding: 5rem 0; background: #fff; }
.modern-hero h1 { font-size: 2.75rem; letter-spacing: -1px; margin-bottom: 1.25rem; color: #0f172a; line-height: 1.2; }
.modern-hero p { font-size: 1.125rem; color: #475569; max-width: 500px; margin-bottom: 2rem; }
.btn-modern { background: #2563eb; color: white; padding: 0.75rem 1.5rem; border-radius: 6px; display: inline-block; font-weight: 500; transition: background 0.2s; }
.btn-modern:hover { background: #1d4ed8; }
.modern-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 8px; overflow: hidden; transition: transform 0.2s, box-shadow 0.2s; }
.modern-card:hover { transform: translateY(-2px); box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }
.modern-card img { height: 220px; width: 100%; object-fit: cover; }
.modern-card .card-body { padding: 1.5rem; }
.modern-card h3 { margin-bottom: 0.75rem; font-size: 1.25rem; font-weight: 600; color: #0f172a; }
.modern-card p { color: #64748b; font-size: 0.95rem; margin-bottom: 1.5rem; }
.read-more { color: #2563eb; font-weight: 600; font-size: 0.9rem; display: inline-flex; align-items: center; }
.modern-footer { background: #f8fafc; padding: 3rem 0; text-align: center; margin-top: 4rem; border-top: 1px solid #e2e8f0; color: #64748b; font-size: 0.9rem; }

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .main-grid {
        grid-template-columns: 1fr;
    }

    .sidebar-content {
        position: static;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .site-title {
        font-size: 24px;
    }

    .site-tagline {
        font-size: 9px;
    }

    .main-nav ul {
        gap: 5px;
    }

    .main-nav a {
        padding: 12px 10px;
        font-size: 12px;
    }

    .hero-story {
        grid-template-columns: 1fr;
    }

    .hero-story img {
        height: 300px;
    }

    .hero-content {
        padding: 25px;
    }

    .hero-content h2 {
        font-size: 24px;
    }

    .news-grid,
    .category-grid {
        grid-template-columns: 1fr;
    }

    .breaking-label {
        font-size: 11px;
        padding: 12px 15px;
    }

    .ticker-wrap {
        margin-left: 80px;
        width: calc(100% - 80px);
    }

    .category-header-content h1,
    .page-header h1 {
        font-size: 32px;
    }

    .sources-grid {
        grid-template-columns: 1fr;
    }

    .facts-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .header-top {
        flex-direction: column;
        gap: 15px;
    }

    .main-nav {
        overflow-x: auto;
    }

    .main-nav ul {
        justify-content: flex-start;
    }

    .hero-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}
