/* =========================================================
   NOBLE NEWS - PRODUCTION CSS (FINAL CLEAN VERSION)
   ========================================================= */

/* ================= FONT ================= */
@import url('https://fonts.cdnfonts.com/css/solaimanlipi');

/* ================= ROOT TOKENS ================= */
:root {
    --brand: #cd2122;
    --brand-dark: #b91c1c;

    --bg: #f8fafc;
    --card: #ffffff;
    --ink: #0f172a;
    --muted: #64748b;

    --border: #e5e7eb;
    --border-soft: rgba(15, 23, 42, 0.08);

    --header-bg: rgba(255,255,255,0.75);

    --shadow: 0 12px 35px rgba(15,23,42,0.06);
    --shadow-soft: 0 6px 18px rgba(15,23,42,0.05);
    --shadow2: 0 10px 30px rgba(15,23,42,0.08);

    --radius: 14px;
    --radius-md: 10px;

    --transition: 0.3s cubic-bezier(.4,0,.2,1);
}

/* ================= DARK MODE ================= */
body.dark-mode {
    --bg: #020617;
    --card: #0f172a;
    --ink: #e5e7eb;
    --muted: #94a3b8;

    --border: rgba(255,255,255,0.08);
    --border-soft: rgba(255,255,255,0.12);

    --header-bg: rgba(15,23,42,0.75);

}

/* ================= BASE ================= */
body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: 'SolaimanLipi', system-ui, sans-serif;
    line-height: 1.6;
    transition: background var(--transition), color var(--transition);
    overflow-x: hidden;
}

/* ================= HEADER ================= */
.header-main {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--header-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-soft);
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.05);
}

.topbar-row {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.site-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}
.topbar-center{
    margin-top: 10px;
    margin-bottom: -10px;
}
.site-logo img {
    display: block;
    max-height: 52px;
    width: auto;
    object-fit: contain;
    transition: transform var(--transition), filter var(--transition);
}

.site-logo:hover img {
    transform: scale(1.04);
}

/* BUTTON */
.top-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-soft);
    background: var(--card);
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    outline: none;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.04);
    transition:
        transform var(--transition),
        background var(--transition),
        color var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.top-icon-btn i {
    font-size: 15px;
    line-height: 1;
    transition: transform var(--transition);
}

.top-icon-btn:hover,
.top-icon-btn:focus-visible {
    background: var(--brand);
    color: #ffffff;
    border-color: var(--brand);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(205, 33, 34, 0.22);
}

.top-icon-btn:hover i,
.top-icon-btn:focus-visible i {
    transform: scale(1.08);
}

/* ================= NAV ================= */
.main-nav {
    position: relative;
    z-index: 998;
    background: var(--brand);
    box-shadow: var(--shadow);
}

.nav-scroll-container {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.nav-scroll-container::-webkit-scrollbar {
    display: none;
}

.main-nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    width: max-content;
    min-width: 100%;
}

.nav-link-custom {
    position: relative;
    isolation: isolate;
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    padding: 0 15px;
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    text-decoration: none;
    border-bottom: 3px solid transparent;
    overflow: hidden;
    transition:
        color var(--transition),
        background var(--transition),
        border-color var(--transition),
        transform var(--transition);
}

/* Premium nav hover effect */
.nav-link-custom::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.18),
        rgba(255, 255, 255, 0.04)
    );
    opacity: 0;
    transform: scaleX(0.75);
    transform-origin: center;
    transition:
        opacity var(--transition),
        transform var(--transition);
}

.nav-link-custom::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 3px;
    background: #ffffff;
    border-radius: 999px 999px 0 0;
    transform: translateX(-50%);
    transition: width var(--transition);
}

.nav-link-custom:hover,
.nav-link-custom:focus-visible {
    color: #ffffff;
    background: rgba(0, 0, 0, 0.10);
    transform: translateY(-1px);
}

.nav-link-custom:hover::before,
.nav-link-custom:focus-visible::before {
    opacity: 1;
    transform: scaleX(1);
}

.nav-link-custom:hover::after,
.nav-link-custom:focus-visible::after {
    width: 70%;
}

.nav-link-custom.active,
.nav-link-custom[aria-current="page"] {
    color: #ffffff;
    background: rgba(0, 0, 0, 0.18);
}

.nav-link-custom.active::after,
.nav-link-custom[aria-current="page"]::after {
    width: 70%;
}

/* ================= SOCIAL ================= */
.social-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-wrap a {
    text-decoration: none;
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid var(--border-soft);
    background: var(--card);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    isolation: isolate;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.04);
    transition:
        transform var(--transition),
        background var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.social-btn i {
    position: relative;
    z-index: 2;
    font-size: 15px;
    line-height: 1;
    transition:
        color var(--transition),
        transform var(--transition);
}

/* Original Social Media Icon Colors */
.social-btn.fb i {
    color: #1877f2;
}

.social-btn.x i {
    color: #000000;
}

.social-btn.ig i {
    color: #e4405f;
}

.social-btn.yt i {
    color: #ff0000;
}

/* Social Hover Effect */
.social-btn:hover,
.social-btn:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.14);
}

.social-btn:hover i,
.social-btn:focus-visible i {
    color: #ffffff;
    transform: scale(1.1);
}

/* Original Brand Background on Hover */
.social-btn.fb:hover,
.social-btn.fb:focus-visible {
    background: #1877f2;
    border-color: #1877f2;
}

.social-btn.x:hover,
.social-btn.x:focus-visible {
    background: #000000;
    border-color: #000000;
}

.social-btn.ig:hover,
.social-btn.ig:focus-visible {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: transparent;
}

.social-btn.yt:hover,
.social-btn.yt:focus-visible {
    background: #ff0000;
    border-color: #ff0000;
}

/* ================= SEARCH PANEL ================= */
.search-panel {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1150;
    background: var(--card);
    border-bottom: 1px solid var(--border-soft);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    transform: translateY(-110%);
    visibility: hidden;
    transition:
        transform var(--transition),
        visibility var(--transition);
}

.search-panel.is-open {
    transform: translateY(0);
    visibility: visible;
}

.search-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-form {
    flex: 1;
    display: flex;
    align-items: center;
    min-width: 0;
    border-radius: 999px;
    border: 1px solid var(--border-soft);
    background: var(--bg);
    overflow: hidden;
    transition:
        border-color var(--transition),
        box-shadow var(--transition);
}

.search-form:focus-within {
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(205, 33, 34, 0.12);
}

.search-input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    padding: 11px 15px;
    background: transparent;
    color: var(--ink);
    font-family: inherit;
    font-size: 15px;
}

.search-input::placeholder {
    color: var(--muted);
}

.search-submit {
    width: 46px;
    min-height: 44px;
    border: 0;
    outline: 0;
    background: var(--brand);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition:
        background var(--transition),
        transform var(--transition);
}

.search-submit:hover,
.search-submit:focus-visible {
    background: var(--brand-dark);
}

/* ================= MOBILE DRAWER ================= */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1200;
    width: 300px;
    max-width: calc(100vw - 24px);
    height: 100vh;
    height: 100dvh;
    padding: 20px;
    background: var(--card);
    color: var(--ink);
    box-shadow: 22px 0 45px rgba(0, 0, 0, 0.22);
    transform: translateX(-105%);
    visibility: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    transition:
        transform var(--transition),
        visibility var(--transition);
}

.mobile-nav-drawer.is-open {
    transform: translateX(0);
    visibility: visible;
}

/* BACKDROP */
.ui-backdrop {
    position: fixed;
    z-index: 1090;
    inset: 0;
    background: rgba(2, 6, 23, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity var(--transition),
        visibility var(--transition);
}

.ui-backdrop.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* BODY LOCK */
body.nav-open {
    overflow: hidden;
}

/* MOBILE LINKS */
.mobile-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 13px;
    margin-bottom: 10px;
    border-radius: 10px;
    border: 1px solid var(--border-soft);
    background: transparent;
    font-weight: 700;
    text-decoration: none;
    color: var(--ink);
    overflow: hidden;
    transition:
        color var(--transition),
        background var(--transition),
        border-color var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
}

.mobile-link::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(205, 33, 34, 0.08);
    opacity: 0;
    transform: scaleX(0.75);
    transform-origin: left;
    transition:
        opacity var(--transition),
        transform var(--transition);
}

.mobile-link i,
.mobile-link span {
    position: relative;
    z-index: 2;
}

