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

:root {
    --primary-color: #007bff;
    --primary-dark: #0056b3;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --white: #ffffff;
    --black: #000000;
    --border-radius: 8px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    --box-shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --container-width: 1200px;
    --header-height: 80px;
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    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: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

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

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

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

ul,
ol {
    list-style-position: inside;
    list-style: none;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    z-index: 1001;
    text-decoration: none;
}

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

.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: white;
}

.btn-secondary {
    background-color: var(--gray-200);
    color: var(--gray-800);
}

.btn-secondary:hover {
    background-color: var(--gray-300);
}

.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 50%;
    transition: var(--transition);
    color: var(--gray-600);
}

.icon-btn:hover {
    background-color: var(--gray-100);
    color: var(--gray-800);
}

/* ============================================
   HEADER & NAVIGATION STYLES
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    height: var(--header-height);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.site-header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 70px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
    transition: var(--transition);
}

.site-header.scrolled .header-content {
    height: 70px;
}

.logo a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.logo .tagline {
    font-size: 0.85rem;
    color: var(--gray-600);
    font-weight: 400;
}

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

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

.hamburger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--gray-800);
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-list a {
    color: var(--gray-700);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    text-decoration: none;
}

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

.nav-list a.active {
    color: var(--primary-color);
}

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

.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
}

.dropdown-toggle::after {
    content: '';
    width: 10px;
    height: 10px;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23495057' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    transition: var(--transition);
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

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

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

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--gray-700);
    font-weight: 400;
}

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

.header-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-subscribe {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-subscribe:hover {
    background-color: var(--primary-dark);
}

.search-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--gray-100);
    color: var(--gray-700);
    transition: var(--transition);
}

.search-toggle:hover {
    background-color: var(--gray-200);
    color: var(--gray-900);
}

/* ============================================
   COMMON COMPONENT STYLES
   ============================================ */
/* Alert Bar */
.alert-bar {
    background-color: #fff3cd;
    color: #856404;
    padding: 12px 0;
    border-bottom: 1px solid #ffeaa7;
    margin-top: var(--header-height);
}

.alert-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-label {
    background-color: var(--warning-color);
    color: var(--gray-900);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.alert-link {
    color: #856404;
    font-weight: 500;
    text-decoration: underline;
}

.alert-link:hover {
    color: var(--black);
}

/* Section Common Styles */
section {
    padding: 50px 0;
}

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

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-top: 0.5rem;
}

.view-all {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.view-all:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Card Common Styles */
.card-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    aspect-ratio: 4 / 3;

}

.samll-image {
    margin: auto;
    margin-top: -20px;
}

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

.samll-image img {
    width: 90%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 10px;
    margin: auto;
}

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

.card-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 2;
}

.card-category-pos {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--danger-color);
    color: white;
    padding: 10px 10px;
    border-radius: 20px 0px 20px 0px;
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 2;
}

.card-content {
    padding: 1.5rem;
}

.card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.read-time {
    display: flex;
    align-items: center;
    gap: 5px;
}

.card-featured {
    background-color: var(--warning-color);
    color: var(--gray-900);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    color: var(--gray-900);
}

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

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

.card-excerpt {
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
}

.author {
    font-weight: 500;
    color: var(--gray-800);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
}

.pagination-btn {
    padding: 10px 20px;
    border-radius: var(--border-radius);
    background-color: var(--gray-100);
    color: var(--gray-700);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.pagination-btn:hover {
    background-color: var(--gray-200);
    color: var(--gray-900);
}

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

.pagination-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius);
    background-color: var(--gray-100);
    color: var(--gray-700);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.pagination-number:hover {
    background-color: var(--gray-200);
    color: var(--gray-900);
}

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

.pagination-ellipsis {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--gray-500);
}

/* Newsletter Section */
.newsletter-section {
    background-color: var(--gray-100);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.newsletter-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.newsletter-text {
    flex: 1;
}

.newsletter-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.newsletter-description {
    font-size: 1.1rem;
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.newsletter-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-700);
}

.feature svg {
    color: var(--success-color);
}

.newsletter-form {
    flex: 0 0 400px;
}

