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

body {
    font-family: -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    background: #ffffff;
    color: #1a1e2b;
    line-height: 1.5;
    scroll-behavior: smooth;
}

ul,
ol {
    list-style: none;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-bottom-color: #eef2f5;
}

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

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-decoration: none;
    color: #0b2b26;
}

.logo span {
    color: #d44c2f;
    font-weight: 500;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-menu a {
    text-decoration: none;
    font-weight: 500;
    color: #2d3e3a;
    transition: color 0.2s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #d44c2f;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    margin-left: 1rem;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: #1a2a2a;
    transition: 0.2s;
}

.top-banner {
    background: #fef5e7;
    border-bottom: 1px solid #f0e2ce;
    padding: 10px 0;
    font-size: 0.9rem;
    text-align: center;
}

.top-banner a {
    color: #d44c2f;
    font-weight: 500;
    text-decoration: none;
}

.breadcrumb-area {
    margin: 32px 0 24px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    background: #f8fafc;
    padding: 12px 20px;
    border-radius: 60px;
    font-size: 0.85rem;
}

.breadcrumb li {
    display: inline-flex;
    align-items: center;
}

.breadcrumb li+li::before {
    content: "/";
    margin: 0 10px;
    color: #9ca3af;
}

.breadcrumb a {
    text-decoration: none;
    color: #4b5563;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: #d44c2f;
}

.breadcrumb .current {
    color: #d44c2f;
    font-weight: 500;
}

.two-col-layout {
    display: flex;
    gap: 48px;
    margin: 30px 0 60px;
}

.main-content {
    flex: 70%;
}

.sidebar {
    flex: 30%;
}

@media (max-width: 900px) {
    .two-col-layout {
        flex-direction: column;
    }
}

.cards-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.news-card {
    display: flex;
    gap: 24px;
    background: #fff;
    border-radius: 24px;
    transition: all 0.25s ease;
    padding: 0 0 12px 0;
    border-bottom: 1px solid #edf2f7;
}

.card-img {
    flex: 0 0 25%;
    border-radius: 20px;
    overflow: hidden;
}

.card-content {
    flex: 1;
}

.card-content h3 {
    font-size: 1.35rem;
    line-height: 1.3;
    margin-bottom: 12px;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-content h3 a {
    text-decoration: none;
    color: #1e2a32;
    transition: color 0.2s;
}

.sidebar-widget {
    background: #ffffff;
    border-radius: 28px;
    padding: 24px;
    margin-bottom: 32px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
    border: 1px solid #eef2f8;
}

.widget-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid #d44c2f;
    display: inline-block;
}

.author-box {
    text-align: center;
}

.author-avatar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 16px;
    border: 3px solid #f0e2ce;
}

.author-name {
    font-size: 1.3rem;
    font-weight: 600;
}

.author-bio {
    font-size: 0.85rem;
    color: #4b5563;
    margin: 12px 0;
    line-height: 1.4;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 12px;
}

.social-icons a {
    text-decoration: none;
    color: #6c757d;
    font-weight: 500;
    font-size: 0.8rem;
    background: #f1f5f9;
    padding: 6px 12px;
    border-radius: 40px;
    transition: 0.2s;
}

.social-icons a:hover {
    background: #d44c2f;
    color: white;
}

.list-links {
    list-style: none;
}

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

.list-links a {
    text-decoration: none;
    color: #2d3e3a;
    font-weight: 500;
    transition: 0.2s;
    display: flex;
    justify-content: space-between;
}

.list-links a:hover {
    color: #d44c2f;
    transform: translateX(4px);
}

.rec-item,
.update-item {
    margin-bottom: 16px;
    border-bottom: 1px dashed #eef2f5;
    padding-bottom: 12px;
}

.rec-item a,
.update-item a {
    text-decoration: none;
    font-weight: 500;
    color: #1e2a32;
    display: block;
    margin-bottom: 6px;
}

.rec-item a:hover,
.update-item a:hover {
    color: #d44c2f;
}

.rec-date,
.update-date {
    font-size: 0.7rem;
    color: #94a3b8;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.category-card {
    background: #fff;
    border-radius: 28px;
    padding: 1.5rem;
    border: 1px solid #eef2f8;
    transition: transform 0.2s;
}

