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

:root {
    --primary-color: #1a73e8;
    --primary-dark: #0d47a1;
    --primary-light: #e8f0fe;
    --secondary-color: #34a853;
    --accent-color: #ea4335;
    --text-color: #202124;
    --text-light: #5f6368;
    --text-lighter: #9aa0a6;
    --border-color: #dadce0;
    --bg-color: #ffffff;
    --bg-light: #f8f9fa;
    --bg-lighter: #f1f3f4;
    --shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.1), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
    --shadow-hover: 0 1px 3px 0 rgba(60, 64, 67, 0.2), 0 4px 8px 3px rgba(60, 64, 67, 0.15);
    --radius: 8px;
    --transition: all 0.3s ease;
    --font-stack: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

html {
    scroll-behavior: smooth;
}

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

.line-clamp-1 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.line-clamp-2 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.line-clamp-3 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.line-clamp-4 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

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

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

ul,
li {
    list-style: none;
}

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

/* ===== ACCESSIBILITY ===== */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    z-index: 1001;
    border-radius: 0 0 var(--radius) 0;
}

.skip-link:focus {
    top: 0;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4 {
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 0.5em;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.75rem;
    color: var(--text-color);
}

h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75em;
}

p {
    margin-bottom: 1em;
}

/* ===== BUTTONS ===== */
.btn-subscribe,
.btn-submit {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: var(--radius);
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-subscribe:hover,
.btn-submit:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-submit {
    padding: 12px 24px;
    border-radius: 0 var(--radius) var(--radius) 0;
}

/* ===== NAVIGATION (FIXED + SCROLL EFFECT) ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar.navbar-scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-color);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.nav-menu a.active,
.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

/* ===== DROPDOWN MENU (CSS only) ===== */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 200px;
    box-shadow: var(--shadow-hover);
    border-radius: var(--radius);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    border-bottom: 1px solid var(--border-color);
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-color);
}

.dropdown-menu a:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
}

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

/* ===== SEARCH FORM ===== */
.search-container {
    position: relative;
}

.search-form {
    display: flex;
    align-items: center;
}

.search-form input {
    padding: 10px 15px;
    padding-right: 40px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    width: 200px;
    font-size: 0.9rem;
}

.search-form button {
    position: absolute;
    right: 10px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
}

.search-form button:hover {
    color: var(--primary-color);
}

/* ===== HAMBURGER MENU ===== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger .bar {
    height: 3px;
    width: 100%;
    background-color: var(--text-color);
    border-radius: 3px;
    transition: var(--transition);
}

/* ===== MOBILE MENU OVERLAY ===== */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    z-index: 1001;
}

.mobile-menu-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background-color: white;
    padding: 30px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

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

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-color);
    cursor: pointer;
    line-height: 1;
}

.mobile-nav {
    margin-top: 50px;
}

.mobile-nav li {
    margin-bottom: 15px;
}

