:root {
    --primary: #0a5a99;
    --primary-light: #1a6faa;
    --accent: #0a94c9;
    --teal: #007b8a;
    --ice: #c8ebf0;
    --midnight: #06223f;
    --blue: #0a2463;
    --blue:#0a2463;
    --blue-mid:#1a3a8f;
    --blue-light: #2563eb;
    --red:        #d62828;
    --red-light:  #ef4444;
    --gold:      #f4a261;
    --slate: #64748b;
    --mist: #eef6fa;
    --white: #ffffff;
    --text: #1a2940;
    --text-muted: #5f7a90;
    --border: #d0e8f2;
    --gradient-hero: linear-gradient(
        135deg,
        #06223f 0%,
        #0a5a99 55%,
        #007b8a 100%
    );
    --gradient-accent: linear-gradient(90deg, #0a94c9, #0a5a99);
    --gray-100:   #f1f4f8;
    --gray-200:   #e2e8f0;
    --gray-400:   #94a3b8;
    --gray-600:   #475569;
    --gray-800:   #1e293b;
    --radius: 8px;
    --card-radius: 14px;
    --shadow-sm:  0 2px 12px rgba(10,36,99,.08);
    --shadow-md:  0 6px 30px rgba(10,36,99,.13);
    --shadow-lg:  0 16px 48px rgba(10,36,99,.18);
    --ff-display: "Plus Jakarta Sans", sans-serif;
    --ff-body: "Libre Franklin", sans-serif;
}

* {
    box-sizing: border-box;
}


body {
    font-family: var(--ff-body);
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

/* ─── UTILITY ─── */
.ff-display {
    font-family: var(--ff-display);
}
.text-accent {
    color: var(--accent) !important;
}
.text-primary-custom {
    color: var(--primary) !important;
}
.bg-mist {
    background-color: var(--mist);
}
.badge-cat {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.28em 0.7em;
    border-radius: 3px;
}
.badge-cat.pendidikan {
    background: #e0f2fe;
    color: #0b4f82;
}
.badge-cat.riset {
    background: #d1fae5;
    color: #065f46;
}
.badge-cat.teknologi {
    background: #ede9fe;
    color: #4c1d95;
}
.badge-cat.prestasi {
    background: #fef3c7;
    color: #92400e;
}
.badge-cat.kampus {
    background: #ffe4e6;
    color: #9f1239;
}

/* ─── TOPBAR ─── */
.topbar {
    background: #0a68a5;
    color: #fff;
    font-size: 0.75rem;
    padding: 8px 0;
}
.topbar a {
    color: #fff;
    text-decoration: none;
}
.topbar a:hover {
    color: var(--accent);
}
.topbar-social a {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.topbar-social a:hover {
    background: #fff;
    color: var(--primary);
    transform: translateY(-1px);
}
.topbar-social a.is-muted {
    opacity: 0.72;
    cursor: default;
}
.topbar-social a.is-muted:hover {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    transform: none;
}
.topbar .live-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #e02020;
    color: #fff;
    padding: 2px 8px;
    border-radius: 3px;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
}
.live-dot {
    width: 7px;
    height: 7px;
    background: #fff;
    border-radius: 50%;
    animation: blink 1.2s infinite;
}
@keyframes blink {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

/* ─── NAVBAR ─── */


.navbar-main {
    background: var(--white);
    padding: 0;
    position: relative;
    z-index: 99999;
    width: 100%;
    isolation: isolate;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    box-shadow: 0 2px 20px rgba(11, 79, 130, 0.1);
}
.navbar-main.is-stuck {
    position: fixed;
    top: var(--navbar-sticky-top, 0px);
    left: 0;
    right: 0;
    z-index: 1050;
}
.navbar-sticky-spacer {
    height: 0;
}
.navbar-brand-wrap {
    padding: 15px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}
.navbar-brand-wrap img {
    width: 180px;
    max-width: 100%;
}
.navbar-main .btn-bars {
    color: var(--primary);
}
.navbar-main .btn-bars:focus {
    box-shadow: none;
}
.brand-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient-accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}
.brand-name {
    font-family: var(--ff-display);
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}
.brand-name span {
    color: var(--accent);
}
.brand-tag {
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.navbar-menu {
    flex: 1 1 auto;
    min-width: 0;
}
.nav-link-custom {
    color: var(--text) !important;
    font-weight: 600;
    font-size: 0.82rem;
    padding: 22px 7px !important;
    position: relative;
    transition: color 0.2s;
    text-decoration: none;
    font-family: 'Plus Jakarta Sans';
    white-space: nowrap;
}
.nav-link-custom::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 7px;
    right: 7px;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.25s;
}
.nav-link-custom:hover,
.nav-link-custom.active-link {
    color: var(--primary) !important;
}
.nav-link-custom:hover::after,
.nav-link-custom.active-link::after {
    transform: scaleX(1);
}

.nav-search {
    flex: 0 0 auto;
    align-items: center;
}
.nav-search input {
    border: 1.5px solid var(--border);
    border-radius: 25px 0 0 25px;
    padding: 6px 16px;
    font-size: 0.85rem;
    width: 180px;
    outline: none;
}
.nav-search button {
    background: var(--primary);
    border: none;
    color: #fff;
    border-radius: 0 25px 25px 0;
    padding: 6px 14px;
    cursor: pointer;
}
.mobile-nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(7, 20, 38, 0.42);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, visibility 0.22s ease;
    z-index: 1100;
}
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(88vw, 340px);
    height: 100vh;
    background: #fff;
    box-shadow: -18px 0 42px rgba(8, 29, 55, 0.18);
    transform: translateX(100%);
    transition: transform 0.24s ease;
    z-index: 1101;
    padding: 20px 18px 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    overflow-y: auto;
	z-index: 99999;
}
.mobile-nav-open {
    overflow: hidden;
}
.mobile-nav-open .mobile-nav-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.mobile-nav-open .mobile-nav-drawer {
    transform: translateX(0);
}
.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.mobile-nav-brand {
    display: inline-flex;
    align-items: center;
}
.mobile-nav-logo {
    width: 150px;
    max-width: 100%;
}
.mobile-nav-close {
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 999px;
    background: rgba(16, 82, 146, 0.08);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
}
.mobile-nav-search {
    display: flex;
    align-items: center;
}
.mobile-nav-search input {
    width: 100%;
    border: 1.5px solid var(--border);
    border-right: 0;
    border-radius: 16px 0 0 16px;
    padding: 10px 14px;
    font-size: 0.9rem;
    outline: none;
}
.mobile-nav-search button {
    border: 0;
    border-radius: 0 16px 16px 0;
    background: var(--primary);
    color: #fff;
    padding: 10px 14px;
}
.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.mobile-nav-link {
    display: block;
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
    font-size: 0.98rem;
    padding: 12px 10px;
    border-radius: 14px;
    transition: background-color 0.2s ease, color 0.2s ease;
}
.mobile-nav-link:hover,
.mobile-nav-link.active-link {
    background: rgba(16, 82, 146, 0.08);
    color: var(--primary);
}
.mobile-nav-social {
    margin-top: auto;
    padding-top: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.mobile-nav-social a {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: rgba(16, 82, 146, 0.08);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.mobile-nav-social a.is-muted {
    opacity: 0.5;
}

@media (min-width: 1400px) {
    .navbar-brand-wrap img {
        width: 200px;
    }

    .nav-link-custom {
        font-size: 0.88rem;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .nav-link-custom::after {
        left: 10px;
        right: 10px;
    }

    .nav-search input {
        width: 210px;
    }
}

@media (max-width: 1199.98px) {
    .navbar-brand-wrap img {
        width: 170px;
    }

    .nav-link-custom {
        font-size: 0.8rem;
        padding-left: 6px !important;
        padding-right: 6px !important;
    }

    .nav-link-custom::after {
        left: 6px;
        right: 6px;
    }
}

@media (min-width: 992px) {
    .mobile-nav-backdrop,
    .mobile-nav-drawer {
        display: none;
    }
}

/* ══════════════════════════════════════════════════
       HERO — BOXED GRID  [Ad | News Grid | Ad]
       Layout: container-width, never full bleed.
       Left col = leaderboard ad
       Center  = 5-story photo grid
       Right col = skyscraper ad
       All proportions via aspect-ratio, zero px hacks.
    ══════════════════════════════════════════════════ */

.hero-section {
    background: #fff;
    padding: 16px 0 20px;
}

/* ── 3-col wrapper [Ad | Grid | Ad] ── */
.hero-shell {
    display: grid;
    grid-template-columns: 160px 1fr 160px;
    gap: 14px;
    align-items: start;
}
@media (max-width: 1279px) {
    .hero-shell {
        grid-template-columns: 130px 1fr 130px;
        gap: 10px;
    }
}
@media (max-width: 1023px) {
    .hero-shell {
        grid-template-columns: 1fr;
    }
}

/* ── Ad columns ── */
.hero-ad-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: sticky;
    top: 70px; /* below sticky navbar */
}
@media (max-width: 1023px) {
    .hero-ad-col {
        display: none;
    }
}

.h-ad {
    background: #fff;
    border: 1.5px dashed #c8dde8;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 10px 6px;
    text-align: center;
    color: #a8c4d0;
    cursor: default;
    transition: border-color 0.2s;
}
.h-ad i {
    font-size: 1.2rem;
    opacity: 0.6;
}
.h-ad-label {
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #b8cfd8;
}
.h-ad-size {
    font-size: 0.58rem;
    color: #c8dde8;
}
/* 160×600 skyscraper */
.h-ad-sky {
    height: 600px;
}
/* 160×90  companion */
.h-ad-small {
    height: 90px;
}

/* Google Ads label strip across top of column */
.h-ad-top-label {
    font-size: 0.58rem;
    color: #aec4ce;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
    font-weight: 600;
    padding: 2px 0 4px;
}

/* ════════════════════════════
       CENTER — 5-story news grid
       ════════════════════════════
       Named areas:
         "big  big  tr"
         "big  big  tr"   ← virtual; actually done with flex
         "m1   m2   m3"
    */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 6px;
}

/* ── BIG card: left col, spans both rows ── */
.hg-big {
    grid-column: 1;
    grid-row: 1 / 2;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    background: var(--midnight);
    box-shadow: 0 4px 20px rgba(11, 79, 130, 0.2);
}

/* ── RIGHT col: stacked top card + mini-row ── */
.hg-right {
    grid-column: 2;
    grid-row: 1 / 2;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* Top-right card */
.hg-tr {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    background: var(--midnight);
    aspect-ratio: 16 / 9;
    flex-shrink: 0;
    box-shadow: 0 3px 14px rgba(11, 79, 130, 0.14);
}

/* 3 mini cards row */
.hg-mini-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    flex: 1;
}
.hg-mini {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background: var(--midnight);
    aspect-ratio: 4 / 3;
    box-shadow: 0 2px 8px rgba(11, 79, 130, 0.12);
}

/* ── Responsive: tablet (1 col, drop minis) ── */
@media (max-width: 767px) {
    .hero-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }
    .hg-big {
        grid-column: 1;
        grid-row: 1;
        aspect-ratio: 16 / 8;
    }
    .hg-right {
        grid-column: 1;
        grid-row: 2;
    }
    .hg-tr {
        aspect-ratio: 16 / 7;
    }
    .hg-mini-row {
        grid-template-columns: repeat(3, 1fr);
    }
    .hg-mini {
        aspect-ratio: 1 / 1;
    }
}
@media (max-width: 479px) {
    .hg-big {
        aspect-ratio: 4 / 3;
    }
    .hg-tr {
        aspect-ratio: 16 / 8;
    }
    .hg-mini-row {
        grid-template-columns: repeat(3, 1fr);
    }
    .hg-mini {
        aspect-ratio: 1 / 1;
    }
}

