:root {
    --primary:   #0f172a;
    --secondary: #1e293b;
    --accent:    #6366f1;
    --accent-hover: #4f46e5;
    --text:      #0f172a;
    --text-light:#64748b;
    --bg:        #f8fafc;
    --white:     #ffffff;
    --border:    #e2e8f0;
    --surface:   #f1f5f9;
    --radius:    12px;
    --shadow:    0 1px 3px 0 rgba(0,0,0,0.1), 0 1px 2px -1px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
}

* { margin:0; padding:0; box-sizing:border-box; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ═══════════════════════════════════════════════════════════
   HEADER - Modern sticky header with logo and navigation
   ═══════════════════════════════════════════════════════════ */
header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
    border-bottom: 1px solid var(--border);
}

.container { 
    max-width: 1280px; 
    margin: 0 auto; 
    padding: 0 1.5rem; 
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

.logo svg {
    color: var(--accent);
    flex-shrink: 0;
}

.main-nav {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all 0.15s;
}

.nav-item:hover {
    background: var(--surface);
    color: var(--text);
}

.nav-item.active {
    background: var(--accent);
    color: var(--white);
}

.nav-item svg {
    width: 18px;
    height: 18px;
}

/* ═══════════════════════════════════════════════════════════
   CATEGORY BAR - Horizontal scrolling pills
   ═══════════════════════════════════════════════════════════ */
.category-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 0;
    position: sticky;
    top: 73px;
    z-index: 90;
}

