@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..800;1,400..800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');
:root {
    --bg: #090d16;
    --text: #f1f5f9;
    --surface: #111827;
    --border: #1f2937;
    --muted: #94a3b8;
    --primary: #4338ca;
    --primary-dark: #312e81;
    --primary-light: #e0e7ff;
    --accent: #4f46e5;
    --hero-gradient: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #4338ca 100%);
    --heading-color: #ffffff;
    --accent-color: var(--primary-light);
    --logo-color: var(--primary-light);
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Plus Jakarta Sans', sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
}
a { text-decoration: none; color: inherit; transition: all 0.2s ease; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

header {
    
            background: rgba(9, 13, 22, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 100;
        
}
.header-inner { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; }
.logo-wrap { display: flex; align-items: center; gap: 8px; }
.logo-img { height: 38px; width: auto; object-fit: contain; }
.logo-text {
    font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 800; letter-spacing: -0.5px;
    color: var(--logo-color);
}
nav ul { list-style: none; display: flex; gap: 8px; }
nav a {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 6px 12px;
    border: 1px solid transparent;
    border-radius: 6px;
}
nav a:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.hero {
    padding: 70px 0;
    background: var(--hero-gradient);
    color: #ffffff;
    text-align: center;
    border-radius: 16px;
    margin: 20px auto;
    max-width: 1140px;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
}
.hero h1 { font-family: 'Playfair Display', serif; font-size: 2.75rem; font-weight: 800; margin-bottom: 12px; color: #ffffff; }
.hero p { font-size: 1.1rem; opacity: 0.9; max-width: 600px; margin: 0 auto 20px; color: #ffffff; }
.btn-hero {
    display: inline-block;
    background: #ffffff;
    color: #312e81;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 6px;
    font-size: 0.9rem;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    border: none;
}
.btn-hero:hover { background: #e0e7ff; color: #312e81; transform: translateY(-1px); }

main { padding: 40px 0; }
.section-title { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 800; margin-bottom: 6px; text-transform: uppercase; color: var(--heading-color); }
.section-sub { color: var(--muted); margin-bottom: 20px; font-size: 0.9rem; }
.section-divider { width: 45px; height: 4px; background: var(--primary); margin-bottom: 25px; border-radius: 2px; }

.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.card {
    
            border: 1px solid var(--border);
            border-radius: 6px;
            background: var(--surface);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.card:hover {
    
            border-color: var(--primary);
            box-shadow: 0 0 20px rgba(16, 185, 129, 0.15);
            transform: translateY(-2px);
        
}
.card-thumb { aspect-ratio: 16/9; background: #f1f5f9; overflow: hidden; position: relative; }
.card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.card:hover .card-thumb img { transform: scale(1.05); }
.card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.card-category { font-family: 'Playfair Display', serif; font-size: 0.7rem; font-weight: 700; color: var(--accent-color); text-transform: uppercase; margin-bottom: 8px; }
.card-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; line-height: 1.4; margin-bottom: 12px; }
.card-desc { font-size: 0.85rem; color: var(--muted); margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.card-footer { margin-top: auto; padding-top: 12px; border-top: 1px solid var(--border); font-size: 0.75rem; color: var(--muted); display: flex; gap: 8px; }

.article-wrap { background: var(--surface); border: 1px solid var(--border); padding: 35px; max-width: 820px; margin: 0 auto; border-radius: 12px; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05); }
.breadcrumb { font-size: 0.8rem; color: var(--muted); margin-bottom: 15px; }
.article-title { font-family: 'Playfair Display', serif; font-size: 2.1rem; font-weight: 800; line-height: 1.3; margin-bottom: 15px; color: var(--heading-color); }
.article-meta { display: flex; align-items: center; gap: 12px; font-size: 0.8rem; color: var(--muted); margin-bottom: 25px; border-bottom: 1px solid var(--border); padding-bottom: 15px; }
.meta-author-img { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; }
.sapo { font-size: 1.05rem; font-weight: 500; color: #111827 !important; background: var(--primary-light); border-left: 4px solid var(--primary); padding: 15px; margin-bottom: 25px; border-radius: 0 8px 8px 0; }
.toc { background: var(--bg); border: 1px solid var(--border); padding: 15px; margin: 25px 0; border-radius: 8px; }
.toc-title { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 0.9rem; margin-bottom: 8px; text-transform: uppercase; color: var(--heading-color); }
.toc ol { padding-left: 18px; }
.toc li { margin: 4px 0; font-size: 0.85rem; }

.article-content h2 { font-family: 'Playfair Display', serif; font-size: 1.45rem; font-weight: 700; margin: 35px 0 15px; color: var(--heading-color); border-bottom: 1px solid var(--border); padding-bottom: 6px; }
.article-content h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; margin: 25px 0 10px; }
.article-content p { margin-bottom: 16px; font-size: 0.95rem; color: var(--text); opacity: 0.9; }
.article-content ul, .article-content ol { margin: 15px 0 15px 20px; }
.article-content li { margin: 6px 0; font-size: 0.95rem; }
.article-content a {
    color: var(--primary-dark);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
    background-color: var(--primary-light);
    padding: 2px 6px;
    border-radius: 4px;
    transition: all 0.2s ease;
}
.article-content a:hover {
    background-color: var(--primary);
    color: #ffffff;
    text-decoration: none;
}
.article-img { width: 100%; height: auto; border-radius: 8px; margin: 25px 0; }
.silo-link { margin: 20px 0; padding: 12px 16px; background-color: var(--primary-light); border-left: 4px solid var(--primary); border-radius: 0 6px 6px 0; font-size: 0.95rem; color: #111827 !important; }
.silo-link a { color: var(--primary-dark) !important; font-weight: 600; text-decoration: underline; }
.silo-link a:hover { color: var(--primary) !important; }
.warning-box { color: #111827 !important; }

.author-box { margin-top: 40px; padding: 20px; background: var(--bg); border: 1px solid var(--border); display: flex; gap: 16px; border-radius: 8px; }
.author-box img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; }
.author-name { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1rem; }
.author-title { font-size: 0.8rem; color: var(--accent-color); font-weight: 600; margin-bottom: 6px; }
.author-bio { font-size: 0.85rem; color: var(--muted); }

.related { margin-top: 40px; padding-top: 25px; border-top: 1px solid var(--border); }
.related h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 15px; }
.related ul { list-style: none; }
.related li { padding: 8px 0; border-bottom: 1px dotted var(--border); display: flex; align-items: center; gap: 6px; }
.related a { font-weight: 600; font-size: 0.9rem; }
.related a:hover { color: var(--primary); }

.legal-wrap { background: var(--surface); border: 1px solid var(--border); padding: 35px; max-width: 820px; margin: 0 auto; border-radius: 12px; }
.legal-wrap h1 { font-family: 'Playfair Display', serif; font-size: 2.1rem; font-weight: 800; margin-bottom: 20px; border-bottom: 2px solid var(--primary); padding-bottom: 10px; color: var(--heading-color); }
.legal-wrap h2 { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; margin: 25px 0 10px; }
.legal-wrap p { margin-bottom: 16px; font-size: 0.95rem; }

footer { background: #0f172a; color: #94a3b8; padding: 45px 0 20px; margin-top: 60px; border-top: 4px solid var(--primary); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 30px; margin-bottom: 30px; }
.footer-brand p { margin-top: 10px; font-size: 0.8rem; }
.footer-logo { height: 32px; }
.footer-logo-text { font-family: 'Playfair Display', serif; font-size: 1.10rem; font-weight: 700; color: #ffffff; }
.footer-col .footer-col-title { display: block; color: #ffffff; font-weight: 700; margin-bottom: 12px; font-size: 0.85rem; text-transform: uppercase; font-family: 'Playfair Display', serif; }
.footer-col ul { list-style: none; }
.footer-col li { margin: 6px 0; }
.footer-col a { color: #94a3b8; font-size: 0.8rem; }
.footer-col a:hover { color: #ffffff; text-decoration: underline; }
.footer-bottom { border-top: 1px solid #1e293b; padding-top: 15px; text-align: center; font-size: 0.75rem; color: #64748b; }

.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    border: 1px solid var(--border);
}
.data-table th {
    background: var(--primary-light);
    color: var(--primary-dark);
    font-weight: 700;
    padding: 12px;
    border-bottom: 2px solid var(--border);
    text-align: left;
}
.data-table td {
    padding: 12px;
    border-bottom: 1px solid var(--border);
}

@media(max-width: 768px) {
    .grid { grid-template-columns: 1fr; }
    .article-wrap, .legal-wrap { padding: 20px; }
    .footer-grid { grid-template-columns: 1fr; gap: 20px; }
    .hero h1 { font-size: 2rem; }
}

/* Custom Hague Newspaper Styles */
.hague-top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0 15px 0;
    position: relative;
}
.hague-top-header-left {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--muted);
    font-size: 0.9rem;
}
.hague-top-header-left svg {
    cursor: pointer;
    transition: color 0.2s;
}
.hague-top-header-left svg:hover {
    color: var(--primary);
}
.hague-logo-wrap {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
}
.hague-logo-img {
    height: 35px;
    width: auto;
    object-fit: contain;
}
.hague-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: var(--logo-color);
}
.hague-top-header-right .btn-subscribe {
    background: var(--primary);
    color: #ffffff;
    padding: 8px 22px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    transition: opacity 0.2s;
    display: inline-block;
}
.hague-top-header-right .btn-subscribe:hover {
    opacity: 0.9;
}

.hague-navbar {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 40px;
    padding: 12px 0;
}
.hague-navbar-inner {
    display: flex;
    justify-content: center;
}
.hague-navbar nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    justify-content: center;
}
.hague-navbar nav a {
    font-family: 'Playfair Display', serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text);
    padding: 5px 0;
}
.hague-navbar nav a:hover {
    color: var(--primary);
}

/* Hero Layout */
.hague-hero-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
}
.hague-hero-left {
    width: 23%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.hague-hero-center {
    width: 54%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    padding: 0 30px;
}
.hague-hero-right {
    width: 23%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Hero Left Cards */
.hague-card-left {
    display: flex;
    flex-direction: column;
}
.hague-card-left-img {
    aspect-ratio: 16/10;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 12px;
}
.hague-card-left-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.hague-card-left:hover img {
    transform: scale(1.02);
}
.hague-card-left-cat {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 6px;
    font-family: 'Playfair Display', serif;
}
.hague-card-left-title {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 6px;
    color: var(--heading-color);
}
.hague-card-left-meta {
    font-size: 0.7rem;
    color: var(--muted);
}

/* Hero Center Card */
.hague-card-center-img {
    aspect-ratio: 16/10;
    overflow: hidden;
    border-radius: 6px;
    margin-bottom: 20px;
    width: 100%;
}
.hague-card-center-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.hague-hero-center:hover img {
    transform: scale(1.02);
}
.hague-card-center-cat {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    font-family: 'Playfair Display', serif;
}
.hague-card-center-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 12px;
    color: var(--heading-color);
}
.hague-card-center-desc {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 15px;
    max-width: 500px;
}
.hague-card-center-meta {
    font-size: 0.75rem;
    color: var(--muted);
}

/* Hero Right Column (LATEST) */
.hague-latest-title {
    font-family: 'Playfair Display', serif;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 6px;
    margin-bottom: 15px;
    color: var(--heading-color);
}
.hague-latest-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.hague-latest-item {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px dotted var(--border);
}
.hague-latest-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.hague-latest-content {
    flex: 1;
}
.hague-latest-item-title {
    font-family: 'Playfair Display', serif;
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 4px;
    color: var(--heading-color);
}
.hague-latest-item-meta {
    font-size: 0.7rem;
    color: var(--muted);
}
.hague-latest-thumb {
    width: 65px;
    height: 48px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 3px;
}
.hague-latest-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Section Headers */
.hague-sec-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 1px solid var(--border);
    padding-bottom: 8px;
    margin: 50px 0 25px 0;
}
.hague-sec-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--heading-color);
    position: relative;
}
.hague-sec-title::after {
    content: '';
    position: absolute;
    bottom: -9px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}
.hague-sec-viewall {
    font-family: 'Playfair Display', serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
}

/* 4 Column Grid */
.hague-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.hague-card-grid {
    display: flex;
    flex-direction: column;
}
.hague-card-grid-img {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 12px;
}
.hague-card-grid-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.hague-card-grid:hover img {
    transform: scale(1.02);
}
.hague-card-grid-cat {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 6px;
    font-family: 'Playfair Display', serif;
}
.hague-card-grid-title {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 6px;
    color: var(--heading-color);
}
.hague-card-grid-meta {
    font-size: 0.7rem;
    color: var(--muted);
    margin-bottom: 8px;
}
.hague-card-grid-desc {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.5;
}

/* Politics Split Section */
.hague-bottom-split {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    margin-top: 50px;
    border-top: 1px solid var(--border);
    padding-top: 40px;
}
.hague-split-left {
    display: flex;
    flex-direction: column;
}
.hague-split-left-img {
    aspect-ratio: 16/10;
    overflow: hidden;
    border-radius: 6px;
    margin-bottom: 18px;
}
.hague-split-left-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.hague-split-left:hover img {
    transform: scale(1.02);
}
.hague-split-left-cat {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}
.hague-split-left-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 10px;
    color: var(--heading-color);
}
.hague-split-left-desc {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 12px;
}
.hague-split-left-meta {
    font-size: 0.75rem;
    color: var(--muted);
    margin-bottom: 12px;
}
.hague-author-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}
.hague-author-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}
.hague-author-name {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text);
}

/* Right side of politics section (2x2 grid) */
.hague-grid-2x2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Responsive Hague Newspaper Layout */
@media (max-width: 992px) {
    .hague-top-header {
        flex-direction: column;
        gap: 15px;
        padding-bottom: 20px;
    }
    .hague-logo-wrap {
        position: static;
        transform: none;
        order: 1;
    }
    .hague-top-header-left {
        order: 2;
    }
    .hague-top-header-right {
        order: 3;
    }
    .hague-hero-grid {
        flex-direction: column;
    }
    .hague-hero-left, .hague-hero-center, .hague-hero-right {
        width: 100%;
        border: none;
        padding: 0;
    }
    .hague-bottom-split {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .hague-grid-4 {
        grid-template-columns: 1fr 1fr;
    }
    .hague-grid-2x2 {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 480px) {
    .hague-grid-4 {
        grid-template-columns: 1fr;
    }
}