/* ── Shared image layer ── */
.hg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
/* crossfade layer for big card auto-rotate */
.hg-img-b {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    z-index: 1;
}

/* gradient scrims */
.hg-scrim {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        to top,
        rgba(6, 34, 63, 0.97) 0%,
        rgba(6, 34, 63, 0.1) 50%,
        transparent 100%
    );
    pointer-events: none;
}

/* dot nav on big card */
.hg-dots {
    position: absolute;
    top: 9px;
    left: 10px;
    z-index: 4;
    display: flex;
    gap: 4px;
}
.hg-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    padding: 0;
    background: rgba(255, 255, 255, 0.3);
    transition: background 0.2s, transform 0.2s;
}
.hg-dot.active {
    background: var(--accent);
    transform: scale(1.4);
}

/* progress bar */
.hg-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 4;
    height: 3px;
    background: var(--accent);
    width: 0%;
}

/* ── BIG card body ── */
.hg-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 14px 14px 16px;
}
.hg-title {
    font-family: var(--ff-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.22;
    margin: 6px 0 7px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}
.hg-excerpt {
    color: rgb(255 255 255 / 85%);
    font-size: 0.8rem;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 8px;
}
.hg-meta {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
    color: rgb(255 255 255 / 85%);
    font-size: 0.8rem;
}
.hg-meta i {
    color: var(--accent);
}
@media (max-width: 575px) {
    .hg-excerpt {
        display: none;
    }
}

/* ── Top-right card body ── */
.hg-tr-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 10px 12px;
}
.hg-tr-title {
    font-family: var(--ff-display);
    font-size: clamp(0.76rem, 1.1vw, 0.92rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.28;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 4px 0 3px;
}
.hg-tr-meta {
    font-size: 0.8rem;
    color:rgb(255 255 255 / 85%);
}
.hg-tr-meta i {
    color: var(--accent);
}

/* ── Mini card body ── */
.hg-mini-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 6px 7px 8px;
}
.hg-mini-title {
    font-family: var(--ff-display);
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 3px 0 2px;
}
.hg-mini-meta {
    font-size: 0.7rem;
    color:rgb(255 255 255 / 85%);
}
.hg-mini-meta i {
    color: var(--accent);
}

/* ─── SECTION HEADER ─── */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 24px;
}
.section-title {
    font-weight: 900;
    font-size: 1.35rem;
    color: var(--blue);
    display: flex; align-items: center; gap: 12px;
}
.section-title::before {
    content: '';
    display: block;
    width: 6px; height: 26px;
    background: var(--red);
    border-radius: 3px;
    flex-shrink: 0;
}
.view-all-link {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--blue-light);
    text-decoration: none;
    display: flex; align-items: center; gap: 5px;
    transition: color .2s;
}
.view-all-link:hover { 
    color: var(--red); 

}
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 24px;
}
.section-header h2 {
    font-family: var(--ff-display);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}