.category-pills {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.category-pills::-webkit-scrollbar {
    display: none;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    background: var(--surface);
    border-radius: 20px;
    text-decoration: none;
    color: var(--text);
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.15s;
    border: 1px solid transparent;
}

.pill:hover {
    background: var(--white);
    border-color: var(--border);
}

.pill.active {
    background: var(--accent);
    color: var(--white);
}

.pill-count {
    background: rgba(0,0,0,0.1);
    padding: 0.125rem 0.5rem;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 600;
}

.pill.active .pill-count {
    background: rgba(255,255,255,0.2);
}

/* ═══════════════════════════════════════════════════════════
   MAIN CONTENT
   ═══════════════════════════════════════════════════════════ */
main {
    padding: 2rem 0 4rem;
    min-height: calc(100vh - 300px);
}

/* ═══════════════════════════════════════════════════════════
   FEATURED ARTICLE - Large hero section
   ═══════════════════════════════════════════════════════════ */
.featured-article {
    margin-bottom: 3rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.featured-image {
    position: relative;
    display: block;
    height: 500px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-article:hover .featured-image img {
    transform: scale(1.05);
}

.featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 2.5rem 2.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 60%, transparent 100%);
    color: var(--white);
}

.featured-badges {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.badge-featured {
    background: var(--accent);
    color: var(--white);
    padding: 0.375rem 0.875rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-country {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 0.375rem 0.875rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

.featured-overlay h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.featured-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9375rem;
    opacity: 0.9;
}

.featured-meta .trending {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: #fbbf24;
}

/* ═══════════════════════════════════════════════════════════
   ARTICLES SECTION
   ═══════════════════════════════════════════════════════════ */
.articles-section {
    margin-bottom: 3rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.article-count {
    color: var(--text-light);
    font-size: 0.9375rem;
    font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════
   ARTICLE GRID - Masonry-style layout
   ═══════════════════════════════════════════════════════════ */
.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.article-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--surface);
    display: block;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.article-card:hover .card-image img {
    transform: scale(1.08);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.article-card:hover .image-overlay {
    opacity: 1;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--surface) 0%, var(--border) 100%);
    color: var(--text-light);
}

.card-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: var(--accent);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.025em;
    backdrop-filter: blur(10px);
}

.card-content {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.card-content h3 a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.15s;
}

.card-content h3 a:hover {
    color: var(--accent);
}

.card-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.meta-trending {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #f59e0b;
    font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════
   PAGINATION - Modern button style
   ═══════════════════════════════════════════════════════════ */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all 0.15s;
}

.pagination-btn:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.pagination-numbers {
    display: flex;
    gap: 0.25rem;
}

.pagination-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all 0.15s;
}

.pagination-number:hover {
    background: var(--surface);
    border-color: var(--accent);
}

.pagination-number.active {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

/* ═══════════════════════════════════════════════════════════
   EMPTY STATE
   ═══════════════════════════════════════════════════════════ */
.empty-state {
    text-align: center;
    padding: 5rem 2rem;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--border);
}

.empty-state svg {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.empty-state h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.empty-state p {
    color: var(--text-light);
    font-size: 1rem;
}

/* ═══════════════════════════════════════════════════════════
   ARTICLE SINGLE PAGE
   ═══════════════════════════════════════════════════════════ */
.article-single {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 12px;
    padding: 2rem 2.5rem 2.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.article-single h1 {
    font-size: 1.875rem;
    line-height: 1.3;
    margin-bottom: 0.875rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.article-single .article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.country-badge {
    background: var(--accent);
    color: var(--white);
    padding: 0.25rem 0.625rem;
    border-radius: 5px;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.trend-badge {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: #fef3c7;
    color: #92400e;
    padding: 0.25rem 0.625rem;
    border-radius: 5px;
    font-size: 0.6875rem;
    font-weight: 600;
}

.article-single img.featured {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    max-height: 420px;
    object-fit: cover;
    box-shadow: var(--shadow-md);
}

.image-credit {
    font-size: 0.8125rem;
    color: var(--text-light);
    text-align: right;
    margin-top: -0.75rem;
    margin-bottom: 1.5rem;
}

.article-content {
    font-size: 1.0625rem;
    line-height: 1.7;
}

.article-content h2 {
    font-size: 1.5rem;
    margin: 2rem 0 0.875rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.article-content h3 {
    font-size: 1.25rem;
    margin: 1.75rem 0 0.75rem;
    font-weight: 600;
}

.article-content p {
    margin-bottom: 1.25rem;
}

.article-content ul, .article-content ol {
    margin: 0.875rem 0 1.25rem 1.5rem;
}

.article-content li {
    margin-bottom: 0.5rem;
}

/* Share bar */
.share-bar {
    display: flex;
    gap: 0.875rem;
    margin: 3rem 0 0;
    padding-top: 2rem;
    border-top: 2px solid var(--border);
    flex-wrap: wrap;
    align-items: center;
}

.share-bar span {
    font-weight: 600;
    font-size: 0.9375rem;
}

.share-btn {
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.15s;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.share-btn.twitter  { background: #000000; }
.share-btn.facebook { background: #1877f2; }
.share-btn.whatsapp { background: #25d366; }

/* Related section */
.related-section {
    margin-top: 4rem;
}

.related-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
footer {
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 3rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.footer-brand {
    flex: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.footer-logo svg {
    color: var(--accent);
}

.footer-desc {
    color: var(--text-light);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color 0.15s;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .header-content {
        padding: 0.875rem 0;
    }
    
    .logo {
        font-size: 1.125rem;
    }
    
    .logo svg {
        width: 28px;
        height: 28px;
    }
    
    .main-nav {
        gap: 0.375rem;
        overflow-x: auto;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }
    
    .main-nav::-webkit-scrollbar {
        display: none;
    }
    
    .nav-item {
        padding: 0.5rem 0.875rem;
        font-size: 0.875rem;
        white-space: nowrap;
    }
    
    .nav-item svg {
        width: 16px;
        height: 16px;
    }
    
    .category-bar {
        top: 65px;
        padding: 0.625rem 0;
    }
    
    .pill {
        padding: 0.4375rem 0.875rem;
        font-size: 0.8125rem;
    }
    
    .featured-image {
        height: 350px;
    }
    
    .featured-overlay {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .featured-overlay h2 {
        font-size: 1.75rem;
    }
    
    .article-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .pagination {
        flex-wrap: wrap;
    }
    
    .pagination-btn {
        flex: 1;
        min-width: 120px;
        justify-content: center;
        font-size: 0.875rem;
        padding: 0.625rem 1rem;
    }
    
    .pagination-numbers {
        order: 3;
        width: 100%;
        justify-content: center;
    }
    
    .pagination-number {
        width: 36px;
        height: 36px;
        font-size: 0.875rem;
    }
}


/* ═══════════════════════════════════════════════════════════
   BREADCRUMB NAVIGATION
   ═══════════════════════════════════════════════════════════ */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 0.875rem 0;
    font-size: 0.8125rem;
    color: var(--text-light);
    overflow-x: auto;
    scrollbar-width: none;
}

.breadcrumb::-webkit-scrollbar {
    display: none;
}

.breadcrumb a {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.15s;
    white-space: nowrap;
}

.breadcrumb a:hover {
    color: var(--accent);
}

.breadcrumb svg {
    flex-shrink: 0;
}

.breadcrumb span {
    color: var(--text);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

/* ═══════════════════════════════════════════════════════════
   ARTICLE HERO - Image with title overlay (like Medium/Substack)
   ═══════════════════════════════════════════════════════════ */
.article-hero {
    margin-bottom: 2.5rem;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image.no-image {
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 3rem 2.5rem 2.5rem;
}

.hero-content {
    color: var(--white);
    max-width: 100%;
}

.hero-content .article-badges {
    display: flex;
    gap: 0.625rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.hero-content .country-badge {
    background: var(--accent);
    backdrop-filter: blur(10px);
}

.hero-content .trend-badge {
    background: rgba(251, 191, 36, 0.9);
    backdrop-filter: blur(10px);
    color: var(--white);
}

.hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9375rem;
    opacity: 0.95;
    flex-wrap: wrap;
}

.hero-meta time,
.hero-meta .image-source {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-meta svg {
    flex-shrink: 0;
}

/* Fallback for articles without images */
.article-header-simple {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    margin-bottom: 2.5rem;
}

.article-header-simple .article-badges {
    display: flex;
    gap: 0.625rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.article-header-simple h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--text);
}

.article-header-simple .article-meta-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.article-header-simple .article-meta-header time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9375rem;
}

/* ═══════════════════════════════════════════════════════════
   ARTICLE BODY - Content container
   ═══════════════════════════════════════════════════════════ */
.article-body {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 12px;
    padding: 2.5rem 3rem 3rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.article-content {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--text);
}

.article-content h2 {
    font-size: 1.75rem;
    margin: 2.5rem 0 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text);
}

.article-content h3 {
    font-size: 1.375rem;
    margin: 2rem 0 0.875rem;
    font-weight: 600;
    color: var(--text);
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content ul, .article-content ol {
    margin: 1rem 0 1.5rem 1.75rem;
}

.article-content li {
    margin-bottom: 0.625rem;
}

/* ═══════════════════════════════════════════════════════════
   ARTICLE FIGURE - Featured image with caption
   ═══════════════════════════════════════════════════════════ */
.article-figure {
    margin: 0 0 2.5rem;
}

.article-figure img.featured {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 1rem;
    max-height: 520px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

.article-figure figcaption {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
    padding: 0 0.5rem;
}

.article-figure figcaption svg {
    flex-shrink: 0;
    color: var(--accent);
}

/* ═══════════════════════════════════════════════════════════
   SHARE SECTION - Enhanced share buttons
   ═══════════════════════════════════════════════════════════ */
.share-section {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 2px solid var(--border);
}

.share-section h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--text);
}

.share-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--white);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow);
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.share-btn svg {
    width: 20px;
    height: 20px;
}

.share-btn.twitter {
    background: #000000;
}

.share-btn.twitter:hover {
    background: #1a1a1a;
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.facebook:hover {
    background: #0c63d4;
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn.whatsapp:hover {
    background: #1fb855;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE - Article page adjustments
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .breadcrumb {
        font-size: 0.75rem;
        padding: 0.625rem 0;
        margin-bottom: 1rem;
    }
    
    .breadcrumb span {
        max-width: 150px;
    }
    
    .hero-image {
        height: 400px;
        border-radius: 0;
    }
    
    .hero-overlay {
        padding: 2rem 1.25rem 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 1.625rem;
        line-height: 1.3;
    }
    
    .hero-meta {
        font-size: 0.8125rem;
        gap: 1rem;
    }
    
    .article-header-simple {
        border-radius: 0;
        padding: 1.5rem 1.25rem;
        box-shadow: none;
        border-left: none;
        border-right: none;
    }
    
    .article-header-simple h1 {
        font-size: 1.625rem;
    }
    
    .article-body {
        padding: 1.5rem 1.25rem 2rem;
        border-radius: 0;
        box-shadow: none;
        border-left: none;
        border-right: none;
    }
    
    .article-content {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .article-content h2 {
        font-size: 1.375rem;
        margin: 2rem 0 0.875rem;
    }
    
    .article-content h3 {
        font-size: 1.125rem;
        margin: 1.5rem 0 0.75rem;
    }
    
    .share-section {
        margin-top: 2.5rem;
        padding-top: 2rem;
    }
    
    .share-section h3 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .share-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .share-btn {
        justify-content: center;
        width: 100%;
        padding: 0.75rem 1.25rem;
        font-size: 0.9375rem;
    }
}
