/*
Theme Name: MintIPO
Theme URI: http://localhost/wordpress
Author: MintIPO Team
Author URI: http://localhost/wordpress
Description: A professional IPO tracking website theme with blue/white design, live ticker, and market data sections.
Version: 1.0
Requires at least: 5.0
Tested up to: 6.5
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mintipo
Tags: business, finance, custom-header, custom-menu, featured-images, footer-widgets, full-width-template, threaded-comments
*/

/* =====================================================
   MintIPO - Professional Blue/White Theme
   ===================================================== */

:root {
    --primary-blue: #0a2540;
    --accent-blue: #0073e6;
    --light-blue: #f0f7ff;
    --text-dark: #333333;
    --white: #ffffff;
    --gray-border: #e1e8ed;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f8fafc;
    color: var(--text-dark);
    line-height: 1.6;
}

/* =======================================================
   HEADER & NAVIGATION â Single Row Format
   ======================================================= */
#masthead {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* Logo */
.site-branding,
.site-branding.logo {
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: flex-start;
}

.site-logo-link {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--white);
    text-decoration: none;
    line-height: 1;
}

.site-logo-link span {
    color: var(--accent-blue);
}

.site-logo-link .logo-mint {
    color: #ffffff; /* White color */
}

.site-tagline {
    font-size: 11px;
    color: #94a3b8;
    font-weight: 400;
    display: inline;
}

.header-actions {
    display: none; /* Only visible on mobile */
}

/* Main Navigation Menu Row */
.main-navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Category Nav Item Wrapper */
.cat-nav-wrapper,
.nav-item {
    position: relative;
    display: inline-block;
}

/* Top-level Nav Links */
.cat-nav-item,
.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.cat-nav-item:hover,
.nav-link:hover {
    color: #ffffff;
    background: rgba(255,255,255,0.06);
}

.cat-nav-item.cat-nav-active,
.nav-item.active > .nav-link {
    color: #ffffff;
    background: rgba(0,115,230,0.15);
}

.dropdown-arrow {
    font-size: 9px;
    opacity: 0.8;
    transition: transform 0.2s;
}

/* =======================================================
   DROPDOWN SUBMENUS â€” Desktop Hover Styles
   ======================================================= */
.cat-submenu,
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background-color: #0d2240;
    border: 1px solid #1e3a5f;
    border-top: 3px solid var(--accent-blue);
    border-radius: 0 0 6px 6px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    padding: 6px 0;
    z-index: 1001;
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    visibility: hidden;
}

.cat-nav-wrapper:hover .cat-submenu,
.nav-item:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

/* =======================================================
   DESKTOP HORIZONTAL NAVIGATION â€” Top-Bar Layout
   ======================================================= */
@media (min-width: 851px) {
    /* Reset margins of content columns to full width */
    .ticker-wrap,
    .site-content,
    #primary,
    .site-main,
    footer,
    #colophon {
        margin-left: 0 !important;
    }

    #masthead {
        position: sticky;
        top: 0;
        width: 100%;
        background-color: var(--primary-blue);
        box-shadow: 0 4px 10px rgba(0,0,0,0.15);
        z-index: 1000;
        border-right: none;
    }

    .header-inner {
        max-width: 1200px;
        margin: 0 auto;
        padding: 15px 20px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
        height: auto;
    }

    /* Horizontal branding layout */
    .site-branding,
    .site-branding.logo {
        display: flex;
        flex-direction: row;
        align-items: center;
        width: auto;
        text-align: left;
        border-bottom: none;
        padding-bottom: 0;
    }

    .site-logo-link {
        font-size: 24px;
        font-weight: 800;
        letter-spacing: 1px;
    }

    .main-navigation {
        width: auto;
    }

    /* Row horizontal navigation menu */
    .nav-menu {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 8px;
        width: auto;
    }

    .cat-nav-wrapper {
        width: auto;
        position: relative;
        display: inline-block;
    }

    .cat-nav-item {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 10px 16px;
        font-size: 16px;
        font-weight: 700;
        color: #ffffff;
        text-decoration: none;
        border-radius: 4px;
        transition: all 0.2s ease;
        white-space: nowrap;
        width: auto;
    }

    .cat-nav-item:hover {
        color: #ffffff;
        background: rgba(255,255,255,0.06);
    }

    .cat-nav-item.cat-nav-active {
        color: #ffffff;
        background: rgba(0,115,230,0.15);
    }

    /* Floating absolute dropdowns on desktop */
    .cat-submenu {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 220px;
        background-color: #0d2240;
        border: 1px solid #1e3a5f;
        border-top: 3px solid var(--accent-blue);
        border-radius: 0 0 6px 6px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.25);
        padding: 6px 0;
        z-index: 1001;
        display: none;
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
        visibility: hidden;
        margin-top: 0;
        margin-left: 0;
    }

    .cat-nav-wrapper:hover .cat-submenu {
        display: block;
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
    }

    .cat-nav-wrapper:hover .dropdown-arrow {
        transform: rotate(180deg);
    }

    .cat-sub-item {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 10px 18px;
        color: #cbd5e1;
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        border-left: 3px solid transparent;
        transition: all 0.2s ease;
        text-align: left;
    }

    .cat-sub-item:hover {
        color: #ffffff;
        background-color: rgba(255,255,255,0.06);
        border-left-color: var(--accent-blue);
    }
}