.section-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, var(--accent), transparent);
}
.section-header a {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    white-space: nowrap;
    text-decoration: none;
}
.section-header a:hover {
    color: var(--accent);
}

/* ─── NEWS CARDS ─── */
.card-news {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(11, 79, 130, 0.08);
    transition: transform 0.25s, box-shadow 0.25s;
    height: 100%;
    background: #fff;
}
.card-news:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(11, 79, 130, 0.15);
}
.card-news a {
    min-width: 35%;
}
.card-news img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.4s;
}
.card-news:hover img {
    transform: scale(1.04);
}
.card-news .overflow-hidden {
    overflow: hidden;
}
.card-news-body {
    padding: 16px;
}
.card-news-title {
    font-family: var(--ff-display);
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.35;
    margin: 8px 0 8px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.card-news-title a {
    color: inherit;
    text-decoration: none;
}
.card-news-title a:hover {
    color: var(--primary);
}
.card-news-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.card-news-meta i {
    color: var(--accent);
}
.card-news-excerpt {
    font-size: 0.83rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ─── FEATURED MAIN CARD ─── */
.card-featured {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    height: 420px;
    box-shadow: 0 8px 30px rgba(11, 79, 130, 0.2);
}
.card-featured img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
    transition: transform 0.5s;
}
.card-featured:hover img {
    transform: scale(1.05);
}
.card-featured-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(
        to top,
        rgba(6, 34, 63, 0.95) 0%,
        transparent 100%
    );
}
.card-featured-title {
    font-family: var(--ff-display);
    font-size: 1.45rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    margin: 8px 0 10px;
}
.card-featured-meta {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.78rem;
}
.card-featured-meta i {
    color: var(--accent);
}

/* ─── LIST NEWS (side) ─── */
.list-news-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}
.list-news-item:last-child {
    border-bottom: none;
}
.list-news-item img {
    width: 82px;
    height: 62px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}
.list-news-title {
    font-size: 0.87rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 4px;
}
.list-news-title a {
    color: inherit;
    text-decoration: none;
}
.list-news-title a:hover {
    color: var(--primary);
}
.list-news-meta {
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* ─── CATEGORY STRIP ─── */
.cat-strip {
    gap: 10px;
    flex-wrap: wrap;
}
.cat-btn {
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.82rem;
    border: 2px solid var(--border);
    background: transparent;
    color: var(--text);
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}
.cat-btn:hover,
.cat-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* ─── POPULAR / TRENDING ─── */
.trending-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px dashed var(--border);
}
.trending-item:last-child {
    border-bottom: none;
}
.trending-num {
    font-family: var(--ff-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--ice);
    line-height: 1;
    min-width: 32px;
}
.trending-title {
    font-size: 0.87rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 4px;
}
.trending-title a {
    color: inherit;
    text-decoration: none;
}
.trending-title a:hover {
    color: var(--primary);
}
.trending-meta {
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* ─── WIDGET BOX ─── */
.widget-box {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 14px rgba(11, 79, 130, 0.07);
    margin-bottom: 24px;
}
.widget-title {
    font-family: var(--ff-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ─── STATS BAR ─── */
.stats-bar {
    background: var(--gradient-hero);
    padding: 40px 0;
    color: #fff;
}
.stat-item {
    text-align: center;
}
.stat-num {
    font-family: var(--ff-display);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}
.stat-label {
    font-size: 0.82rem;
    opacity: 0.75;
    margin-top: 4px;
}

/* ─── UNIVERSITY SPOTLIGHT SWIPER ─── */
.uni-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 14px rgba(11, 79, 130, 0.1);
    text-align: center;
    height: 100%;
}
.uni-card img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 50%;
    border: 3px solid var(--ice);
    margin-bottom: 12px;
}
.uni-card h6 {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--primary);
    margin-bottom: 4px;
}
.uni-card p {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin: 0;
}
.uni-rank {
    background: var(--gradient-accent);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 20px;
    display: inline-block;
    margin-top: 8px;
}

/* Youtube Video */
.video-section {
    background: linear-gradient(135deg, var(--blue) 0%, #0d1f5e 100%);
    padding: 56px 0;
    position: relative;
    overflow: hidden;
}
.video-band {
    color: #fff;
}

.video-band .section-title {
    color: #fff;
}

.video-band .section-copy {
    color: rgba(255, 255, 255, 0.72);
}

.video-shell {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background: #070b14;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
}

.video-shell::before {
    content: "";
    display: block;
    aspect-ratio: 16 / 9;
}

.video-poster,
.video-frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.video-poster img,
.video-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
}

.video-poster::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(12, 26, 51, 0.04),
        rgba(0, 0, 0, 0.76)
    );
}

.play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    width: 74px;
    height: 74px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    transform: translate(-50%, -50%);
    box-shadow: 0 18px 44px rgba(229, 29, 53, 0.35);
}

.play-btn i {
    margin-left: 4px;
    font-size: 1.55rem;
}

.video-caption {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 24px;
    z-index: 2;
}

.video-caption h3 {
    max-width: 720px;
    margin: 12px 0 0;
    font-size: clamp(1.35rem, 3vw, 2.25rem);
    font-weight: 900;
    line-height: 1.18;
}

.video-list {
    display: grid;
    gap: 14px;
}

.video-item {
    width: 100%;
    display: grid;
    grid-template-columns: 118px 1fr;
    gap: 14px;
    align-items: center;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    text-align: left;
}

.video-item:hover,
.video-item.active {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.12);
}

.video-item img {
    width: 118px;
    height: 74px;
    border-radius: 6px;
    object-fit: cover;
}

.video-item h4 {
    margin: 0 0 6px;
    font-size: 0.98rem;
    line-height: 1.3;
    font-weight: 900;
}

.video-item span {
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.82rem;
    font-weight: 800;
}


/* ─── NEWSLETTER ─── */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--teal) 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.newsletter-section::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    background: rgba(0, 194, 204, 0.12);
    border-radius: 50%;
}
.newsletter-section::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -60px;
    width: 280px;
    height: 280px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}
.newsletter-form input {
    border: none;
    border-radius: 8px 0 0 8px;
    padding: 12px 20px;
    font-size: 0.9rem;
    width: 100%;
    outline: none;
}
.newsletter-form button {
    background: var(--accent);
    border: none;
    color: var(--midnight);
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}
.newsletter-form button:hover {
    background: #00a8b3;
}

/* ─── FOOTER ─── */
.footer-main {
    background: var(--midnight);
    color: #7ca5bf;
    padding: 56px 0 0;
}
.footer-brand {
    font-family: var(--ff-display);
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
}
.footer-desc {
    font-size: 0.83rem;
    line-height: 1.7;
    margin-top: 10px;
}
.footer-title {
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 8px;
}
.footer-links a {
    color: #7ca5bf;
    text-decoration: none;
    font-size: 0.84rem;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: var(--accent);
    padding-left: 4px;
}
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: #7ca5bf;
    font-size: 0.9rem;
    margin-right: 8px;
    transition: all 0.2s;
    text-decoration: none;
}
.footer-social a:hover {
    background: var(--accent);
    color: var(--midnight);
}
.footer-bottom {
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 0;
    font-size: 0.78rem;
}
.footer-bottom a {
    color: var(--accent);
    text-decoration: none;
}

