/* ===== CSS Variables & Reset (#0F3A67 + #1A5694 Palette) ===== */
:root {
    --brand-nav: #0F3A67;
    --brand-nav-dark: #0A284A;
    --brand-card: #1A5694;
    --brand-card-hover: #236dbb;
    --brand-accent: #38bdf8;
    
    --bg-page: #f8fafc;
    --bg-surface: #ffffff;
    
    --text-dark: #0f172a;
    --text-body: #475569;
    --text-muted: #64748b;
    --text-light: #ffffff;
    --text-subtle: #dbeafe;
    
    --border-light: #e2e8f0;
    --border-card: rgba(255, 255, 255, 0.16);
    
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-card: 0 4px 20px rgba(15, 58, 103, 0.15), 0 1px 3px rgba(0, 0, 0, 0.04);
    --shadow-card-hover: 0 20px 35px -8px rgba(26, 86, 148, 0.25), 0 4px 12px rgba(0, 0, 0, 0.06);
    
    --radius: 12px;
    --radius-lg: 16px;
    --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-page);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 { font-family: 'Outfit', sans-serif; font-weight: 700; line-height: 1.3; color: var(--text-dark); }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== Navbar (#0F3A67) ===== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 12px 0;
    background: var(--brand-nav);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 20px rgba(15, 58, 103, 0.3);
    transition: var(--transition);
}
.navbar.scrolled {
    padding: 9px 0;
    background: var(--brand-nav-dark);
    box-shadow: 0 6px 25px rgba(10, 40, 74, 0.45);
}
.nav-container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 12px; font-family: 'Outfit', sans-serif; font-size: 1.35rem; font-weight: 700; color: #ffffff; transition: var(--transition); }
.nav-logo:hover { transform: scale(1.02); }
.nav-logo span { color: #ffffff; }
.nav-logo strong { color: #ffffff; }
.nav-menu { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-menu a { padding: 8px 18px; border-radius: 9999px; font-weight: 600; color: rgba(255, 255, 255, 0.85); font-size: 0.92rem; transition: var(--transition); }
.nav-menu a:hover { color: #ffffff; background: rgba(255, 255, 255, 0.15); }
.nav-menu a.active { color: var(--brand-nav); background: #ffffff; box-shadow: 0 2px 8px rgba(0,0,0,0.15); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; color: #ffffff; font-size: 1.8rem; padding: 5px; z-index: 1001; }
.nav-overlay { position: fixed; inset: 0; background: rgba(10, 40, 74, 0.6); backdrop-filter: blur(4px); z-index: 1004; opacity: 0; visibility: hidden; transition: var(--transition); }
.nav-overlay.active { opacity: 1; visibility: visible; }
.mobile-menu-header { display: none; justify-content: space-between; align-items: center; padding-bottom: 20px; margin-bottom: 10px; border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
.nav-close { background: rgba(255, 255, 255, 0.15); border: none; width: 34px; height: 34px; border-radius: 50%; color: #ffffff; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.nav-close:hover { background: #ef4444; color: #ffffff; }

/* ===== Breaking News Ticker ===== */
.ticker-section { padding-top: 88px; background: #ffffff; border-bottom: 1px solid var(--border-light); }
.ticker-wrapper { display: flex; align-items: center; gap: 16px; padding: 10px 0; font-size: 0.88rem; }
.ticker-badge { background: var(--brand-nav); color: #ffffff; font-weight: 700; font-size: 0.75rem; padding: 4px 12px; border-radius: 6px; display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.ticker-badge i { color: #facc15; }
.ticker-content { display: flex; align-items: center; gap: 20px; flex: 1; overflow: hidden; white-space: nowrap; }
.ticker-item { color: var(--text-body); font-weight: 500; display: inline-flex; align-items: center; gap: 6px; transition: var(--transition); }
.ticker-item:hover { color: var(--brand-card); }
.ticker-dot { color: var(--brand-card); font-size: 1.1rem; }
.ticker-date { color: var(--text-muted); font-size: 0.82rem; flex-shrink: 0; display: flex; align-items: center; gap: 6px; }

/* ===== Hero Mosaic Grid Section ===== */
.hero-grid-section { padding: 28px 0 16px; }
.hero-mosaic { display: flex; gap: 24px; min-height: 450px; }
.hero-main-card {
    flex: 1 1 64%; position: relative; border-radius: var(--radius-lg); overflow: hidden;
    background: var(--brand-nav); border: 1px solid var(--border-light);
    box-shadow: var(--shadow-card); display: flex; align-items: flex-end;
}
.hero-main-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.hero-main-card:hover img { transform: scale(1.035); }
.hero-gradient-overlay {
    position: relative; z-index: 2; width: 100%; padding: 34px 30px 28px;
    background: linear-gradient(to top, rgba(15, 58, 103, 0.96) 0%, rgba(15, 58, 103, 0.7) 50%, rgba(15, 58, 103, 0.08) 85%, transparent 100%);
}
.hero-pill { display: inline-block; padding: 4px 14px; border-radius: 9999px; font-size: 0.75rem; font-weight: 700; background: rgba(255, 255, 255, 0.22); color: #ffffff; border: 1px solid rgba(255, 255, 255, 0.35); margin-bottom: 10px; }
.hero-title { font-size: 1.9rem; color: #ffffff; line-height: 1.28; margin-bottom: 8px; }
.hero-desc { color: rgba(255, 255, 255, 0.88); font-size: 0.92rem; max-width: 600px; line-height: 1.5; margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.hero-meta-row { display: flex; gap: 16px; color: rgba(255, 255, 255, 0.75); font-size: 0.82rem; }

.hero-side-grid { width: 36%; display: flex; flex-direction: column; gap: 20px; }
.hero-sub-card {
    flex: 1; position: relative; border-radius: var(--radius); overflow: hidden;
    background: var(--brand-nav); border: 1px solid var(--border-light);
    box-shadow: var(--shadow-card); display: flex; align-items: flex-end;
}
.hero-sub-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.hero-sub-card:hover img { transform: scale(1.04); }
.hero-sub-overlay {
    position: relative; z-index: 2; width: 100%; padding: 18px 20px;
    background: linear-gradient(to top, rgba(15, 58, 103, 0.95) 0%, rgba(15, 58, 103, 0.65) 60%, transparent 100%);
}
.hero-pill-sm { display: inline-block; padding: 2px 10px; border-radius: 9999px; font-size: 0.7rem; font-weight: 700; background: rgba(255, 255, 255, 0.2); color: #ffffff; margin-bottom: 6px; }
.hero-sub-overlay h3 { font-size: 1.05rem; color: #ffffff; line-height: 1.35; margin-bottom: 6px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.hero-sub-meta { display: flex; gap: 12px; color: rgba(255, 255, 255, 0.7); font-size: 0.78rem; }

/* ===== Category Quick Chips Bar ===== */
.chips-section { padding: 12px 0 20px; }
.chips-bar { display: flex; align-items: center; gap: 14px; background: #ffffff; padding: 12px 20px; border-radius: var(--radius); border: 1px solid var(--border-light); box-shadow: var(--shadow-sm); }
.chips-title { font-size: 0.88rem; font-weight: 700; color: var(--text-dark); display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.chips-title i { color: var(--brand-card); }
.chips-list { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.chip-item { padding: 6px 14px; border-radius: 9999px; font-size: 0.82rem; font-weight: 600; background: #f1f5f9; color: var(--text-body); border: 1px solid var(--border-light); display: inline-flex; align-items: center; gap: 6px; transition: var(--transition); }
.chip-item:hover { background: #e2e8f0; color: var(--text-dark); transform: translateY(-1px); }
.chip-item.active { background: var(--brand-nav); color: #ffffff; border-color: var(--brand-nav); }
.chip-count { font-size: 0.72rem; opacity: 0.8; background: rgba(0, 0, 0, 0.08); padding: 1px 6px; border-radius: 10px; }
.chip-item.active .chip-count { background: rgba(255, 255, 255, 0.2); }

/* ===== Section Headers ===== */
.section { padding: 24px 0 40px; }
.section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.section-header h2 { font-size: 1.5rem; display: flex; align-items: center; gap: 10px; color: var(--text-dark); }
.section-header h2 i { color: var(--brand-card); font-size: 1.2rem; }
.view-all-btn { color: var(--brand-card); font-weight: 600; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 6px; transition: var(--transition); }
.view-all-btn:hover { color: var(--brand-nav); transform: translateX(3px); }

/* ===== Content Layout ===== */
.content-layout { display: grid; grid-template-columns: 1fr 340px; gap: 32px; }

/* ===== Article Cards (#1A5694 -> Hover White) ===== */
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.home-articles-grid { grid-template-columns: repeat(2, 1fr); }

.article-card {
    background: var(--brand-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-card);
    transition: var(--transition);
    box-shadow: var(--shadow-card);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
}
.article-card:hover {
    transform: translateY(-7px) scale(1.012);
    background: #ffffff;
    border-color: var(--brand-card);
    box-shadow: var(--shadow-card-hover);
    color: var(--text-dark);
}
.article-card-img { height: 190px; overflow: hidden; position: relative; background: #124170; }
.article-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease; }
.article-card:hover .article-card-img img { transform: scale(1.08); filter: brightness(1.03); }
.article-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.article-card-category {
    display: inline-block; align-self: flex-start; padding: 4px 12px; border-radius: 9999px; font-size: 0.72rem;
    font-weight: 700; background: rgba(255, 255, 255, 0.2); color: #ffffff; border: 1px solid rgba(255, 255, 255, 0.3); margin-bottom: 10px;
    transition: var(--transition);
}
.article-card:hover .article-card-category { background: var(--brand-card); color: #ffffff; border-color: var(--brand-card); transform: translateY(-1px); }
.article-card-body h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: #ffffff; line-height: 1.4; transition: var(--transition); }
.article-card:hover .article-card-body h3 { color: var(--brand-card); }
.article-card-body p { font-size: 0.86rem; color: var(--text-subtle); margin-bottom: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; line-height: 1.6; transition: var(--transition); }
.article-card:hover .article-card-body p { color: var(--text-body); }
.article-card-footer {
    padding: 12px 20px; border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex; justify-content: space-between; font-size: 0.8rem; color: var(--text-subtle);
    background: rgba(10, 40, 74, 0.2); transition: var(--transition);
}
.article-card:hover .article-card-footer { background: #fafbfc; border-top-color: var(--border-light); color: var(--text-muted); }
.article-card-footer i { margin-right: 4px; color: #93c5fd; }
.article-card:hover .article-card-footer i { color: var(--brand-card); }

/* ===== Sidebar Widgets (#1A5694) ===== */
.sidebar-wrapper { display: flex; flex-direction: column; gap: 26px; }
.sidebar-widget {
    background: var(--brand-card);
    border-radius: var(--radius);
    padding: 22px;
    border: 1px solid var(--border-card);
    box-shadow: var(--shadow-card);
    color: #ffffff;
    transition: var(--transition);
}
.sidebar-widget:hover { box-shadow: 0 10px 25px rgba(26, 86, 148, 0.25); }
.sidebar-widget h3 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.sidebar-widget h3 i { color: #facc15; }

/* ===== Trending Items ===== */
.trending-item {
    display: flex; gap: 12px; padding: 10px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    align-items: flex-start; border-radius: 8px; transition: var(--transition); color: #ffffff;
}
.trending-item:last-child { border-bottom: none; }
.trending-item:hover { background: rgba(255, 255, 255, 0.12); transform: translateX(4px); }
.trending-num { font-family: 'Outfit'; font-size: 1.3rem; font-weight: 800; color: #93c5fd; line-height: 1; min-width: 26px; }
.trending-body h4 { font-size: 0.9rem; font-weight: 600; color: #ffffff; margin-bottom: 3px; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.trending-body span { font-size: 0.76rem; color: var(--text-subtle); }
.trending-body span i { margin-right: 3px; }

/* ===== Category List ===== */
.category-list { list-style: none; }
.category-list li a {
    display: flex; justify-content: space-between; align-items: center;
    padding: 9px 8px; border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-subtle); font-size: 0.88rem; font-weight: 500;
    border-radius: 6px; transition: var(--transition);
}
.category-list li:last-child a { border-bottom: none; }
.category-list li a:hover { background: rgba(255, 255, 255, 0.12); color: #ffffff; transform: translateX(4px); }
.category-list li a i { font-size: 0.7rem; margin-right: 6px; opacity: 0.7; }
.category-list .cat-count { background: #ffffff; color: var(--brand-card); padding: 2px 8px; border-radius: 10px; font-size: 0.75rem; font-weight: 700; }

/* ===== Newsletter Section ===== */
.newsletter-section { padding: 10px 0 40px; }
.newsletter-box {
    background: linear-gradient(135deg, #0F3A67 0%, #1A5694 100%);
    border-radius: var(--radius-lg); padding: 36px 40px;
    display: flex; align-items: center; justify-content: space-between; gap: 30px;
    box-shadow: var(--shadow-card); color: #ffffff;
}
.newsletter-text h2 { font-size: 1.45rem; color: #ffffff; margin-bottom: 6px; display: flex; align-items: center; gap: 10px; }
.newsletter-text h2 i { color: #38bdf8; }
.newsletter-text p { color: #d0e1fd; font-size: 0.92rem; max-width: 620px; }
.btn-newsletter {
    background: #ffffff; color: var(--brand-nav); font-family: 'Outfit'; font-weight: 700;
    padding: 12px 24px; border-radius: 9999px; font-size: 0.92rem; white-space: nowrap;
    display: inline-flex; align-items: center; gap: 8px; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}
.btn-newsletter:hover { background: #dbeafe; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2); }

/* ===== Article Detail ===== */
.article-detail { padding: 110px 0 60px; }
.article-detail-header { margin-bottom: 30px; }
.article-detail-header h1 { font-size: 2.2rem; margin-bottom: 16px; color: var(--text-dark); }
.article-detail-meta { display: flex; flex-wrap: wrap; gap: 20px; color: var(--text-muted); font-size: 0.9rem; }
.article-detail-meta i { margin-right: 6px; color: var(--brand-nav); }
.article-detail-img { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 30px; max-height: 500px; background: #f1f5f9; text-align: center; border: 1px solid var(--border-light); }
.article-detail-img img { max-width: 100%; max-height: 500px; object-fit: contain; display: inline-block; }
.article-detail-content { font-size: 1.05rem; line-height: 1.9; color: var(--text-dark); background: #ffffff; padding: 30px; border-radius: var(--radius); border: 1px solid var(--border-light); box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
.article-detail-content p { margin-bottom: 18px; }
.article-detail-content img { max-width: 100%; height: auto !important; border-radius: 8px; margin: 16px 0; display: block; box-shadow: 0 4px 14px rgba(0,0,0,0.06); }
.article-detail-content h1, .article-detail-content h2, .article-detail-content h3, .article-detail-content h4 { margin: 24px 0 12px; color: var(--brand-nav); }
.article-detail-content ul, .article-detail-content ol { margin: 12px 0 20px 24px; }
.article-detail-content li { margin-bottom: 6px; }
.article-detail-content blockquote { border-left: 4px solid var(--brand-card); padding: 12px 20px; background: #f0f7ff; margin: 20px 0; font-style: italic; border-radius: 0 8px 8px 0; color: #1e3a8a; }
.article-detail-content table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 0.95rem; }
.article-detail-content table th, .article-detail-content table td { border: 1px solid #cbd5e1; padding: 10px 14px; text-align: left; }
.article-detail-content table th { background: #f1f5f9; font-weight: 700; }

/* ===== Contact Page ===== */
.contact-section { padding: 110px 0 60px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info-card {
    background: var(--brand-card); border-radius: var(--radius); padding: 30px;
    border: 1px solid var(--border-card); display: flex; gap: 16px; align-items: flex-start;
    transition: var(--transition); box-shadow: var(--shadow-card); color: #ffffff;
}
.contact-info-card:hover { border-color: rgba(255,255,255,0.4); transform: translateY(-3px); box-shadow: var(--shadow-card-hover); }
.contact-icon { width: 50px; height: 50px; border-radius: 12px; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25); display: flex; align-items: center; justify-content: center; color: #ffffff; font-size: 1.2rem; flex-shrink: 0; }
.contact-info-card h4 { font-size: 1rem; margin-bottom: 4px; color: #ffffff; }
.contact-info-card p { color: var(--text-subtle); font-size: 0.9rem; }
.contact-form {
    background: #ffffff; border-radius: var(--radius-lg); padding: 36px;
    border: 1px solid var(--border-light); box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.contact-form h2 { font-size: 1.5rem; margin-bottom: 24px; color: var(--text-dark); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 6px; font-weight: 600; font-size: 0.9rem; color: var(--text-dark); }
.form-control {
    width: 100%; padding: 12px 16px; border-radius: 8px; border: 1px solid #cbd5e1;
    background: #ffffff; color: var(--text-dark); font-family: 'Inter'; font-size: 0.95rem;
    transition: var(--transition);
}
.form-control:focus { outline: none; border-color: var(--brand-card); box-shadow: 0 0 0 3px rgba(26,86,148,0.15); }
textarea.form-control { min-height: 130px; resize: vertical; }
.btn {
    display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; border-radius: 9999px;
    font-family: 'Outfit'; font-weight: 600; font-size: 0.95rem; border: none; cursor: pointer;
    transition: var(--transition);
}
.btn-primary { background: var(--brand-nav); color: #fff; box-shadow: 0 4px 12px rgba(15,58,103,0.3); }
.btn-primary:hover { background: var(--brand-nav-dark); opacity: 0.95; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(15,58,103,0.4); }

/* ===== Pagination ===== */
.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 40px; }
.pagination a, .pagination span {
    padding: 8px 16px; border-radius: 9999px; font-size: 0.9rem; font-weight: 600;
    background: #ffffff; color: var(--text-dark); border: 1px solid var(--border-light);
    transition: var(--transition);
}
.pagination span.current, .pagination a:hover { background: var(--brand-card); color: #fff; border-color: transparent; }

/* ===== Page Header ===== */
.page-header {
    padding: 110px 0 40px;
    background: #f1f5f9;
    border-bottom: 1px solid var(--border-light);
}
.page-header h1 { font-size: 2rem; margin-bottom: 8px; color: var(--text-dark); }
.page-header p { color: var(--text-muted); }
.breadcrumb { display: flex; gap: 8px; color: var(--text-muted); font-size: 0.85rem; margin-bottom: 10px; }
.breadcrumb a:hover { color: var(--brand-nav); }

/* ===== Search & Filter ===== */
.filter-bar { display: flex; gap: 12px; margin-bottom: 30px; flex-wrap: wrap; }
.filter-bar .form-control { max-width: 300px; }
.filter-bar select.form-control { max-width: 200px; }

/* ===== Footer (#0F3A67) ===== */
.footer { background: var(--brand-nav); border-top: 1px solid rgba(255, 255, 255, 0.12); padding: 50px 0 0; color: #ffffff; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.footer-logo { display: flex; align-items: center; gap: 12px; font-family: 'Outfit'; font-size: 1.4rem; margin-bottom: 14px; color: #ffffff; }
.footer-logo strong { color: #ffffff; }
.footer-about p { color: #d0e1fd; font-size: 0.9rem; margin-bottom: 16px; line-height: 1.7; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 38px; height: 38px; border-radius: 8px; background: rgba(255, 255, 255, 0.12); border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex; align-items: center; justify-content: center; color: #ffffff; font-size: 0.9rem;
    transition: var(--transition);
}
.footer-social a:hover { background: #ffffff; color: var(--brand-nav); border-color: #ffffff; transform: translateY(-2px); }
.footer-links h4 { font-size: 1rem; margin-bottom: 16px; color: #ffffff; }
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 10px; color: #d0e1fd; font-size: 0.9rem; }
.footer-links ul li a:hover { color: #ffffff; }
.footer-links ul li i { margin-right: 8px; color: #93c5fd; width: 16px; }
.footer-bottom { text-align: center; padding: 20px 0; margin-top: 40px; border-top: 1px solid rgba(255, 255, 255, 0.1); color: #d0e1fd; font-size: 0.85rem; }

/* ===== No Image Placeholder ===== */
.no-image {
    width: 100%; height: 100%; background: linear-gradient(135deg, #0F3A67, #1A5694);
    display: flex; align-items: center; justify-content: center; color: rgba(255, 255, 255, 0.6); font-size: 2.5rem;
}

/* ===== Responsive (Mobile 1 Card Per Row) ===== */
@media (max-width: 1024px) {
    .hero-mosaic { flex-direction: column; }
    .hero-side-grid { width: 100%; flex-direction: row; }
    .hero-sub-card { min-height: 200px; }
    .content-layout { grid-template-columns: 1fr; }
    .articles-grid { grid-template-columns: repeat(2, 1fr); }
    .home-articles-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .newsletter-box { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
    .container { padding: 0 16px; }
    .nav-toggle { display: block; }
    .mobile-menu-header { display: flex; }
    .nav-menu {
        position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
        flex-direction: column; background: var(--brand-nav); padding: 30px;
        border-left: 1px solid rgba(255, 255, 255, 0.12); transition: right 0.3s ease; gap: 4px; z-index: 1005;
    }
    .nav-menu.active { right: 0; }
    .nav-menu a { width: 100%; border-radius: 8px; padding: 14px 20px; border-bottom: 1px solid rgba(255, 255, 255, 0.12); font-size: 1.1rem; display: block; }
    
    .ticker-date { display: none; }
    .ticker-content { font-size: 0.82rem; }
    
    .hero-grid-section { padding: 16px 0 10px; }
    .hero-mosaic { flex-direction: column !important; min-height: auto; gap: 14px; }
    .hero-main-card { min-height: 320px; flex: none; width: 100% !important; }
    .hero-title { font-size: 1.35rem; }
    .hero-gradient-overlay { padding: 20px 16px; }
    
    .hero-side-grid { width: 100% !important; flex-direction: column !important; gap: 14px; }
    .hero-sub-card { min-height: 180px; width: 100% !important; flex: none; }
    .hero-sub-overlay { padding: 16px; }
    .hero-sub-overlay h3 { font-size: 0.98rem; }
    
    .chips-bar { flex-direction: column; align-items: flex-start; gap: 8px; padding: 12px 14px; }
    .chips-list { width: 100%; flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; }
    .chip-item { white-space: nowrap; font-size: 0.78rem; padding: 5px 12px; }
    
    /* ENFORCE 1 CARD PER ROW ON MOBILE */
    .content-layout { grid-template-columns: 1fr !important; gap: 24px; }
    .articles-grid, .home-articles-grid { grid-template-columns: 1fr !important; gap: 18px; }
    .article-card { width: 100% !important; }
    .article-card-img { height: 180px; }
    
    .contact-grid { grid-template-columns: 1fr !important; }
    .footer-grid { grid-template-columns: 1fr !important; gap: 24px; }
    .footer-about, .footer-links { text-align: left; }
    
    .article-detail { padding: 90px 0 40px; }
    .article-detail-header h1 { font-size: 1.5rem; }
    .article-detail-content { padding: 20px 16px; }
}

/* ===== Smooth Animations ===== */
@keyframes cardEntrance {
    0% { opacity: 0; transform: translateY(22px) scale(0.98); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}
.animate-in { animation: cardEntrance 0.6s cubic-bezier(0.16, 1, 0.3, 1) both; }
.animate-in:nth-child(1) { animation-delay: 0.05s; }
.animate-in:nth-child(2) { animation-delay: 0.12s; }
.animate-in:nth-child(3) { animation-delay: 0.19s; }
.animate-in:nth-child(4) { animation-delay: 0.26s; }
.animate-in:nth-child(5) { animation-delay: 0.33s; }
.animate-in:nth-child(6) { animation-delay: 0.40s; }