﻿*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #f9fafb;
    overflow-x: hidden;
}

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

a {
    color: #ce9631;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #e8bb42;
}

ul,
li {
    list-style: none;
    padding-left: 0;
}

h1,
h2,
h3,
h4 {
    color: #1a365d;
    line-height: 1.2;
    margin-top: 0;
}

.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: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Accessibility */
.skip-link {
    position: absolute;
    top: -3rem;
    left: 0;
    background: #1a365d;
    color: white;
    padding: 0.75rem;
    z-index: 9999;
    text-decoration: none;
}

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

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


.site-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(15px);
}

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

.brand-logo {
    font-weight: bold;
    font-size: 1.8rem;
    color: #e2ae52;
    flex-shrink: 0;
}


.nav-list {
    display: flex;
    gap: 2rem;
    margin: 0;
}

.nav-list a {
    color: #4a5568;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-list a:hover,
.nav-list a.active {
    color: #ce9631;
}

.nav-list a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #ce9631;
    border-radius: 2px;
}

/* Dropdown (CSS only) */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -1rem;
    background: white;
    min-width: 200px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 0.75rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

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

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.5rem 1.5rem;
    color: #4a5568;
}

.dropdown-menu a:hover {
    background-color: #edf2f7;
    color: #ce9631;
}

.dropdown-arrow {
    font-size: 0.7em;
    margin-left: 0.3rem;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}

.search-form {
    display: flex;
    background: #edf2f7;
    border-radius: 50px;
    padding: 0.4rem 0.4rem 0.4rem 1rem;
    border: 1px solid transparent;
}

.search-form:focus-within {
    border-color: #ce9631;
    background: white;
}

.search-form input {
    border: none;
    background: transparent;
    outline: none;
    min-width: 180px;
    font-family: inherit;
}

.search-form button {
    background: #ce9631;
    color: white;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.button {
    display: inline-block;
    background: #ce9631;
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.button:hover {
    background: #e8bb42;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(49, 130, 206, 0.3);
}

.button-cta {
    background: #e53e3e;
}

.button-cta:hover {
    background: #c53030;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger-menu span {
    height: 3px;
    width: 100%;
    background-color: #4a5568;
    border-radius: 2px;
    transition: 0.3s;
}

.hamburger-menu[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}

.hamburger-menu[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}


main {
    margin-top: 90px;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, #ce9631, #e53e3e);
    border-radius: 2px;
}


/* Top Story */
.top-story-section {
    margin-bottom: 4rem;
}

.top-story-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.top-story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

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

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

.top-story-card:hover .top-story-image img {
    transform: scale(1.03);
}

.story-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #e53e3e;
    color: white;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.top-story-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.top-story-content time {
    color: #718096;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.top-story-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a365d;
}

.excerpt {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #718096;
}

.author a {
    font-weight: 600;
}

.read-more {
    font-weight: 700;
    color: #ce9631;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
}

.read-more:hover {
    border-bottom-color: #ce9631;
}

/* Categories Grid */
.categories-section {
    margin-bottom: 4rem;
}

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

.category-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-8px);
    border-color: #ce9631;
    box-shadow: 0 15px 35px rgba(49, 130, 206, 0.1);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.category-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.category-card p {
    color: #718096;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.article-count {
    display: inline-block;
    background: #edf2f7;
    color: #4a5568;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
}

/* Trends Scroller */
.trends-section {
    margin-bottom: 4rem;
}

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

.view-all {
    font-weight: 600;
    color: #ce9631;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
}

.view-all:hover {
    border-bottom-color: #ce9631;
}

.trends-scroller {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scrollbar-width: thin;
}

.trends-scroller::-webkit-scrollbar {
    height: 6px;
}

.trends-scroller::-webkit-scrollbar-track {
    background: #edf2f7;
    border-radius: 3px;
}

.trends-scroller::-webkit-scrollbar-thumb {
    background: #cbd5e0;
    border-radius: 3px;
}

.trend-card {
    flex: 0 0 auto;
    width: 280px;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 5px solid #ce9631;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.trend-card:hover {
    transform: translateX(5px);
}

.trend-rank {
    display: inline-block;
    background: #1a365d;
    color: white;
    font-size: 0.8rem;
    font-weight: 800;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    text-align: center;
    line-height: 28px;
    margin-bottom: 0.75rem;
}

.trend-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.trend-card .meta {
    color: #718096;
    font-size: 0.85rem;
    justify-content: flex-start;
    gap: 0.5rem;
}

/* Features Section */
.features-section {
    margin-bottom: 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.feature-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-8px);
}

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