/* ─── READ MORE BTN ─── */
/* Static pages */
.static-page-shell {
    background: #f7fbfd;
}
.static-page-heading {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 34px 0 30px;
}
.static-page-breadcrumb ol {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
}
.static-page-breadcrumb a,
.static-page-breadcrumb [aria-current="page"] {
    align-items: center;
    color: var(--text-muted);
    display: inline-flex;
    font-size: 0.78rem;
    font-weight: 600;
    gap: 7px;
    text-decoration: none;
}
.static-page-breadcrumb a:hover {
    color: var(--primary);
}
.static-page-breadcrumb li[aria-hidden="true"] {
    color: #9ab0bf;
    font-size: 0.62rem;
}
.static-page-breadcrumb [aria-current="page"] {
    color: var(--primary);
}
.static-page-eyebrow {
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin: 0 0 8px;
    text-transform: uppercase;
}
.static-page-title {
    color: var(--midnight);
    font-family: var(--ff-display);
    font-size: 2.15rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
}
.static-page-content {
    padding: 48px 0 64px;
}
.static-page-image {
    margin: 0 auto 28px;
    max-width: 900px;
}
.static-page-image img {
    display: block;
    height: auto;
    max-width: 100%;
    width: 100%;
}
.static-page-body {
    background: #fff;
    border: 1px solid #dcebf2;
    border-radius: 6px;
    box-shadow: 0 8px 28px rgba(6, 34, 63, 0.06);
    color: var(--text);
    margin: 0 auto;
    max-width: 980px;
    padding: 34px 40px;
}
.static-page-body > :first-child {
    margin-top: 0;
}
.static-page-body > :last-child {
    margin-bottom: 0;
}
.static-page-body a {
    color: var(--primary);
}
.static-page-body img {
    height: auto;
    max-width: 100%;
}
@media (max-width: 767.98px) {
    .static-page-heading {
        padding: 26px 0 24px;
    }
    .static-page-breadcrumb ol {
        margin-bottom: 18px;
    }
    .static-page-title {
        font-size: 1.7rem;
    }
    .static-page-content {
        padding: 28px 0 40px;
    }
    .static-page-body {
        border-left: 0;
        border-radius: 0;
        border-right: 0;
        padding: 26px 0;
    }
}