.mobile-link:hover,
.mobile-link:focus-visible {
    color: var(--brand);
    border-color: var(--brand);
    transform: translateX(6px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.mobile-link:hover::before,
.mobile-link:focus-visible::before {
    opacity: 1;
    transform: scaleX(1);
}

.mobile-link.active,
.mobile-link[aria-current="page"] {
    color: var(--brand);
    border-color: var(--brand);
    background: rgba(205, 33, 34, 0.08);
}

/* ================= DARK MODE HEADER FIX ================= */
body.dark-mode .header-main {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}

body.dark-mode .top-icon-btn,
body.dark-mode .social-btn {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.10);
}

body.dark-mode .social-btn.x i {
    color: #ffffff;
}

body.dark-mode .social-btn:hover i,
body.dark-mode .social-btn:focus-visible i {
    color: #ffffff;
}

body.dark-mode .search-form {
    background: #020617;
}

body.dark-mode .mobile-link.active,
body.dark-mode .mobile-link[aria-current="page"] {
    background: rgba(205, 33, 34, 0.14);
}

/* ================= RESPONSIVE HEADER FIX ================= */
@media (max-width: 991.98px) {
    .topbar-row {
        min-height: 56px;
    }

    .site-logo img {
        max-height: 42px;
    }

    .main-nav-links {
        justify-content: flex-start;
        padding: 0 10px;
    }

    .nav-link-custom {
        font-size: 15px;
        padding: 0 12px;
        min-height: 46px;
    }
}

@media (max-width: 575.98px) {
    .social-wrap {
        display: none;
    }

    .top-icon-btn {
        width: 36px;
        height: 36px;
    }

    .search-inner {
        padding: 12px;
    }

    .mobile-nav-drawer {
        width: 285px;
        padding: 18px;
    }
}

/* ================= CARDS ================= */


/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
    .site-logo img { max-height: 40px; }
    .main-nav-links { justify-content: flex-start; padding: 0 10px; }
    .nav-link-custom { font-size: 15px; }
}

@media (max-width: 575px) {
    .social-wrap { display: none; }
}

/* =========================================================
   Premium Aside (Selected) — Brand Color Version
========================================================= */


/* ================= DARK MODE ================= */
body.dark-mode .card-premium{
    background: #0b1220;
    border-color: rgba(255,255,255,.08);
    box-shadow: 0 10px 30px rgba(0,0,0,.45);
}

body.dark-mode .card-premium-head .h-title{
    color: #e5e7eb;
}

body.dark-mode .card-premium .head-line{
    background: linear-gradient(
        90deg,
        var(--brand),
        transparent
    );
}

body.dark-mode .mini-item{
    border-bottom-color: rgba(255,255,255,.08);
}

body.dark-mode .mini-title{
    color: #e5e7eb;
}

body.dark-mode .mini-meta{
    color: #94a3b8;
}

body.dark-mode .mini-thumb{
    background: #020617;
    border: 1px solid rgba(255,255,255,.06);
}

/* hover brand in dark */
body.dark-mode .mini-item:hover .mini-title{
    color: var(--brand);
}

/* Ad image tune */
body.dark-mode .card-premium img{
    filter: brightness(.92) contrast(1.05);
    border-radius: 12px;
}


/* =========================================================
   LEAD SLIDER — MASTER ADVANCED PRODUCTION VERSION
   Supports: .lead-slide-link, .lead-tools, .lead-nav, dots
========================================================= */

.lead-viewport {
    position: relative;
    overflow: hidden;
}

.lead-track {
    display: flex;
    width: 100%;
    transition: transform 450ms cubic-bezier(.2,.9,.2,1);
    will-change: transform;
}

.lead-slide {
    min-width: 100%;
    position: relative;
}

.lead-slide-link {
    display: block;
    position: relative;
    color: #fff;
    text-decoration: none;
}

.lead-img {
    width: 100%;
    height: clamp(360px, 52vw, 620px);
    object-fit: cover;
    object-position: center;
    display: block;
}

.ldot.active {
    opacity: 1;
    transform: scale(1.15);
}

.icon-circle.is-bookmarked {
    color: #ffc107;
}

#leadSlider {
    position: relative;
    overflow: hidden;
}

/* Viewport */
.lead-viewport {
    position: relative;
    overflow: hidden;
    border-radius: inherit;
    background: #0f172a;
}

/* Track */
.lead-track {
    display: flex;
    width: 100%;
    transition: transform 450ms cubic-bezier(.2, .9, .2, 1);
    will-change: transform;
}

.lead-viewport.is-dragging .lead-track {
    transition: none;
    cursor: grabbing;
}

/* Slide */
.lead-slide {
    position: relative;
    display: block;
    min-width: 100%;
    color: #ffffff;
    overflow: hidden;
}

/* Clickable slide link */
.lead-slide-link {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    color: inherit;
    text-decoration: none;
    overflow: hidden;
}

/* Image */
.lead-img {
    display: block;
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    transform: scale(1.02);
    transition: transform 800ms ease, filter 350ms ease;
    will-change: transform;
}

.lead-slide-link:hover .lead-img {
    filter: brightness(.95) contrast(1.05);
}

/* Overlay */
.lead-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, .04) 0%, rgba(0, 0, 0, .18) 45%, rgba(0, 0, 0, .78) 100%),
        linear-gradient(90deg, rgba(0, 0, 0, .35) 0%, rgba(0, 0, 0, 0) 55%);
    pointer-events: none;
}

/* Badge */
.lead-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .92);
    color: #0f172a;
    border: 1px solid rgba(255, 255, 255, .35);
    box-shadow: 0 10px 22px rgba(0, 0, 0, .14);
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
}

.lead-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--brand);
    box-shadow: 0 0 0 4px rgba(205, 33, 34, .12);
}

/* Content */
.lead-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: block;
    padding: 18px 18px 20px;
    padding-right: 112px;
}

.lead-title {
    display: block;
    margin: 0;
    max-width: 95%;
    color: #ffffff;
    font-size: 24px;
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: -.2px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .42);
    opacity: 0;
    transform: translateY(-18px);
    transition:
        transform 420ms cubic-bezier(.2, .9, .2, 1),
        opacity 420ms ease,
        color 250ms ease;
}

.lead-slide-link:hover .lead-title {
    color: #ffffff;
}

.lead-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 8px;
    color: rgba(255, 255, 255, .86);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    opacity: 0;
    transform: translateY(-10px);
    transition:
        transform 420ms cubic-bezier(.2, .9, .2, 1),
        opacity 420ms ease;
    transition-delay: 80ms;
}

/* Active slide animation */
.lead-slide.is-active .lead-img {
    animation: kenZoom var(--zoomDur, 3200ms) ease-out forwards;
}

@keyframes kenZoom {
    from {
        transform: scale(1.02);
    }

    to {
        transform: scale(1.10);
    }
}

.lead-slide.is-active .lead-title,
.lead-slide.is-active .lead-meta {
    opacity: 1;
    transform: translateY(0);
}

/* Actions */
.lead-actions {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    margin-top: 14px;
}

.read-more {
    color: inherit;
    text-decoration: none;
}

.btn-read {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .24);
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none !important;
    list-style: none;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition:
        transform .2s ease,
        background .2s ease,
        border-color .2s ease;
}

.btn-read:hover {
    background: rgba(255, 255, 255, .22);
    border-color: rgba(255, 255, 255, .36);
    transform: translateY(-1px);
}

/* Share / Bookmark Tools */
.lead-tools {
    position: absolute;
    right: 18px;
    bottom: 20px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon-circle {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .28);
    background: rgba(255, 255, 255, .88);
    color: #0f172a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .16);
    transition:
        transform .2s ease,
        background .2s ease,
        color .2s ease,
        border-color .2s ease;
}

.icon-circle i {
    font-size: 14px;
    line-height: 1;
}

.icon-circle:hover,
.icon-circle:focus-visible {
    background: var(--brand);
    color: #ffffff;
    border-color: var(--brand);
    transform: translateY(-2px);
    outline: none;
}

/* Slider Prev / Next */
.lead-nav {
    position: absolute;
    top: 50%;
    z-index: 6;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .90);
    color: #0f172a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transform: translateY(-50%);
    box-shadow: 0 12px 26px rgba(0, 0, 0, .20);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition:
        opacity .2s ease,
        transform .2s ease,
        background .2s ease,
        color .2s ease;
}

.lead-nav i {
    font-size: 14px;
    line-height: 1;
}

.lead-nav-prev {
    left: 12px;
}

.lead-nav-next {
    right: 12px;
}