.mobile-nav a {
    display: block;
    padding: 12px 0;
    font-size: 1.1rem;
    color: var(--text-color);
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav a.active,
.mobile-nav a:hover {
    color: var(--primary-color);
}

.btn-subscribe-mobile {
    display: block;
    margin-top: 30px;
    background-color: var(--primary-color);
    color: white;
    padding: 15px;
    text-align: center;
    border-radius: var(--radius);
    font-weight: 500;
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
}

/* ===== ANNOUNCEMENT ===== */
.announcement {
    background-color: var(--primary-light);
    color: var(--primary-dark);
    padding: 12px 0;
    margin-top: 70px;
}

.announcement p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.announcement a {
    color: var(--primary-dark);
    font-weight: 500;
    margin-left: 5px;
}

.announcement a:hover {
    text-decoration: underline;
}

/* ===== SECTION COMMON STYLES ===== */
section {
    padding: 60px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-header h2 {
    margin-bottom: 0;
}

.view-all {
    color: var(--primary-color);
    font-weight: 500;
}

.view-all:hover {
    text-decoration: underline;
}

/* ===== CATEGORY LABELS ===== */
.category-label {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.category-label.politics {
    background-color: #e8f0fe;
    color: var(--primary-color);
}

.category-label.technology {
    background-color: #f3e8fd;
    color: #8a2be2;
}

.category-label.business {
    background-color: #e6f4ea;
    color: var(--secondary-color);
}

.category-label.health {
    background-color: #fce8e6;
    color: var(--accent-color);
}

.category-label.environment {
    background-color: #e6f4ea;
    color: #0b8043;
}

/* ===== HOME PAGE - HOT NEWS ===== */
.hot-news-section {
    background-color: var(--bg-light);
    padding-top: 7rem;
}

.hot-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.hot-news-card {
    background-color: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.hot-news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.hot-news-card.featured {
    grid-row: span 1;
}

.card-image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

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

.hot-news-card:hover .card-image img {
    transform: scale(1.05);
}

.card-image .category-label {
    position: absolute;
    top: 15px;
    left: 15px;
}

.card-content {
    padding: 25px;
}

.card-excerpt {
    color: var(--text-light);
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-meta {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: var(--text-lighter);
}

/* ===== HOME PAGE - LATEST NEWS ===== */
.filter-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 8px 16px;
    background-color: var(--bg-lighter);
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    transition: var(--transition);
}

.filter-tab:hover,
.filter-tab.active {
    background-color: var(--primary-color);
    color: white;
}

.latest-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.news-card {
    background-color: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}



.news-card .card-content {
    padding: 20px;
}

.news-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card .card-excerpt {
    -webkit-line-clamp: 3;
    margin-bottom: 15px;
}

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

.page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-light);
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
}

.page-btn:hover,
.page-btn.active {
    background-color: var(--primary-color);
    color: white;
}

.page-dots {
    padding: 0 5px;
    color: var(--text-lighter);
}

.page-btn.next,
.page-btn.prev {
    width: auto;
    padding: 0 20px;
    border-radius: 20px;
}

/* ===== HOME PAGE - CATEGORIES SECTION ===== */
.categories-section {
    background-color: var(--bg-light);
}

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

.category-card {
    background-color: white;
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.category-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.category-card h3 {
    margin-bottom: 10px;
}

.category-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.article-count {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 500;
}

/* ===== HOME PAGE - SPECIAL REPORTS ===== */
.special-reports-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.special-report-card {
    background-color: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.special-report-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.report-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

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

.special-report-card:hover .report-image img {
    transform: scale(1.05);
}

.report-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.report-content {
    padding: 30px;
}

.report-excerpt {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.report-meta {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: var(--text-lighter);
}

/* ===== HOME PAGE - EDITOR'S PICK ===== */
.editors-pick-section {
    background-color: var(--bg-light);
}

.editors-pick-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.editors-pick-card {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: var(--radius);
    padding: 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.editors-pick-card:hover {
    border-left-color: var(--primary-color);
    transform: translateX(5px);
    box-shadow: var(--shadow-hover);
}

.pick-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-light);
    margin-right: 25px;
    min-width: 50px;
}

.pick-content {
    flex: 1;
}

.pick-excerpt {
    color: var(--text-light);
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pick-meta {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
}

/* ===== BREADCRUMB (Category & Detail) ===== */
.breadcrumb {
    padding: 20px 0;
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb-item:not(:last-child)::after {
    content: "›";
    color: var(--text-lighter);
    font-size: 1.2rem;
    margin-left: 8px;
}

.breadcrumb-link {
    color: var(--text-light);
    font-size: 0.95rem;
}

.breadcrumb-link:hover {
    color: var(--primary-color);
}

.breadcrumb-current {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.95rem;
}

/* ===== CATEGORY PAGE ===== */
.category-header {
    background: linear-gradient(135deg, #f3e8fd 0%, #e8f0fe 100%);
    padding: 60px 0 40px;
    margin-top: 70px;
}

.category-info {
    max-width: 800px;
}

.category-title {
    font-size: 2.5rem;
    margin: 15px 0 10px;
    color: var(--text-color);
}

.category-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.category-meta {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--text-light);
}

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

.category-content {
    padding: 40px 0 60px;
}

.content-container {
    display: flex;
    gap: 40px;
}

.main-content {
    flex: 0 0 70%;
    max-width: 70%;
}

.sidebar {
    flex: 0 0 30%;
    max-width: 30%;
}

/* Category article cards */
.article-card-horizontal {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 25px;
    background-color: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    margin-bottom: 30px;
}

.article-card-horizontal:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.article-card-horizontal .card-image {
    height: 100%;
    width: 100%;
    border-radius: var(--radius) 0 0 var(--radius);
}

.article-card-horizontal .card-image img {
    height: 100%;
    object-fit: cover;
}

.article-card-horizontal .card-content {
    padding: 25px 25px 25px 0;
}

.article-card-vertical {
    background-color: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    margin-bottom: 30px;
}

.article-card-vertical:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.article-card-vertical .card-image {
    height: 200px;
}

.article-card-vertical .card-content {
    padding: 20px;
}

.article-card-compact {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background-color: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    margin-bottom: 20px;
}

.article-card-compact:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-hover);
}

.article-card-compact .card-image {
    flex: 0 0 100px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
}

.article-card-compact .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-card-compact .card-content {
    flex: 1;
    padding: 0;
}

.article-card-compact h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.article-card-compact .card-excerpt {
    font-size: 0.9rem;
    color: var(--text-light);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 10px;
}

.article-card-compact .card-meta {
    font-size: 0.8rem;
}

/* Filter & Sort */
.filter-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background-color: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.filter-group {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.filter-label {
    font-weight: 500;
    color: var(--text-color);
}

.filter-select {
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    background-color: white;
    font-size: 0.95rem;
    color: var(--text-color);
    cursor: pointer;
    min-width: 150px;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    padding-right: 35px;
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(26, 115, 232, 0.2);
}

.view-toggle {
    display: flex;
    gap: 5px;
}

.view-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-light);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
}

.view-btn.active,
.view-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

.author-byline {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.author-mini-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.author-byline .author-name {
    font-weight: 600;
    color: #0b1c2f;
    font-size: 1rem;
    margin: 0;
}

.author-widget .author-header {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.2rem;
    margin-top: 0;
    padding: 0;
    border: none;
    background: none;
    box-shadow: none;
}

.author-widget .author-header::before {
    content: none;
}

.author-widget .author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.author-widget .author-name-title h3 {
    font-size: 1.2rem;
    margin: 0 0 0.2rem;
    border: none;
    padding: 0;
    color: #333;
}

.author-name-title p {
    font-size: 0.9rem;
    color: #6b7f94;
}

.author-widget .author-bio {
    font-size: 0.95rem;
    color: #34495e;
    line-height: 1.5;
    margin: 0;
}

.sidebar-section {
    background-color: white;
    border-radius: var(--radius);
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}

.sidebar-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--bg-light);
    color: var(--text-color);
}

.trending-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.trending-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.trending-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.trending-number {
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    background-color: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
}

.trending-item:nth-child(1) .trending-number {
    background-color: var(--primary-color);
    color: white;
}

.trending-item:nth-child(2) .trending-number {
    background-color: var(--primary-light);
    color: var(--primary-color);
}

.trending-content h4 {
    font-size: 0.95rem;
    margin-bottom: 5px;
    line-height: 1.4;
}

.trending-meta {
    font-size: 0.8rem;
    color: var(--text-lighter);
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--bg-light);
    color: var(--text-color);
    border-radius: 20px;
    font-size: 0.9rem;
    transition: var(--transition);
    border: 1px solid transparent;
}

.tag:hover {
    background-color: var(--primary-light);
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.tag.active {
    background-color: var(--primary-color);
    color: white;
}

.newsletter-sidebar {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
}

.newsletter-sidebar h3 {
    color: white;
    margin-bottom: 15px;
}

.newsletter-sidebar p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.newsletter-sidebar .form-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-sidebar input {
    padding: 12px 15px;
    border: none;
    border-radius: var(--radius);
    font-size: 0.95rem;
}

.newsletter-sidebar .btn-submit {
    background-color: white;
    color: var(--primary-color);
    border-radius: var(--radius);
    padding: 12px;
}

.newsletter-sidebar .btn-submit:hover {
    background-color: var(--bg-light);
}

/* ===== DETAIL PAGE ===== */
.article-content-container {
    display: flex;
    gap: 40px;
    padding-top: 40px;
}

.article-detail {
    margin-top: 70px;
}

.article-main {
    flex: 0 0 70%;
    max-width: 70%;
}

.article-sidebar {
    flex: 0 0 30%;
    max-width: 30%;
}

.article-header {
    margin-bottom: 30px;
}

.article-category {
    display: inline-block;
    margin-bottom: 15px;
}

.article-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--text-color);
}