/* Video directory */
.video-directory-page {
    background: #f7fbfd;
}
.video-directory-heading {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 34px 0 32px;
}
.video-directory-heading-row {
    align-items: end;
    display: flex;
    gap: 28px;
    justify-content: space-between;
}
.video-directory-heading h1 {
    color: var(--midnight);
    font-family: var(--ff-display);
    font-size: 2.15rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 9px;
}
.video-directory-heading p:not(.static-page-eyebrow) {
    color: var(--text-muted);
    margin: 0;
    max-width: 650px;
}
.video-directory-count {
    align-items: center;
    border-left: 3px solid var(--accent);
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    padding-left: 16px;
}
.video-directory-count strong {
    color: var(--primary);
    font-family: var(--ff-display);
    font-size: 1.7rem;
    line-height: 1;
}
.video-directory-count span {
    color: var(--text-muted);
    font-size: 0.72rem;
    font-weight: 700;
    margin-top: 5px;
}
.video-watch-section {
    background: var(--midnight);
    color: #fff;
    padding: 42px 0 38px;
}
.video-watch-frame {
    aspect-ratio: 16 / 9;
    background: #02070d;
    margin: 0 auto;
    max-width: 960px;
}
.video-watch-frame iframe {
    border: 0;
    display: block;
    height: 100%;
    width: 100%;
}
.video-watch-title {
    font-family: var(--ff-display);
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.35;
    margin: 20px auto 0;
    max-width: 960px;
}
.video-directory-list {
    padding: 48px 0 64px;
}
.video-directory-list-header {
    margin-bottom: 24px;
}
.video-directory-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.video-directory-card {
    background: #fff;
    border: 1px solid #dcebf2;
    border-radius: 6px;
    color: inherit;
    display: block;
    overflow: hidden;
    text-decoration: none;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.video-directory-card:hover {
    box-shadow: var(--shadow-md);
    color: inherit;
    transform: translateY(-3px);
}
.video-directory-card.is-current {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(10, 148, 201, 0.14);
}
.video-directory-thumb {
    aspect-ratio: 16 / 9;
    background: var(--midnight);
    overflow: hidden;
    position: relative;
}
.video-directory-thumb::after {
    background: rgba(6, 34, 63, 0.2);
    content: "";
    inset: 0;
    position: absolute;
}
.video-directory-thumb img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease;
    width: 100%;
}
.video-directory-card:hover .video-directory-thumb img {
    transform: scale(1.03);
}
.video-directory-play {
    align-items: center;
    background: var(--red);
    border-radius: 50%;
    color: #fff;
    display: inline-flex;
    height: 42px;
    justify-content: center;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 42px;
    z-index: 1;
}
.video-directory-play i {
    font-size: 0.88rem;
    margin-left: 2px;
}
.video-directory-card-body {
    padding: 16px;
}
.video-directory-card-body > span {
    color: #d72828;
    font-size: 0.7rem;
    font-weight: 700;
}
.video-directory-card-body h3 {
    color: var(--text);
    font-family: var(--ff-display);
    font-size: 0.96rem;
    font-weight: 750;
    line-height: 1.45;
    margin: 8px 0 0;
}
.video-directory-empty {
    background: #fff;
    border: 1px dashed #b6d7e5;
    padding: 52px 20px;
    text-align: center;
}
.video-directory-empty > i {
    color: var(--accent);
    font-size: 2rem;
}
.video-directory-empty h2 {
    font-family: var(--ff-display);
    font-size: 1.1rem;
    font-weight: 800;
    margin: 14px 0 6px;
}
.video-directory-empty p {
    color: var(--text-muted);
    margin: 0;
}
@media (max-width: 991.98px) {
    .video-directory-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 767.98px) {
    .video-directory-heading {
        padding: 26px 0 24px;
    }
    .video-directory-heading-row {
        align-items: start;
        flex-direction: column;
        gap: 22px;
    }
    .video-directory-heading h1 {
        font-size: 1.7rem;
    }
    .video-directory-count {
        align-items: start;
    }
    .video-watch-section {
        padding: 28px 0 26px;
    }
    .video-watch-title {
        font-size: 1.08rem;
    }
    .video-directory-list {
        padding: 32px 0 42px;
    }
    .video-directory-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact page */
.contact-page {
    background: #f7fbfd;
}
.contact-page-heading {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 34px 0 32px;
}
.contact-page-heading h1 {
    color: var(--midnight);
    font-family: var(--ff-display);
    font-size: 2.15rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 9px;
}
.contact-page-heading > .container > p:not(.static-page-eyebrow) {
    color: var(--text-muted);
    margin: 0;
    max-width: 680px;
}
.contact-page-content {
    padding: 52px 0 64px;
}
.contact-page-grid {
    align-items: stretch;
    display: grid;
    gap: 42px;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
    margin: 0 auto;
    max-width: 1020px;
}
.contact-page-intro h2 {
    color: var(--midnight);
    font-family: var(--ff-display);
    font-size: 1.45rem;
    font-weight: 800;
    margin: 0 0 10px;
}
.contact-page-intro > p {
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
    max-width: 600px;
}
.contact-method-list {
    border-top: 1px solid #dcebf2;
    margin-top: 28px;
}
.contact-method {
    align-items: center;
    border-bottom: 1px solid #dcebf2;
    color: var(--text);
    display: grid;
    gap: 14px;
    grid-template-columns: 44px minmax(0, 1fr) auto;
    padding: 16px 0;
    text-decoration: none;
}
.contact-method:hover {
    color: var(--primary);
}
.contact-method-icon {
    align-items: center;
    border-radius: 6px;
    display: inline-flex;
    font-size: 1.05rem;
    height: 44px;
    justify-content: center;
    width: 44px;
}
.contact-method-icon.is-whatsapp {
    background: #dcfce7;
    color: #15803d;
}
.contact-method-icon.is-email {
    background: #dbeafe;
    color: #1d4ed8;
}
.contact-method-icon.is-phone {
    background: #ffedd5;
    color: #c2410c;
}
.contact-method small,
.contact-method strong {
    display: block;
}
.contact-method small {
    color: var(--text-muted);
    font-size: 0.72rem;
    font-weight: 700;
    margin-bottom: 3px;
}
.contact-method strong {
    font-size: 0.92rem;
    line-height: 1.35;
    overflow-wrap: anywhere;
}
.contact-method-arrow {
    color: var(--accent);
    font-size: 0.8rem;
}
.contact-address-panel {
    background: var(--midnight);
    color: #fff;
    padding: 30px;
}
.contact-address-icon {
    align-items: center;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    color: var(--accent);
    display: inline-flex;
    font-size: 1.15rem;
    height: 46px;
    justify-content: center;
    width: 46px;
}
.contact-address-label {
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin: 26px 0 10px;
    text-transform: uppercase;
}
.contact-address-copy {
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.75;
    margin: 0;
}
.contact-address-copy.is-empty {
    color: rgba(255, 255, 255, 0.62);
}
.contact-map-link {
    align-items: center;
    color: #fff;
    display: inline-flex;
    font-size: 0.82rem;
    font-weight: 700;
    gap: 8px;
    margin-top: 26px;
    text-decoration: none;
}
.contact-map-link:hover {
    color: var(--accent);
}
@media (max-width: 767.98px) {
    .contact-page-heading {
        padding: 26px 0 24px;
    }
    .contact-page-heading h1 {
        font-size: 1.7rem;
    }
    .contact-page-content {
        padding: 34px 0 42px;
    }
    .contact-page-grid {
        gap: 28px;
        grid-template-columns: 1fr;
    }
    .contact-address-panel {
        padding: 26px;
    }
}

/* Article index */
.article-index-page {
    background: #f7fbfd;
}
.article-index-heading {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 28px 0;
}
.article-index-title {
    color: var(--midnight);
    font-family: var(--ff-display);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
}
.article-index-title strong {
    color: var(--primary);
    font-weight: inherit;
}
.article-index-content {
    padding: 28px 0 64px;
}
.article-index-filter {
    align-items: end;
    background: #fff;
    border: 1px solid #dcebf2;
    display: grid;
    gap: 14px;
    grid-template-columns: minmax(135px, 1fr) minmax(135px, 1fr) minmax(180px, 1.35fr) auto auto;
    margin-bottom: 28px;
    padding: 16px;
}
.article-index-filter-field {
    min-width: 0;
}
.article-index-filter-field label {
    color: var(--text-muted);
    display: block;
    font-size: 0.7rem;
    font-weight: 800;
    margin-bottom: 7px;
    text-transform: uppercase;
}
.article-index-filter-field input,
.article-index-filter-field select {
    background: #fff;
    border: 1px solid #cddfe8;
    border-radius: 4px;
    color: var(--text);
    font-family: var(--ff-body);
    font-size: 0.84rem;
    height: 40px;
    outline: none;
    padding: 0 10px;
    width: 100%;
}
.article-index-filter-field input:focus,
.article-index-filter-field select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(10, 148, 201, 0.12);
}
.article-index-filter-submit,
.article-index-filter-reset {
    align-items: center;
    border: 0;
    border-radius: 4px;
    display: inline-flex;
    font-family: var(--ff-body);
    font-size: 0.8rem;
    font-weight: 700;
    gap: 7px;
    height: 40px;
    justify-content: center;
    text-decoration: none;
}
.article-index-filter-submit {
    background: var(--primary);
    color: #fff;
    padding: 0 16px;
}
.article-index-filter-submit:hover {
    background: var(--primary-light);
}
.article-index-filter-reset {
    background: #eef6fa;
    color: var(--primary);
    width: 40px;
}
.article-index-filter-reset:hover {
    background: #dceef5;
    color: var(--midnight);
}
.article-index-result-count {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 700;
    margin: 0 0 14px;
}
.article-index-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.article-index-empty {
    background: #fff;
    border: 1px dashed #b6d7e5;
    padding: 52px 20px;
    text-align: center;
}
.article-index-empty > i {
    color: var(--accent);
    font-size: 2rem;
}
.article-index-empty h2 {
    font-family: var(--ff-display);
    font-size: 1.1rem;
    font-weight: 800;
    margin: 14px 0 6px;
}
.article-index-empty p {
    color: var(--text-muted);
    margin: 0;
}
.article-index-sidebar-panel {
    margin-bottom: 20px;
}
@media (max-width: 767.98px) {
    .article-index-heading {
        padding: 22px 0;
    }
    .article-index-title {
        font-size: 1.55rem;
    }
    .article-index-content {
        padding: 30px 0 42px;
    }
    .article-index-filter {
        align-items: stretch;
        grid-template-columns: 1fr 1fr;
    }
    .article-index-filter-field.is-channel {
        grid-column: 1 / -1;
    }
    .article-index-filter-submit {
        grid-column: 1 / 2;
    }
}
@media (max-width: 430px) {
    .article-index-filter {
        grid-template-columns: 1fr;
    }
    .article-index-filter-field.is-channel,
    .article-index-filter-submit {
        grid-column: auto;
    }
    .article-index-filter-reset {
        width: 100%;
    }
}

.btn-read-more {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.82rem;
    padding: 7px 20px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
}
.btn-read-more:hover {
    background: var(--primary);
    color: #fff;
}
.btn-primary-custom {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
    display: inline-block;
}
.btn-primary-custom:hover {
    background: var(--primary-light);
    color: #fff;
}

/* ─── AD PLACEHOLDER ─── */
.ad-box {
    background: linear-gradient(135deg, var(--mist) 0%, var(--ice) 100%);
    border: 2px dashed var(--border);
    border-radius: 10px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
    .hero-swiper {
        height: 360px;
    }
    .hero-title {
        font-size: 1.4rem;
    }
    .hero-content {
        padding: 20px;
    }
    .card-featured {
        height: 280px;
    }
}