.subscription-form {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

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

.form-group input[type="email"],
.form-group input[type="text"] {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input[type="email"]:focus,
.form-group input[type="text"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 4px;
}

.checkbox-group label {
    font-size: 0.9rem;
    color: var(--gray-700);
    line-height: 1.5;
}

.checkbox-group a {
    color: var(--primary-color);
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background-color: var(--primary-dark);
}

.form-note {
    font-size: 0.85rem;
    color: var(--gray-600);
    text-align: center;
    margin-top: 1rem;
}

/* Footer */
.site-footer {
    background-color: var(--gray-900);
    color: var(--gray-300);
}

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

.footer-column:first-child {
    grid-column: span 1;
}

.footer-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-description {
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--gray-800);
    color: var(--gray-300);
    transition: var(--transition);
}

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

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.5rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--gray-500);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-text {
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-text.small {
    font-size: 0.85rem;
}

.footer-form {
    position: relative;
}

.footer-form input[type="email"] {
    width: 100%;
    padding: 12px 50px 12px 16px;
    border: 1px solid var(--gray-700);
    border-radius: 50px;
    background-color: var(--gray-800);
    color: var(--gray-300);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-form input[type="email"]:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-footer-submit {
    position: absolute;
    top: 50%;
    right: 6px;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.btn-footer-submit:hover {
    background-color: var(--primary-dark);
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding: 25px 0;
}

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

.copyright {
    color: var(--gray-500);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: var(--gray-500);
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
}

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

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    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, 123, 255, 0.3);
}

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

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

/* ============================================
   HOME PAGE SPECIFIC STYLES
   ============================================ */
/* Featured Section */
.featured-section {
    padding-top: 120px;
}

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

.featured-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

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

.featured-large {
    grid-row: span 2;
}

.featured-large .card-image {
    height: 350px;
}

.featured-large .card-title {
    font-size: 1.75rem;
}

/* Categories Section */
.categories-section {
    background-color: var(--gray-100);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.category-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

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

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

.category-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.category-desc {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.category-link {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.category-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Latest News Section */
.latest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.news-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

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

.section-filter {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.filter-dropdown {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.filter-select {
    padding: 8px 16px;
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius);
    background-color: var(--white);
    color: var(--gray-700);
    font-size: 0.95rem;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9L12 15L18 9' stroke='%23495057' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Special Reports Section */
.special-section {
    background-color: var(--gray-100);
}

.special-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.special-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

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

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

.special-label {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.special-card-title {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

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

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

.special-card-excerpt {
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.special-card-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: var(--gray-600);
    font-size: 0.9rem;
}

.special-card-image {
    height: 100%;
}

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

/* ============================================
   LIST PAGE SPECIFIC STYLES
   ============================================ */
/* Breadcrumb */
.breadcrumb {
    background-color: var(--gray-100);
    padding: 1.5rem 0;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--gray-200);
    margin-top: var(--header-height);
}

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

.breadcrumb-item {
    display: flex;
    align-items: center;
    color: var(--gray-600);
    font-size: 0.9rem;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-item a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.breadcrumb-separator {
    margin: 0 0.5rem;
    color: var(--gray-400);
}

.breadcrumb-current {
    color: var(--gray-800);
    font-weight: 500;
}

/* Category Header */
.category-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.category-title {
    font-size: 2.5rem;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.category-description {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 800px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
}

.category-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: var(--gray-600);
    font-size: 0.9rem;
}

.category-count {
    background-color: var(--gray-200);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-weight: 500;
}

/* List Container */
.list-container {
    display: grid;
    grid-template-columns: 70% 30%;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.sidebar {

    flex-shrink: 0;
}

/* List Card Variants */
.list-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    margin-bottom: 2rem;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

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

.list-card.horizontal {
    display: flex;
}

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

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

.list-card.horizontal .card-content {
    width: 60%;
    padding: 1.5rem;
}

.list-card.vertical {
    display: block;
}

.list-card.vertical .card-image {
    width: 100%;
    height: 200px;
}

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

.list-card.vertical .card-content {
    padding: 1.5rem;
}

/* Sidebar Widgets */
.sidebar-widget {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--gray-200);
}

.widget-title {
    font-size: 1.2rem;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-color);
    font-weight: 600;
}

.recommended-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recommended-item {
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-200);
}

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

.recommended-item a {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--gray-900);
    transition: color 0.2s;
}

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

.recommended-number {
    background-color: var(--gray-100);
    color: var(--primary-color);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.recommended-content h4 {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.recommended-meta {
    font-size: 0.8rem;
    color: var(--gray-600);
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    display: inline-block;
    background-color: var(--gray-100);
    color: var(--gray-700);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

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

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

/* List Filters */
.list-filters {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--gray-200);
}

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

.filter-title {
    font-size: 1.2rem;
    color: var(--gray-900);
    font-weight: 600;
}

.filter-reset {
    color: var(--gray-600);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s;
}

.filter-reset:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

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

.filter-label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--gray-700);
}

.filter-select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gray-400);
    border-radius: 8px;
    background-color: var(--white);
    font-size: 0.95rem;
    color: var(--gray-700);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9L12 15L18 9' stroke='%23495057' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px;
    cursor: pointer;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.filter-option {
    display: inline-block;
    background-color: var(--gray-100);
    color: var(--gray-700);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.filter-option:hover {
    background-color: var(--gray-200);
}

.filter-option.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* ============================================
   DETAIL PAGE SPECIFIC STYLES
   ============================================ */
/* Detail Container */
.detail-container {
    display: grid;
    grid-template-columns: 70% 30%;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Article Header */
.article-header {
    margin-bottom: 2.5rem;
}

.article-category {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-decoration: none;
}

.article-title {
    font-size: 2.5rem;
    line-height: 1.2;
    color: var(--gray-900);
    margin-bottom: 1rem;
    font-weight: 700;
}

.article-subtitle {
    font-size: 1.2rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.article-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 2rem;
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--gray-200);
}

.author-details h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--gray-900);
}

.author-bio {
    font-size: 0.85rem;
    color: var(--gray-600);
}

.article-stats {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
    font-size: 0.9rem;
}

/* Article Content */
.article-featured-image {
    width: 100%;
    height: 400px;
    margin-bottom: 2rem;
    border-radius: 12px;
    overflow: hidden;
}

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

.image-caption {
    text-align: center;
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-top: 0.5rem;
    font-style: italic;
}

.article-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-800);
}

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

.article-content h2 {
    font-size: 1.75rem;
    margin: 2.5rem 0 1rem;
    color: var(--gray-900);
    font-weight: 600;
}

.article-content h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--gray-900);
    font-weight: 600;
}

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