.feature-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.feature-tag {
    align-self: flex-start;
    background: #e6fffa;
    color: #234e52;
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-content h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    flex-grow: 1;
}

.feature-content p {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-content .meta {
    color: #718096;
    font-size: 0.9rem;
    margin-top: auto;
}


.latest-regional-wrapper {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 4rem;
    margin-bottom: 5rem;
}

.article-list {
    margin-bottom: 2.5rem;
}

.article-list-item {
    margin: 2rem 0;
    border-bottom: 1px solid #e2e8f0;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border-radius: 10px;
    transition: 0.3s;
}

.article-list-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.16);
}

.article-list-img {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.article-list-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.article-list-content {
    padding: 15px;
}

.article-list-item:first-child {
    padding-top: 0;
}

.item-category {
    display: inline-block;
    color: #ce9631;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.article-list-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.article-list-item p {
    color: #4a5568;
    margin-bottom: 1rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-list-item .meta {
    color: #718096;
    font-size: 0.9rem;
    justify-content: flex-start;
    gap: 1rem;
}


.breadcrumb-section {
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0 0 1.5rem 0;
    padding: 0;
    font-size: 0.9rem;
}

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

.breadcrumb-item:not(:last-child)::after {
    content: '›';
    margin: 0 0.5rem;
    color: #a0aec0;
}

.breadcrumb-item a {
    color: #4a5568;
}

.breadcrumb-item.active {
    color: #2d3748;
    font-weight: 600;
}

.breadcrumb-extra {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-radius: 12px;
    padding: 20px;
    border-left: 5px solid #ce9631;
}

.breadcrumb-label {
    display: inline-block;
    background: #ce9631;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.breadcrumb-title {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
    color: #1a365d;
}

.breadcrumb-description {
    color: #4a5568;
    font-size: 1.1rem;
    max-width: 700px;
    line-height: 1.6;
}


.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.category-stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: #f7fafc;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #4a5568;
}

.stat-item strong {
    display: block;
    font-size: 1.5rem;
    color: #ce9631;
    margin-bottom: 0.25rem;
}

.category-filters {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.filter-label {
    font-weight: 600;
    color: #4a5568;
    font-size: 0.95rem;
    white-space: nowrap;
}

.view-toggle {
    display: flex;
    background: #f7fafc;
    border-radius: 8px;
    padding: 0.25rem;
    margin-left: 1rem;
}

.view-option {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 6px;
    font-size: 1.2rem;
    color: #a0aec0;
    cursor: not-allowed;
    transition: all 0.2s ease;
}

.view-option.active {
    background: white;
    color: #ce9631;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}


.two-column-layout {
    display: grid;
    grid-template-columns: 66% 30%;
    gap: 4rem;
    margin-bottom: 5rem;
}

.main-content {
    min-width: 0;
}

.sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}


.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}


.article-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Style 1: Standard Card */
.article-card.style-1 {
    display: flex;
    flex-direction: column;
}

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

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

.article-card.style-1:hover .card-image img {
    transform: scale(1.05);
}

.card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #ce9631;
    color: white;
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.article-card.style-1 .card-content {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    color: #718096;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.card-title {
    font-size: 1.4rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #1a365d;
}

.card-title a {
    color: inherit;
}

.card-title a:hover {
    color: #ce9631;
}

.card-excerpt {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card.style-1 .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #edf2f7;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 36px;
    height: 36px;
    background: #ce9631;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.author-name {
    display: block;
    font-weight: 600;
    color: #2d3748;
    font-size: 0.95rem;
}

.author-title {
    display: block;
    font-size: 0.8rem;
    color: #718096;
}

.card-link {
    font-weight: 600;
    color: #ce9631;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}

.card-link:hover {
    border-bottom-color: #ce9631;
    padding-bottom: 0;
}

/* Style 2: Horizontal Card */
.article-card.style-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 280px;
}

.article-card.style-2 .card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.article-card.style-2 .card-badge {
    position: static;
    display: inline-block;
    margin-bottom: 1rem;
}

.article-card.style-2 .card-title {
    font-size: 1.35rem;
}

.article-card.style-2 .card-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #edf2f7;
}