.category-card:hover {
    transform: translateY(-4px);
}

.cat-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #d44c2f;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.cat-articles {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.mini-card a {
    text-decoration: none;
    color: inherit;
}

.mini-img img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 0.5rem;
}

.mini-card h3 {
    font-size: 1.2rem;
    line-height: 1.4;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.excerpt {
    color: #334155;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.view-more {
    display: inline-block;
    margin-top: 0.5rem;
    font-weight: 500;
    color: #d44c2f;
    text-decoration: none;
}

.special-coverage {
    margin: 3rem 0;
}

.featured-report {
    display: flex;
    gap: 2rem;
    background: #fafcff;
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid #eef2fa;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.report-image {
    flex: 0 0 25%;
}

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

.report-content {
    flex: 1;
    padding: 2rem;
}

.tag-exclusive {
    background: #d44c2f20;
    color: #d44c2f;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.report-content h3 {
    font-size: 1.6rem;
    margin: 1rem 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-ghost {
    display: inline-block;
    margin-top: 1rem;
    padding: 10px 24px;
    border: 1px solid #d44c2f;
    border-radius: 40px;
    color: #d44c2f;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
}

.btn-ghost:hover {
    background: #d44c2f;
    color: white;
}

.hot-topics {
    margin: 2rem 0;
}

.topic-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.2rem;
}

.topic-chip {
    background: #f1f5f9;
    padding: 8px 18px;
    border-radius: 40px;
    text-decoration: none;
    color: #2d3e3a;
    font-weight: 500;
    transition: 0.2s;
}

.topic-chip:hover {
    background: #d44c2f;
    color: white;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.25s ease;
    border: 1px solid #edf2f7;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -12px rgba(0, 0, 0, 0.08);
}

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

.card-body {
    padding: 1.2rem;
}

.card-category {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: #d44c2f;
    background: #fef3e8;
    padding: 4px 10px;
    border-radius: 30px;
    margin-bottom: 12px;
}

.card-body h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.card-body a {
    text-decoration: none;
    color: #1e2a32;
}

.card-body a:hover h3 {
    color: #d44c2f;
}



.meta {
    font-size: 0.75rem;
    color: #6c757d;
    display: flex;
    gap: 12px;
}

.card-horizontal {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.card-horizontal .card-img {
    width: 40%;
    flex-shrink: 0;
}

.card-horizontal .card-body {
    padding: 1rem;
}

@media (max-width: 640px) {
    .card-horizontal {
        flex-direction: column;
    }

    .card-horizontal .card-img {
        width: 100%;
    }
}

.card-compact .card-body {
    padding: 1.2rem;
}

.pagination-static,
.pagination {
    margin-top: 48px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.page,
.page-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    border-radius: 30px;
    background: #fff;
    border: 1px solid #e2e8f0;
    color: #334155;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
    cursor: pointer;
}

.page.active,
.page-item.active {
    background: #d44c2f;
    border-color: #d44c2f;
    color: white;
}

.page:hover:not(.active),
.page-item:hover:not(.active) {
    background: #f8fafc;
    border-color: #d44c2f;
    color: #d44c2f;
}

.next,
.prev {
    font-weight: 500;
}

/* Newsletter (index) */
.newsletter-section {
    background: #faf8f5;
    border-radius: 32px;
    margin: 4rem 0;
    padding: 2.5rem;
    text-align: center;
}

.newsletter-inner h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.static-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.static-form input {
    padding: 12px 20px;
    border-radius: 60px;
    border: 1px solid #e2e8f0;
    width: 280px;
    font-family: inherit;
}

.static-form button {
    background: #d44c2f;
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 60px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.static-form button:hover {
    background: #b23b20;
}

/* ---------- ARTICLE PAGE SPECIFIC ---------- */
.article-header {
    margin-bottom: 2rem;
}

.article-title {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 700;
    color: #0a0c14;
    margin-bottom: 0.75rem;
    letter-spacing: -0.3px;
}

.article-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    font-weight: 400;
    margin-bottom: 1.2rem;
    border-left: 3px solid #d44c2f;
    padding-left: 1rem;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    font-size: 0.9rem;
    color: #5b677b;
    border-bottom: 1px solid #eef2f8;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.author-meta {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.author-meta img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name-meta {
    font-weight: 600;
    color: #2d3e3a;
}

.article-body {
    font-size: 0.985rem;
    line-height: 1.75;
    color: #171717;
    letter-spacing: 0.2px;
}

.article-body img {
    margin: 0 auto;
}

.article-body p {
    margin-bottom: 1.5rem;
}

.article-body h2 {
    font-size: 1.6rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
    letter-spacing: -0.2px;
}

.article-body h3 {
    font-size: 1.3rem;
    margin: 1.6rem 0 0.8rem;
    font-weight: 600;
}

.article-body img {
    max-width: 100%;
    border-radius: 20px;
    margin: 1.5rem 0;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.article-body blockquote {
    border-left: 4px solid #d44c2f;
    background: #fef9f0;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #2c3e40;
    border-radius: 12px;
}

.article-tags {
    margin: 2rem 0 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.tag {
    background: #f1f5f9;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #1f2a40;
    text-decoration: none;
    transition: 0.2s;
}

.tag:hover {
    background: #d44c2f20;
    color: #d44c2f;
}

.author-bio-box {
    background: #fafcff;
    border-radius: 28px;
    padding: 1.8rem;
    margin: 2rem 0;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    border: 1px solid #eef2fa;
}

.author-bio-box img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.author-bio-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
}

.author-bio-info p {
    color: #4a5568;
    font-size: 0.85rem;
    line-height: 1.5;
}

.share-section {
    margin: 2rem 0;
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    border-top: 1px solid #eef2f5;
    padding-top: 1.8rem;
}

.share-btn {
    background: #f1f5f9;
    padding: 8px 18px;
    border-radius: 40px;
    text-decoration: none;
    color: #2d3e3a;
    font-weight: 500;
    transition: 0.2s;
    cursor: pointer;
}

.share-btn:hover {
    background: #d44c2f;
    color: white;
}

.comments-section {
    margin: 2.5rem 0;
}

.comments-title {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.comment-list {
    margin-bottom: 2rem;
}

.comment {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid #edf2f7;
}

.comment-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #eef2f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #d44c2f;
}

.comment-content p {
    margin-bottom: 0.4rem;
}

.comment-meta {
    font-size: 0.7rem;
    color: #7f8c8d;
}

.comment-form textarea,
.comment-form input {
    width: 100%;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    font-family: inherit;
    margin-bottom: 12px;
}

.comment-form button {
    background: #d44c2f;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.comment-form button:hover {
    background: #b23b20;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.related-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #edf2f7;
}

.related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 20px -12px rgba(0, 0, 0, 0.1);
}

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

.related-card .card-info {
    padding: 1rem;
}

.related-card .card-info h4 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

.related-card .card-info a {
    text-decoration: none;
    color: #1f2937;
    font-weight: 600;
}

.related-card .card-info a:hover {
    color: #d44c2f;
}

.related-card .meta-sm {
    font-size: 0.7rem;
    color: #8b9aa8;
}

/* ---------- AUTHOR PAGE SPECIFIC ---------- */
.author-profile {
    max-width: 900px;
    margin: 48px auto 64px;
    background: #ffffff;
    border-radius: 32px;
    padding: 0 20px;
}

.author-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.author-avatar.large {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #f0e2ce;
    margin-bottom: 1.2rem;
    box-shadow: 0 12px 24px -12px rgba(0, 0, 0, 0.1);
}

.author-name.large {
    font-size: 2.4rem;
    font-weight: 700;
    color: #0b2b26;
    margin-bottom: 0.5rem;
    letter-spacing: -0.3px;
}

.author-title {
    font-size: 1.2rem;
    color: #d44c2f;
    font-weight: 500;
    margin-bottom: 1rem;
}

.author-bio-short {
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto 1.5rem;
    color: #4b5563;
    line-height: 1.6;
}

.author-bio-detailed {
    font-size: 1rem;
    line-height: 1.7;
    color: #2c3e40;
    margin: 2rem 0 2rem;
    border-top: 1px solid #eef2f8;
    padding-top: 2rem;
}

.author-bio-detailed p {
    margin-bottom: 1.2rem;
}

.author-bio-detailed h3 {
    font-size: 1.4rem;
    margin: 1.8rem 0 1rem;
    font-weight: 600;
    color: #1f2a3e;
}

.quote {
    background: #faf8f5;
    border-left: 4px solid #d44c2f;
    padding: 1.2rem 1.8rem;
    margin: 1.5rem 0;
    border-radius: 24px;
    font-style: italic;
    color: #2f4858;
}

.recent-articles {
    margin: 3rem 0 2rem;
}

.recent-articles h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border-left: 4px solid #d44c2f;
    padding-left: 1rem;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.article-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
    border: 1px solid #edf2f7;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -12px rgba(0, 0, 0, 0.08);
}

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

.article-card .card-content {
    padding: 1.2rem;
}

.article-card .card-category {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: #d44c2f;
    background: #fef3e8;
    display: inline-block;
    padding: 4px 10px;
    border-radius: 30px;
    margin-bottom: 10px;
}

.article-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.article-card h4 a {
    text-decoration: none;
    color: #1e2a32;
    transition: color 0.2s;
}

.article-card h4 a:hover {
    color: #d44c2f;
}

.card-meta {
    font-size: 0.75rem;
    color: #7f8c8d;
    margin-top: 0.5rem;
}

.btn-outline {
    display: inline-block;
    margin-top: 1.2rem;
    background: transparent;
    border: 1px solid #d44c2f;
    color: #d44c2f;
    padding: 8px 20px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
}

.btn-outline:hover {
    background: #d44c2f;
    color: white;
}

/* ---------- FOOTER ---------- */
.site-footer {
    background: #0f1a1a;
    color: #e6edf0;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
}

.footer-brand .logo a {
    color: #fff;
    font-size: 1.6rem;
}

.footer-brand p {
    margin-top: 12px;
    font-size: 0.85rem;
    opacity: 0.7;
}

.footer-links ul,
.footer-services ul,
.footer-contact ul {
    list-style: none;
    margin-top: 12px;
}

.footer-links a,
.footer-services a,
.footer-contact a {
    text-decoration: none;
    color: #cddfe3;
    font-size: 0.85rem;
    line-height: 2;
    transition: 0.2s;
}

.footer-links a:hover,
.footer-services a:hover,
.footer-contact a:hover {
    color: #d44c2f;
}

.footer-bottom {
    border-top: 1px solid #2a3a3a;
    padding: 20px 0;
    text-align: center;
    font-size: 0.75rem;
    color: #8b9c9c;
}

/* ---------- BACK TO TOP ---------- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 25px;
    width: 44px;
    height: 44px;
    background: #d44c2f;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 99;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #b23b20;
}

/* ---------- UTILITIES ---------- */
.section-header {
    margin-bottom: 1.5rem;
}

.section-header h2 {
    font-size: 1.8rem;
    font-weight: 600;
}

.section-line {
    display: block;
    width: 60px;
    height: 3px;
    background: #d44c2f;
    margin-top: 6px;
}

.author-author-avatar {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #f0e2ce;
    margin: 0 auto 1.2rem;
    box-shadow: 0 12px 24px -12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .featured-report {
        flex-direction: column;
        gap: 0;
    }

    .report-image {
        flex: auto;
    }

    .nav-menu {
        position: fixed;
        top: 54px;
        left: -100%;
        flex-direction: column;
        background: white;
        width: 80%;
        height: calc(100vh - 54px);
        padding: 2rem;
        box-shadow: 2px 0 20px rgba(0, 0, 0, 0.05);
        transition: left 0.3s ease;
        gap: 1.8rem;
        z-index: 99;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }
}

@media (max-width: 640px) {
    .news-card{
        flex-direction: column;
    }
    .site-header {
        position: relative;
    }

    .header-container {
        height: 54px;
    }

    .category-grid {
        grid-template-columns: 100%;
    }

    .article-title {
        font-size: 1.4rem;
    }

    .article-meta {
        gap: 0.5rem;
        font-size: 0.75rem;
    }

    .article-subtitle {
        font-size: 1rem;
    }

    .author-bio-box {
        flex-direction: column;
        text-align: center;
    }

    .author-name.large {
        font-size: 1.8rem;
    }

    .author-avatar.large {
        width: 120px;
        height: 120px;
    }

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