.lead-nav:hover,
.lead-nav:focus-visible {
    background: var(--brand);
    color: #ffffff;
    transform: translateY(-50%) scale(1.05);
    outline: none;
}

/* Dots */
.lead-dots {
    position: absolute;
    left: 18px;
    bottom: 14px;
    z-index: 6;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lead-dots .ldot {
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .60);
    background: rgba(255, 255, 255, .55);
    cursor: pointer;
    transition:
        width .2s ease,
        background .2s ease,
        border-color .2s ease,
        transform .2s ease;
}

.lead-dots .ldot:hover,
.lead-dots .ldot:focus-visible {
    background: #ffffff;
    transform: scale(1.15);
    outline: none;
}

.lead-dots .ldot.active,
.lead-dots .ldot[aria-current="true"] {
    width: 24px;
    background: #ffffff;
    border-color: #ffffff;
}

/* Dark Mode */
body.dark-mode .lead-viewport {
    background: #020617;
}

body.dark-mode .icon-circle,
body.dark-mode .lead-nav {
    background: rgba(15, 23, 42, .86);
    color: #ffffff;
    border-color: rgba(255, 255, 255, .14);
}

body.dark-mode .icon-circle:hover,
body.dark-mode .icon-circle:focus-visible,
body.dark-mode .lead-nav:hover,
body.dark-mode .lead-nav:focus-visible {
    background: var(--brand);
    border-color: var(--brand);
}

/* Responsive */
@media (min-width: 768px) {
    .lead-content {
        padding: 22px 22px 24px;
        padding-right: 120px;
    }

    .lead-title {
        font-size: 28px;
    }
}

@media (max-width: 991.98px) {
    .lead-img {
        height: 360px;
    }
}

@media (max-width: 575.98px) {
    .lead-img {
        height: 310px;
    }

    .lead-badge {
        top: 12px;
        left: 12px;
        padding: 6px 9px;
        font-size: 11px;
    }

    .lead-content {
        padding: 16px 14px 52px;
    }

    .lead-title {
        max-width: 100%;
        font-size: 20px;
        line-height: 1.3;
    }

    .lead-meta {
        font-size: 11px;
    }

    .lead-actions {
        margin-top: 10px;
    }

    .btn-read {
        padding: 7px 11px;
        font-size: 12px;
    }

    .lead-tools {
        right: 14px;
        bottom: 14px;
    }

    .icon-circle {
        width: 34px;
        height: 34px;
    }

    .lead-nav {
        width: 34px;
        height: 34px;
        opacity: .94;
    }

    .lead-nav-prev {
        left: 8px;
    }

    .lead-nav-next {
        right: 8px;
    }

    .lead-dots {
        left: 14px;
        bottom: 18px;
    }
}

/* Motion Safety */
@media (prefers-reduced-motion: reduce) {
    .lead-track,
    .lead-img,
    .lead-title,
    .lead-meta,
    .lead-nav,
    .icon-circle,
    .btn-read,
    .lead-dots .ldot {
        animation: none !important;
        transition: none !important;
    }

    .lead-slide.is-active .lead-img {
        animation: none !important;
        transform: scale(1.02);
    }
}

/* =========================================================
   IMAGE CARDS (mid cards)
========================================================= */
.card-link{
    display:block;
    text-decoration:none;
    color:inherit;
    border-radius: var(--radius);
    overflow:hidden;
    border:1px solid var(--border);
    box-shadow: var(--shadow2);
    background: var(--card);
}
.img-card{ position:relative; }
.img-card img{ width:100%; height:160px; object-fit:cover; display:block; }
.img-overlay{
    position:absolute; inset:0;
    background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.35));
}
.img-tag{
    position:absolute; left:12px; bottom:12px;
    background: rgba(255,255,255,.92);
    color: #0f172a;
    font-weight:700;
    font-size:11px;
    padding:4px 8px;
    border-radius:10px;
}
.card-title-2{
    line-height:1.3;
    font-size:20px !important;
    font-weight:400;
    color: var(--ink);
}
.card-link:hover .card-title-2{ color: var(--brand-dark); }

/* =========================================================
   RIGHT ADS
========================================================= */
.ad-card{
    position:relative;
    background: var(--card);
    border:1px solid var(--border);
    border-radius: var(--radius);
    overflow:hidden;
    box-shadow: var(--shadow2);
}
.ad-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition: transform .35s ease;
}
.ad-card:hover img{ transform: scale(1.03); }

.ad-sm{ height:250px; }
.ad-lg{ height:320px; }
@media (max-width: 991px){
    .ad-sm{ height:220px; }
    .ad-lg{ height:320px; }
}
.ad-card-2nd{
    position:relative;
    background: var(--card);
    border:1px solid var(--border);
    border-radius: var(--radius);
    overflow:hidden;
    box-shadow: var(--shadow2);
}
.ad-card-2nd img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition: transform .35s ease;
}
.ad-card-2nd:hover img{ transform: scale(1.03); }

.ad-sm-2nd{ height:220px; }
.ad-lg-2nd{ height:400px; }
@media (max-width: 991px){
    .ad-sm{ height:220px; }
    .ad-lg{ height:400px; }
}