.article-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--gray-700);
    font-size: 1.25rem;
}

.article-content ul,
.article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.article-content li {
    margin-bottom: 0.5rem;
}

.article-content figure {
    margin: 2rem 0;
}

.article-content figure img {
    width: 100%;
    border-radius: 8px;
}

.article-content figcaption {
    text-align: center;
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-top: 0.5rem;
    font-style: italic;
}

/* Article Footer */
.article-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

.article-tags {
    margin-bottom: 2rem;
}

.tags-title {
    font-size: 1rem;
    color: var(--gray-700);
    margin-bottom: 1rem;
    font-weight: 500;
}

.article-share {
    margin-bottom: 3rem;
}

.share-title {
    font-size: 1rem;
    color: var(--gray-700);
    margin-bottom: 1rem;
    font-weight: 500;
}

.share-buttons {
    display: flex;
    gap: 0.75rem;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--gray-100);
    color: var(--gray-700);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    cursor: pointer;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

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

.share-btn.facebook:hover {
    background-color: #4267B2;
    color: white;
    border-color: #4267B2;
}

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

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

.share-btn.link:hover {
    background-color: var(--gray-600);
    color: white;
    border-color: var(--gray-600);
}

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

.section-title {
    font-size: 1.5rem;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.comments-count {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.comment-form {
    background-color: var(--gray-100);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2.5rem;
    border: 1px solid var(--gray-200);
}

.form-title {
    font-size: 1.2rem;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--gray-700);
    font-weight: 500;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gray-400);
    border-radius: 8px;
    font-size: 1rem;
    color: var(--gray-700);
    transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

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

.form-row {
    display: flex;
    gap: 1rem;
}

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

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.form-checkbox input {
    margin-top: 0.25rem;
}

.form-checkbox label {
    font-size: 0.9rem;
    color: var(--gray-700);
}

.form-checkbox a {
    color: var(--primary-color);
    text-decoration: none;
}

.form-checkbox a:hover {
    text-decoration: underline;
}

.comments-list {
    margin-top: 2rem;
}

.comment {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--gray-200);
}

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

.comment-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.comment-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--gray-200);
    margin-right: 1rem;
}