/* ─── SCROLL FADE IN ─── */
.fade-in-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ── EVENT SECTION ───────────────────────────────────── */
.event-section {
    padding: 52px 0;
    background: var(--off-white);
}

/* Featured event — big card */
.event-featured {
    border-radius: var(--card-radius);
    overflow: hidden;
    position: relative;
    height: 100%;
    min-height: 380px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-md);
}
.event-featured img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    transition: transform 0.5s;
}
.event-featured:hover img {
    transform: scale(1.05);
}
.event-featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 36, 99, 0.95) 0%,
        rgba(10, 36, 99, 0.5) 50%,
        rgba(10, 36, 99, 0.15) 100%
    );
}
.event-featured-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 26px;
}
.event-date-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--red);
    color: #fff;
    padding: 5px 13px;
    border-radius: 30px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}
.event-featured-title {
    font-weight: 900;
    font-size: 1.35rem;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 12px;
}
.event-featured-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
}
.event-featured-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}
.btn-register {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #fff;
    color: var(--blue);
    border: none;
    border-radius: 30px;
    padding: 9px 20px;
    font-weight: 700;
    font-size: 0.75rem;
    margin-top: 14px;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}
.btn-register:hover {
    background: var(--gold);
    transform: translateY(-1px);
}

/* List-style event cards */
.event-list-card {
    background: #fff;
    border-radius: var(--card-radius);
    overflow: hidden;
    display: flex;
    gap: 0;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: box-shadow 0.25s, transform 0.25s;
}
.event-list-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.event-date-block {
    width: 72px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 14px 8px;
    background: var(--blue);
    color: #fff;
}
.event-date-block .day {
    font-weight: 900;
    font-size: 2rem;
    line-height: 1;
}
.event-date-block .month {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.8;
    margin-top: 2px;
}
.event-list-card.red-date .event-date-block {
    background: var(--red);
}
.event-list-card.gold-date .event-date-block {
    background: #b45309;
}
.event-list-card.teal-date .event-date-block {
    background: #0f766e;
}

.event-list-body {
    padding: 14px 16px;
    flex: 1;
}
.event-list-body .etitle {
    font-weight: 700;
    font-size: 0.88rem;
    line-height: 1.35;
    color: var(--text);
    margin-bottom: 5px;
}
.event-list-body .emeta {
    font-size: 0.7rem;
    color: var(--gray-400);
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.event-list-body .emeta span {
    display: flex;
    align-items: center;
    gap: 4px;
}
.event-tag {
    display: inline-block;
    padding: 2px 9px;
    border-radius: 4px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: var(--gray-100);
    color: var(--gray-600);
    margin-bottom: 6px;
}
.event-tag.online {
    background: #dbeafe;
    color: #1d4ed8;
}
.event-tag.offline {
    background: #fce7f3;
    color: #9d174d;
}
.event-tag.hybrid {
    background: #d1fae5;
    color: #065f46;
}

/* Countdown timer */
.event-countdown {
    background: linear-gradient(135deg, var(--blue) 0%, #0d1f5e 100%);
    border-radius: var(--card-radius);
    padding: 22px 20px;
    text-align: center;
    color: #fff;
    box-shadow: var(--shadow-md);
}
.event-countdown h5 {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}
.event-countdown .ctitle {
    
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 16px;
    line-height: 1.3;
}
.countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}
.cunit {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 10px 4px;
}
.cnum {
    
    font-weight: 900;
    font-size: 1.6rem;
    line-height: 1;
    color: #fff;
}
.clabel {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 3px;
}
.btn-event-detail {
    display: block;
    margin-top: 14px;
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 9px 20px;
    
    font-weight: 700;
    font-size: 0.75rem;
    cursor: pointer;
    transition: background 0.2s;
    text-align: center;
}
.btn-event-detail:hover {
    background: var(--red-light);
}

.event-directory-card .idx-card-title {
    font-size: 1.05rem;
}

.event-directory-card .event-tag {
    margin: 0;
}

.event-summary-list {
    display: grid;
    gap: 12px;
}

.event-summary-list > div {
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gray-100);
}

.event-summary-list > div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.event-summary-list span,
.event-summary-list strong {
    display: block;
}

.event-summary-list span {
    margin-bottom: 4px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-400);
}

.event-summary-list strong {
    font-size: 0.9rem;
    line-height: 1.45;
    color: var(--text);
}

/* ── STATS STRIP ─────────────────────────────────────── */
.stats-strip {
    background: linear-gradient(135deg, var(--red) 0%, #b91c1c 100%);
    padding: 36px 0;
}
.stat-item {
    text-align: center;
}
.stat-number {
    
    font-weight: 900;
    font-size: 2.4rem;
    color: #fff;
    line-height: 1;
    margin-bottom: 4px;
}
.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ── NEWS INDEX SECTION ──────────────────────────────── */
.category-hero-section {
    padding: 38px 0;
    background: linear-gradient(135deg, #06223f 0%, #0a5a99 62%, #0a94c9 100%);
    color: #fff;
}

.category-hero-shell {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.category-eyebrow {
    margin-bottom: 10px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

.category-hero-section h1 {
    margin: 0 0 12px;
    font-family: var(--ff-display);
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.1;
}

.category-hero-section p {
    max-width: 700px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.75;
}

.category-stat {
    min-width: 150px;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
}

.category-stat span,
.category-stat strong {
    display: block;
}

.category-stat span {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.68);
}

.category-stat strong {
    margin-top: 6px;
    font-family: var(--ff-display);
    font-size: 2rem;
    line-height: 1;
}

.news-index-section.category-index-section {
    background: var(--mist);
}

.category-result-note {
    font-size: 0.84rem;
    color: var(--text-muted);
}

.profile-author-hero-section {
    padding: 42px 0;
    background: linear-gradient(135deg, #06223f 0%, #0a5a99 62%, #0a94c9 100%);
    color: #fff;
}

.profile-author-hero {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 22px;
}

.profile-author-hero-media {
    width: 116px;
    height: 116px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.16);
    border: 3px solid rgba(255, 255, 255, 0.32);
    color: #fff;
    font-size: 2.4rem;
    font-weight: 800;
    flex-shrink: 0;
}

.profile-author-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-author-hero-copy h1 {
    margin: 0 0 10px;
    font-family: var(--ff-display);
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
}

.profile-author-hero-copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
}

.profile-author-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.profile-author-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.13);
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.78rem;
    font-weight: 700;
}

.profile-author-stats {
    min-width: 190px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.profile-author-stats div {
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
}

.profile-author-stats span,
.profile-author-stats strong {
    display: block;
}

.profile-author-stats span {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.66);
}

.profile-author-stats strong {
    margin-top: 6px;
    font-family: var(--ff-display);
    font-size: 1.8rem;
    line-height: 1;
}

.profile-author-widget-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.profile-author-widget-avatar {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--gradient-primary);
    color: #fff;
    font-weight: 800;
    flex-shrink: 0;
}

.profile-author-widget-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-author-widget-name {
    font-family: var(--ff-display);
    font-weight: 800;
    color: var(--blue);
    line-height: 1.25;
}

.profile-author-widget-role {
    margin-top: 3px;
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 700;
}

.profile-author-widget-list {
    display: grid;
    gap: 10px;
}