.article-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 25px;
    font-weight: 400;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-details h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.author-bio {
    font-size: 0.9rem;
    color: var(--text-light);
}


.publish-date,
.update-date {
    display: block;
    font-size: 0.95rem;
    color: var(--text-light);
}

.update-date {
    font-size: 0.85rem;
    color: var(--text-lighter);
}

.article-featured-image {
    margin-bottom: 30px;
    border-radius: var(--radius);
    overflow: hidden;
}

.article-featured-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
}

.image-caption {
    padding: 15px;
    background-color: var(--bg-light);
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
    border-radius: 0 0 var(--radius) var(--radius);
}

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

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

.article-tags {
    margin: 40px 0;
    padding: 25px;
    background-color: var(--bg-light);
    border-radius: var(--radius);
}

.tags-label {
    font-weight: 600;
    margin-right: 10px;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.article-share {
    margin: 40px 0;
    padding: 25px;
    background-color: var(--bg-light);
    border-radius: var(--radius);
    text-align: center;
}

.share-title {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.share-btn.facebook:hover {
    background-color: #1877f2;
    color: white;
    border-color: #1877f2;
}

.share-btn.twitter:hover {
    background-color: #1da1f2;
    color: white;
    border-color: #1da1f2;
}

.share-btn.linkedin:hover {
    background-color: #0077b5;
    color: white;
    border-color: #0077b5;
}

.share-btn.pinterest:hover {
    background-color: #b50000;
    color: white;
    border-color: #b50000;
}

.share-btn.email:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.author-box {
    margin: 40px 0;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: var(--radius);
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.author-box-avatar {
    flex: 0 0 100px;
}

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

.author-box-content {
    flex: 1;
}

.author-box-name {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.author-box-bio {
    color: var(--text-light);
    margin-bottom: 15px;
}

.author-box-link {
    color: var(--primary-color);
    font-weight: 500;
}

.author-box-link:hover {
    text-decoration: underline;
}

.related-articles {
    margin: 60px 0 40px;
}

.related-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--bg-light);
}

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

.related-card {
    background-color: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}


.related-card .card-content {
    padding: 20px;
}

.related-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-card .card-excerpt {
    font-size: 0.95rem;
    color: var(--text-light);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 15px;
}

.comments-section {
    margin: 0px 0 40px;
}

.comments-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--bg-light);
}