/* =========================================================
   TABS (Latest/Popular)
========================================================= */
.tab-head{
    display:grid;
    grid-template-columns: 1fr 1fr;
    background:#0b1220;
}
body.dark-mode .tab-head{ background:#111827; }

.tab-btn{
    padding:12px 14px;
    border:0;
    background:transparent;
    color: rgba(255,255,255,.92);
    font-weight:900;
    cursor:pointer;
}
.tab-btn.active{
    background: var(--brand);
    color:#fff;
}

.tab-body{ padding: 6px 0; }

.tab-item{
    display:flex;
    gap:12px;
    padding:12px 14px;
    text-decoration:none;
    color:inherit;
    border-top:1px solid var(--border);
}
.tab-thumb{
    width:76px;height:54px;
    border-radius:12px;
    object-fit:cover;
    border:1px solid var(--border);
    flex:0 0 auto;
}
.tab-title{
    font-weight:800;
    font-size:16px;
    color: var(--ink);
    line-height:1.3;
}
.tab-meta{
    font-size:11px;
    color: var(--muted);
    margin-top:4px;
}
.tab-item:hover .tab-title{ color: var(--brand-dark); }

.tab-more{
    display:block;
    text-align:center;
    padding:12px 14px;
    font-weight:900;
    font-size:13px;
    color: var(--brand-dark);
    text-decoration:none;
    border-top:1px solid var(--border);
}
.tab-more:hover{ text-decoration:underline; }

.tab-pop{
    display:flex;
    gap:12px;
    padding:12px 14px;
    text-decoration:none;
    color:inherit;
    border-top:1px solid var(--border);
}
.rank{
    width:32px;height:32px;
    border-radius:12px;
    background: var(--brand);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:900;
    font-size:12px;
}
/* ===============================
   Dark Mode – National Section
   (no new classes)
================================ */

body.dark-mode .nn-cat{
    color: #e5e7eb;
}

body.dark-mode .nn-cat-head .nn-cat-title{
    color: #f8fafc;
}

body.dark-mode .nn-cat-head .head-line{
    background: linear-gradient(90deg, var(--brand), rgba(255,255,255,0));
}

/* Featured card */
body.dark-mode .card-premium{
    background: #0b1220;
    border-color: rgba(255,255,255,.08);
    box-shadow: 0 10px 30px rgba(0,0,0,.45);
}

body.dark-mode .nn-feature-title{
    color: #f1f5f9;
}

body.dark-mode .nn-feature-excerpt{
    color: #94a3b8;
}

body.dark-mode .nn-feature-meta{
    color: #94a3b8;
}

body.dark-mode .nn-feature-cta{
    color: var(--brand);
}

/* Mini grid items */
body.dark-mode .nn-mini-title{
    color: #e5e7eb;
}

body.dark-mode .nn-mini:hover .nn-mini-title{
    color: var(--brand);
}

/* Images tone */
body.dark-mode .nn-feature-media img,
body.dark-mode .nn-mini-media img{
    filter: brightness(.9) contrast(1.05);
}

/* ======================================
   Dark Mode – Country Block Section
====================================== */

body.dark-mode .countryBlock{
    background: transparent;
    color: #e5e7eb;
}

/* section head */
body.dark-mode .countryBlock__head .countryBlock__title a{
    color: #f8fafc;
}

body.dark-mode .countryBlock__head .head-line{
    background: linear-gradient(90deg, var(--brand), rgba(255,255,255,0));
}

body.dark-mode .countryBlock__more{
    color: var(--brand);
}

/* ===== Lead ===== */
body.dark-mode .countryLead{
    background: #0b1220;
    border-radius: 14px;
}

body.dark-mode .countryLead__title{
    color: #f1f5f9;
}

body.dark-mode .countryLead__excerpt{
    color: #94a3b8;
}

body.dark-mode .countryLead__meta{
    color: #94a3b8;
}

body.dark-mode .countryLead__cta{
    color: var(--brand);
}

/* image tone */
body.dark-mode .countryLead__media img,
body.dark-mode .countryCard__media img{
    filter: brightness(.9) contrast(1.05);
}

/* ===== List ===== */
body.dark-mode .countryList__item{
    border-bottom-color: rgba(255,255,255,.08);
}

body.dark-mode .countryList__title{
    color: #e5e7eb;
}

body.dark-mode .countryList__item:hover .countryList__title{
    color: var(--brand);
}

/* divider */
body.dark-mode .countryDivider{
    background: rgba(255,255,255,.08);
}

/* ===== Bottom cards ===== */
body.dark-mode .countryCard{
    background: #0b1220;
    border-color: rgba(255,255,255,.08);
}

body.dark-mode .countryCard__title{
    color: #e5e7eb;
}

body.dark-mode .countryCard:hover .countryCard__title{
    color: var(--brand);
}

/* ===== Map card ===== */
body.dark-mode .mapCard{
    background: #0b1220;
    border-color: rgba(255,255,255,.08);
}

body.dark-mode .mapCard__title{
    color: #f8fafc;
}

body.dark-mode .mapCard__sub{
    color: #94a3b8;
}

body.dark-mode .mapCard__all{
    color: var(--brand);
}

/* search */
body.dark-mode .mapSearch{
    background: #020617;
    border-color: rgba(255,255,255,.08);
}

body.dark-mode .mapSearch input{
    color: #e5e7eb;
}

body.dark-mode .mapSearch input::placeholder{
    color: #64748b;
}

/* tags */
body.dark-mode .mTag{
    background: #020617;
    color: #cbd5f5;
    border-color: rgba(255,255,255,.08);
}

body.dark-mode .mTag:hover{
    background: var(--brand);
    color: #fff;
}

/* hint */
body.dark-mode .mapHint{
    color: #94a3b8;
}

body.dark-mode .hintDot{
    background: var(--brand);
}

/* =========================================================
   NOTICE BOX
========================================================= */
.notice-box{
    border-radius: var(--radius);
    border:1px solid rgba(16,185,129,.30);
    background: var(--card);
    overflow:hidden;
    box-shadow: var(--shadow2);
}
body.dark-mode .notice-box{
    border-color: rgba(16,185,129,.22);
}
.notice-head{
    background: rgba(16,185,129,.12);
    padding:12px 14px;
    font-weight:900;
    color: #047857;
    border-bottom:1px solid rgba(16,185,129,.18);
}
body.dark-mode .notice-head{ color:#a7f3d0; }
.notice-body{
    padding:14px;
    font-size:13px;
    color: var(--ink);
    line-height:1.6;
}
.hotline{
    margin-top:10px;
    display:inline-block;
    background: rgba(16,185,129,.12);
    padding:8px 10px;
    border-radius:12px;
    font-weight:900;
    color:#065f46;
}
body.dark-mode .hotline{ color:#a7f3d0; }


/* ============================
   Noble News - Category Block (Screenshot Style)
   ============================ */

.nn-cat{
    padding: 14px 0 6px;
}

.nn-cat-head{
    display:flex;
    align-items:center;
    gap:12px;
    margin: 6px 0 14px;
}

.nn-cat-title{
    font-size: 26px;
    line-height: 1;
    font-weight: 800;
    margin:0;
    letter-spacing: .2px;
}

.nn-cat-line{
    height: 2px;
    flex:1;
    background: linear-gradient(90deg, rgba(0,0,0,.18), rgba(0,0,0,0));
}

/* cards base */
.card-premium{
    background:#fff;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 10px;
    overflow:hidden;
    box-shadow: 0 10px 22px rgba(0,0,0,.06);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.card-premium:hover{
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0,0,0,.10);
    border-color: rgba(0,0,0,.12);
}

/* LEFT Featured */
.nn-feature-link{
    display:block;
    color: inherit;
    text-decoration:none;
}

.nn-feature-media{
    position:relative;
    aspect-ratio: 16 / 9;
    background:#f2f2f2;
}

.nn-feature-media img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.nn-feature-body{
    padding: 14px 16px 12px;
}

.nn-feature-title{
    font-size: 24px;
    line-height: 1.25;
    font-weight: 800;
    margin: 0 0 8px;
}

.nn-feature-excerpt{
    margin:0 0 10px;
    color: rgba(0,0,0,.70);
    font-size: 14px;
    line-height: 1.6;

    display: -webkit-box;
    -webkit-line-clamp: 2;       /* 2 lines like screenshot */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nn-feature-meta{
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
    font-size: 13px;
    color: rgba(0,0,0,.62);
}

.nn-feature-meta .dot{
    opacity:.7;
}

.nn-feature-cta{
    margin-left:auto;
    font-weight: 800;
    color:#0b5ed7; /* bootstrap primary vibe */
    white-space:nowrap;
}

.nn-feature:hover .nn-feature-cta{
    text-decoration: underline;
}

/* RIGHT mini cards */
.nn-mini{
    display:block;
    text-decoration:none;
    color:inherit;
    height: 100%;
}

.nn-mini-media{
    aspect-ratio: 16/10;
    background:#f2f2f2;
}

.nn-mini-media img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.nn-mini-title{
    padding: 10px 10px 12px;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 400;
    color: rgba(0,0,0,.88);

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* tighter grid feel like screenshot */
@media (min-width: 992px){
    .nn-cat .row.g-4{ --bs-gutter-x: 22px; --bs-gutter-y: 22px; }
    .nn-cat .row.g-3{ --bs-gutter-x: 16px; --bs-gutter-y: 16px; }
}

/* Mobile: featured first, grid below */
@media (max-width: 991.98px){
    .nn-feature-title{ font-size: 20px; }
    .nn-cat-title{ font-size: 22px; }
}


/* =========================================================
   VIDEO ZONE - Final Production CSS
   Supports:
   New classes: .video-card-pro, .video-media-pro, .video-play-btn
   Old classes: .video-card, .video-media, .play-btn
========================================================= */

.video-zone {
    --video-bg: #f7f7f7;
    --video-dark: #07142f;
    --video-card-bg: #111827;
    --video-red: #d90429;
    --video-red-hover: #dc3545;
    --video-white: #ffffff;
    --video-shadow: 0 14px 34px rgba(0, 0, 0, .14);
    --video-shadow-hover: 0 18px 42px rgba(0, 0, 0, .22);
    --video-radius: 10px;
    --video-gap: 16px;
    --video-small-height: 235px;
    --video-feature-height: 490px;
    --video-tablet-feature-height: 390px;
    --video-tablet-card-height: 240px;
    --video-mobile-card-height: 230px;

    background: var(--video-bg);
    color: var(--video-dark);
}

/* =========================================================
   Section Header
========================================================= */

.video-section-head,
.video-zone .sec-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--video-gap);
    margin-bottom: 16px;
}

.video-section-title,
.video-zone .sec-title {
    margin: 0;
    color: var(--video-dark);
    font-size: 30px;
    font-weight: 800;
    line-height: 1.2;
}

.video-section-line,
.video-zone .head-line,
.video-zone .sec-line {
    display: block;
    width: 52px;
    height: 4px;
    margin-top: 7px;
    border-radius: 999px;
    background: var(--video-red);
}

.video-view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 7px 14px;
    border: 1px solid var(--video-red-hover);
    border-radius: 999px;
    background: var(--video-white);
    color: var(--video-red-hover);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    white-space: nowrap;
    transition: background .25s ease, color .25s ease, border-color .25s ease;
}

.video-view-all:hover {
    background: var(--video-red-hover);
    color: var(--video-white);
}

/* =========================================================
   Layout
========================================================= */

.video-side-grid {
    display: grid;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: var(--video-gap);
    height: var(--video-feature-height);
}

.video-card-pro,
.video-zone .video-card {
    position: relative;
    display: block;
    overflow: hidden;
    height: var(--video-small-height);
    border-radius: var(--video-radius);
    background: var(--video-card-bg);
    color: var(--video-white);
    text-decoration: none;
    box-shadow: var(--video-shadow);
    isolation: isolate;
    transition: transform .25s ease, box-shadow .25s ease;
}

.video-card-pro:hover,
.video-zone .video-card:hover {
    color: var(--video-white);
    transform: translateY(-2px);
    box-shadow: var(--video-shadow-hover);
}

.video-card-small,
.video-card-bottom,
.video-zone .video-card:not(.video-feature) {
    height: var(--video-small-height);
}

.video-card-featured,
.video-zone .video-feature {
    height: var(--video-feature-height);
}

/* =========================================================
   Media + Thumbnail Fit
========================================================= */

.video-media-pro,
.video-zone .video-media {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: var(--video-card-bg);
}

.video-media-pro img,
.video-zone .video-media img {
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
    transform: scale(1.01);
    transition: transform .45s ease, filter .45s ease;
}

.video-card-pro:hover .video-media-pro img,
.video-zone .video-card:hover .video-media img {
    transform: scale(1.05);
    filter: brightness(.92);
}

.video-media-pro::after,
.video-zone .video-media::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, .04) 0%,
        rgba(0, 0, 0, .14) 52%,
        rgba(0, 0, 0, .42) 100%
    );
}