.card-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: #718096;
}

.article-card.style-2 .card-image {
    overflow: hidden;
}

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

.article-card.style-2:hover .card-image img {
    transform: scale(1.05);
}

/* Style 3: Minimal Card */
.article-card.style-3 {
    border: 2px solid #e2e8f0;
    background: #f9fafb;
}

.article-card.style-3 .card-content {
    padding: 1.75rem;
}

.article-card.style-3 .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.card-urgency {
    background: #e53e3e;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.article-card.style-3 .card-title {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.article-card.style-3 .card-excerpt {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

.article-card.style-3 .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.article-card.style-3 .card-meta {
    font-size: 0.85rem;
    color: #718096;
    margin: 0;
}

.source {
    font-weight: 600;
    color: #ce9631;
}

.card-link-minimal {
    font-weight: 600;
    color: #2d3748;
    font-size: 0.95rem;
}

.card-link-minimal:hover {
    color: #ce9631;
}


.pagination {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 0.75rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    background: white;
    color: #4a5568;
    font-weight: 500;
    transition: all 0.2s ease;
}

.page-link:hover {
    border-color: #ce9631;
    color: #ce9631;
    background: #ebf8ff;
}

.page-link.current {
    background: #ce9631;
    color: white;
    border-color: #ce9631;
    pointer-events: none;
}

.page-dots {
    padding: 0 0.5rem;
    color: #a0aec0;
}

.page-link.next {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}


.pagination-wrapper {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-top: 2rem;
}

.pagination-info {
    text-align: center;
    color: #4a5568;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.pagination-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.pagination-button {
    padding: 0.75rem 1.5rem;
    background: #f7fafc;
    color: #4a5568;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s ease;
    min-width: 120px;
    text-align: center;
}

.pagination-button:hover {
    background: #ce9631;
    color: white;
}

.pagination-numbers {
    display: flex;
    gap: 0.5rem;
}

.page-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: #f7fafc;
    color: #4a5568;
    font-weight: 500;
    transition: all 0.2s ease;
}

.page-number:hover {
    background: #edf2f7;
    color: #ce9631;
}

.page-number.active {
    background: #ce9631;
    color: white;
}

.page-ellipsis {
    display: flex;
    align-items: center;
    padding: 0 0.5rem;
    color: #a0aec0;
}


.sidebar-widget {
    background: white;
    border-radius: 12px;
    padding: 1.75rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
}

.widget-title {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #edf2f7;
    color: #1a365d;
}

/* Related Categories */
.category-list {
    margin: 0;
}

.category-list li {
    margin-bottom: 0.5rem;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    color: #4a5568;
    transition: all 0.2s ease;
}

.category-list a:hover {
    background: #ebf8ff;
    color: #ce9631;
    transform: translateX(5px);
}

.category-list a.active {
    background: #ce9631;
    color: white;
    font-weight: 600;
}