/* Submenu Child Items */
.cat-sub-item,
.dropdown-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    color: #cbd5e1;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: all 0.2s ease;
    text-align: left;
}

.cat-sub-item:hover,
.dropdown-item:hover {
    color: #ffffff;
    background-color: rgba(255,255,255,0.06);
    border-left-color: var(--accent-blue);
}

.cat-sub-item.cat-sub-active,
.dropdown-item.active {
    color: #ffffff;
    background-color: rgba(0,115,230,0.12);
    border-left-color: var(--accent-blue);
}


/* Custom Colored Circle Bullet Points for Sub-Menu Items */
.cat-sub-item::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #94a3b8; /* Default fallback gray */
    flex-shrink: 0;
    transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.25s ease;
}

/* Hover Scale Effect for Bullets */
.cat-sub-item:hover::before {
    transform: scale(1.25);
}

/* ð¥ Gold sub-head circle */
.sub-item-gold::before {
    background-color: #ffd700;
    box-shadow: 0 0 6px rgba(255, 215, 0, 0.7);
}

/* ð¥ Silver sub-head circle */
.sub-item-silver::before {
    background-color: #e2e8f0;
    box-shadow: 0 0 6px rgba(226, 232, 240, 0.7);
}

/* ð¤ Copper sub-head circle */
.sub-item-copper::before {
    background-color: #ca8a04;
    box-shadow: 0 0 6px rgba(202, 138, 4, 0.7);
}

/* ð Public Issues sub-head circle */
.sub-item-public-issues::before {
    background-color: #38bdf8;
    box-shadow: 0 0 6px rgba(56, 189, 248, 0.7);
}

/* ð OFS sub-head circle */
.sub-item-ofs::before {
    background-color: #34d399;
    box-shadow: 0 0 6px rgba(52, 211, 153, 0.7);
}

/* ðï¸ Bond sub-head circle */
.sub-item-bond::before {
    background-color: #a78bfa;
    box-shadow: 0 0 6px rgba(167, 139, 250, 0.7);
}

/* ð NCD sub-head circle */
.sub-item-ncd::before {
    background-color: #fb923c;
    box-shadow: 0 0 6px rgba(251, 146, 60, 0.7);
}

/* ð RI sub-head circle */
.sub-item-ri::before {
    background-color: #6366f1;
    box-shadow: 0 0 6px rgba(99, 102, 241, 0.7);
}

/* â©ï¸ BB sub-head circle */
.sub-item-bb::before {
    background-color: #f472b6;
    box-shadow: 0 0 6px rgba(244, 114, 182, 0.7);
}

/* ð° News sub-head circle */
.sub-item-news::before {
    background-color: #f43f5e;
    box-shadow: 0 0 6px rgba(244, 63, 94, 0.7);
}

/* â³ Upcoming sub-head circle */
.sub-item-upcoming::before {
    background-color: #fbbf24;
    box-shadow: 0 0 6px rgba(251, 191, 36, 0.7);
}

/* Mobile Toggle Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 1px solid #2d3f55;
    cursor: pointer;
    padding: 8px 10px;
    border-radius: 5px;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s;
}

.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* =======================================================
   RESPONSIVE â Mobile Layout (< 850px)
   ======================================================= */
@media (max-width: 850px) {
    .header-actions {
        display: flex;
        align-items: center;
    }

    .nav-toggle {
        display: flex;
    }

    .main-navigation {
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: var(--primary-blue);
        border-top: 1px solid #1e3a5f;
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        z-index: 999;
    }

    .main-navigation.mobile-open {
        display: block;
    }

    .nav-menu {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px 0;
    }

    .cat-nav-wrapper {
        display: block;
        width: 100%;
    }

    .cat-nav-wrapper.has-dropdown > .cat-nav-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .cat-nav-item {
        padding: 12px 20px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        border-radius: 0;
        font-size: 14px;
        display: block;
    }

    .cat-nav-item:hover,
    .cat-nav-item.cat-nav-active {
        background: rgba(0,115,230,0.12);
        border-left: 3px solid var(--accent-blue);
        padding-left: 17px;
    }

    /* Submenu Accordion on Mobile */
    .cat-submenu {
        position: static;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        min-width: 100%;
        background-color: rgba(0, 0, 0, 0.15);
        border: none;
        border-left: 3px solid #1e3a5f;
        border-radius: 0;
        padding: 5px 0;
        box-shadow: none;
    }

    .cat-nav-wrapper.mobile-expanded .cat-submenu {
        display: block;
    }

    .cat-nav-wrapper.mobile-expanded .dropdown-arrow {
        transform: rotate(180deg);
    }

    .cat-sub-item {
        padding: 10px 30px;
        font-size: 13px;
    }
}