/* =========================================================
   Caption Overlay
========================================================= */

.video-card-overlay,
.video-zone .video-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    padding: 48px 12px 12px;
    color: var(--video-white);
    background: linear-gradient(
        180deg,
        rgba(176, 0, 0, 0) 0%,
        rgba(176, 0, 0, .82) 60%,
        rgba(176, 0, 0, .98) 100%
    );
}

.video-card-overlay-lg,
.video-zone .video-caption-lg {
    padding: 92px 18px 18px;
}

.video-card-title,
.video-zone .cap-title {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: var(--video-white);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.25;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .55);
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.video-card-title-lg,
.video-zone .cap-title-lg {
    font-size: 30px;
    line-height: 1.15;
}

.video-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
    color: rgba(255, 255, 255, .84);
    font-size: 14px;
    font-weight: 500;
}

/* =========================================================
   Play Button
========================================================= */

.video-play-btn,
.video-zone .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 4;
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .84);
    color: #e00000;
    font-size: 22px;
    box-shadow:
        0 0 0 8px rgba(255, 255, 255, .24),
        0 12px 26px rgba(0, 0, 0, .25);
    animation: videoPlayPulse 2.2s infinite ease-in-out;
    transition: background .25s ease, color .25s ease, box-shadow .25s ease;
}

.video-play-btn i {
    margin-left: 3px;
}

.video-zone .play-btn::before {
    content: "";
    width: 0;
    height: 0;
    margin-left: 4px;
    border-left: 18px solid #e00000;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

.video-zone .play-btn i {
    display: none;
}

.video-play-btn::after,
.video-zone .play-btn::after {
    content: "";
    position: absolute;
    inset: -10px;
    border: 2px solid rgba(255, 255, 255, .72);
    border-radius: 50%;
    opacity: 0;
    animation: videoPlayRipple 2.2s infinite ease-out;
}

.video-play-btn-lg {
    width: 74px;
    height: 74px;
    font-size: 28px;
}

.video-card-pro:hover .video-play-btn,
.video-zone .video-card:hover .play-btn {
    background: #e00000;
    color: var(--video-white);
    box-shadow:
        0 0 0 10px rgba(224, 0, 0, .20),
        0 14px 30px rgba(0, 0, 0, .28);
}

.video-zone .video-card:hover .play-btn::before {
    border-left-color: var(--video-white);
}

@keyframes videoPlayPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.08);
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes videoPlayRipple {
    0% {
        transform: scale(.70);
        opacity: .65;
    }

    70% {
        opacity: .24;
    }

    100% {
        transform: scale(1.35);
        opacity: 0;
    }
}

/* =========================================================
   Dark Mode
========================================================= */

body.dark-mode .video-zone {
    --video-bg: #060b16;
    --video-dark: #f8fafc;
    --video-card-bg: #0b1220;
    --video-shadow: 0 12px 32px rgba(0, 0, 0, .45);
    --video-shadow-hover: 0 18px 44px rgba(0, 0, 0, .55);

    color: #e5e7eb;
}

body.dark-mode .video-section-line,
body.dark-mode .video-zone .head-line,
body.dark-mode .video-zone .sec-line {
    background: linear-gradient(90deg, #ef233c, rgba(255, 255, 255, 0));
}

body.dark-mode .video-view-all {
    border-color: rgba(255, 255, 255, .16);
    background: #0b1220;
    color: #f8fafc;
}

body.dark-mode .video-view-all:hover {
    border-color: #ef233c;
    background: #ef233c;
    color: #fff;
}

body.dark-mode .video-card-pro,
body.dark-mode .video-zone .video-card,
body.dark-mode .video-zone .card-premium {
    border-color: rgba(255, 255, 255, .08);
    background: #0b1220;
}

body.dark-mode .video-media-pro img,
body.dark-mode .video-zone .video-media img {
    filter: brightness(.86) contrast(1.05);
}

body.dark-mode .video-card-pro:hover .video-media-pro img,
body.dark-mode .video-zone .video-card:hover .video-media img {
    filter: brightness(.92) contrast(1.05);
}

body.dark-mode .video-card-overlay,
body.dark-mode .video-zone .video-caption {
    background: linear-gradient(
        180deg,
        rgba(2, 6, 23, 0) 0%,
        rgba(2, 6, 23, .78) 58%,
        rgba(2, 6, 23, .96) 100%
    );
}

body.dark-mode .video-play-btn,
body.dark-mode .video-zone .play-btn {
    background: rgba(255, 255, 255, .82);
    box-shadow:
        0 0 0 8px rgba(255, 255, 255, .12),
        0 12px 28px rgba(0, 0, 0, .38);
}

/* =========================================================
   Responsive
========================================================= */

@media (max-width: 991.98px) {
    .video-side-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: unset;
        height: auto;
    }

    .video-section-title,
    .video-zone .sec-title {
        font-size: 25px;
    }

    .video-card-featured,
    .video-zone .video-feature {
        height: var(--video-tablet-feature-height);
    }

    .video-card-small,
    .video-card-bottom,
    .video-zone .video-card:not(.video-feature) {
        height: var(--video-tablet-card-height);
    }

    .video-card-title-lg,
    .video-zone .cap-title-lg {
        font-size: 24px;
    }
}