.profile-author-widget-list div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-top: 1px solid var(--border);
}

.profile-author-widget-list span {
    color: var(--text-muted);
    font-size: 0.76rem;
}

.profile-author-widget-list strong {
    color: var(--blue);
    font-size: 0.82rem;
}

.news-index-section {
    padding: 52px 0 56px;
    background: var(--white);
}

/* Filter bar */
.index-filter-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.filter-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-right: 4px;
}
.filter-btn {
    padding: 6px 16px;
    border-radius: 30px;
    border: 1.5px solid var(--gray-200);
    background: #fff;
    
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.2s;
}
.filter-btn:hover,
.filter-btn.active {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
}
.filter-btn.cat-active {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
}
.sort-select {
    margin-left: auto;
    padding: 6px 14px;
    border-radius: 30px;
    border: 1.5px solid var(--gray-200);
    
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gray-600);
    background: #fff;
    outline: none;
    cursor: pointer;
}

/* Index card — horizontal list style */
.idx-card {
    display: flex;
    gap: 0;
    background: #fff;
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
    cursor: pointer;
    animation: fadeSlideUp 0.35s ease both;
}
.idx-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: transparent;
}
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.idx-card-img {
    width: 300px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}
.idx-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.idx-card:hover .idx-card-img img {
    transform: scale(1.07);
}
.idx-card-img .badge-cat {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
}
.idx-card-body {
    padding: 18px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.idx-card-top {
}
.idx-card-title {
    
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.4;
    color: var(--text);
    margin-bottom: 7px;
}
.idx-card-excerpt {
    
    font-size: 0.78rem;
    color: var(--gray-600);
    line-height: 1.6;
}
.idx-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--gray-100);
}
.idx-author {
    display: flex;
    align-items: center;
    gap: 7px;
}
.idx-author-link {
    color: inherit;
    text-decoration: none;
}
.idx-author-link:hover .idx-author-name {
    color: var(--primary);
}
.idx-author-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}
.idx-author-avatar-img {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.idx-author-name {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gray-600);
}
.idx-meta-right {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.68rem;
    color: var(--gray-400);
    font-weight: 600;
}
.idx-meta-right span {
    display: flex;
    align-items: center;
    gap: 4px;
}
.idx-save-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray-400);
    font-size: 0.85rem;
    transition: color 0.2s;
    padding: 0;
}
.idx-save-btn:hover,
.idx-save-btn.saved {
    color: var(--red);
}

/* Reading time chip */
.read-time {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.64rem;
    font-weight: 700;
    color: var(--gray-400);
    margin-bottom: 6px;
}

/* Load more / sentinel */
.load-more-sentinel {
    height: 1px;
}
.load-more-wrap {
    text-align: center;
    padding: 28px 0 8px;
}
.btn-load-more {
    background: transparent;
    border: 2px solid var(--blue);
    color: var(--blue);
    padding: 11px 36px;
    border-radius: 30px;
    
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: all 0.22s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-load-more:hover {
    background: var(--blue);
    color: #fff;
}
.btn-load-more .spinner-border {
    width: 14px;
    height: 14px;
    border-width: 2px;
}
.load-status {
    font-size: 0.75rem;
    color: var(--gray-400);
    font-weight: 600;
    margin-top: 14px;
}
.all-loaded-msg {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--gray-400);
    font-weight: 600;
}
.all-loaded-msg::before,
.all-loaded-msg::after {
    content: "";
    flex: 1;
    max-width: 80px;
    height: 1px;
    background: var(--gray-200);
}

.site-banner-slot {
    display: block;
    padding: 0;
    overflow: hidden;
}

.site-banner-slot img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.site-banner-slot--leaderboard {
    width: min(100%, 728px);
    margin-left: auto;
    margin-right: auto;
}

.site-banner-slot--sidebar {
    aspect-ratio: 6 / 5;
}

.site-banner-slot--sidebar img {
    height: 100%;
}

/* Skeleton loader */
.home-news-skeleton {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}
.home-news-skeleton.home-is-hidden {
    display: none;
}
.idx-skeleton {
    display: flex;
    gap: 0;
    background: #fff;
    border-radius: var(--card-radius);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}