/* ---- Ticker Strip ---- */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    background-color: #1e293b;
    color: #22c55e;
    font-size: 13px;
    font-weight: 600;
    border-bottom: 2px solid var(--accent-blue);
    position: relative;
}

/* Status bar above ticker */
.ticker-status-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 4px 14px;
    background: #0f172a;
    font-size: 11px;
    color: #64748b;
    border-bottom: 1px solid #1e3a5f;
    flex-wrap: wrap;
}

/* Pulsing LIVE dot */
.live-dot-wrap {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #22c55e;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 11px;
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
    animation: pulse-dot 1.5s ease-in-out infinite;
    display: inline-block;
}

@keyframes pulse-dot {
    0%   { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6); }
    70%  { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* Refresh button */
#ticker-refresh-btn {
    background: transparent;
    border: 1px solid #334155;
    color: #94a3b8;
    border-radius: 4px;
    padding: 1px 7px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.6;
    margin-left: auto;
    transition: all 0.2s;
}
#ticker-refresh-btn:hover {
    color: #22c55e;
    border-color: #22c55e;
}
#ticker-refresh-btn.spinning {
    animation: spin 0.8s linear infinite;
    pointer-events: none;
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* Scrolling ticker row */
.ticker {
    display: inline-block;
    white-space: nowrap;
    padding: 8px 0;
    padding-left: 100%;
    animation: ticker 40s linear infinite;
}

.ticker-item {
    display: inline-block;
    padding: 0 25px;
    border-right: 1px solid #334155;
    letter-spacing: 0.3px;
}

.ticker-item:last-child { border-right: none; }

.ticker-icon { margin-right: 4px; }

.ticker-item span.negative, .negative { color: #ef4444; }
.ticker-item span.positive, .positive { color: #22c55e; }

.ticker-loading {
    color: #64748b;
    font-weight: 400;
    font-style: italic;
}

@keyframes ticker {
    0%   { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

/* Pause on hover */
.ticker-wrap:hover .ticker {
    animation-play-state: paused;
}



/* ---- Main Container ---- */
.site-content, #content {
    padding-top: 0;
}

.container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
}

/* ---- Section Cards ---- */
.section-card {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.section-header {
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 15px;
    border-left: 4px solid var(--accent-blue);
    padding-left: 10px;
    font-weight: 600;
}

/* ---- Tabs ---- */
.tabs, .gold-tabs-container {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--gray-border);
    padding-bottom: 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.tabs::-webkit-scrollbar,
.gold-tabs-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
    width: 0;
    height: 0;
}

.tab-btn {
    background: transparent;
    color: #71717a; /* clean muted zinc color */
    border: none;
    padding: 12px 5px;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.2s ease;
    white-space: nowrap;
    position: relative;
    border-radius: 0;
}

.tab-btn:hover {
    color: #18181b; /* dark zinc color on hover */
    background: transparent;
}

.tab-btn.active {
    color: #18181b; /* active tab color */
    background: transparent;
}

.tab-btn.active::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #18181b;
    border-radius: 2px;
}

/* ---- Tables ---- */
.table-responsive {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}


table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    text-align: left;
}

th {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 12px;
    font-size: 14px;
}

td {
    padding: 12px;
    border-bottom: 1px solid var(--gray-border);
    font-size: 14px;
}

tr:hover {
    background-color: var(--light-blue);
}

.star-rating {
    color: #f59e0b;
    font-size: 16px;
}

/* ---- Alert Box ---- */
.alert-box {
    background-color: var(--light-blue);
    border: 1px solid var(--accent-blue);
    text-align: center;
}