.comment-form {
    background-color: white;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

.form-title {
    font-size: 1.3rem;
    margin-bottom: 25px;
}

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

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(26, 115, 232, 0.2);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.form-submit {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.form-submit:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.comment {
    background-color: white;
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.comment-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.comment-date {
    font-size: 0.85rem;
    color: var(--text-lighter);
}

.comment-reply {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
}

.comment-reply:hover {
    text-decoration: underline;
}

.comment-body {
    line-height: 1.7;
    color: var(--text-color);
}

/* ===== AUTHOR PAGE ===== */
.author-detail {
    margin-top: 70px;
}

.author-hero {
    padding: 60px 0 40px;
    background: linear-gradient(135deg, #f3e8fd 0%, #e8f0fe 100%);
}

.author-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.author-avatar-container {
    flex: 0 0 200px;
}

.author-avatar-large {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: var(--shadow-hover);
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.author-title {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 500;
}

.author-bio {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 25px;
    max-width: 800px;
}

.author-social {
    margin-top: 30px;
}

.social-title {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.social-links-author {
    display: flex;
    gap: 15px;
}

.social-link-author {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-color);
    transition: var(--transition);
}

.social-link-author:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.social-link-author.twitter:hover {
    background-color: #1da1f2;
    color: white;
    border-color: #1da1f2;
}

.social-link-author.linkedin:hover {
    background-color: #0077b5;
    color: white;
    border-color: #0077b5;
}

.social-link-author.github:hover {
    background-color: #333;
    color: white;
    border-color: #333;
}

.social-link-author.email:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.author-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0 60px;
}

.stat-card {
    background-color: white;
    border-radius: var(--radius);
    padding: 25px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.stat-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-light);
}

.author-details-section {
    padding: 60px 0 40px;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--text-color);
    padding-bottom: 15px;
    border-bottom: 2px solid var(--bg-light);
}

.author-details-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);

}

.author-details-content h3 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: var(--text-color);
}

.author-details-content p {
    margin-bottom: 1.5em;
}