.skel-img {
    width: 160px;
    flex-shrink: 0;
    background: linear-gradient(
        90deg,
        var(--gray-100) 25%,
        var(--gray-200) 50%,
        var(--gray-100) 75%
    );
    background-size: 200% 100%;
    animation: shimmer 1.4s infinite;
}
.skel-body {
    padding: 18px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.skel-line {
    height: 12px;
    border-radius: 6px;
    background: linear-gradient(
        90deg,
        var(--gray-100) 25%,
        var(--gray-200) 50%,
        var(--gray-100) 75%
    );
    background-size: 200% 100%;
    animation: shimmer 1.4s infinite;
}
@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Sticky sidebar widget */
.index-sidebar-sticky {
    position: sticky;
    top: 80px;
}

.home-news-trending-sidebar {
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .index-sidebar-sticky {
        position: static;
    }
}
.badge-cat {
      display: inline-block;
      padding: 4px 12px;
      border-radius: 4px;
      font-size: .65rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      margin-bottom: 10px;
    }
    .badge-cat.red  { background: var(--red); color: #fff; }
    .badge-cat.blue { background: var(--blue-light); color: #fff; }
    .badge-cat.gold { background: var(--gold); color: #1a1a1a; }
    .badge-cat.teal { background: #0d9488; color: #fff; }

/* Home View Helpers */
.home-fill-height {
    height: 100%;
}

.home-badge {
    display: inline-block;
}

.home-badge--hero-main {
    font-size: 0.6rem;
}

.home-badge--hero-side {
    font-size: 0.55rem;
}

.home-badge--hero-mini {
    font-size: 0.5rem;
    padding: 0.2em 0.5em;
}

.home-event-badge,
.home-index-badge {
    font-size: 0.6rem;
    padding: 3px 10px;
}

.home-event-badge {
    margin-bottom: 8px;
}

.home-delay-50 {
    transition-delay: 0.05s;
}

.home-delay-100 {
    transition-delay: 0.1s;
}

.home-delay-150 {
    transition-delay: 0.15s;
}

.home-delay-200 {
    transition-delay: 0.2s;
}

.home-delay-250 {
    transition-delay: 0.25s;
}

.home-insight-card {
    height: auto;
}

.home-insight-thumb {
    width: 90px;
    height: 90px;
    border-radius: 12px 0 0 12px;
    object-fit: cover;
    flex-shrink: 0;
}

.home-insight-body {
    padding: 12px 14px;
}

.home-insight-kicker {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.home-insight-title {
    -webkit-line-clamp: 2;
    font-size: 0.9rem;
}

.home-channel-item {
    padding: 10px 0;
}

.home-channel-item--last {
    border-bottom: none;
}

.home-channel-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
    font-size: 0.85rem;
}

.home-channel-icon--accent {
    background: var(--gradient-accent);
}

.home-channel-icon--emerald {
    background: linear-gradient(135deg, #065f46, #10b981);
}

.home-channel-icon--gold {
    background: linear-gradient(135deg, #92400e, #f59e0b);
}

.home-channel-icon--navy {
    background: linear-gradient(135deg, #1e3a5f, #4472c4);
}

.home-channel-title {
    font-size: 0.82rem;
}

.home-ad-box {
    flex-direction: column;
    gap: 8px;
}

.home-ad-box--sidebar {
    height: 250px;
}

.home-ad-box-icon {
    color: var(--border);
}

.home-tag-btn {
    font-size: 0.75rem;
    padding: 5px 12px;
}

.home-uni-pagination {
    position: static;
    margin-top: 16px;
}

.home-widget-panel {
    box-shadow: var(--shadow-sm);
}

.home-widget-heading {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--blue);
    display: flex;
    align-items: center;
    gap: 8px;
}

.home-widget-heading-icon {
    color: var(--red);
}

.home-widget-story {
    cursor: pointer;
}

.home-widget-story-thumb {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.home-widget-story-title {
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text);
}

.home-widget-story-meta {
    font-size: 0.65rem;
    color: var(--gray-400);
    margin-top: 3px;
}

.home-widget-section-title {
    font-size: 0.95rem;
}

.home-mustread-thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.home-mustread-title {
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text);
}

.home-mustread-meta {
    font-size: 0.65rem;
    color: var(--gray-400);
    margin-top: 4px;
}

.home-is-hidden {
    display: none;
}

.home-skel-line--40 {
    width: 40%;
}

.home-skel-line--50 {
    width: 50%;
}

.home-skel-line--65 {
    width: 65%;
}

.home-skel-line--85 {
    width: 85%;
}

.home-skel-line--offset {
    margin-top: 8px;
}

@media (max-width: 768px) {
    .idx-card {
        flex-direction: column;
    }

    .idx-card-img {
        width: 100%;
        aspect-ratio: 4 / 3;
        object-fit: cover;
        flex-shrink: 0;
        position: relative;
        overflow: hidden;
    }
}

.article-detail-section {
    padding: 3rem 0;
}

.article-detail-kicker {
    margin-bottom: 1rem;
}

.article-detail-title {
    font-family: var(--ff-display);
    font-weight: 800;
    font-size: clamp(1.25rem, 2vw, 2.2rem);
    line-height: 1.12;
    color: var(--blue);
    margin-bottom: 1rem;
}

.article-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.article-detail-meta-link {
    color: var(--text-muted);
    text-decoration: none;
}

.article-detail-meta-link:hover {
    color: var(--primary);
}

.article-author-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    margin: 0 0 1.5rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--shadow-sm);
    color: var(--text);
    text-decoration: none;
}

.article-author-card:hover {
    color: var(--text);
    border-color: rgba(10, 90, 153, 0.22);
    box-shadow: var(--shadow-md);
}

.article-author-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--gradient-primary);
    color: #fff;
    font-weight: 800;
}

.article-author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-author-copy {
    min-width: 0;
}

.article-author-label {
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.article-author-name {
    margin-top: 3px;
    font-family: var(--ff-display);
    font-weight: 800;
    color: var(--blue);
    line-height: 1.25;
}

.article-author-action {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 800;
    white-space: nowrap;
}

.article-detail-hero {
    margin-bottom: 1.5rem;
}

.article-detail-hero-image {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    border-radius: .65rem;
    box-shadow: var(--shadow-md);
}

.article-detail-quote {
    background: var(--mist);
    border-left: 4px solid var(--accent);
    border-radius: 1.25rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text);
}

.article-detail-shell {
    background: #fff;
    border-radius: 1.5rem;
    padding: 5px;
    /*box-shadow: var(--shadow-sm);*/
}

.article-content {
    font-size: 1.02rem;
    line-height: 1.85;
    color: var(--text);
}

.article-content > :last-child,
.article-content-body > :last-child,
.article-listicle-content > :last-child {
    margin-bottom: 0;
}

.article-content h2,
.article-content h3,
.article-content h4 {
    font-family: var(--ff-display);
    color: var(--blue);
    line-height: 1.25;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.article-content p,
.article-content ul,
.article-content ol,
.article-content blockquote,
.article-content table,
.article-content figure {
    margin-bottom: 1.25rem;
}

.article-content ul,
.article-content ol {
    padding-left: 1.25rem;
}

.article-content blockquote {
    background: rgba(255, 232, 190, 0.35);
    border-left: 4px solid var(--gold);
    border-radius: 1rem;
    padding: 1rem 1.25rem;
}

.article-read-also-box {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    margin: 1.6rem 0;
    padding: 16px 18px;
    border-radius: 12px;
    border: 1px solid rgba(212, 43, 43, 0.12);
    background: linear-gradient(180deg, rgba(255, 248, 248, 0.98) 0%, rgba(255, 255, 255, 1) 100%);
    box-shadow: 0 10px 24px rgba(11, 79, 130, 0.08);
}

.article-read-also-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 92px;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--red);
    color: #fff;
    font-size: 0.74rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1;
}

.article-read-also-links {
    display: grid;
    gap: 10px;
}

.article-read-also-link {
    display: block;
    color: var(--blue);
    font-family: var(--ff-display);
    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1.45;
    text-decoration: none !important;
}

.article-read-also-link:hover {
    color: var(--red);
}

.article-content a {
    color: var(--primary);
    text-decoration: underline;
    text-decoration-thickness: 1px;
}

.article-content img,
.article-listicle-image,
.article-content iframe,
.article-content video {
    display: block;
    max-width: 100%;
    width: 100%;
    border-radius: 1.25rem;
}

.article-content iframe,
.article-content video {
    min-height: 320px;
    border: 0;
}

.article-content table {
    width: 100%;
    border-collapse: collapse;
}

.article-content table th,
.article-content table td {
    border: 1px solid var(--border);
    padding: 0.75rem;
    vertical-align: top;
}

.article-listicle-item {
    margin-top: 2.5rem;
}

.article-listicle-title {
    font-family: var(--ff-display);
    font-size: clamp(1.35rem, 2vw, 1.8rem);
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 1rem;
}

.article-listicle-media {
    margin-bottom: 1rem;
}

.article-detail-tags {
    margin-top: 3rem;
}

.article-detail-trending-sidebar {
    margin-bottom: 0;
}

@media (min-width: 992px) {
    .article-detail-trending-sidebar {
        position: sticky;
        top: 80px;
    }
}

.article-tag-link {
    font-size: 0.78rem;
    padding: 6px 12px;
}

@media (max-width: 991.98px) {
    .article-detail-section {
        padding: 2.25rem 0;
    }

    .profile-author-hero {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .profile-author-stats {
        grid-column: 1 / -1;
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .article-detail-meta {
        gap: 0.75rem;
        font-size: 0.88rem;
    }

    .article-author-card {
        align-items: flex-start;
    }

    .article-author-action {
        display: none;
    }

    .article-read-also-box {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 14px;
    }

    .article-content iframe,
    .article-content video {
        min-height: 220px;
    }

    .profile-author-hero {
        display: block;
    }

    .profile-author-hero-media {
        width: 88px;
        height: 88px;
        margin-bottom: 16px;
        font-size: 1.8rem;
    }

    .profile-author-stats {
        margin-top: 18px;
    }
}

@media (max-width: 767.98px) {
    .category-hero-shell {
        display: block;
    }

    .category-hero-section h1 {
        font-size: 2rem;
    }

    .category-stat {
        margin-top: 22px;
    }
}