.count {
    background: #edf2f7;
    color: #4a5568;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.category-list a.active .count {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Recommended Articles */
.recommended-item {
    padding: 1.25rem 0;
    border-bottom: 1px solid #edf2f7;
}

.recommended-item:last-child {
    border-bottom: none;
}

.recommended-item h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.recommended-item h4 a {
    color: #2d3748;
}

.recommended-item h4 a:hover {
    color: #ce9631;
}

.recommended-meta {
    font-size: 0.85rem;
    color: #718096;
}

/* Trending Tags */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #f7fafc;
    color: #4a5568;
    border-radius: 50px;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.tag:hover {
    background: #ce9631;
    color: white;
    border-color: #ce9631;
    transform: translateY(-2px);
}

/* Newsletter Signup */
.newsletter-signup p {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    font-size: 0.95rem;
}

.sidebar-form input {
    width: 100%;
    padding: 0.9rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid #cbd5e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    background: #f7fafc;
    color: #718096;
}

.sidebar-form input:focus {
    outline: none;
    border-color: #ce9631;
}

.form-note {
    font-size: 0.8rem;
    color: #718096;
    margin-top: 1rem;
    line-height: 1.4;
}

/* Regional Map */
.map-placeholder {
    background: #f7fafc;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
}

.map-visual {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #e6fffa 0%, #ebf8ff 100%);
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border: 1px solid #cbd5e0;
}

.map-point {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #ce9631;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 2px #ce9631;
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(49, 130, 206, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(49, 130, 206, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(49, 130, 206, 0);
    }
}

.map-legend {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: #4a5568;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legend-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #ce9631;
    border-radius: 50%;
}

.legend-item:last-child .legend-dot {
    background: #e53e3e;
}

/* Static Select */
.custom-select {
    position: relative;
    display: inline-block;
    width: 100%;
}

.custom-select select {
    appearance: none;
    width: 100%;
    padding: 0.75rem 2.5rem 0.75rem 1rem;
    border: 1px solid #cbd5e0;
    border-radius: 8px;
    background-color: white;
    font-family: inherit;
    font-size: 1rem;
    color: #2d3748;
    cursor: not-allowed;
}

.custom-select select:focus {
    outline: none;
    border-color: #ce9631;
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.2);
}

.select-arrow {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    pointer-events: none;
    color: #718096;
}


/* Article Meta Section */
.article-meta-section {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.article-meta-grid {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.meta-item {
    display: flex;
    flex-direction: column;
}

.meta-label {
    font-size: 0.85rem;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.author-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar-large {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ce9631, #805ad5);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.author-detail strong {
    display: block;
    color: #2d3748;
    font-size: 1.1rem;
}

.author-detail span {
    font-size: 0.9rem;
    color: #718096;
}

/* Featured Image */
.article-featured-image {
    margin: 0 0 2.5rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.article-featured-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.article-featured-image:hover img {
    transform: scale(1.02);
}

.article-featured-image figcaption {
    padding: 1rem 1.5rem;
    background: #f7fafc;
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.5;
    border-top: 1px solid #e2e8f0;
}

.image-credit {
    font-style: italic;
    color: #718096;
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

/* Article Lead */
.article-lead {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e2e8f0;
}

.lead-text {
    font-size: 1.4rem;
    line-height: 1.7;
    color: #2d3748;
    margin-bottom: 1.5rem;
    font-weight: 400;
    max-width: 800px;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.article-tag {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: #ebf8ff;
    color: #e8bb42;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.2s ease;
    border: 1px solid #bee3f8;
}

.article-tag:hover {
    background: #ce9631;
    color: white;
    border-color: #ce9631;
    transform: translateY(-2px);
}

/* Article Content */
.article-content {
    font-size: 0.985rem;
    letter-spacing: 0.2px;
    color: #171717;
    line-height: 1.75;
    margin-bottom: 3rem;
}

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

.article-quote {
    margin: 2rem 0;
    padding: 2rem 2.5rem;
    background: linear-gradient(to right, #f7fafc, #edf2f7);
    border-left: 5px solid #ce9631;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    position: relative;
}

.article-quote::before {
    content: '"';
    position: absolute;
    top: -1rem;
    left: 1rem;
    font-size: 4rem;
    color: #cbd5e0;
    font-family: serif;
    line-height: 1;
}

.article-quote p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #2d3748;
    margin-bottom: 1rem;
}

.article-quote cite {
    display: block;
    text-align: right;
    font-style: normal;
    font-weight: 600;
    color: #4a5568;
    font-size: 0.95rem;
}

.info-box {
    background: #f0fff4;
    border: 1px solid #c6f6d5;
    border-radius: 10px;
    padding: 1.75rem;
    margin: 2rem 0;
}

.info-box h3 {
    color: #22543d;
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.info-box ul {
    margin: 0;
    padding-left: 1.5rem;
}

.info-box li {
    margin-bottom: 0.75rem;
    line-height: 1.5;
    color: #2d3748;
}

.info-box li strong {
    color: #22543d;
}

.article-image-inline {
    margin: 2.5rem 0;
    text-align: center;
}

.article-image-inline img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.article-image-inline figcaption {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: #718096;
    line-height: 1.4;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.article-conclusion {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-radius: 12px;
    padding: 2rem 2.5rem;
    margin: 3rem 0;
    border-left: 5px solid #ce9631;
}

.article-conclusion h3 {
    color: #1a365d;
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.article-conclusion p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2d3748;
    margin-bottom: 0;
}

/* Article Footer */
.article-footer {
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 3rem;
}

.share-section {
    margin-bottom: 2.5rem;
}

.share-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #4a5568;
}

.share-buttons {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 30px;
}



.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.share-btn[data-platform="twitter"] {
    color: #1da1f2;
}

.share-btn[data-platform="facebook"] {
    color: #1877f2;
}

.share-btn[data-platform="linkedin"] {
    color: #0a66c2;
}

.share-btn[data-platform="pinterest"] {
    color: #0a66c2;
}

.share-btn[data-platform="email"] {
    color: #718096;
}

.share-btn[data-platform="copy"] {
    color: #38a169;
}

.author-bio {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: #f7fafc;
    border-radius: 12px;
}

.author-bio-avatar img{
    width: 100px;
    height: 100px;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.author-bio-content{
    flex: 1;
}
.author-bio-content h4 {
    font-size: 1.2rem;
    margin-top: 0;
    margin-bottom: 0.75rem;
    color: #1a365d;
}

.author-bio-content p {
    margin-top: 0;
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #4a5568;
}

.author-links {
    display: flex;
    gap: 1.5rem;
}

.author-links a {
    font-weight: 600;
    color: #ce9631;
    font-size: 0.95rem;
}

.author-links a:hover {
    text-decoration: underline;
}

.article-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.info-item {
    font-size: 0.95rem;
}

.info-label {
    display: block;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.info-item p {
    margin: 0;
    color: #718096;
    line-height: 1.5;
}

.info-item a {
    font-weight: 600;
}

/* Comments Section */
.comments-section {
    margin-bottom: 4rem;
}

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

.section-header h3 {
    font-size: 1.5rem;
    color: #1a365d;
    margin: 0;
}

.comment-count {
    background: #edf2f7;
    color: #4a5568;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.button-outline {
    background: transparent;
    border: 2px solid #ce9631;
    color: #ce9631;
}

.button-outline:hover {
    background: #ce9631;
    color: white;
}

.comment-form {
    background: #f7fafc;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid #cbd5e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.2s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #ce9631;
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1);
}

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

.form-group input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
}

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

.comment {
    padding: 1.75rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.comment:last-child {
    border-bottom: none;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.comment-avatar {
    width: 36px;
    height: 36px;
    background: #ce9631;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.comment-author strong {
    display: block;
    color: #2d3748;
    font-size: 1rem;
}

.comment-meta {
    font-size: 0.85rem;
    color: #718096;
}

.comment-reply {
    background: transparent;
    border: 1px solid #cbd5e0;
    color: #4a5568;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: not-allowed;
    transition: all 0.2s ease;
}

.comment-reply:hover {
    border-color: #ce9631;
    color: #ce9631;
}

.comment-body {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #2d3748;
}

.comment-actions {
    display: flex;
    gap: 1rem;
}

.comment-like,
.comment-dislike {
    background: transparent;
    border: 1px solid #e2e8f0;
    color: #718096;
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.9rem;
    cursor: not-allowed;
    transition: all 0.2s ease;
}

.comment-like:hover {
    border-color: #38a169;
    color: #38a169;
}

.comment-dislike:hover {
    border-color: #e53e3e;
    color: #e53e3e;
}

.comments-pagination {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

/* Related Articles */
.related-articles {
    margin-bottom: 4rem;
}

.related-articles h3 {
    font-size: 1.5rem;
    color: #1a365d;
    margin-bottom: 2rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #edf2f7;
}

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

.related-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.related-image {
    height: 180px;
    overflow: hidden;
}

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

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

.related-content {
    padding: 1.5rem;
}

.related-category {
    display: inline-block;
    color: #ce9631;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.related-content h4 {
    font-size: 1.1rem;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

.related-content h4 a {
    color: #2d3748;
}

.related-content h4 a:hover {
    color: #ce9631;
}

.related-content p {
    color: #718096;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-meta {
    font-size: 0.85rem;
    color: #a0aec0;
}

/* Article Tools Widget */
.article-tools .tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.tool-button {
    padding: 0.75rem;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1.2rem;
    cursor: not-allowed;
    transition: all 0.2s ease;
}

.tool-button:hover {
    background: #f7fafc;
    border-color: #cbd5e0;
    transform: translateY(-2px);
}

.article-stats {
    display: flex;
    justify-content: space-around;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.article-stats .stat {
    text-align: center;
}

.article-stats strong {
    display: block;
    font-size: 1.3rem;
    color: #ce9631;
    margin-bottom: 0.25rem;
}

.article-stats span {
    font-size: 0.85rem;
    color: #718096;
}


.site-footer {
    background: #1a365d;
    color: #cbd5e0;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-column h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 40px;
    height: 3px;
    background: #ce9631;
}

.footer-logo {
    font-size: 1.8rem;
    line-height: 1;
    color: white;
    font-weight: 300;
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-column p {
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

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

.social-links a:hover {
    background: #ce9631;
}

.footer-column ul li {
    margin-bottom: 0.7rem;
}

.footer-column ul a {
    color: #cbd5e0;
}

.footer-column ul a:hover {
    color: white;
}

/* Subscription Form */
.subscribe-form input[type="email"] {
    width: 100%;
    padding: 0.8rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid #2d3748;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    color: white;
    font-family: inherit;
}

.subscribe-form input::placeholder {
    color: #a0aec0;
}

.subscribe-form input:focus {
    outline: none;
    border-color: #ce9631;
}

.form-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.form-group input[type="checkbox"] {
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.form-group label {
    line-height: 1.4;
}

.button-block {
    display: block;
    width: 100%;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.9rem;
    color: #a0aec0;
}

.footer-bottom a {
    color: #cbd5e0;
}

.footer-bottom p {
    margin: 0;
}


.attribution {
    font-style: italic;
    font-size: 0.85rem;
}


.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ce9631;
    color: white;
    border: none;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(49, 130, 206, 0.3);
}

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

.back-to-top:hover {
    background: #e8bb42;
    transform: translateY(-3px) !important;
}

.author-mini {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.author-mini span {
    font-weight: 500;
    color: #1b3853;
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.share-btn {
    background: none;
    border: 1px solid #b9cfec;
    padding: 8px 24px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
    border-radius: 10px;
}

.share-btn:hover {
    background: #e2ecf9;
}

.author-card {
    text-align: center;
    background: #f7fafd;
    padding: 28px 20px;
    border: 1px solid #e1eaf2;
}

.author-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 16px;
    border: 3px solid white;
    box-shadow: 0 4px 10px rgba(0, 20, 40, 0.1);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-card h3 {
    border-bottom: none;
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.author-bio {
    color: #365773;
    font-size: 0.95rem;
}

.author-block {
    display: flex;
    gap: 24px;
    background: #f5faff;
    padding: 28px;
    margin: 40px 0;
    border: 1px solid #d5e3f0;
    align-items: center;
}

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

.author-info h3 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 6px;
}

.author-info p {
    color: #2d4b68;
    margin-bottom: 10px;
}

.author-page-main {
    padding: 40px 0;
}



.author-header {
    display: flex;
    gap: 40px;
    align-items: center;
    margin: 60px 0 48px;
    background: #f8fbfe;
    padding: 40px;
    border: 1px solid #e1eaf2;
}

.author-header-img {
    flex-shrink: 0;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid white;
    box-shadow: 0 8px 20px rgba(0, 30, 50, 0.1);
}

.author-header-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-header-info h1 {
    font-size: 2.8rem;
    font-weight: 350;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.author-title {
    font-size: 1.2rem;
    color: #2d577b;
    margin-bottom: 16px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.author-header-info .author-bio {
    font-size: 1.1rem;
    color: #1e3b50;
    max-width: 700px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.author-social {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.author-social a {
    color: #1d4e7c;
    text-decoration: none;
    font-weight: 500;
    border: 1px solid #b9cfec;
    padding: 6px 18px;
    transition: background 0.2s;
}

.author-social a:hover {
    background: #e2ecf9;
}

.author-detailed-bio {
    background: #ffffff;
    padding: 20px;
    border-bottom: 1px solid #dae4ee;
}

.author-detailed-bio h2 {
    font-size: 2rem;
    font-weight: 380;
    margin-bottom: 24px;
    border-left: 6px solid #4a6b8a;
    padding-left: 20px;
}

.author-detailed-bio p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #1f3343;
    margin-bottom: 1.5em;
    max-width: 900px;
}

.author-articles {
    margin: 48px 0;
}

.author-articles h2 {
    font-size: 2rem;
    font-weight: 380;
    margin-bottom: 32px;
    border-left: 6px solid #4a6b8a;
    padding-left: 20px;
}

.article-grid-4col {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 25px;
}

.author-article-card {
    background: white;
    border: 1px solid #e6eef7;
    transition: transform 0.2s, box-shadow 0.2s;
}

.author-article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px -8px rgba(20, 50, 80, 0.15);
}

.author-article-card .card-img {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.author-article-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.author-article-card:hover .card-img img {
    transform: scale(1.03);
}

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

.author-article-card .card-category {
    font-size: 0.75rem;
    margin-bottom: 6px;
}

.author-article-card h3 {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 8px;
    max-height: 2.8em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.author-article-card h3 a {
    text-decoration: none;
    color: #112b40;
}

.author-article-card .card-meta {
    font-size: 0.8rem;
    color: #57758e;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .latest-regional-wrapper,
    .two-column-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .sidebar {
        position: static;
    }

    .article-meta-grid {
        gap: 0.5rem;
    }

    .article-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .articles-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    }
}

@media (max-width: 768px) {
    .header-container {
        min-height: auto;
    }

    .main-nav,
    .header-actions .search-form {
        display: none;
    }

    .hamburger-menu {
        display: flex;
    }

    .header-container {
        padding: 1rem;
    }

    .top-story-card {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .top-story-content {
        padding: 2rem;
    }

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

    .container {
        padding: 0 1rem;
    }

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

    .top-story-content h1 {
        font-size: 2rem;
    }

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

    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }


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

    .category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .category-stats {
        width: 100%;
        justify-content: space-between;
        gap: 1rem;
    }

    .stat-item {
        flex: 1;
        padding: 0.75rem;
    }

    .category-filters {
        width: 100%;
        flex-wrap: wrap;
        justify-content: space-between;
    }

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

    .article-card.style-2 {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .article-card.style-2 .card-image {
        order: -1;
        height: 200px;
    }

    .pagination-controls {}

    .pagination-numbers {

        margin-bottom: 1rem;
    }


    .article-lead {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }

    .lead-text {
        font-size: 1.2rem;
    }

    .article-content {
        font-size: 1.0625rem;
    }

    .article-content h2 {
        font-size: 1.5rem;
    }

    .article-content h3 {
        font-size: 1.25rem;
    }

    .article-quote {
        padding: 1.5rem;
    }

    .article-quote p {
        font-size: 1.15rem;
    }

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

    .author-bio-avatar {
        margin-bottom: 1rem;
    }

    .author-links {
        justify-content: center;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

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

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .article-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {


    .breadcrumb-extra {
        padding: 1.5rem;
    }

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

    .category-stats {
        flex-direction: column;
    }

    .stat-item {
        flex-direction: row;
        justify-content: space-between;
    }

    .stat-item strong {
        margin-bottom: 0;
        margin-right: 0.5rem;
        display: inline;
    }

    .pagination-button {
        min-width: 100%;
    }


    .article-meta-grid {
        font-size: 0.8rem;
        padding-bottom: 10px;
    }

    .meta-item {
        text-align: center;
        align-items: center;
    }

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

    .article-tags {
        justify-content: center;
    }

    .share-buttons {
        justify-content: center;
    }
}

/* Mobile Menu Active State */
@media (max-width: 768px) {
    .site-header {
        position: relative;
    }

    main,
    .breadcrumb-section {
        margin-top: 0;
    }

    .article-list-item {
        grid-template-columns: 100%;
        gap: 0;
    }

    .article-list-content {
        padding: 15px;
    }

    .features-section {
        margin-top: 20px;
    }

    .main-nav.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        padding: 1rem 1.5rem;
        max-height: 100vh;
        overflow-y: auto;
    }


    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-list li {
        border-bottom: 1px solid #e2e8f0;
    }

    .nav-list a {
        display: block;
        padding: 1rem 0;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 1rem;
        background: #f7fafc;
        margin: 0.5rem 0;
        border-radius: 6px;
    }

    .header-actions.active {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        padding-top: 1rem;
        border-top: 1px solid #e2e8f0;
    }

    .header-actions.active .search-form {
        display: flex;
        order: -1;
        margin-bottom: 1rem;
    }
}