.author-details-content ul {
    margin-bottom: 1.5em;
    padding-left: 20px;
}

.author-details-content li {
    margin-bottom: 8px;
    position: relative;
}

.author-details-content li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

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

.expertise-card {
    background-color: white;
    border-radius: var(--radius);
    padding: 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid transparent;
}

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

.expertise-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.expertise-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.expertise-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.author-articles-section {
    padding: 40px 0 60px;
    background-color: var(--bg-light);
}

.articles-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.articles-count {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

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

.article-card-author {
    background-color: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.article-card-author:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.article-card-author .card-image {
    height: 180px;
}

.article-card-author .card-content {
    padding: 20px;
}

.article-card-author h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card-author .card-excerpt {
    font-size: 0.95rem;
    color: var(--text-light);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 15px;
}

/* ===== FOOTER ===== */
.footer {
    background-color: #202124;
    color: white;
}

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

.footer-column h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-description {
    color: #9aa0a6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

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

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #9aa0a6;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.newsletter-form .form-group {
    display: flex;
    margin-bottom: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: var(--radius) 0 0 var(--radius);
    font-size: 0.95rem;
}

.form-note p {
    color: #9aa0a6;
    font-size: 0.85rem;
    margin-bottom: 0;
}

.form-note a {
    color: var(--primary-light);
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-bottom p {
    color: #9aa0a6;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.footer-bottom p a {
    color: #9aa0a6;
}

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

.footer-bottom-links a {
    color: #9aa0a6;
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: white;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hot-news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hot-news-card.featured {
        grid-column: span 2;
    }

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

    .categories-grid,
    .special-reports-grid,
    .editors-pick-grid,
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .author-container,
    .content-container,
    .article-content-container {
        flex-direction: column;
        gap: 30px;
    }

    .main-content,
    .article-main {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .sidebar,
    .article-sidebar {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .author-container {
        align-items: center;
        text-align: center;
    }

    .author-avatar-container {
        flex: 0 0 150px;
    }

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

    .author-name {
        font-size: 2rem;
    }

    .category-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        position: relative;
    }

    .category-header {
        padding: 20px 0;
        margin-top: 0;
    }

    .hot-news-section {
        padding-top: 2rem;
    }

    .article-detail,
    .author-detail {
        margin: 0;
    }

    .article-content-container {
        padding-top: 20px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu,
    .nav-actions .search-container {
        display: none;
    }

    .nav-actions .btn-subscribe {
        display: none;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .hot-news-grid,
    .latest-news-grid,
    .articles-grid,
    .related-grid {
        grid-template-columns: 1fr;
    }

    .categories-grid,
    .special-reports-grid,
    .editors-pick-grid,
    .expertise-grid,
    .author-stats {
        grid-template-columns: 1fr;
    }

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

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

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    section {
        padding: 40px 0;
    }

    .filter-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .article-card-horizontal {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .article-card-horizontal .card-image {

        border-radius: var(--radius) var(--radius) 0 0;
    }

    .article-card-horizontal .card-content {
        padding: 25px;
    }

    .category-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

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

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

    .article-meta {
        gap: 0.3rem;
        align-content: center;
    }

    .author-mini-avatar{
        display: none;
    }
    .publish-date, .update-date,.meta-item,.author-byline .author-name{
        font-size: 0.7rem;
    }
    .article-dates {
        text-align: left;
    }

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

    .author-box-avatar {
        flex: 0 0 80px;
    }

    .author-box-avatar img {
        width: 80px;
        height: 80px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .comment-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

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

    .social-links-author {
        flex-wrap: wrap;
        justify-content: center;
    }
}

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

    h1 {
        font-size: 1.5rem;
    }

    .logo h1 {
        font-size: 1.25rem;
    }

    .card-meta,
    .report-meta,
    .pick-meta {
        flex-direction: column;
        gap: 5px;
    }

    .filter-tabs {
        justify-content: flex-start;
    }

    .mobile-menu-container {
        width: 100%;
    }

    .category-title {
        font-size: 1.45rem;
        margin: 0;
    }

    .author-name {
        font-size: 1.75rem;
    }

    .author-title {
        font-size: 1.1rem;
    }

    .author-bio {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

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

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

    .share-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .sidebar-section {
        padding: 20px;
    }

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

    .pagination {
        flex-wrap: wrap;
    }
}