@media (max-width: 575.98px) {
    .video-zone {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .video-section-head,
    .video-zone .sec-head {
        align-items: flex-start;
    }

    .video-section-title,
    .video-zone .sec-title {
        font-size: 24px;
    }

    .video-view-all {
        padding: 6px 11px;
        font-size: 13px;
    }

    .video-side-grid {
        grid-template-columns: 1fr;
    }

    .video-card-featured,
    .video-card-small,
    .video-card-bottom,
    .video-zone .video-feature,
    .video-zone .video-card:not(.video-feature) {
        height: var(--video-mobile-card-height);
    }

    .video-card-overlay,
    .video-zone .video-caption {
        padding: 42px 10px 10px;
    }

    .video-card-overlay-lg,
    .video-zone .video-caption-lg {
        padding: 54px 12px 12px;
    }

    .video-card-title,
    .video-zone .cap-title {
        font-size: 16px;
    }

    .video-card-title-lg,
    .video-zone .cap-title-lg {
        font-size: 20px;
    }

    .video-play-btn,
    .video-zone .play-btn {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .video-play-btn-lg {
        width: 58px;
        height: 58px;
        font-size: 22px;
    }

    .video-zone .play-btn::before {
        border-left-width: 15px;
        border-top-width: 9px;
        border-bottom-width: 9px;
    }
}

/* =========================================================
   Reduced Motion
========================================================= */

@media (prefers-reduced-motion: reduce) {
    .video-play-btn,
    .video-play-btn::after,
    .video-zone .play-btn,
    .video-zone .play-btn::after,
    .video-media-pro img,
    .video-zone .video-media img,
    .video-card-pro,
    .video-zone .video-card {
        animation: none;
        transition: none;
    }
}


/* ======================================================
   Country Section + Map (Brand Color: var(--brand))
   ====================================================== */

.countryBlock{ padding-bottom: 6px; }

/* title */
.countryBlock__head{
    display:flex; align-items:center; gap:12px;
}
.countryBlock__title{ margin:0; font-weight: 1000; font-size: 28px; line-height:1; }
.countryBlock__title a{ color:#0b1220; text-decoration:none; }

.countryBlock__more{
    text-decoration:none;
    font-weight: 900;
    color: var(--brand);
    padding: 8px 12px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--brand) 12%, transparent);
    border: 1px solid color-mix(in srgb, var(--brand) 18%, transparent);
}
.countryBlock__more:hover{ filter: brightness(1.02); }

/* wrap left */
.countryBlock__wrap{
    border: 1px solid rgba(2,6,23,.08);
    border-radius: 14px;
    padding: 14px;
    box-shadow: 0 18px 40px rgba(2,6,23,.06);
}

/* Lead */
.countryLead{
    border: 1px solid rgba(2,6,23,.08);
    border-radius: 14px;
    overflow:hidden;
    background:#fff;
    box-shadow: 0 14px 34px rgba(2,6,23,.08);
    transition: transform .18s ease, box-shadow .18s ease;
}
.countryLead:hover{ transform: translateY(-2px); box-shadow: 0 18px 44px rgba(2,6,23,.12); }
.countryLead__link{ display:block; text-decoration:none; color:inherit; }

.countryLead__media{
    position:relative;
    aspect-ratio: 16/10;
    background:#f1f5f9;
    overflow:hidden;
}
.countryLead__media img{
    width:100%; height:100%;
    object-fit:cover; display:block;
}

.countryLead__badge{
    position:absolute; left: 12px; top: 12px; z-index:2;
    background: rgba(255,255,255,.92);
    color: rgba(2,6,23,.88);
    font-weight: 1000;
    padding: 7px 10px;
    border-radius: 999px;
    border: 1px solid rgba(2,6,23,.10);
    box-shadow: 0 12px 24px rgba(0,0,0,.10);
}
.countryLead__body{ padding: 12px 14px 14px; }
.countryLead__title{
    margin:0 0 8px;
    font-weight: 1000;
    font-size: 20px;
    line-height:1.25;
}
.countryLead__excerpt{
    margin:0 0 10px;
    color: rgba(2,6,23,.70);
    font-size: 14px;
    line-height:1.6;
    display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;
}
.countryLead__meta{
    display:flex; align-items:center; gap:10px; flex-wrap:wrap;
    color: rgba(2,6,23,.60);
    font-size: 13px;
}
.countryLead__meta .dot{ opacity:.7; }
.countryLead__cta{
    color: var(--brand);
    font-weight: 1000;
}

/* middle list */
.countryList{
    border-left: 1px solid rgba(2,6,23,.08);
    padding-left: 14px;
}
.countryList__item{
    position:relative;
    display:block;
    padding: 12px 12px;
    border-radius: 12px;
    text-decoration:none;
    color: rgba(2,6,23,.90);
    border: 1px solid rgba(2,6,23,.08);
    background: rgba(248,250,252,.92);
    box-shadow: 0 12px 24px rgba(2,6,23,.05);
    transition: transform .14s ease, border-color .14s ease, box-shadow .14s ease;
}
.countryList__item + .countryList__item{ margin-top: 10px; }
.countryList__item:hover{
    transform: translateY(-1px);
    border-color: color-mix(in srgb, var(--brand) 26%, rgba(2,6,23,.10));
    box-shadow: 0 16px 30px rgba(2,6,23,.08);
}
.countryList__title{
    font-weight: 900;
    line-height: 1.35;
    display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;
}
.countryList__hot{
    position:absolute; left: 10px; top: -10px;
    font-size: 12px; font-weight: 1000;
    color:#fff;
    background: #dc2626;
    padding: 6px 10px;
    border-radius: 999px;
    box-shadow: 0 12px 24px rgba(220,38,38,.18);
}

/* divider */
.countryDivider{
    height: 1px;
    background: rgba(2,6,23,.10);
    margin: 4px 0 2px;
}

/* bottom cards */
.countryCard{
    display:block;
    text-decoration:none;
    border-radius: 14px;
    overflow:hidden;
    border: 1px solid rgba(2,6,23,.08);
    background:#fff;
    box-shadow: 0 14px 30px rgba(2,6,23,.06);
    transition: transform .16s ease, box-shadow .16s ease;
    height: 100%;
}
.countryCard:hover{ transform: translateY(-2px); box-shadow: 0 18px 40px rgba(2,6,23,.10); }
.countryCard__media{ aspect-ratio: 16/10; background:#f1f5f9; }
.countryCard__media img{ width:100%; height:100%; object-fit:cover; display:block; }
.countryCard__body{ padding: 10px 12px 12px; }
.countryCard__title{
    font-weight: 900;
    color: rgba(2,6,23,.90);
    line-height: 1.3;
    display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;
}

/* map card */
.mapCard{
    border: 1px solid rgba(2,6,23,.08);
    border-radius: 14px;
    background: #fff;
    padding: 14px;
    box-shadow: 0 18px 40px rgba(2,6,23,.06);
}
.mapCard__head{
    display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
    margin-bottom: 10px;
}
.mapCard__title{ font-weight:1000; font-size: 18px; color: rgba(2,6,23,.92); }
.mapCard__sub{ font-size: 13px; color: rgba(2,6,23,.60); margin-top: 2px; }
.mapCard__all{
    text-decoration:none;
    font-weight: 900;
    color: var(--brand);
    white-space: nowrap;
    padding: 8px 10px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--brand) 10%, transparent);
    border: 1px solid color-mix(in srgb, var(--brand) 18%, transparent);
}
.mapCard__all:hover{ filter: brightness(1.02); }

/* search */
.mapSearch{
    display:flex; align-items:center; gap:10px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(2,6,23,.10);
    background: rgba(248,250,252,.92);
}
.mapSearch i{ color: rgba(2,6,23,.55); }
.mapSearch input{
    width:100%;
    border:0; outline:0;
    background: transparent;
    font-weight: 900;
    color: rgba(2,6,23,.88);
}

