/* assets/css/header.css - Base Structural Layout Engine */
.nv-portal-root *, 
.mobile-navigation-drawer *, 
.drawer-overlay-backdrop * {
    box-sizing: border-box !important;
    margin: 0;
    padding: 0;
}

:root {
    --brand-red: #b31b1b;
    --dark-matte: #111111;
    --border-light: #e2e8f0;
    --text-core: #2d3748;
    --font-suite: 'SolaimanLipi', sans-serif;
}

.nv-hdr-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Ticker Structural Styling */
.nv-ticker-bar {
    background: #ffffff;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    font-family: var(--font-suite);
}
.ticker-flex {
    display: flex;
    align-items: center;
    width: 100%;
}
.ticker-label {
    background: var(--brand-red);
    color: #ffffff;
    padding: 12px 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}
.ticker-track-window {
    overflow: hidden;
    flex-grow: 1;
    position: relative;
    padding: 0 10px;
}
.nv-ticker-track {
    display: flex;
    white-space: nowrap;
    gap: 30px;
}
.nv-ticker-item a {
    color: var(--text-core);
    text-decoration: none;
    font-weight: 500;
}
.nv-ticker-item a:hover {
    color: var(--brand-red);
}
.ticker-action-nav {
    padding: 12px 16px;
    border-left: 1px solid #edf2f7;
    color: #718096;
    font-size: 0.85rem;
    white-space: nowrap;
}