/* Site header */
.site-header {
    font-family: var(--bn-font-body, 'SolaimanLipi', 'Kalpurush', sans-serif);
    background: #fff;
}

.site-header__top {
    padding: 0.85rem 0;
    border-bottom: 1px solid #e8eaef;
}

.site-header__logo img {
    height: 48px;
    width: auto;
    max-width: 100%;
}

.site-header__logo--mobile img {
    height: 38px;
}

.site-header__logo--compact img {
    height: 42px;
}

.site-header__utility ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.25rem 1.1rem;
}

.site-header__utility a {
    color: #1f1f1f;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    white-space: nowrap;
}

.site-header__utility a:hover {
    color: var(--tt_primary_color, #c20000);
}

.site-header__utility a i {
    margin-right: 0.35rem;
}

.site-header__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.35rem;
}

.site-header__icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: none;
    background: #eef0f4;
    color: #333;
    border-radius: 50%;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.site-header__icon-btn:hover {
    background: var(--tt_primary_color, #c20000);
    color: #fff;
}

.site-header__breaking {
    position: relative;
}

.site-header__breaking-panel {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 300px;
    background: #fff;
    padding: 0.75rem;
    z-index: 9999;
    display: none;
}

.site-header__breaking:hover .site-header__breaking-panel {
    display: block;
}

.site-header__breaking-item {
    display: block;
    padding: 0.5rem 0.25rem;
    color: #222;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
}

.site-header__breaking-item:last-child {
    border-bottom: none;
}

.site-header__breaking-item small {
    display: block;
    color: #888;
    margin-top: 0.15rem;
}

.site-header__breaking-item:hover {
    color: var(--tt_primary_color, #c20000);
}

.site-header__nav-wrap {
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.06);
    border-top: 1px solid #e8eaef;
    position: relative;
    z-index: 1030;
    background: #fff;
}

.site-header__nav-wrap.is-fixed,
.site-header--mobile.is-fixed,
.site-header--compact.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1030;
    background: #fff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.site-header__nav-placeholder {
    display: block;
    height: 0;
}

.site-header__nav-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.35rem 0;
}

.site-header__nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.site-header__nav li {
    padding: 0 0.85rem;
}

.site-header__nav a {
    color: #1f1f1f;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: block;
    padding: 0.65rem 0;
    transition: color 0.2s;
}

.site-header__nav a:hover,
.site-header__nav-home a {
    color: var(--tt_primary_color, #c20000);
}

.site-header__nav-home a i {
    margin-right: 0.25rem;
}

.site-header__more-btn {
    border: none;
    background: transparent;
    font-size: 1.15rem;
    padding: 0.5rem;
    cursor: pointer;
    color: #333;
}

.site-header__extranav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 1rem 0;
    z-index: 1031;
}

.site-header__extranav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: #202124 !important;
    text-decoration: none;
    display: inline-block;
    padding: 0.25rem 0;
}

.site-header__extranav-link:hover {
    color: var(--tt_primary_color, #c20000) !important;
}

/* Mobile */
.site-header--mobile {
    position: relative;
    z-index: 1030;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.site-header__mobile-top {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.site-header__epaper-link {
    font-size: 1.05rem;
    font-weight: 700;
    color: #222;
    text-decoration: none;
    margin-right: 0.75rem;
}

.site-header__menu-toggle {
    border: none;
    background: transparent;
    font-size: 1.25rem;
    padding: 0.25rem 0.5rem;
    color: #333;
}

.site-header__mobile-scroll {
    padding: 0.5rem 0;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.site-header__mobile-scroll::-webkit-scrollbar {
    display: none;
}

.site-header__mobile-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 0.75rem;
    white-space: nowrap;
}

.site-header__mobile-nav a {
    font-weight: 700;
    font-size: 0.95rem;
    color: #222;
    text-decoration: none;
}

.site-header__mobile-nav a:hover {
    color: var(--tt_primary_color, #c20000);
}

/* Offcanvas */
.site-header__offcanvas-logo {
    height: 32px;
    width: auto;
}

.site-header__offcanvas-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-header__offcanvas-menu > li {
    border-bottom: 1px solid #eee;
}

.site-header__offcanvas-menu a {
    display: block;
    padding: 0.75rem 0;
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.site-header__offcanvas-menu a:hover {
    color: var(--tt_primary_color, #c20000);
}

.site-header__offcanvas-menu ul {
    list-style: none;
    padding-left: 1rem;
    margin: 0;
}

.site-header__offcanvas-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin: 0 0.25rem;
    border-radius: 50%;
    background: #eef0f4;
    color: #333;
    text-decoration: none;
}

.site-header__offcanvas-social a:hover {
    background: var(--tt_primary_color, #c20000);
    color: #fff;
}

/* Compact variant */
.site-header--compact {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 1030;
    background: #fff;
}

.site-header__compact-bar {
    padding: 0.65rem 0;
    border-bottom: 1px solid #e8eaef;
}

.site-header__compact-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.site-header__compact-nav {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.25rem;
}

.site-header__compact-nav a {
    color: #222;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
}

.site-header__compact-nav a:hover {
    color: var(--tt_primary_color, #c20000);
}

.site-header__compact-actions {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

@media (max-width: 991.98px) {
    .site-header__utility ul {
        justify-content: flex-start;
    }
}

.locale-switcher {
    display: inline-flex;
    align-items: center;
    gap: 0.15rem;
    padding: 0.15rem;
    border-radius: 999px;
    background: #eef0f4;
    border: 1px solid #dde3ec;
}

.locale-switcher__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    color: #475569;
    transition: background 0.2s, color 0.2s;
}

.locale-switcher__link:hover {
    color: var(--tt_primary_color, #c20000);
}

.locale-switcher__link.is-active {
    background: var(--tt_primary_color, #c20000);
    color: #fff;
}

.locale-switcher--frontend {
    flex-shrink: 0;
}

.locale-switcher--mobile-inline {
    display: inline-flex;
    vertical-align: middle;
    margin-right: 0.35rem;
}

.locale-switcher--offcanvas {
    margin-right: 0.25rem;
}