/* tags */
.mapTags{ display:flex; flex-wrap:wrap; gap:8px; margin: 12px 0 10px; }
.mTag{
    border: 1px solid color-mix(in srgb, var(--brand) 18%, rgba(2,6,23,.10));
    background: color-mix(in srgb, var(--brand) 10%, #fff);
    color: var(--brand);
    font-weight: 1000;
    font-size: 13px;
    padding: 7px 10px;
    border-radius: 999px;
    transition: transform .12s ease, background .12s ease;
}
.mTag:hover{ transform: translateY(-1px); background: color-mix(in srgb, var(--brand) 14%, #fff); }
.mTag.is-active{
    background: color-mix(in srgb, var(--brand) 18%, #fff);
    border-color: color-mix(in srgb, var(--brand) 30%, rgba(2,6,23,.10));
}

/* svg box */
.mapBox{
    border-radius: 14px;
    border: 1px solid rgba(2,6,23,.10);
    background: rgba(248,250,252,.85);
    padding: 10px;
}
.bdMap{ width:100%; height:auto; display:block; }

/* base silhouette */
.bdMap__base{
    fill: url(#bdFill);
    stroke: rgba(255,255,255,.9);
    stroke-width: 3;
}

/* zones */
.bdZone{
    fill: rgba(255,255,255,.16);
    stroke: rgba(255,255,255,.75);
    stroke-width: 2;
    cursor: pointer;
    transition: fill .15s ease, opacity .15s ease, transform .15s ease;
}
.bdZone:hover{ fill: rgba(255,255,255,.28); }
.bdZone.is-active{
    fill: rgba(255,255,255,.34);
    opacity: 1;
}

/* pins */
.pin{ cursor:pointer; }
.pin__bg{
    fill: rgba(255,255,255,.92);
    stroke: rgba(2,6,23,.12);
    stroke-width: 1.5;
}
.pin__icon{ fill: var(--brand); }
.pin__label{
    font-weight: 1000;
    font-size: 16px;
    fill: rgba(255,255,255,.95);
    paint-order: stroke;
    stroke: rgba(2,6,23,.35);
    stroke-width: 3px;
}
.pin__label--big{ font-size: 18px; }

.mapHint{
    display:flex; align-items:center; gap:10px;
    margin-top: 10px;
    font-size: 13px;
    color: rgba(2,6,23,.62);
}
.hintDot{
    width:10px; height:10px; border-radius:50%;
    background: var(--brand);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand) 18%, transparent);
}

/* responsive */
@media (max-width: 767.98px){
    .countryBlock__title{ font-size: 24px; }
    .countryList{ border-left: 0; padding-left: 0; }
}

/* =========================
   SVG Map Modern Style
   ========================= */
:root{
    --map-normal: #1C651B;     /* normal */
    --map-hover: var(--brand); /* hover */
    --map-stroke: #ffffff;
    --map-muted: #D5D5D5;
}

/* base */
.st0{opacity:.7;}
.st1{fill:#80C2EB;}
.st2{fill:none;}

/* all region shapes same */
.st3,.st4,.st5,.st6,.st7,.st8,.st9,.st10,.st11,.st13,.st14,.st15{
    fill: var(--map-normal);
    stroke: var(--map-stroke);
    stroke-width: .75;
    stroke-miterlimit: 10;
    transition: fill .18s ease, filter .18s ease, transform .18s ease;
}

.st13,.st15{ stroke-width: .25; }

.st16{enable-background:new;}
.st17{
    fill:#fff;
    pointer-events: none; /* text/icon should not block hover */
}
.st18{opacity:.34;}
.st19{
    fill: var(--map-muted);
    transition: fill .18s ease;
    pointer-events: none;
}

/* =========================
   Hover / Focus for ALL divisions
   (Works if each division group has class="division")
   Example: <g id="dhaka" class="division">...</g>
   ========================= */
.division{
    cursor: pointer;
    outline: none;
}

.division:hover path:not(.st17):not(.st19),
.division:focus-visible path:not(.st17):not(.st19),
.division.is-active path:not(.st17):not(.st19){
    fill: var(--map-hover);
    filter: drop-shadow(0 10px 18px rgba(0,0,0,.18));
}

/* keep labels and muted parts consistent on hover */
.division:hover .st17,
.division:focus-visible .st17,
.division.is-active .st17{
    fill:#fff;
}

.division:hover .st19,
.division:focus-visible .st19,
.division.is-active .st19{
    fill: var(--map-muted);
}

/* Accessibility: reduced motion */
@media (prefers-reduced-motion: reduce){
    .st3,.st4,.st5,.st6,.st7,.st8,.st9,.st10,.st11,.st13,.st14,.st15,.st19{
        transition: none !important;
    }
}

/* =========================================================
   Dual Category Block (রাজনীতি + অর্থনীতি) — Screenshot Style
   Markup: .nn-dualCat .nn-catCol .nn-leadRow/.nn-leadSplit .nn-miniGrid
========================================================= */

.nn-dualCat{ padding: 6px 0 10px; }

.nn-catCol{
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px;
    box-shadow: var(--shadow2);
}


.nn-colTitle{
    margin:0;
    font-size: 26px;
    font-weight: 900;
    line-height:1;
    letter-spacing: .2px;
}

.nn-colLine{
    height: 2px;
    flex:1;
    background: linear-gradient(90deg, rgba(2,6,23,.16), rgba(2,6,23,0));
    border-radius: 999px;
}

/* Featured rows */
.nn-leadRow,
.nn-leadSplit{
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid rgba(2,6,23,.08);
}

.nn-leadRow__link{
    display:grid;
    grid-template-columns: 260px 1fr;
    gap: 14px;
    text-decoration:none;
    color:inherit;
    align-items:start;
}

.nn-leadRow__media{
    border-radius: 10px;
    overflow:hidden;
    border: 1px solid rgba(2,6,23,.10);
    background: rgba(148,163,184,.15);
    aspect-ratio: 16/10;
}

.nn-leadRow__media img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition: transform .45s ease;
}

.nn-leadRow__body{ padding-top: 2px; }

.nn-leadRow__title{
    margin:0 0 8px;
    font-size: 24px;
    font-weight: 900;
    line-height: 1.25;
    color: var(--ink);
}

.nn-leadRow__excerpt{
    margin:0;
    font-size: 14px;
    line-height: 1.65;
    color: var(--muted);
    display:-webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nn-leadRow:hover .nn-leadRow__media img{ transform: scale(1.06); }
.nn-leadRow:hover .nn-leadRow__title{ color: var(--brand-dark); }

/* Economy featured split (logo/ad like) */
.nn-leadSplit__link{
    display:grid;
    grid-template-columns: 300px 1fr;
    gap: 14px;
    text-decoration:none;
    color:inherit;
    align-items:start;
}

.nn-leadSplit__media{
    border-radius: 10px;
    overflow:hidden;
    border: 1px solid rgba(2,6,23,.10);
    background: #fff;
    aspect-ratio: 4/3;
    display:flex;
    align-items:center;
    justify-content:center;
}

.nn-leadSplit__media img{
    width:100%;
    height:100%;
    object-fit:contain;
    padding: 14px;
    display:block;
}

.nn-leadSplit__title{
    margin:0 0 8px;
    font-size: 24px;
    font-weight: 900;
    line-height: 1.25;
    color: var(--ink);
}

.nn-leadSplit__excerpt{
    margin:0;
    font-size: 14px;
    line-height: 1.65;
    color: var(--muted);
    display:-webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nn-leadSplit:hover .nn-leadSplit__title{ color: var(--brand-dark); }

/* Bottom grid cards */
.nn-colGrid{ margin-top: 14px; }

.nn-miniGrid{
    display:block;
    height: 100%;
    text-decoration:none;
    color: inherit;
}

.nn-miniGrid__media{
    display:block;
    border-radius: 10px;
    overflow:hidden;
    border: 1px solid rgba(2,6,23,.10);
    background: rgba(148,163,184,.15);
    aspect-ratio: 16/10;
}

.nn-miniGrid__media img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition: transform .35s ease;
}

.nn-miniGrid__title{
    display:block;
    padding: 10px 4px 0;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 500;
    color: var(--ink);

    display:-webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nn-miniGrid:hover .nn-miniGrid__media img{ transform: scale(1.05); }
.nn-miniGrid:hover .nn-miniGrid__title{ color: var(--brand-dark); }

/* Responsive */
@media (max-width: 991.98px){
    .nn-colTitle{ font-size: 22px; }
    .nn-leadRow__link{ grid-template-columns: 180px 1fr; }
    .nn-leadSplit__link{ grid-template-columns: 240px 1fr; }
    .nn-leadRow__title,
    .nn-leadSplit__title{ font-size: 20px; }
    .nn-miniGrid__title{ font-size: 16px; }
}

@media (max-width: 575.98px){
    .nn-catCol{ padding: 12px; }
    .nn-leadRow__link,
    .nn-leadSplit__link{ grid-template-columns: 1fr; }
    .nn-leadRow__media,
    .nn-leadSplit__media{ aspect-ratio: 16/9; }
    .nn-leadSplit__media img{ padding: 10px; }
}

/* Dark mode tune */
body.dark-mode .nn-catCol{
    border-color: var(--border);
}
body.dark-mode .nn-colLine{
    background: linear-gradient(90deg, rgba(255,255,255,.18), rgba(255,255,255,0));
}
body.dark-mode .nn-headIcon{
    background:
        linear-gradient(rgba(255,255,255,.18), rgba(255,255,255,.18)) 0 0/100% 2px no-repeat,
        linear-gradient(rgba(255,255,255,.18), rgba(255,255,255,.18)) 0 50%/75% 2px no-repeat,
        linear-gradient(rgba(255,255,255,.18), rgba(255,255,255,.18)) 0 100%/55% 2px no-repeat;
}
body.dark-mode .nn-leadRow,
body.dark-mode .nn-leadSplit{ border-top-color: rgba(255,255,255,.10); }
body.dark-mode .nn-leadRow__media,
body.dark-mode .nn-miniGrid__media,
body.dark-mode .nn-leadSplit__media{ border-color: rgba(255,255,255,.12); }

/* ==============================
   FIX: Country middle list look
   (only existing classes)
============================== */

/* list wrapper spacing */
.countryList{ padding: 0; }

/* list item card look */
.countryList__item{
    display: block;
    padding: 12px 14px;
    border: 1px solid rgba(2,6,23,.10);
    border-radius: 12px;
    background: #fff;
    text-decoration: none;
    transition: border-color .2s ease, transform .2s ease;
    margin-bottom: 10px;
}

.countryList__item:last-child{ margin-bottom: 0; }

.countryList__title{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;

    color: #0f172a;
    font-weight: 600;
    line-height: 1.45;
}

/* hover */
.countryList__item:hover{
    border-color: rgba(1,122,195,.35); /* fallback if var not set */
    border-color: color-mix(in srgb, var(--brand) 35%, rgba(2,6,23,.10));
    transform: translateY(-1px);
}
.countryList__item:hover .countryList__title{ color: var(--brand); }

/* "Hot khobor dekhun" link */
.countryList .mapCard__all{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(1,122,195,.25);
    color: var(--brand);
    background: rgba(1,122,195,.06);
    text-decoration: none;
}

/* ================== Dark mode ================== */
body.dark-mode .countryList__item{
    background: #0b1220;
    border-color: rgba(255,255,255,.10);
}

body.dark-mode .countryList__title{
    color: #e5e7eb;
}

body.dark-mode .countryList__item:hover{
    border-color: rgba(255,255,255,.16);
}

body.dark-mode .countryList .mapCard__all{
    border-color: rgba(255,255,255,.12);
    background: rgba(255,255,255,.06);
    color: var(--brand);
}

/* ======================================
   International Block (intlBlock)
   Premium + Dark mode support
====================================== */
/* =========================================================
   International Block (intlBlock) — CLEAN + FIXED
   - intlCard (small)
   - intlFeature (image + body separate but overlay)
   - Dark mode support
========================================================= */

.intlBlock .nn-cat-head{ margin-bottom: 14px; }

/* -------------------------
   Small cards (Left/Right)
-------------------------- */
.intlCard{
    display:block;
    text-decoration:none;
    color: inherit;
    border-radius: 14px;
    overflow: hidden;
}

.intlCard__media{
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.intlCard__media img{
    width:100%;
    height:100%;
    object-fit: cover;
    display:block;
    transition: transform .35s ease;
}

.intlCard__body{ padding: 10px 12px 12px; }

.intlCard__title{
    font-size: 16px;
    line-height: 1.45;
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.intlCard:hover .intlCard__media img{ transform: scale(1.05); }
.intlCard:hover .intlCard__title{ color: var(--brand); }

/* -------------------------
   Center Featured (image + body separate)
   FIX: body overlays using negative margin (no duplicate / no conflict)
-------------------------- */
.intlFeature{
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 16px;
    overflow: hidden;
    min-height: 100%;
}

.intlFeature__media{
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.intlFeature__media img{
    width:100%;
    height:100%;
    object-fit: cover;
    display:block;
    transition: transform .45s ease;
}

.intlFeature__shade{
    position:absolute;
    inset:0;
    background: linear-gradient(180deg, rgba(2,6,23,0) 45%, rgba(2,6,23,.86) 100%);
    pointer-events:none;
}

/* body outside media but sits on image */
.intlFeature__body{
    position: relative;
    z-index: 2;
    margin-top: -84px; /* pulls text area over image */
    padding: 14px 16px 16px;
}

.intlFeature__title{
    margin: 0 0 8px;
    font-size: 26px;
    font-weight: 900;
    line-height: 1.2;
    color: #fff;
}

.intlFeature__excerpt{
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,.86);

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.intlFeature:hover .intlFeature__media img{ transform: scale(1.04); }

/* -------------------------
   Responsive
-------------------------- */
@media (max-width: 991.98px){
    .intlFeature__body{ margin-top: -72px; }
    .intlFeature__title{ font-size: 22px; }
}

/* -------------------------
   Dark Mode
-------------------------- */
body.dark-mode .intlBlock .nn-cat-title{ color: #f8fafc; }

body.dark-mode .intlBlock .head-line{
    background: linear-gradient(90deg, var(--brand), rgba(255,255,255,0));
}

/* keep small card title readable */
body.dark-mode .intlCard__title{ color: #e5e7eb; }
body.dark-mode .intlCard:hover .intlCard__title{ color: var(--brand); }

/* dim images slightly in dark */
body.dark-mode .intlCard__media img,
body.dark-mode .intlFeature__media img{
    filter: brightness(.9) contrast(1.05);
}


/* =========================================================
   FOOTER helpers
========================================================= */
.footer-link{ text-decoration:none; color: var(--muted); }
.footer-link:hover{ color: var(--brand-dark); }
.footer-bottom{ background: rgba(148,163,184,.10); }

/* =========================
   FOOTER INFO (Complete UI)
========================= */
.footer-info{
    background: var(--card);
    border-top: 1px solid var(--border);
    padding: 48px 0 60px;
    position: relative;
}

.footer-info__brand{
    text-align:center;
    margin-bottom: 10px;
}

.footer-info__title{
    margin:0;
    font-weight: 900;
    font-size: 36px;
    letter-spacing: .4px;
    color: var(--ink);
}

.footer-info__team{
    margin-top: 12px;
    margin-bottom: 14px;
}

.footer-card{
    text-align:center;
    padding: 14px 12px;
    border-radius: 14px;
    border: 1px solid rgba(15,23,42,.08);
    background: rgba(15,23,42,.02);
}

.footer-card__role{
    font-weight: 900;
    font-size: 16px;
    color: var(--ink);
}

.footer-card__name{
    margin-top: 6px;
    font-weight: 700;
    font-size: 15px;
    color: var(--muted);
}

/* Pills */
.footer-info__nav{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    justify-content:center;
    margin: 18px 0 18px;
}

.footer-pill{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding: 10px 14px;
    border-radius: 10px;

    font-weight: 800;
    font-size: 14px;
    text-decoration:none;
    color: var(--ink);

    border: 1px solid rgba(0, 140, 255, .35);
    background: rgba(0, 140, 255, .06);

    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.footer-pill:hover{
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(15,23,42,.10);
    background: rgba(0, 140, 255, .10);
    border-color: rgba(0, 140, 255, .45);
}

/* Divider */
.footer-info__divider{
    height:1px;
    width: 100%;
    background: var(--border);
    margin: 16px 0 14px;
}

/* Copy */
.footer-info__copy{
    text-align:center;
    font-weight: 900;
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 14px;
}

/* Lines */
.footer-info__lines{
    max-width: 980px;
    margin: 0 auto;
    text-align:center;
}

.footer-info__lines p{
    margin: 0 0 10px;
    font-size: 13.5px;
    line-height: 1.9;
    color: var(--muted);
}

.footer-info__lines strong{
    color: var(--ink);
    font-weight: 900;
}

.footer-info__email{
    font-weight: 800;
    color: var(--ink);
}

/* Responsive */
@media (max-width: 991px){
    .footer-info__title{ font-size: 30px; }
    .footer-pill{ font-size: 13px; padding: 9px 12px; }
}

@media (max-width: 575px){
    .footer-info{ padding: 34px 0 54px; }
    .footer-info__title{ font-size: 26px; }
    .footer-info__lines p{ font-size: 12.8px; }
    .footer-card{ background: transparent; }
}

/* Dark mode support */
body.dark-mode .footer-info{
    background:#0b1220;
    border-top-color: rgba(255,255,255,.08);
}
body.dark-mode .footer-info__title,
body.dark-mode .footer-card__role,
body.dark-mode .footer-info__lines strong,
body.dark-mode .footer-info__email{
    color:#e5e7eb;
}
body.dark-mode .footer-card{
    border-color: rgba(255,255,255,.10);
    background: rgba(255,255,255,.03);
}
body.dark-mode .footer-pill{
    color:#e5e7eb;
    border-color: rgba(56,189,248,.35);
    background: rgba(56,189,248,.08);
}
body.dark-mode .footer-pill:hover{
    background: rgba(56,189,248,.12);
    box-shadow: 0 10px 24px rgba(0,0,0,.35);
}
body.dark-mode .footer-info__divider{
    background: rgba(255,255,255,.08);
}
body.dark-mode .footer-info__copy,
body.dark-mode .footer-info__lines p{
    color: rgba(229,231,235,.72);
}

/* Floating Buttons */
.footer-float{
    position: fixed;
    right: 16px;
    bottom: 16px;
    display:flex;
    flex-direction:column;
    gap:10px;
    z-index: 1200;
}

.float-btn{
    width: 46px;
    height: 46px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: var(--card);
    color: var(--ink);
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow: var(--shadow2);
    transition: transform .18s ease, opacity .18s ease;
}

.float-btn:hover{ transform: translateY(-2px); }

.float-btn--primary{
    background: var(--brand);
    color:#fff;
    border-color: rgba(205,33,34,.30);
}

.is-hidden{
    opacity: 0;
    transform: translateY(10px);
    pointer-events:none;
}

/* Toast */
.mini-toast{
    position: fixed;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%) translateY(12px);
    opacity:0;
    pointer-events:none;
    background: #0f172a;
    color: #fff;
    border-radius: 999px;
    padding: 10px 14px;
    font-weight: 900;
    font-size: 13px;
    z-index: 1300;
    transition: opacity .18s ease, transform .18s ease;
}
.mini-toast.is-show{
    opacity:1;
    transform: translateX(-50%) translateY(0);
}