.comment-author {
    font-weight: 500;
    color: var(--gray-900);
}

.comment-date {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-top: 0.25rem;
}

.comment-content {
    color: var(--gray-700);
    line-height: 1.6;
}

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

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

.related-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

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

.related-card .card-image {
    width: 100%;
    height: 180px;
}

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

.related-card .card-content {
    padding: 1.25rem;
}

.related-card .card-category {
    display: inline-block;
    background-color: var(--gray-100);
    color: var(--gray-700);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.related-card .card-title {
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.related-card .card-title a {
    color: var(--gray-900);
    text-decoration: none;
    transition: color 0.2s;
}

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

.related-card .card-meta {
    font-size: 0.85rem;
    color: var(--gray-600);
}

/* Author Bio Sidebar */
.author-bio-sidebar {
    text-align: center;
}

.author-bio-sidebar .author-avatar {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.author-bio-sidebar h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.author-bio-sidebar p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.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;
    margin-bottom: 16px;
    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;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }

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

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

    .featured-large {
        grid-column: span 2;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }

    .list-container,
    .detail-container {
        flex-direction: column;
        gap: 2rem;
    }

    .sidebar {
        width: 100%;
    }

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

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

    .featured-large {
        grid-column: span 1;
    }

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

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

    .newsletter-content {
        flex-direction: column;
        gap: 2rem;
    }

    .newsletter-form {
        flex: 0 0 100%;
        width: 100%;
    }

    .list-card.horizontal {
        flex-direction: column;
    }

    .list-card.horizontal .card-image {
        width: 100%;
        height: 200px;
    }

    .list-card.horizontal .card-content {
        width: 100%;
    }

    .special-card {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .article-stats{
        gap: 0.5rem;
    }
    .site-header {
        position: absolute;
        height: auto;
    }

    .header-content {
        height: auto;
    }

    .featured-section {
        padding-top: 60px;
    }

    .container {
        max-width: 540px;
    }

    .hamburger-menu {
        display: flex;
    }

    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        padding: 80px 2rem 2rem;
        gap: 0;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1001;
        overflow-y: auto;
        display: none;
    }

    .nav-list.active {
        right: 0;
        display: block;
    }

    .nav-list li {
        width: 100%;
        border-bottom: 1px solid var(--gray-200);
    }

    .nav-list a {
        display: block;
        padding: 15px 0;
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0;
        margin-left: 1rem;
        margin-top: 0;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .breadcrumb {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .category-header {
        margin-bottom: 20px;
    }

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

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

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

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

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

    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .article-featured-image {
        height: 300px;
    }

    .list-container,
    .detail-container {
        grid-template-columns: 100%;
    }

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

    .article-header {
        margin-bottom: 0;
    }

    .comments-section {
        margin-bottom: 0;
        padding-bottom: 0;
    }

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

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

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

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

    .pagination {
        display: block;
        overflow: hidden;
    }

    .pagination a {
        float: left;
        margin: 5px;
    }
}

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

    .logo {
        font-size: 1.5rem;
    }

    .tagline {
        font-size: 0.75rem;
    }

    .header-cta {
        gap: 0.5rem;
    }

    .btn-subscribe {
        padding: 6px 16px;
        font-size: 0.9rem;
    }

    .search-toggle {
        width: 36px;
        height: 36px;
    }

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

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

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

    .article-featured-image {
        height: 250px;
    }

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

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

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

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

    .comment-form {
        padding: 1.5rem;
    }

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

    .special-card-content {
        padding: 1.5rem;
    }

    .special-card-title {
        font-size: 1.5rem;
    }

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

/* Print Styles */
@media print {

    .site-header,
    .alert-bar,
    .newsletter-section,
    .site-footer,
    .back-to-top,
    .hamburger-menu,
    .header-cta,
    .share-buttons,
    .comment-form {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
        color: #000;
        background: #fff;
    }

    .container {
        max-width: 100%;
        padding: 0;
    }

    .article-content {
        font-size: 12pt;
    }

    a {
        color: #000;
        text-decoration: underline;
    }

    a[href^="http"]:after {
        content: " (" attr(href) ")";
        font-size: 10pt;
    }

    .breadcrumb {
        margin-top: 0;
    }

    .detail-container {
        display: block;
    }

    .sidebar {
        display: none;
    }
}