.alert-form {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.alert-form input {
    padding: 12px;
    border: 1px solid var(--gray-border);
    border-radius: 4px;
    width: 250px;
    outline: none;
}

.alert-form input:focus {
    border-color: var(--accent-blue);
}

.btn-subscribe {
    background: var(--accent-blue);
    color: var(--white);
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

.btn-subscribe:hover {
    background: #005bb5;
}

/* ---- News Section ---- */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.news-card {
    border: 1px solid var(--gray-border);
    padding: 15px;
    border-radius: 6px;
    transition: transform 0.2s;
}

.news-card:hover {
    transform: translateY(-3px);
    border-color: var(--accent-blue);
}

.news-card h4 {
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.news-card p {
    font-size: 13px;
    color: #666;
}

/* ---- FAQ ---- */
details {
    margin-bottom: 15px;
    border: 1px solid var(--gray-border);
    border-radius: 4px;
    padding: 15px;
    background: #fff;
    transition: all 0.3s;
}

details[open] {
    border-color: var(--accent-blue);
    box-shadow: 0 2px 5px rgba(0,115,230,0.1);
}

summary {
    font-weight: 600;
    cursor: pointer;
    color: var(--primary-blue);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

summary::-webkit-details-marker { display: none; }

summary::after {
    content: '+';
    color: var(--accent-blue);
    font-size: 20px;
    font-weight: bold;
}

details[open] summary::after {
    content: '-';
}

details p {
    margin-top: 15px;
    font-size: 14px;
    color: #555;
    padding-top: 10px;
    border-top: 1px dashed var(--gray-border);
}

/* ---- Footer ---- */
footer, #colophon {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 40px 5% 20px;
    margin-top: 50px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-about {
    flex: 1;
    min-width: 280px;
}

.footer-about h3 {
    margin-bottom: 15px;
    color: var(--white);
    border-left: 3px solid var(--accent-blue);
    padding-left: 8px;
}

.footer-about p {
    font-size: 14px;
    color: #cbd5e1;
}

.footer-social {
    flex: 1;
    min-width: 280px;
    text-align: right;
}

.footer-social h3 {
    margin-bottom: 15px;
    color: var(--white);
}

.social-icons a {
    color: var(--white);
    font-size: 24px;
    margin-left: 15px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--accent-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #1e293b;
    font-size: 12px;
    color: #94a3b8;
}

/* ---- WordPress Content Area (for inner pages) ---- */
.entry-content {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 10px;
    line-height: 1.8;
    color: #334155;
    font-size: 16px;
}

.entry-content p {
    margin-bottom: 24px;
    line-height: 1.8;
}

.entry-content h2 {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    margin-top: 36px;
    margin-bottom: 18px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e2e8f0;
}

.entry-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-top: 28px;
    margin-bottom: 14px;
}

.entry-content ul, 
.entry-content ol {
    margin-top: 14px;
    margin-bottom: 28px;
    padding-left: 24px;
}

.entry-content li {
    margin-bottom: 14px;
    line-height: 1.7;
    color: #334155;
}

.entry-content li strong {
    color: #0f172a;
}

.entry-content blockquote {
    margin-top: 70px; /* 4-5 lines gap from previous paragraph */
    padding: 16px 20px;
    background-color: #fef2f2;
    border: 1px solid #fecaca;
    border-left: 5px solid #dc2626;
    border-radius: 8px;
    color: #991b1b;
    font-size: 14px;
    line-height: 1.6;
    font-style: normal;
}

.entry-content blockquote p,
.entry-content blockquote em {
    color: #dc2626 !important;
    font-style: normal !important;
    font-weight: 600;
    margin: 0;
}

/* Featured Snippets Quick Summary Box */
.featured-snippet-box {
    background: #f8fafc;
    border: 2px solid #3b82f6;
    border-radius: 10px;
    padding: 20px 24px;
    margin-bottom: 35px;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.08);
}

.featured-snippet-title {
    font-size: 17px;
    font-weight: 800;
    color: #1d4ed8;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.featured-snippet-content {
    font-size: 15px;
    line-height: 1.7;
    color: #1e293b;
}

/* Red Disclaimer Box with 4-5 line gap */
.article-disclaimer-box {
    margin-top: 70px; /* 4-5 lines gap from content */
    padding: 16px 20px;
    background-color: #fef2f2;
    border: 1px solid #fecaca;
    border-left: 5px solid #dc2626;
    border-radius: 8px;
    color: #dc2626;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 600;
}

.article-disclaimer-box strong {
    color: #b91c1c;
    font-weight: 800;
}


.wp-block-heading {
    color: var(--primary-blue);
}

/* ---- Page Hero Banner ---- */
.page-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1a3a6e 100%);
    color: var(--white);
    padding: 50px 5%;
    text-align: center;
    margin-bottom: 30px;
}

.page-hero h1 {
    font-size: 36px;
    margin-bottom: 10px;
    color: var(--white);
}

.page-hero p {
    font-size: 16px;
    color: #cbd5e1;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    header, #masthead {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }

    nav ul, #site-navigation ul, .main-navigation ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .footer-social {
        text-align: left;
    }

    .social-icons a {
        margin-left: 0;
        margin-right: 15px;
    }

    .page-hero h1 {
        font-size: 26px;
    }
}

