/* =================================================================
 * DISKOMINFO KUTIM PORTAL — REDESIGN
 * Style: Bento Grid + Accessible & Ethical (WCAG AAA)
 * Pattern: Diskominfo gov blue gradient + glass touches
 * Typography: Lexend (heading) + Source Sans 3 (body)
 * Created: 2026-05-12 via UI/UX Pro Max design system
 * ================================================================= */

/* ----- Google Fonts ----- */
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@400;500;600;700&family=Source+Sans+3:wght@400;500;600;700&display=swap');

/* ----- CSS Design Tokens ----- */
:root {
    --ddt-primary: #1e5aa6;
    --ddt-primary-dark: #0f3a73;
    --ddt-primary-light: #2D67BD;
    --ddt-primary-ice: #e9f1fb;
    --ddt-accent: #B45309;
    --ddt-accent-light: #f4a437;
    --ddt-success: #22c55e;
    --ddt-warning: #f59e0b;
    --ddt-info: #0ea5e9;
    --ddt-bg: #f8fafc;
    --ddt-bg-soft: #f1f5f9;
    --ddt-surface: #ffffff;
    --ddt-text: #0f172a;
    --ddt-text-muted: #475569;
    --ddt-text-on-primary: #ffffff;
    --ddt-border: #e2e8f0;
    --ddt-radius-sm: 0.5rem;
    --ddt-radius: 0.875rem;
    --ddt-radius-lg: 1.25rem;
    --ddt-shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
    --ddt-shadow-md: 0 4px 16px rgba(30, 90, 166, 0.08);
    --ddt-shadow-lg: 0 16px 40px rgba(30, 90, 166, 0.14);
    --ddt-shadow-glow: 0 0 0 4px rgba(30, 90, 166, 0.15);
    --ddt-transition: 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ----- Typography upgrade ----- */
body,
.menu-item-title,
.shortcut-text,
.top-nav-link,
.menu-primary-site-link,
.btn,
input, textarea, select, button {
    font-family: "Source Sans 3", "Poppins", "Inter", system-ui, -apple-system, sans-serif;
    font-feature-settings: "cv11", "ss01";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6,
.shortcut-head,
.title-page h1, .title-page h2,
.box-title h3 {
    font-family: "Lexend", "Poppins", "Inter", sans-serif;
    letter-spacing: -0.02em;
    font-weight: 600;
}

/* ----- Skip link (accessibility AAA) ----- */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--ddt-primary);
    color: #fff;
    padding: 0.75rem 1.25rem;
    z-index: 9999;
    text-decoration: none;
    border-radius: 0 0 0.5rem 0;
    transition: top var(--ddt-transition);
}
.skip-to-content:focus { top: 0; }

/* ----- Focus rings (3px, accessible WCAG AAA) ----- */
a:focus-visible, button:focus-visible,
.menu-item:focus-visible, .shortcut:focus-visible,
input:focus-visible, textarea:focus-visible, select:focus-visible {
    outline: 3px solid var(--ddt-primary);
    outline-offset: 2px;
    border-radius: var(--ddt-radius-sm);
}

/* ----- Stats counter cards (.shortcut) ----- */
.shortcuts {
    background: linear-gradient(180deg, #ffffff 0%, var(--ddt-bg) 100%);
    padding: 1.5rem 0;
}
.shortcut {
    position: relative;
    margin: 0.5rem;
    border-radius: var(--ddt-radius);
    overflow: hidden;
    background: linear-gradient(135deg, var(--ddt-primary) 0%, var(--ddt-primary-light) 100%) !important;
    color: #fff !important;
    padding: 1.5rem 1rem !important;
    min-height: 120px;
    box-shadow: var(--ddt-shadow-md);
    transition: transform var(--ddt-transition), box-shadow var(--ddt-transition);
}
.shortcut::before {
    background: none !important;
}
.shortcut:hover {
    transform: translateY(-3px);
    box-shadow: var(--ddt-shadow-lg);
}
.shortcut.light    { background: linear-gradient(135deg, #1e293b 0%, #475569 100%) !important; }
.shortcut.orange   { background: linear-gradient(135deg, #ea580c 0%, #fb923c 100%) !important; }
.shortcut.yellow   { background: linear-gradient(135deg, #ca8a04 0%, #facc15 100%) !important; }
.shortcut.green    { background: linear-gradient(135deg, #16a34a 0%, #4ade80 100%) !important; }
.shortcut-head {
    font-size: 2.8rem !important;
    font-weight: 700 !important;
    color: #fff !important;
    line-height: 1 !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    display: block !important;
}
.shortcut-text {
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.95) !important;
    letter-spacing: 0.01em;
    margin-top: 0.5rem !important;
    display: block !important;
}

/* ----- Menus section (bento grid container) ----- */
.menus {
    background: linear-gradient(180deg, var(--ddt-bg) 0%, var(--ddt-primary-ice) 100%) !important;
    border-top: none !important;
    padding: 3rem 0 !important;
    position: relative;
}
/* Radial-gradient pseudo dihapus — paint-cost tinggi saat scroll */
.menus::before { content: none !important; }
.menus .container {
    position: relative;
    z-index: 1;
}
/* Section heading container (HTML real, bukan pseudo) */
.menus .section-heading {
    text-align: center;
    margin-bottom: 1.75rem;
    position: relative;
    z-index: 2;
}
.menus .section-heading h2 {
    font-family: "Lexend", sans-serif !important;
    font-size: 1.65rem !important;
    font-weight: 700 !important;
    color: var(--ddt-primary-dark) !important;
    margin: 0 0 0.35rem 0 !important;
    letter-spacing: -0.02em;
}
.menus .section-heading .sub {
    font-family: "Source Sans 3", sans-serif !important;
    font-size: 0.95rem !important;
    color: var(--ddt-text-muted) !important;
    margin: 0 !important;
    line-height: 1.5;
}

/* ----- BENTO GRID for menu tiles ----- */
#ip-container {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1rem !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative !important;
}
@media (max-width: 991px) {
    #ip-container { grid-template-columns: repeat(2, 1fr) !important; gap: 0.75rem !important; }
}
@media (max-width: 480px) {
    #ip-container { grid-template-columns: repeat(2, 1fr) !important; gap: 0.5rem !important; }
}

/* Bento span DISABLED 2026-05-12 — keep all 12 cards visually equal (4×3 balanced grid).
   Sebelumnya Portal (1st) + Berita (last) span 2 col = 2x. User minta semua sama. */

/* ----- Menu tile (.menu-item) ----- */
.menu-item {
    width: 100% !important;
    height: 160px !important;
    margin: 0 !important;
    padding: 1.25rem 1rem !important;
    border-radius: var(--ddt-radius) !important;
    background: linear-gradient(135deg, var(--ddt-primary) 0%, var(--ddt-primary-light) 100%) !important;
    color: var(--ddt-text-on-primary) !important;
    box-shadow: var(--ddt-shadow-md) !important;
    transition: transform var(--ddt-transition), box-shadow var(--ddt-transition) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden;
    position: relative;
    cursor: pointer !important;
    text-decoration: none !important;
}
.menu-item::before { content: none !important; }
.menu-item:hover,
.menu-item:focus-visible {
    transform: translateY(-4px) scale(1.01) !important;
    box-shadow: var(--ddt-shadow-lg) !important;
}
.menu-item:active { transform: translateY(-1px) scale(0.99) !important; }

/* Bento tile color palette — gradien biru diskominfo */
.menu-item.pink     { background: linear-gradient(135deg, #0f3a73 0%, #1e5aa6 100%) !important; }
.menu-item.cream    { background: linear-gradient(135deg, #1e5aa6 0%, #2778c4 100%) !important; }
.menu-item.red      { background: linear-gradient(135deg, #1976d2 0%, #42a5f5 100%) !important; }
.menu-item.redlight { background: linear-gradient(135deg, #0d47a1 0%, #1976d2 100%) !important; }
.menu-item.blue     { background: linear-gradient(135deg, #01579b 0%, #0277bd 100%) !important; }
.menu-item.green    { background: linear-gradient(135deg, #1565c0 0%, #2196f3 100%) !important; }
.menu-item.grayy    { background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%) !important; }
.menu-item.purple   { background: linear-gradient(135deg, #283593 0%, #3949ab 100%) !important; }

/* Hero tile (1st & last) — clean blue gradient, no decoration */
#ip-container > *:nth-child(1) {
    background: linear-gradient(135deg, #0f3a73 0%, #1e5aa6 100%) !important;
}
#ip-container > *:nth-child(1)::after { content: none !important; }
#ip-container > *:last-child {
    background: linear-gradient(135deg, #1565c0 0%, #1976d2 100%) !important;
}

/* ----- Menu item icon ----- */
.menu-item-icon {
    z-index: 2;
    position: relative;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}
.menu-item-icon i {
    font-size: 2.5rem !important;
    color: #ffffff !important;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.18));
    display: inline-block;
}
.menu-item-title {
    font-family: "Lexend", sans-serif !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    color: #ffffff !important;
    text-align: center;
    line-height: 1.3;
    letter-spacing: 0.01em;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* ----- Dropdown details (.ip-details) ----- */
.ip-details {
    background: var(--ddt-surface) !important;
    border: 1px solid var(--ddt-border) !important;
    border-radius: var(--ddt-radius) !important;
    box-shadow: var(--ddt-shadow-lg) !important;
    padding: 1rem !important;
    color: var(--ddt-text);
    z-index: 100 !important;
}
.menu-link {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    color: var(--ddt-text) !important;
    border-radius: var(--ddt-radius-sm);
    transition: background var(--ddt-transition);
    text-decoration: none !important;
    font-size: 0.9rem;
}
.menu-link:hover {
    background: var(--ddt-primary-ice);
    color: var(--ddt-primary) !important;
}
.menu-link i {
    color: var(--ddt-primary);
}

/* ----- Smooth scroll + scroll performance optimization ----- */
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}
body {
    overflow-x: hidden;
}
/* GPU layer HANYA pada elemen sticky + slider (hindari over-promote GPU layers) */
.top-header { transform: translateZ(0); -webkit-transform: translateZ(0); }
.sliderslick, .slider-beranda { contain: layout style paint; }

/* Override .top-header.sticky animation lama yg bikin getar scroll pelan */
.top-header.sticky .logo,
.top-header.sticky .logo-text,
.top-header.sticky .logo-img {
    overflow: visible !important;
    transform: none !important;
    -webkit-transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    transition: none !important;
}
.top-header.sticky { transition: none !important; }
.top-header * { transition-property: color, background-color, border-color, box-shadow !important; }
/* Hover transform hanya pointer fine (desktop), bukan touch */
@media (hover: hover) and (pointer: fine) {
    .menu-item:hover { transform: translateY(-4px) scale(1.01) translateZ(0) !important; }
    article.news:hover { transform: translateY(-3px) translateZ(0) !important; }
    .news-card:hover { transform: translateX(2px) translateZ(0) !important; }
    .footer-contact-about:hover { transform: translateY(-2px) translateZ(0) !important; }
}
@media (hover: none) {
    .menu-item:hover, article.news:hover, .news-card:hover, .footer-contact-about:hover {
        transform: translateZ(0) !important;
    }
}
/* Slider autoplay sering trigger reflow — isolate dari main layout */
.sliderslick, .slider-beranda {
    contain: layout style paint;
}
/* Force fix slider tinggi agar reflow tidak melompat saat autoHeight */
.slider-beranda .owl-stage-outer, .sliderslick .owl-stage-outer { contain: paint; }
.slider-beranda .owl-item img, .sliderslick .owl-item img { aspect-ratio: auto; max-height: 600px; }

/* content-visibility: auto bikin paint flash saat enter viewport — DISABLED */
/* img { content-visibility: auto; } */
.news-img img, .news-card-img img, .news-big-img img {
    loading: lazy;
}
/* News card images reserve space to prevent CLS */
.news-card-img { aspect-ratio: 1; }

/* Containment ringan untuk reduce scroll repaint */
.menus, .widgets, .footer-contact, .fluid { contain: layout; }
.menu-item, article.news, .news-card, .anouncement-card, .tab-sidebar { contain: layout style; }

/* ----- Reduced motion (accessibility) ----- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .menu-item:hover, .shortcut:hover { transform: none !important; }
}

/* ----- Underline override (Bootstrap 5 fix) ----- */
a, a:hover, a:focus, a:visited,
.nav-link, .navbar a, .dropdown-item, .breadcrumb a,
.menu-item, .menu-item-title { text-decoration: none !important; }
.isikonten a, .text-decoration-underline { text-decoration: underline !important; }

/* ----- Section heading helper ----- */
.section-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 2rem;
    text-align: center;
}
.section-heading .eyebrow {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--ddt-primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}
.section-heading h2 {
    font-family: "Lexend", sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--ddt-text);
    margin: 0;
    letter-spacing: -0.02em;
}
.section-heading .sub {
    color: var(--ddt-text-muted);
    font-size: 0.95rem;
}

/* ----- Body text default contrast ----- */
body {
    color: var(--ddt-text) !important;
    background: var(--ddt-bg);
}

/* ----- High contrast mode ----- */
@media (prefers-contrast: more) {
    .menu-item { border: 2px solid #fff !important; }
}

/* =================================================================
 * KEPALA DINAS section — name + slogan (.visi-kab)
 * ================================================================= */
.visi-kab .name-user {
    border-top: 2px solid var(--ddt-primary) !important;
    padding-top: 0.5rem !important;
}
.visi-kab .name-user h3 {
    color: var(--ddt-primary-dark) !important;
    font-family: "Lexend", sans-serif !important;
    font-weight: 700 !important;
    letter-spacing: -0.01em !important;
}
.visi-kab .name-user span {
    color: var(--ddt-text-muted) !important;
    font-size: 0.85rem !important;
}
.visi-kab .text-block {
    font-family: "Lexend", sans-serif !important;
    color: var(--ddt-primary-dark) !important;
    font-style: italic;
    font-size: 1.05rem !important;
    font-weight: 500;
}
.visi-kab .img-user img {
    border: 3px solid var(--ddt-primary-ice);
    box-shadow: 0 4px 16px rgba(30, 90, 166, 0.15);
}

/* Logo-text di top-header juga (sebelumnya color green) */
.top-header .logo-text h1 { color: var(--ddt-primary-dark) !important; }

/* =================================================================
 * NAVBAR REDESIGN — clean gov style with diskominfo blue accents
 * ================================================================= */

.top-header {
    background: #ffffff !important;
    border-bottom: 1px solid var(--ddt-border);
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
    padding: 0.5rem 0;
    position: sticky;
    top: 0;
    z-index: 999;
    /* GPU layer promotion utk smooth scroll */
    will-change: transform;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    /* backdrop-filter dihapus — terlalu GPU-heavy bikin shake saat scroll */
}
/* Force vertical-center alignment logo + nav */
.top-header .container > .row {
    align-items: center !important;
    min-height: 72px;
}
.top-header .container > .row > [class*="col-"] {
    display: flex;
    align-items: center;
}
.top-header .container > .row > .col-lg {
    justify-content: flex-start;
    padding-left: 2rem;
}
@media (max-width: 991px) {
    .top-header .container > .row > .col-lg {
        justify-content: center;
        padding-left: 0;
    }
}

/* Logo + brand */
.logo {
    display: flex !important;
    align-items: center;
    gap: 0.85rem;
    padding: 0.5rem 0;
}
/* Logo container — override style.min.css default 40px */
.top-header .logo-img,
.logo-img {
    flex-shrink: 0;
    display: inline-flex !important;
    align-items: center;
    width: auto !important;  /* hilangkan width:40px dari style.min.css */
}
.top-header .logo-img img,
.logo-img img {
    height: 64px !important;  /* logo lebih besar di desktop */
    width: auto !important;
    max-width: none !important;
    transition: transform var(--ddt-transition);
}
.logo-img:hover img { transform: scale(1.04); }
/* Mobile + tablet ukuran logo */
@media (max-width: 991px) {
    .top-header .logo-img img,
    .logo-img img {
        height: 52px !important;
    }
}
@media (max-width: 480px) {
    .top-header .logo-img img,
    .logo-img img {
        height: 44px !important;
    }
}
.logo-text {
    text-decoration: none !important;
    line-height: 1;
}
.logo-text h1 {
    font-family: "Lexend", sans-serif !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    color: var(--ddt-primary-dark) !important;
    letter-spacing: 0.02em;
    line-height: 1.2 !important;
    margin: 0 !important;
}
.logo-text h1 span {
    display: block;
    font-size: 0.7rem !important;
    font-weight: 500 !important;
    color: var(--ddt-text-muted) !important;
    letter-spacing: 0.08em;
    margin-top: 2px;
}

/* Top menu container + UL */
.top-menu {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.top-menu-nav {
    width: auto !important;
}
.top-menu-ul {
    display: flex !important;
    align-items: center;
    gap: 0.25rem;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    float: none !important;
}
.top-nav-item {
    list-style: none;
    position: relative;
}

/* Top nav link */
.top-nav-link {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.6rem 0.85rem !important;
    border-radius: var(--ddt-radius-sm);
    color: var(--ddt-text) !important;
    text-decoration: none !important;
    font-family: "Source Sans 3", sans-serif !important;
    font-size: 0.78rem !important;
    font-weight: 500 !important;
    transition: color var(--ddt-transition), background var(--ddt-transition), transform var(--ddt-transition);
    position: relative;
    min-width: 64px;
    text-align: center;
    cursor: pointer;
}
.top-nav-link i {
    font-size: 1.15rem !important;
    color: var(--ddt-primary) !important;
    line-height: 1;
    transition: color var(--ddt-transition), transform var(--ddt-transition);
}
.top-nav-link span {
    font-size: 0.78rem !important;
    color: var(--ddt-text) !important;
    transition: color var(--ddt-transition);
    line-height: 1.2;
}

/* Hover + active state — override green box-shadow inset dari style.min.css */
.top-nav-link:hover,
.top-nav-link:focus-visible,
.top-nav-link.hovered,
.top-nav-item.active .top-nav-link,
.top-menu-ul .top-nav-link:hover,
.top-menu-ul .top-nav-link.active {
    background: var(--ddt-primary-ice) !important;
    color: var(--ddt-primary) !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    transform: translateY(-1px);
}
.top-menu-ul .top-nav-link.active i,
.top-menu-ul .top-nav-link.active span {
    color: var(--ddt-primary-dark) !important;
}
.top-nav-link:hover i,
.top-nav-link.hovered i,
.top-nav-item.active .top-nav-link i {
    color: var(--ddt-primary-dark) !important;
    transform: scale(1.08);
}
.top-nav-link:hover span,
.top-nav-link.hovered span,
.top-nav-item.active .top-nav-link span {
    color: var(--ddt-primary-dark) !important;
    font-weight: 600 !important;
}

/* Underline indicator on hover (animated) */
.top-nav-link::after {
    content: "";
    position: absolute;
    bottom: 6px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--ddt-primary), var(--ddt-primary-light));
    border-radius: 2px;
    transform: translateX(-50%);
    transition: width 220ms ease;
}
.top-nav-link:hover::after,
.top-nav-link.hovered::after { width: 60%; }

/* Override .inlinepopup wrapper hijau (#b5f7bd) — JS plugin wraps bento grid */
.inlinepopup {
    background: transparent !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    border-radius: 0 !important;
}
.inlinepopup_arrow {
    border-bottom-color: transparent !important;
    display: none !important;
}
.inlinepopup_content {
    background: #ffffff !important;
    border-radius: var(--ddt-radius) !important;
    border: 1px solid var(--ddt-border) !important;
    box-shadow: var(--ddt-shadow-md) !important;
}

/* Dropdown panel — top-menu-wrapper */
.top-header { overflow: visible !important; }
.top-menu, .top-menu-nav, .top-menu-ul { overflow: visible !important; }
.top-nav-item, .top-nav-item.had-dropdown { position: relative !important; overflow: visible !important; }

.top-menu-wrapper {
    background: #ffffff !important;
    border: 1px solid var(--ddt-border) !important;
    border-radius: var(--ddt-radius) !important;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.14) !important;
    margin-top: 0 !important;
    padding: 1rem !important;
    z-index: 1500 !important;
    width: auto !important;
    min-width: 320px !important;
    max-width: min(420px, calc(100vw - 2rem)) !important;
    position: absolute !important;
    top: calc(100% + 0px) !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(20px) !important;
}
/* Invisible bridge — extend hover area antara trigger dan panel */
.top-menu-wrapper::before {
    content: "";
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
    background: transparent;
    pointer-events: auto;
}
.top-menu-wrapper > .top-menu-wrapper-header,
.top-menu-wrapper > .top-menu-wrapper-body { position: relative; z-index: 1; }
/* JANGAN beri padding-bottom extra ke had-dropdown — bikin tinggi tidak rata.
   Hover bridge dihandle via top-menu-wrapper::before saja */
.top-nav-item, .top-nav-item.had-dropdown { padding: 0 !important; }
.top-menu-ul { align-items: stretch !important; }
.top-nav-link { height: 100% !important; min-height: 64px; }

/* Dropdown panel saat aktif (parent hovered) */
.had-dropdown:hover .top-menu-wrapper,
.had-dropdown.open .top-menu-wrapper,
.top-menu-wrapper.open {
    visibility: visible !important;
    opacity: 1 !important;
    transform: translateX(-50%) translateY(0) !important;
}

/* Auto-shift dropdown ke kiri kalau berada di pojok kanan */
.top-menu-ul > .had-dropdown:nth-last-child(-n+2) .top-menu-wrapper {
    left: auto !important;
    right: 0 !important;
    transform: translateY(20px) !important;
}
.top-menu-ul > .had-dropdown:nth-last-child(-n+2):hover .top-menu-wrapper,
.top-menu-ul > .had-dropdown:nth-last-child(-n+2).open .top-menu-wrapper {
    transform: translateY(0) !important;
}

/* Dropdown body grid responsive (default Bootstrap col tetap honored) */
.top-menu-wrapper-body .row { margin: 0 !important; }
.top-menu-wrapper-body .col-md-12,
.top-menu-wrapper-body .col-md-6 { padding: 0 !important; }

/* List di dalam dropdown */
.menu-primary-site {
    display: flex !important;
    flex-direction: column;
    gap: 0.15rem;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    max-height: 60vh !important;
    overflow-y: auto !important;
    min-height: auto !important;
}
.menu-primary-site-item {
    list-style: none;
}
.menu-primary-site .dropdown-menu {
    position: static !important;
    transform: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0.25rem 0 0 1rem !important;
    background: var(--ddt-bg-soft) !important;
    border-left: 2px solid var(--ddt-primary-light);
    margin-top: 0.25rem !important;
    display: none;
}
.menu-primary-site .dropdown:hover .dropdown-menu,
.menu-primary-site .dropdown.show .dropdown-menu { display: block !important; }
.menu-primary-site .dropdown-toggle::after { display: none !important; }
/* ----- Dropdown header (judul section) ----- */
.top-menu-wrapper-header {
    padding: 0.25rem 0.75rem 0.75rem !important;
    border-bottom: 1px solid var(--ddt-border) !important;
    margin-bottom: 0.5rem !important;
}
.top-menu-wrapper-header h5 {
    font-family: "Lexend", sans-serif !important;
    font-size: 0.7rem !important;
    font-weight: 700 !important;
    color: var(--ddt-primary) !important;
    margin: 0 !important;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

/* ----- Dropdown links (clean list, NO bullets, NO chevrons) ----- */
.menu-primary-site,
.menu-primary-site li,
.menu-primary-site-item {
    list-style: none !important;
    list-style-type: none !important;
    margin: 0 !important;
    padding: 0 !important;
}
.menu-primary-site::before,
.menu-primary-site::after,
.menu-primary-site li::before,
.menu-primary-site li::after,
.menu-primary-site-item::before,
.menu-primary-site-item::after { content: none !important; display: none !important; }

.menu-primary-site-link {
    display: block !important;
    padding: 0.55rem 0.75rem !important;
    color: var(--ddt-text) !important;
    font-family: "Source Sans 3", sans-serif !important;
    font-size: 0.88rem !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
    border-radius: var(--ddt-radius-sm) !important;
    transition: color var(--ddt-transition);
    text-decoration: none !important;
    position: relative !important;
    border: none !important;
}
.menu-primary-site-link::before,
.menu-primary-site-link::after { content: none !important; display: none !important; }

/* Override style.min.css lama: border-bottom abu-abu di tiap link */
.menu-primary-site-link {
    border-bottom: none !important;
}

/* .menu-link (dropdown sub-item di Layanan/PPID/Berita) — ganti hijau jadi text dark */
.menu-link {
    color: var(--ddt-text) !important;
    padding: 0.45rem 0 !important;
    font-size: 0.88rem !important;
    border-bottom: none !important;
    display: flex !important;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none !important;
    transition: color var(--ddt-transition) !important;
}
.menu-link:hover {
    color: var(--ddt-primary) !important;
    background: transparent !important;
}
.menu-link > i {
    float: none !important;
    color: var(--ddt-primary) !important;
    padding-right: 0 !important;
    font-size: 0.9rem;
}
.menu-link::before,
.menu-link::after { content: none !important; display: none !important; }

.menu-primary-site-link:hover {
    background: transparent !important;
    color: var(--ddt-primary) !important;
    border: none !important;
    padding-left: 0.75rem !important;
}

/* "Satuan Kerja" sub-dropdown (nested) — clean, no border/bg */
.menu-primary-site .dropdown-menu {
    position: static !important;
    transform: none !important;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 0 0 0.75rem !important;
    margin: 0 !important;
}
.menu-primary-site .dropdown-menu .menu-primary-site-link,
.menu-primary-site .dropdown-menu a {
    font-size: 0.82rem !important;
    padding: 0.35rem 0.75rem !important;
    color: var(--ddt-text-muted) !important;
}
.menu-primary-site .dropdown-menu a:hover {
    color: var(--ddt-primary) !important;
    background: transparent !important;
}

.menu-primary-site .dropdown-toggle.menu-primary-site-link {
    font-weight: 600 !important;
    color: var(--ddt-text) !important;
}

/* Mobile menu toggle */
.menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--ddt-radius-sm);
    background: var(--ddt-primary-ice);
    color: var(--ddt-primary);
    transition: background var(--ddt-transition);
    cursor: pointer;
    margin-left: auto;
}
.menu-btn:hover {
    background: var(--ddt-primary);
    color: #fff;
}
.menu-btn i { font-size: 1.25rem; }

/* =================================================================
 * BERANDA PAGE REDESIGN (homelanding.blade.php)
 * Slider + Berita Terkini + Sidebar
 * ================================================================= */

/* ----- Slider container (home + beranda) — konsistensi rounded, full-width ----- */
.sliderslick,
.slider-beranda {
    border-radius: var(--ddt-radius-lg) !important;
    overflow: hidden;
    box-shadow: var(--ddt-shadow-md);
    margin: 0 auto 1.5rem !important;
    max-width: 100% !important;
    width: 100% !important;
}
.sliderslick .slider-item,
.sliderslick .owl-item,
.slider-beranda .owl-item {
    border-radius: var(--ddt-radius-lg) !important;
    overflow: hidden;
}
.sliderslick .slider-item img,
.sliderslick .owl-item img,
.slider-beranda .owl-item img {
    border-radius: var(--ddt-radius-lg) !important;
    width: 100% !important;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Wrapper container (banner zone) — biar slider rata kiri-kanan */
.container-fluid:has(> .sliderslick),
.container-fluid:has(> .slider-beranda) {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    margin-top: 1rem;
}
/* Slider nav arrows */
.slider-beranda .owl-prev,
.slider-beranda .owl-next {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95) !important;
    color: var(--ddt-primary) !important;
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    box-shadow: var(--ddt-shadow-md) !important;
    border: none !important;
    font-size: 1.4rem !important;
    line-height: 1 !important;
    transition: all var(--ddt-transition) !important;
    z-index: 10;
}
.slider-beranda .owl-prev { left: 1rem !important; }
.slider-beranda .owl-next { right: 1rem !important; }
.slider-beranda .owl-prev:hover,
.slider-beranda .owl-next:hover {
    background: var(--ddt-primary) !important;
    color: #fff !important;
    transform: translateY(-50%) scale(1.08) !important;
}
/* Slider dots */
.slider-beranda .owl-dots {
    text-align: center;
    margin-top: 1rem !important;
    display: flex !important;
    justify-content: center;
    gap: 0.5rem;
}
.slider-beranda .owl-dot span {
    width: 10px !important;
    height: 10px !important;
    background: var(--ddt-border) !important;
    border-radius: 50% !important;
    transition: all var(--ddt-transition);
    display: inline-block;
    margin: 0 !important;
}
.slider-beranda .owl-dot.active span {
    background: var(--ddt-primary) !important;
    width: 32px !important;
    border-radius: 5px !important;
}

/* ----- Box header (Berita Terkini section title) ----- */
.fluid .box {
    background: #ffffff !important;
    border-radius: var(--ddt-radius-lg) !important;
    box-shadow: var(--ddt-shadow-md) !important;
    border: 1px solid var(--ddt-border);
    padding: 1.5rem !important;
    margin-bottom: 1.5rem;
}
.box-header {
    padding-bottom: 1rem !important;
    border-bottom: 1px solid var(--ddt-border);
    margin-bottom: 1.5rem !important;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.box-title span {
    font-size: 0.78rem !important;
    color: var(--ddt-primary) !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    display: block;
    margin-bottom: 0.25rem;
}
.box-title h3 {
    font-family: "Lexend", sans-serif !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: var(--ddt-text) !important;
    margin: 0 !important;
    letter-spacing: -0.02em;
}
.box-title h3.green {
    background: linear-gradient(135deg, var(--ddt-primary-dark) 0%, var(--ddt-primary) 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
}

/* ----- Btn "Selengkapnya" ----- */
.btn-more,
.btn-green {
    background: linear-gradient(135deg, var(--ddt-primary) 0%, var(--ddt-primary-light) 100%) !important;
    color: #fff !important;
    border: none !important;
    padding: 0.6rem 1.25rem !important;
    border-radius: var(--ddt-radius-sm) !important;
    font-family: "Source Sans 3", sans-serif !important;
    font-size: 0.88rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all var(--ddt-transition);
    box-shadow: 0 2px 8px rgba(30, 90, 166, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.btn-more:hover,
.btn-green:hover {
    background: linear-gradient(135deg, var(--ddt-primary-dark) 0%, var(--ddt-primary) 100%) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(30, 90, 166, 0.35);
}
.btn-orange {
    background: linear-gradient(135deg, #ea580c 0%, #fb923c 100%) !important;
    color: #fff !important;
    border: none !important;
    padding: 0.5rem 1rem !important;
    border-radius: var(--ddt-radius-sm) !important;
    font-weight: 600 !important;
    text-decoration: none !important;
}

/* ----- Tab berita ----- */
.tab-berita {
    display: flex !important;
    list-style: none !important;
    margin: 0 0 1rem 0 !important;
    padding: 0 !important;
    gap: 0.5rem;
    flex-wrap: wrap;
    border-bottom: 2px solid var(--ddt-border);
}
.tab-berita-item {
    list-style: none;
    margin: 0 !important;
}
.tab-berita-link {
    display: inline-block;
    padding: 0.7rem 1rem !important;
    font-family: "Source Sans 3", sans-serif !important;
    font-size: 0.88rem !important;
    font-weight: 600 !important;
    color: var(--ddt-text-muted) !important;
    text-decoration: none !important;
    border-radius: 0 !important;
    border-bottom: 3px solid transparent !important;
    margin-bottom: -2px !important;
    transition: all var(--ddt-transition);
    background: transparent !important;
    cursor: pointer;
}
.tab-berita-item.active .tab-berita-link,
.tab-berita-link.active,
.tab-berita-link:hover {
    color: var(--ddt-primary) !important;
    border-bottom-color: var(--ddt-primary) !important;
    background: transparent !important;
}

/* ----- News big (hero card di tab) ----- */
.news-big {
    display: block;
    text-decoration: none;
}
.news-big-img {
    border-radius: var(--ddt-radius) !important;
    overflow: hidden;
    margin-bottom: 1rem !important;
    position: relative;
    aspect-ratio: 16/9;  /* closer to typical news photo ratio, less crop */
}
.news-big-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: center 30%;  /* favor top portion — preserve heads/faces */
    transition: transform 400ms ease;
}
/* Mobile: aspect lebih portrait supaya foto orang lebih besar */
@media (max-width: 767px) {
    .news-big-img {
        aspect-ratio: 4/3;
    }
    .news-big-img img {
        object-position: center 25%;
    }
}
.news-big-img:hover img {
    transform: scale(1.05);
}
.news-big-img span {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--ddt-primary);
    color: #fff;
    padding: 0.3rem 0.75rem;
    border-radius: var(--ddt-radius-sm);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.news-big-title {
    font-family: "Lexend", sans-serif !important;
    font-size: 1.15rem !important;
    font-weight: 600 !important;
    color: var(--ddt-text) !important;
    text-decoration: none !important;
    line-height: 1.35;
    display: block;
    margin-bottom: 0.5rem !important;
    transition: color var(--ddt-transition);
}
.news-big-title:hover {
    color: var(--ddt-primary) !important;
}
.news-big-date {
    font-size: 0.82rem;
    color: var(--ddt-text-muted);
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem !important;
}
.news-big-date i {
    color: var(--ddt-primary);
}
.news-big-desc {
    color: var(--ddt-text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}
.news-big-desc a {
    color: var(--ddt-primary) !important;
    font-weight: 600;
    text-decoration: none !important;
}
.news-big-desc a:hover { text-decoration: underline !important; }

/* ----- News card (list di kanan) ----- */
.news-card {
    display: flex !important;
    gap: 0.85rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--ddt-border);
    transition: transform var(--ddt-transition);
}
.news-card:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.news-card:hover {
    transform: translateX(2px);
}
.news-card-img {
    flex-shrink: 0;
    width: 96px;
    height: 96px;
    border-radius: var(--ddt-radius-sm);
    overflow: hidden;
    background: var(--ddt-bg-soft);
}
.news-card-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}
.news-card-info {
    flex: 1;
    min-width: 0;
}
.news-card-title {
    font-family: "Lexend", sans-serif !important;
    font-size: 0.92rem !important;
    font-weight: 500 !important;
    color: var(--ddt-text) !important;
    text-decoration: none !important;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0.4rem;
    transition: color var(--ddt-transition);
}
.news-card-title:hover { color: var(--ddt-primary) !important; }
.news-card-date {
    font-size: 0.75rem;
    color: var(--ddt-text-muted);
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
}
.news-card-date i { color: var(--ddt-primary); }

/* ----- Sidebar landing card ----- */
.equal-sidebar .box {
    background: linear-gradient(180deg, #ffffff 0%, var(--ddt-primary-ice) 100%) !important;
    height: auto !important;
}
.equal-sidebar-child {
    height: auto !important;
}

/* =================================================================
 * AGENDA + PENGUMUMAN sidebar redesign (tab-sidebar)
 * ================================================================= */
.tab-sidebar {
    background: #ffffff !important;
    border-radius: var(--ddt-radius-lg) !important;
    overflow: hidden;
    border: 1px solid var(--ddt-border);
    box-shadow: var(--ddt-shadow-md);
}

/* Tab header (Agenda | Pengumuman) — biru gradient header */
.tab-sidebar-header {
    background: linear-gradient(135deg, var(--ddt-primary-dark) 0%, var(--ddt-primary) 100%) !important;
    padding: 0.75rem 0.75rem 0 !important;
    border-radius: 0 !important;
    position: relative;
}
.tab-sidebar-header ul {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    gap: 0.25rem;
}
.tab-sidebar-header ul li {
    list-style: none !important;
    display: inline-block;
    flex: 1;
}
.tab-sidebar-header ul li a {
    display: block !important;
    background: transparent !important;
    color: rgba(255, 255, 255, 0.75) !important;
    font-family: "Lexend", sans-serif !important;
    font-size: 0.92rem !important;
    font-weight: 500 !important;
    padding: 0.75rem 1rem !important;
    border-radius: var(--ddt-radius-sm) var(--ddt-radius-sm) 0 0 !important;
    text-align: center;
    text-decoration: none !important;
    transition: all var(--ddt-transition) !important;
    border-bottom: 3px solid transparent;
}
.tab-sidebar-header ul li a:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
}
.tab-sidebar-header ul li.active > a {
    background: #ffffff !important;
    color: var(--ddt-primary-dark) !important;
    font-weight: 700 !important;
    border-bottom-color: var(--ddt-accent) !important;
}

.tab-sidebar-body {
    background: transparent !important;
    padding: 0 !important;
}

/* Anouncement list container */
.anouncements {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    max-height: 500px;
    overflow-y: auto;
}
.anouncements::-webkit-scrollbar { width: 6px; }
.anouncements::-webkit-scrollbar-track { background: var(--ddt-bg); }
.anouncements::-webkit-scrollbar-thumb { background: var(--ddt-border); border-radius: 3px; }

/* Each anouncement card */
.anouncement-card {
    display: flex !important;
    gap: 0.85rem;
    padding: 0.9rem 1rem !important;
    background: #ffffff !important;
    border-bottom: 1px solid var(--ddt-border) !important;
    border-radius: 0 !important;
    transition: background var(--ddt-transition);
}
.anouncement-card:hover {
    background: var(--ddt-primary-ice) !important;
}
.anouncement-card:last-child {
    border-bottom: none !important;
}

/* Icon — circular blue badge */
.anouncement-card-icon {
    flex-shrink: 0;
    width: 40px !important;
    height: 40px;
    background: linear-gradient(135deg, var(--ddt-primary) 0%, var(--ddt-primary-light) 100%);
    border-radius: var(--ddt-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(30, 90, 166, 0.2);
}
.anouncement-card-icon i {
    color: #fff !important;
    font-size: 1.1rem !important;
}

/* Info */
.anouncement-card-info {
    flex: 1;
    min-width: 0;
}
.anouncement-card-title {
    color: var(--ddt-text) !important;
    font-family: "Source Sans 3", sans-serif !important;
    font-size: 0.88rem !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
    text-decoration: none !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color var(--ddt-transition);
}
.anouncement-card-title:hover {
    color: var(--ddt-primary) !important;
    text-decoration: none !important;
}
.anouncement-card-date {
    font-size: 0.74rem !important;
    color: var(--ddt-text-muted) !important;
    margin-top: 0.35rem;
}
.anouncement-card-date i {
    color: var(--ddt-primary);
}

/* Footer "Selengkapnya" */
.tab-sidebar-footer {
    padding: 1rem !important;
    text-align: center;
    background: var(--ddt-primary-ice);
    border-top: 1px solid var(--ddt-border);
}
.tab-sidebar-footer a {
    color: var(--ddt-primary) !important;
    font-family: "Source Sans 3", sans-serif !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    padding: 0 !important;
    text-decoration: none !important;
    transition: color var(--ddt-transition);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.tab-sidebar-footer a:hover {
    color: var(--ddt-primary-dark) !important;
}
.tab-sidebar-footer a i {
    transition: transform var(--ddt-transition);
}
.tab-sidebar-footer a:hover i {
    transform: translateX(3px);
}

/* ----- Top-bar accent strip — override inline green hardcoded ----- */
.top-bar,
.top-bar[style*="27a85a"],
.top-bar[style*="00a85a"] {
    height: 4px !important;
    background: linear-gradient(90deg, var(--ddt-primary-dark) 0%, var(--ddt-primary) 50%, var(--ddt-primary-light) 100%) !important;
}

/* =================================================================
 * FOOTER + INFORMASI KONTAK redesign
 * ================================================================= */

/* Section background (.widgets dulu hijau #ceffd2) */
.widgets,
.footer-contact {
    background: linear-gradient(180deg, var(--ddt-primary-ice) 0%, #ffffff 100%) !important;
    padding: 3.5rem 0 !important;
    border-top: 1px solid var(--ddt-border);
    position: relative;
}

/* ==========================================================
   INFORMASI KONTAK REDESIGN 2026-05-12 — Grid 4-col + CTA
========================================================== */
.footer-contact .section-heading {
    text-align: center;
    margin-bottom: 2rem;
}
.footer-contact .section-heading .footer-contact-title {
    font-family: "Lexend", sans-serif !important;
    font-size: 1.75rem !important;
    font-weight: 700 !important;
    color: var(--ddt-primary-dark) !important;
    margin: 0 0 0.5rem 0 !important;
    letter-spacing: -0.02em;
    text-align: center;
}
.footer-contact .section-heading .sub {
    color: var(--ddt-text-muted) !important;
    font-size: 0.95rem;
    margin: 0 !important;
    max-width: 540px;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Grid 4-kolom (responsive) */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
}
@media (max-width: 991px) {
    .contact-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}
@media (max-width: 480px) {
    .contact-grid { grid-template-columns: 1fr; gap: 0.75rem; }
}

.contact-card {
    background: #ffffff;
    border: 1px solid var(--ddt-border);
    border-radius: var(--ddt-radius-lg);
    padding: 1.5rem 1.25rem;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
}
.contact-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--ddt-primary), var(--ddt-primary-light));
    opacity: 0;
    transition: opacity 0.25s;
}
.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(30, 90, 166, 0.12);
    border-color: var(--ddt-primary-light);
}
.contact-card:hover::before { opacity: 1; }

.contact-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ddt-primary-ice), #ffffff);
    border: 2px solid var(--ddt-primary-light);
    color: var(--ddt-primary);
    font-size: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}
.contact-card:hover .contact-icon {
    background: linear-gradient(135deg, var(--ddt-primary), var(--ddt-primary-light));
    color: #fff;
    transform: scale(1.05) rotate(-5deg);
    border-color: var(--ddt-primary);
}

.contact-card h5 {
    font-family: "Lexend", sans-serif !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    color: var(--ddt-primary-dark) !important;
    margin: 0 0 0.5rem 0 !important;
    letter-spacing: -0.01em;
}
.contact-card p {
    color: var(--ddt-text-muted) !important;
    font-size: 0.88rem !important;
    line-height: 1.55 !important;
    margin: 0 !important;
}
.contact-card p a {
    color: var(--ddt-primary) !important;
    text-decoration: none !important;
    font-weight: 600;
    word-break: break-word;
}
.contact-card p a:hover {
    text-decoration: underline !important;
    color: var(--ddt-primary-dark) !important;
}
.contact-card p .small {
    font-size: 0.78rem !important;
    color: #94a3b8 !important;
}

/* CTA bar: tombol + sosial media */
.contact-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: var(--ddt-radius-lg);
    box-shadow: 0 4px 12px rgba(30, 90, 166, 0.08);
    border: 1px solid var(--ddt-border);
}
.btn-contact-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--ddt-primary), var(--ddt-primary-light));
    color: #fff !important;
    padding: 0.85rem 1.75rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none !important;
    box-shadow: 0 4px 14px rgba(30, 90, 166, 0.3);
    transition: all 0.25s;
}
.btn-contact-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 90, 166, 0.4);
    color: #fff !important;
}
.contact-social {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}
.contact-social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--ddt-primary-ice);
    color: var(--ddt-primary) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    text-decoration: none !important;
    transition: all 0.25s;
    border: 2px solid transparent;
}
.contact-social a:hover {
    background: var(--ddt-primary);
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(30, 90, 166, 0.3);
}
/* Brand-specific hover colors */
.contact-social a[aria-label*="Instagram"]:hover {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}
.contact-social a[aria-label*="Facebook"]:hover { background: #1877f2; }
.contact-social a[aria-label*="Twitter"]:hover,
.contact-social a[aria-label^="X "]:hover,
.contact-social a[aria-label="X Kominfo Kutim"]:hover { background: #000000; color: #fff !important; }
.contact-social a[aria-label*="Youtube"]:hover { background: #ff0000; }
.contact-social a[aria-label*="TikTok"]:hover { background: #000000; color: #25f4ee !important; }

@media (max-width: 767px) {
    .contact-cta {
        flex-direction: column;
        gap: 1rem;
        padding: 1.25rem;
    }
    .btn-contact-primary { width: 100%; justify-content: center; }
    .contact-social { justify-content: center; }
    .footer-contact .section-heading .footer-contact-title { font-size: 1.35rem !important; }
}

.footer-contact-title {
    font-family: "Lexend", sans-serif !important;
    font-size: 1.35rem !important;
    font-weight: 700 !important;
    color: var(--ddt-primary-dark) !important;
    margin-bottom: 1.25rem !important;
    letter-spacing: -0.02em;
}
.footer-contact-title::after { content: none !important; }

/* Card "Informasi Kontak" */
.footer-contact-about {
    background: #ffffff !important;
    border: 1px solid var(--ddt-border) !important;
    border-radius: var(--ddt-radius-lg) !important;
    padding: 1.5rem !important;
    height: auto !important;
    min-height: auto !important;
    display: flex !important;
    gap: 1.25rem;
    align-items: flex-start;
    box-shadow: var(--ddt-shadow-md);
    transition: transform var(--ddt-transition), box-shadow var(--ddt-transition);
}
.footer-contact-about:hover {
    transform: translateY(-2px);
    box-shadow: var(--ddt-shadow-lg);
}

.footer-contact-about .logo-img {
    flex-shrink: 0;
    width: 80px;
    padding: 0.5rem;
    background: var(--ddt-primary-ice);
    border-radius: var(--ddt-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-contact-about .logo-img img {
    max-width: 100%;
    height: auto;
}

.footer-contact-about .info-footer {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.footer-contact-about .info-footer strong {
    font-family: "Lexend", sans-serif !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    color: var(--ddt-primary-dark) !important;
    margin-bottom: 0.4rem;
    display: block !important;
}
.footer-contact-about .info-footer span {
    color: var(--ddt-text-muted) !important;
    font-size: 0.88rem !important;
    line-height: 1.5;
    display: block;
}
.footer-contact-about .info-footer a {
    /* Selengkapnya button — gradient blue, not green */
    background: linear-gradient(135deg, var(--ddt-primary) 0%, var(--ddt-primary-light) 100%) !important;
    color: #fff !important;
    padding: 0.55rem 1.15rem !important;
    border-radius: var(--ddt-radius-sm) !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    align-self: flex-start;
    margin-top: 0.75rem !important;
    transition: all var(--ddt-transition) !important;
    box-shadow: 0 2px 8px rgba(30, 90, 166, 0.25) !important;
    display: inline-block !important;
}
.footer-contact-about .info-footer a:hover {
    background: linear-gradient(135deg, var(--ddt-primary-dark) 0%, var(--ddt-primary) 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(30, 90, 166, 0.35) !important;
}

/* =================================================================
 * TITLE-PAGE BANNER (semua halaman selain home/beranda)
 * — Banner hijau di atas konten halaman
 * ================================================================= */
.title-page {
    background: linear-gradient(90deg, var(--ddt-primary-dark) 0%, var(--ddt-primary) 100%) !important;
    padding: 0.6rem 0 !important;          /* was 2rem — slim bar untuk breadcrumb saja */
    color: #fff !important;
    margin-bottom: 1.25rem;                 /* was 2rem — tighter spacing */
}
.title-page::before,
.title-page-text::before { content: none !important; }   /* hapus garis orange vertikal yang off-center */
.title-page-text { padding-left: 0 !important; }         /* reset padding karena garis orange dihapus */
.title-page .container {
    position: relative;
    z-index: 1;
}
.title-page h1,
.title-page-text,
.title-page span {
    font-family: "Lexend", sans-serif !important;
    color: #ffffff !important;
}
.title-page h1 {                            /* h2 sudah dihapus dari component breadcrumb */
    font-size: 1.4rem !important;           /* was 1.85rem — proporsional dgn slim bar */
    font-weight: 700 !important;
    margin: 0 0 0.2rem 0 !important;
    letter-spacing: -0.02em;
}
.title-page .breadcrumb,
.title-page nav,
.title-page span {
    font-size: 0.88rem !important;
    color: rgba(255, 255, 255, 0.85) !important;
    margin: 0 !important;
}
.title-page a {
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none !important;
    transition: color var(--ddt-transition);
}
.title-page a:hover { color: var(--ddt-accent) !important; }

/* =================================================================
 * FORM ELEMENTS (semua input/textarea/select/btn)
 * ================================================================= */
.form-control,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="date"],
input[type="file"],
textarea,
select,
.form-select {
    font-family: "Source Sans 3", sans-serif !important;
    font-size: 0.95rem !important;
    color: var(--ddt-text) !important;
    background: #ffffff !important;
    border: 1.5px solid var(--ddt-border) !important;
    border-radius: var(--ddt-radius-sm) !important;
    padding: 0.65rem 0.9rem !important;
    transition: border-color var(--ddt-transition), box-shadow var(--ddt-transition) !important;
    min-height: 44px;
    box-shadow: none !important;
}
.form-control:focus,
input:focus, textarea:focus, select:focus {
    border-color: var(--ddt-primary) !important;
    box-shadow: 0 0 0 4px rgba(30, 90, 166, 0.12) !important;
    outline: none !important;
}
.form-control::placeholder,
input::placeholder, textarea::placeholder {
    color: var(--ddt-text-muted) !important;
    opacity: 0.7;
}
textarea {
    min-height: 100px;
    resize: vertical;
}
input[type="file"] {
    padding: 0.4rem !important;
    cursor: pointer;
}
input[type="file"]::file-selector-button {
    background: var(--ddt-primary-ice);
    color: var(--ddt-primary-dark);
    border: none;
    padding: 0.4rem 0.85rem;
    border-radius: var(--ddt-radius-sm);
    margin-right: 0.75rem;
    font-weight: 600;
    cursor: pointer;
}

/* Form submit buttons — replace yellow/green */
.btn-primary,
.btn-warning,
.btn-success,
.btn-info,
.btn-send,
.btn-submit,
button[type="submit"],
input[type="submit"],
button.btn:not(.btn-secondary):not(.btn-light):not(.btn-danger):not(.btn-close):not(.btn-search):not(.btn-more):not(.btn-orange) {
    background: linear-gradient(135deg, var(--ddt-primary) 0%, var(--ddt-primary-light) 100%) !important;
    color: #fff !important;
    border: none !important;
    padding: 0.7rem 1.5rem !important;
    border-radius: var(--ddt-radius-sm) !important;
    font-family: "Source Sans 3", sans-serif !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all var(--ddt-transition) !important;
    box-shadow: 0 2px 8px rgba(30, 90, 166, 0.25) !important;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}
.btn-primary:hover, .btn-warning:hover, .btn-success:hover, .btn-info:hover,
.btn-send:hover, .btn-submit:hover,
button[type="submit"]:hover, input[type="submit"]:hover {
    background: linear-gradient(135deg, var(--ddt-primary-dark) 0%, var(--ddt-primary) 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(30, 90, 166, 0.35) !important;
}
.btn-secondary,
.btn-light {
    background: var(--ddt-bg-soft) !important;
    color: var(--ddt-text) !important;
    border: 1px solid var(--ddt-border) !important;
    padding: 0.65rem 1.25rem !important;
    border-radius: var(--ddt-radius-sm) !important;
    font-weight: 600 !important;
}
.btn-danger {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%) !important;
    color: #fff !important;
    border: none !important;
}

/* Search box di galeri/berita */
.form-search,
.input-group {
    display: flex !important;
    gap: 0.5rem;
    max-width: 500px;
    margin-bottom: 1.5rem;
}
.text-search,
input[type="search"] {
    flex: 1;
}
.btn-search,
.input-group-append button {
    background: linear-gradient(135deg, var(--ddt-primary) 0%, var(--ddt-primary-light) 100%) !important;
    color: #fff !important;
    padding: 0.65rem 1.25rem !important;
    border-radius: var(--ddt-radius-sm) !important;
    border: none !important;
    font-weight: 600 !important;
    cursor: pointer !important;
}
.btn-search:hover {
    background: linear-gradient(135deg, var(--ddt-primary-dark) 0%, var(--ddt-primary) 100%) !important;
}

/* =================================================================
 * GALERI (Foto + Video) — news grid item
 * ================================================================= */
.gallery-item,
.news-img img,
.news figure img {
    border-radius: var(--ddt-radius) !important;
    transition: transform 400ms ease;
}
article.news {
    background: #ffffff !important;
    border-radius: var(--ddt-radius) !important;
    overflow: hidden;
    box-shadow: var(--ddt-shadow-md) !important;
    border: 1px solid var(--ddt-border);
    margin-bottom: 1.5rem !important;
    transition: transform var(--ddt-transition), box-shadow var(--ddt-transition);
}
article.news:hover {
    transform: translateY(-3px);
    box-shadow: var(--ddt-shadow-lg) !important;
}
article.news .news-img {
    overflow: hidden;
}
article.news .news-img img {
    border-radius: 0 !important;
    width: 100% !important;
    height: 220px;
    object-fit: cover;
}
article.news:hover .news-img img {
    transform: scale(1.06);
}
article.news .news-info {
    padding: 1rem;
}
article.news .news-title,
article.news a:not(.gallery-item) {
    font-family: "Lexend", sans-serif !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    color: var(--ddt-text) !important;
    text-decoration: none !important;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
article.news .news-title:hover { color: var(--ddt-primary) !important; }
article.news .news-date,
article.news .news-card-date {
    font-size: 0.78rem !important;
    color: var(--ddt-text-muted) !important;
    margin-top: 0.5rem !important;
    display: flex;
    gap: 0.5rem;
}
article.news .news-date i, article.news .news-card-date i { color: var(--ddt-primary); }

/* =================================================================
 * BERITA detail + isikonten
 * ================================================================= */
.isikonten {
    font-family: "Source Sans 3", sans-serif !important;
    font-size: 1rem !important;
    line-height: 1.75 !important;
    color: var(--ddt-text) !important;
}
.isikonten h1, .isikonten h2, .isikonten h3, .isikonten h4 {
    font-family: "Lexend", sans-serif !important;
    color: var(--ddt-text) !important;
    margin: 1.5rem 0 0.75rem 0 !important;
    letter-spacing: -0.01em;
}
.isikonten h2 { font-size: 1.5rem !important; }
.isikonten h3 { font-size: 1.25rem !important; }
.isikonten p { margin-bottom: 1rem !important; }
.isikonten img {
    border-radius: var(--ddt-radius) !important;
    max-width: 100% !important;
    height: auto !important;
}
.isikonten blockquote {
    border-left: 4px solid var(--ddt-primary);
    padding: 0.75rem 1.25rem;
    background: var(--ddt-primary-ice);
    margin: 1.5rem 0;
    border-radius: 0 var(--ddt-radius-sm) var(--ddt-radius-sm) 0;
    color: var(--ddt-text);
    font-style: italic;
}
.isikonten table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}
.isikonten th {
    background: var(--ddt-primary);
    color: #fff;
    padding: 0.75rem;
    text-align: left;
    font-family: "Lexend", sans-serif;
}
.isikonten td {
    padding: 0.75rem;
    border-bottom: 1px solid var(--ddt-border);
}

/* =================================================================
 * BOX CONTENT generik (.box) — selain di home/beranda
 * ================================================================= */
.box {
    background: #ffffff !important;
    border-radius: var(--ddt-radius-lg) !important;
    border: 1px solid var(--ddt-border);
    padding: 1.5rem !important;
    margin-bottom: 1.5rem;
    box-shadow: var(--ddt-shadow-sm);
}

/* Pejabat card */
.profile-card,
.pejabat-card {
    background: #ffffff !important;
    border-radius: var(--ddt-radius-lg);
    overflow: hidden;
    box-shadow: var(--ddt-shadow-md);
    border: 1px solid var(--ddt-border);
    margin-bottom: 1.5rem;
    transition: transform var(--ddt-transition), box-shadow var(--ddt-transition);
}
.profile-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--ddt-shadow-lg);
}

/* Pagination */
.pagination,
.page-link {
    font-family: "Source Sans 3", sans-serif !important;
}
.page-link {
    color: var(--ddt-primary) !important;
    border: 1px solid var(--ddt-border) !important;
    padding: 0.5rem 0.9rem !important;
    border-radius: var(--ddt-radius-sm) !important;
    margin: 0 0.15rem !important;
    transition: all var(--ddt-transition) !important;
}
.page-link:hover {
    background: var(--ddt-primary-ice) !important;
    color: var(--ddt-primary-dark) !important;
    border-color: var(--ddt-primary-light) !important;
}
.page-item.active .page-link {
    background: var(--ddt-primary) !important;
    color: #fff !important;
    border-color: var(--ddt-primary) !important;
}

/* Footer-cp (copyright strip bawah) */
.footer-cp {
    background: var(--ddt-primary-dark) !important;
    padding: 1.25rem 0 !important;
    text-align: center;
}
.footer-cp span {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 0.85rem !important;
}

/* Responsive */
@media (max-width: 767px) {
    .footer-contact-about {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-contact-about .info-footer { align-items: center; }
    .footer-contact-title::after { left: 50%; transform: translateX(-50%); }
    .footer-contact-title { text-align: center; }
}

/* ==========================================================
   MOBILE MENU BASELINE — DEFAULT HIDE at all viewports.
   Show hanya inside @media (max-width: 991px) via override.
========================================================== */
.menu-backdrop, .menu-close, .chevron-mobile {
    display: none !important;
}

/* ==========================================================
   MOBILE MENU REDESIGN v3 2026-05-12
   Off-canvas drawer dari kanan dengan backdrop.
   Override semua style.min.css mobile menu rules.
========================================================== */
@media (max-width: 991px) {
    .top-header .container > .row {
        flex-wrap: wrap;
        align-items: center !important;
        min-height: 60px;
        position: relative;
        margin: 0 !important;
    }
    .top-header .container > .row > .col-lg-auto {
        flex: 1 1 auto;
        min-width: 0;
    }
    .top-header .container > .row > .col-lg {
        flex: 0 0 100%;
        padding: 0 !important;
        order: 99;
    }

    /* ===== Off-canvas drawer dari kanan ===== */
    .top-menu {
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        left: auto !important;
        width: 85% !important;
        max-width: 340px !important;
        height: 100vh !important;
        max-height: 100vh !important;
        background: #ffffff !important;
        z-index: 9998 !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
        box-shadow: -8px 0 24px rgba(0, 0, 0, 0.18) !important;
        transform: translateX(105%) !important;
        transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1) !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        padding: 0 !important;
    }
    .top-menu.active {
        transform: translateX(0) !important;
    }
    /* Header bar dalam drawer (tutup btn) */
    .top-menu::before {
        content: "Menu";
        display: block;
        padding: 1rem 1.25rem;
        font-family: "Lexend", sans-serif;
        font-weight: 700;
        font-size: 1.15rem;
        color: #ffffff;
        background: linear-gradient(135deg, #1E5AA6, #2767BD);
        border-bottom: 2px solid #154278;
    }

    /* .top-header z-index tinggi → bikin own stacking context di atas semua content. */
    .top-header { z-index: 9000 !important; }

    /* Backdrop overlay — sibling .top-menu di dalam .top-header */
    .menu-backdrop {
        display: none !important;  /* hidden default */
        position: fixed !important;
        inset: 0 !important;
        background: rgba(15, 23, 42, 0.5) !important;
        z-index: 50 !important;
        opacity: 0;
        transition: opacity 0.25s ease;
        pointer-events: none;
    }
    body.menu-open .menu-backdrop {
        display: block !important;
        opacity: 1;
        pointer-events: auto;
    }
    body.menu-open { overflow: hidden; }

    /* Close X button di drawer header — visible HANYA di mobile */
    .menu-close {
        position: absolute !important;
        top: 10px !important;
        right: 12px !important;
        width: 40px !important;
        height: 40px !important;
        border-radius: 8px !important;
        border: 1px solid rgba(255,255,255,0.4) !important;
        background: rgba(255,255,255,0.18) !important;
        color: #fff !important;
        font-size: 1.6rem !important;
        font-weight: 400 !important;
        line-height: 1 !important;
        cursor: pointer !important;
        display: flex !important;  /* mobile shows */
        align-items: center !important;
        justify-content: center !important;
        z-index: 5 !important;
        padding: 0 !important;
        font-family: Arial, sans-serif !important;
        transition: background 0.2s;
    }
    .menu-close:hover, .menu-close:focus {
        background: rgba(255,255,255,0.32) !important;
        outline: none;
    }

    /* Chevron indicator pada items dengan submenu — visible HANYA di mobile */
    .chevron-mobile {
        display: inline-flex !important;
        margin-left: auto !important;
        font-size: 0.75rem !important;
        color: #94a3b8 !important;
        transition: transform 0.25s ease !important;
    }
    .had-dropdown.open > .top-nav-link .chevron-mobile {
        transform: rotate(180deg);
        color: #1E5AA6 !important;
    }
    /* Submenu wrapper — expand inline saat had-dropdown.open */
    .had-dropdown > .top-menu-wrapper {
        display: none !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    .had-dropdown.open > .top-menu-wrapper {
        display: block !important;
        max-height: 800px;
        background: #f8fafc !important;
        padding: 0.5rem 0 !important;
        margin: 0 !important;
        border-radius: 0 !important;
        box-shadow: inset 0 2px 6px rgba(0,0,0,0.05) !important;
        width: 100% !important;
        position: static !important;
        transform: none !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
    }
    /* Submenu wrapper inner — zero out BS5 row/col gutters supaya text tidak overflow */
    .had-dropdown.open .top-menu-wrapper-body { padding: 0 !important; }
    .had-dropdown.open .top-menu-wrapper-body .row {
        margin: 0 !important;
        --bs-gutter-x: 0 !important;
        width: 100% !important;
    }
    .had-dropdown.open .top-menu-wrapper-body [class*="col-"] {
        padding: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }
    .had-dropdown.open > .top-menu-wrapper .top-menu-wrapper-header { display: none !important; }
    .had-dropdown.open .menu-primary-site {
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    .had-dropdown.open .menu-primary-site-link {
        display: block !important;
        padding: 0.7rem 1rem 0.7rem 2.25rem !important;
        color: #334155 !important;
        font-size: 0.85rem !important;
        text-decoration: none !important;
        border-bottom: 1px solid rgba(0,0,0,0.05) !important;
        background: transparent !important;
        word-break: normal !important;
        overflow-wrap: break-word;
        line-height: 1.35 !important;
        position: relative;
    }
    /* Bullet dot di kiri sub-item */
    .had-dropdown.open .menu-primary-site-link::before {
        content: "";
        position: absolute;
        left: 1.25rem;
        top: 50%;
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background: #1E5AA6;
        transform: translateY(-50%);
    }
    .had-dropdown.open .menu-primary-site-link:hover {
        background: #e2e8f0 !important;
        color: #1E5AA6 !important;
    }
    .had-dropdown.open .dropdown-menu {
        display: block !important;
        position: static !important;
        float: none !important;
        width: 100% !important;
        border: none !important;
        box-shadow: none !important;
        background: transparent !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    /* Nested dropdown (Satuan Kerja dll) — indent slightly more */
    .had-dropdown.open .dropdown-menu .menu-primary-site-link {
        padding-left: 3rem !important;
        font-size: 0.82rem !important;
        color: #475569 !important;
    }
    .had-dropdown.open .dropdown-menu .menu-primary-site-link::before { left: 2rem; }
    /* Submenu wrapper header (h5) hide */
    .top-menu-wrapper-header { display: none !important; }
    /* dropdown trigger "Satuan Kerja" — display as label */
    .had-dropdown.open .menu-primary-site .dropdown-toggle.menu-primary-site-link {
        font-weight: 600 !important;
        color: #1e293b !important;
        padding-left: 2.25rem !important;
    }

    /* Nav container — stack column */
    .top-menu-nav { width: 100% !important; }
    .top-menu-ul {
        display: flex !important;
        flex-direction: column !important;
        flex-wrap: nowrap !important;
        align-items: stretch !important;
        list-style: none !important;
        padding: 0.5rem 0 2rem !important;
        margin: 0 !important;
        width: 100% !important;
        float: none !important;
    }
    .top-menu-ul .top-nav-item,
    .top-nav-item {
        width: 100% !important;
        flex: 0 0 auto !important;
        position: relative !important;
        border-bottom: 1px solid #f1f5f9 !important;
        max-width: 100% !important;
        display: block !important;
    }
    .top-menu-ul .top-nav-link,
    .top-nav-link {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 0.9rem !important;
        padding: 1rem 1.25rem !important;
        min-height: 52px !important;
        border-radius: 0 !important;
        background: transparent !important;
        color: #1e293b !important;
        text-decoration: none !important;
        width: 100% !important;
        box-shadow: none !important;
    }
    .top-menu-ul .top-nav-link .d-block,
    .top-nav-link .d-block {
        display: flex !important;
        align-items: center !important;
        gap: 0.9rem !important;
        flex-direction: row !important;
        text-align: left !important;
        width: 100%;
    }
    .top-menu-ul .top-nav-link i,
    .top-nav-link i {
        font-size: 1.15rem !important;
        color: #1E5AA6 !important;
        min-width: 24px;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
    }
    .top-menu-ul .top-nav-link span,
    .top-nav-link span {
        font-size: 0.95rem !important;
        color: #1e293b !important;
        font-weight: 500;
        flex: 1;
        text-align: left;
    }
    .top-menu-ul .top-nav-link:hover,
    .top-menu-ul .top-nav-link.hovered,
    .top-nav-link:hover {
        background: #f1f5fb !important;
        box-shadow: none !important;
    }
    .top-menu-ul .top-nav-link.active,
    .top-nav-link.active {
        background: linear-gradient(90deg, #1E5AA6, #2767BD) !important;
        color: #fff !important;
    }
    .top-menu-ul .top-nav-link.active i,
    .top-menu-ul .top-nav-link.active span {
        color: #fff !important;
    }
    .top-nav-link::before, .top-nav-link::after { display: none !important; }

    /* Logo + brand text */
    .logo {
        flex: 1;
        min-width: 0;
    }
    .logo-img img { height: 38px; }
    .logo-text h1 {
        font-size: 0.85rem !important;
        line-height: 1.1 !important;
        white-space: normal !important;
    }
    .logo-text h1 span {
        font-size: 0.62rem !important;
        letter-spacing: 0.04em !important;
    }
    /* ===== Hamburger button v4 — position FIXED ke viewport edge ===== */
    /* Fixed ke viewport (bukan absolute) supaya selalu di pinggir kanan exact.
       Avoids: .logo position:relative containing-block issue.
       Override d-md-none agar visible sampai 991px (nav-nya juga collapse sampai 991px). */
    .menu-btn.d-md-none { display: inline-flex !important; }
    .top-header { position: relative !important; }
    .top-header .logo, .logo {
        position: static !important;  /* hilangkan position:relative dari style.min.css */
        max-width: calc(100% - 64px) !important;
        padding-right: 0 !important;
    }
    .top-header .menu-btn,
    .menu-btn {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-shrink: 0;
        float: none !important;
        width: 42px !important;
        height: 42px !important;
        line-height: 1 !important;
        border-radius: 8px !important;
        background: #1E5AA6 !important;
        background-color: #1E5AA6 !important;
        color: #ffffff !important;
        cursor: pointer;
        /* Position FIXED ke viewport — selalu presisi 12px dari pinggir kanan */
        position: fixed !important;
        right: 12px !important;
        top: 14px !important;
        transform: none !important;
        z-index: 100 !important;
        font-size: 1.3rem !important;
        text-align: center;
        margin: 0 !important;
        padding: 0 !important;
        box-shadow: 0 2px 6px rgba(30, 90, 166, 0.3) !important;
        border: none !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    .top-header .menu-btn:hover, .menu-btn:hover {
        background: #154278 !important;
        background-color: #154278 !important;
        color: #fff !important;
    }
    .top-header .menu-btn i, .menu-btn i {
        font-size: 1.3rem !important;
        color: #ffffff !important;
        line-height: 1 !important;
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    /* Saat menu open, hamburger HIDE — close button (X) di drawer header gantinya */
    body.menu-open .menu-btn {
        display: none !important;
    }

    /* Dropdown panel di mobile — flow inline (bukan absolute) */
    .top-menu-wrapper {
        position: static !important;
        transform: none !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        box-shadow: none !important;
        border: none !important;
        background: var(--ddt-bg-soft) !important;
        margin-top: 0.25rem !important;
        padding: 0.5rem 0.75rem !important;
        visibility: visible !important;
        opacity: 1 !important;
        display: none;
    }
    .had-dropdown.open .top-menu-wrapper,
    .top-menu-wrapper.open {
        display: block !important;
    }
    .top-menu-wrapper::before { display: none !important; }

    /* Title-page mobile typography */
    .title-page { padding: 1.25rem 0 !important; }
    .title-page h1, .title-page-text { font-size: 1.25rem !important; }

    /* Slider mobile */
    .sliderslick .owl-item img,
    .slider-beranda .owl-item img { max-height: 280px; }

    /* Bento grid mobile - 2 col */
    #ip-container { gap: 0.6rem !important; }
    .menu-item { height: 120px !important; padding: 0.85rem !important; }
    .menu-item-icon i { font-size: 1.85rem !important; }
    .menu-item-title { font-size: 0.78rem !important; }

    /* Stats counter mobile */
    .shortcut { min-height: 90px; padding: 1rem 0.75rem !important; }
    .shortcut-head { font-size: 1.85rem !important; }
    .shortcut-text { font-size: 0.78rem !important; }

    /* Section heading mobile */
    .menus .section-heading h2 { font-size: 1.25rem !important; }
    .menus .section-heading .sub { font-size: 0.85rem !important; }

    /* News card mobile - column stack */
    .news-card { gap: 0.5rem; }
    .news-card-img { width: 70px; height: 70px; }
    .news-card-title { font-size: 0.82rem !important; }
}

@media (max-width: 480px) {
    .logo-text h1 { font-size: 0.78rem !important; }
    .logo-text h1 span { font-size: 0.58rem !important; }
    .menu-item { height: 110px !important; }
    .menu-item-icon i { font-size: 1.65rem !important; }
}

/* ============================================
   BS4 → BS5 COMPAT SHIM 2026-05-12
   .no-gutters (BS4) tidak ada di BS5 (rename ke .g-0).
   Tanpa shim ini, .row.no-gutters di home.blade pakai
   negative margin BS5 default → cards overflow ke kanan
   melewati viewport mobile (visual crop).
============================================ */
.row.no-gutters {
    margin-right: 0 !important;
    margin-left: 0 !important;
}
.row.no-gutters > [class*="col-"],
.row.no-gutters > .col,
.row.no-gutters > * {
    padding-right: 0 !important;
    padding-left: 0 !important;
}

/* ============================================
   GLOBAL OVERFLOW SAFETY NET 2026-05-12
   Hanya body overflow-x:hidden (sudah dari style.min.css).
   Tidak force max-width 100vw karena bikin double-overflow.
============================================ */
html, body { overflow-x: hidden !important; }
.shortcuts .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
    --bs-gutter-x: 0 !important;
}
/* Shortcuts cards padding (HIGHER specificity dari .row.no-gutters shim sebelumnya) */
.shortcuts.shortcuts [class*="col-"],
.shortcuts > .row > [class*="col-"],
.row.no-gutters > .shortcuts-col,
.shortcuts .row.no-gutters > [class*="col-"] {
    box-sizing: border-box !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}
.shortcut {
    margin: 0 !important;
    width: 100% !important;
}
/* Mobile: gap lebih kecil */
@media (max-width: 767px) {
    .shortcuts.shortcuts [class*="col-"],
    .shortcuts > .row > [class*="col-"],
    .shortcuts .row.no-gutters > [class*="col-"] {
        padding-left: 0.35rem !important;
        padding-right: 0.35rem !important;
        padding-top: 0.35rem !important;
        padding-bottom: 0.35rem !important;
    }
}
/* Bertujuan: text shortcut & menu-item TIDAK break mid-word di mobile;
   Cukup pakai overflow-wrap normal yang hanya break long-tokens (URL),
   bukan ordinary words seperti "Berkala" */
.shortcut-text, .menu-item-title {
    word-break: normal !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
}

/* ============================================
   Mobile overflow safety net 2026-05-12
   - overflow-wrap (bukan word-break) supaya tidak crack words
============================================ */
@media (max-width: 991px) {
    /* Container safety padding mobile */
    .container { padding-left: 0.75rem !important; padding-right: 0.75rem !important; }
    /* Hanya prevent text dari overflow horizontal — TIDAK force word-break */
    .menu-item-title,
    .shortcut-text {
        white-space: normal !important;
        word-break: normal;
    }
    .section-heading h2,
    .section-heading .sub,
    .footer-cp span,
    .news-card-title {
        overflow-wrap: break-word;
        white-space: normal !important;
    }
    /* Image protection */
    img, video, iframe { max-width: 100% !important; height: auto !important; }
    /* Footer copyright wrap */
    .footer-cp { padding: 0.75rem 1rem !important; }
    .footer-cp .container { padding: 0 !important; }
    .footer-cp span { font-size: 0.75rem !important; display: block; text-align: center; line-height: 1.45; }
    /* Tab berita horizontal scroll fallback */
    .tab-berita {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }
    .tab-berita-item { flex-shrink: 0; }
}

/* ============================================
   reCAPTCHA v3 badge + Google default badge hide
============================================ */
.grecaptcha-badge { visibility: hidden !important; opacity: 0 !important; pointer-events: none !important; }

.recaptcha-badge-text {
    font-size: 0.72rem;
    color: #94a3b8;
    text-align: center;
    padding: 0.75rem 1rem;
    background: #f8fafc;
    border-top: 1px solid #f1f5f9;
    line-height: 1.5;
}
.recaptcha-badge-text a {
    color: #1E5AA6;
    text-decoration: none;
    font-weight: 500;
}
.recaptcha-badge-text a:hover { text-decoration: underline; }

/* ============================================
   CARD MODAL POPUP 2026-05-12
   Ganti inlinePopUp jQuery → BS5 modal native
============================================ */
/* Tombol menu-item — reset default button styling */
button.menu-item {
    border: none !important;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    width: 100% !important;
    font: inherit;
    text-align: center;
    color: inherit;
}
button.menu-item:focus-visible {
    outline: 3px solid var(--ddt-primary-light) !important;
    outline-offset: 2px;
}

/* Hide legacy .ip-details (jangan tampil sebagai inline content) */
.ip-details { display: none !important; }

/* Modal card-detail — gradient blue header + rounded body */
.card-detail-modal .modal-content {
    border: none !important;
    border-radius: 1rem !important;
    overflow: hidden;
    box-shadow: 0 20px 60px -10px rgba(15, 23, 42, 0.4) !important;
}
.card-detail-modal .modal-header {
    background: linear-gradient(135deg, #1E5AA6 0%, #2767BD 100%);
    color: #ffffff !important;
    border-bottom: none !important;
    padding: 1.25rem 1.5rem;
}
.card-detail-modal .modal-title {
    font-family: 'Lexend', sans-serif !important;
    font-weight: 700 !important;
    font-size: 1.15rem !important;
    color: #ffffff !important;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.card-detail-modal .modal-title i {
    font-size: 1.4rem;
    background: rgba(255,255,255,0.15);
    border-radius: 8px;
    width: 40px; height: 40px;
    display: inline-flex; align-items: center; justify-content: center;
}
.card-detail-modal .btn-close-white {
    filter: brightness(0) invert(1);
    opacity: 0.85;
}
.card-detail-modal .btn-close-white:hover { opacity: 1; }
.card-detail-modal .modal-body {
    padding: 1.5rem;
    background: #ffffff;
}

/* Modal items: tombol-like cards stacked */
.modal-card-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.modal-card-link {
    display: flex !important;
    align-items: center;
    gap: 0.85rem;
    padding: 0.9rem 1rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.6rem;
    color: #1e293b !important;
    text-decoration: none !important;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s;
}
.modal-card-link:hover {
    background: linear-gradient(90deg, #E0EBFA, #ffffff);
    border-color: #1E5AA6 !important;
    color: #1E5AA6 !important;
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(30, 90, 166, 0.1);
}
.modal-card-link i {
    color: #1E5AA6;
    font-size: 1.25rem;
    flex-shrink: 0;
}
.modal-card-link span { flex: 1; }

/* Mobile responsive modal */
@media (max-width: 767px) {
    .card-detail-modal .modal-dialog {
        margin: 1rem;
        max-width: calc(100% - 2rem);
    }
    .card-detail-modal .modal-header {
        padding: 1rem 1.25rem;
    }
    .card-detail-modal .modal-title { font-size: 1rem !important; }
    .card-detail-modal .modal-title i { width: 32px; height: 32px; font-size: 1.1rem; }
    .modal-card-link { padding: 0.75rem; font-size: 0.9rem; }
}

/* ============================================
   .shortcut sebagai <a> link 2026-05-12
   Card stat counter sekarang clickable navigate ke daftar
============================================ */
a.shortcut {
    text-decoration: none !important;
    cursor: pointer;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: inherit;
}
a.shortcut:hover {
    color: inherit;
    text-decoration: none !important;
}
a.shortcut:focus-visible {
    outline: 3px solid var(--ddt-primary-light);
    outline-offset: 2px;
}
/* Override .shortcut-head + text agar pas saat dalam <a> */
a.shortcut .shortcut-head,
a.shortcut .shortcut-text { text-decoration: none !important; }

/* ============================================
   News Share Buttons 2026-05-12
============================================ */
.news-share {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, #F1F5FB 0%, #ffffff 100%);
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
    margin: 1rem 0 1.5rem 0;
}
.news-share-label {
    font-weight: 600;
    color: #475569;
    margin-right: 0.5rem;
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.news-share-label i {
    color: #1E5AA6;
    font-size: 1rem;
}
.news-share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    color: #475569 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    text-decoration: none !important;
    transition: all 0.2s;
    border: 1.5px solid #e2e8f0;
    cursor: pointer;
}
.news-share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.15);
    color: #ffffff !important;
}
.news-share-btn.wa:hover { background: #25D366; border-color: #25D366; }
.news-share-btn.fb:hover { background: #1877f2; border-color: #1877f2; }
.news-share-btn.x:hover  { background: #000; border-color: #000; }
.news-share-btn.tg:hover { background: #0088cc; border-color: #0088cc; }
.news-share-btn.li:hover { background: #0a66c2; border-color: #0a66c2; }
.news-share-btn.em:hover { background: #6b7280; border-color: #6b7280; }
.news-share-btn.copy:hover { background: #1E5AA6; border-color: #1E5AA6; }
.news-share-btn.copy.copied { background: #16a34a; border-color: #16a34a; color: #fff !important; }
.news-share-btn.native:hover { background: #1E5AA6; border-color: #1E5AA6; }

@media (max-width: 575px) {
    .news-share { padding: 0.75rem 1rem; gap: 0.4rem; }
    .news-share-label { width: 100%; margin-bottom: 0.5rem; margin-right: 0; }
    .news-share-btn { width: 38px; height: 38px; font-size: 0.95rem; }
}

/* News views counter */
.news-views {
    display: inline-flex !important;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.7rem;
    background: linear-gradient(135deg, #E0EBFA, #ffffff);
    color: #1E5AA6 !important;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    border: 1px solid rgba(30, 90, 166, 0.15);
}
.news-views i { color: #1E5AA6; }

/* ===========================================
   A11Y TOOLKIT — Skip-link, Font Resize, High Contrast
   Added 2026-05-12 — WCAG 2.1 AA compliance
   =========================================== */

/* Skip-link: invisible until focused */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: #1E5AA6;
    color: #fff;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-decoration: none;
    z-index: 999999;
    border-radius: 0 0 6px 0;
    transition: top 0.2s ease;
}
.skip-link:focus {
    top: 0;
    outline: 3px solid #ffd700;
    outline-offset: 2px;
}

/* Visually hidden utility (BS5 has this, alias) */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0,0,0,0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* A11y Toolbar */
.a11y-toolbar {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    font-family: 'Lexend', system-ui, sans-serif;
}
.a11y-toggle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #1E5AA6;
    color: #fff;
    border: 3px solid #fff;
    box-shadow: 0 4px 12px rgba(30, 90, 166, 0.4);
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, box-shadow 0.2s;
}
.a11y-toggle:hover, .a11y-toggle:focus {
    transform: scale(1.08);
    box-shadow: 0 6px 16px rgba(30, 90, 166, 0.55);
    outline: 3px solid #ffd700;
    outline-offset: 2px;
}
.a11y-panel {
    position: absolute;
    bottom: 64px;
    right: 0;
    width: 280px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
    padding: 1.25rem;
    border: 1px solid #e2e8f0;
}
.a11y-panel[hidden] { display: none !important; }
.a11y-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1E5AA6;
    margin: 0 0 0.75rem 0;
}
.a11y-group { margin-bottom: 1rem; }
.a11y-label {
    display: block;
    font-size: 0.85rem;
    color: #475569;
    margin-bottom: 0.5rem;
    font-weight: 500;
}
.a11y-buttons {
    display: flex;
    gap: 0.4rem;
}
.a11y-buttons button,
.a11y-panel button[data-a11y-action] {
    flex: 1;
    padding: 0.5rem;
    border: 1.5px solid #cbd5e1;
    background: #f8fafc;
    color: #1e293b;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s;
}
.a11y-buttons button:hover,
.a11y-panel button[data-a11y-action]:hover,
.a11y-buttons button:focus,
.a11y-panel button[data-a11y-action]:focus {
    background: #1E5AA6;
    color: #fff;
    border-color: #1E5AA6;
    outline: 2px solid #0F172A;
    outline-offset: 2px;
}
.a11y-panel button[aria-pressed="true"] {
    background: #1E5AA6;
    color: #fff;
    border-color: #1E5AA6;
}
.a11y-reset {
    width: 100%;
    padding: 0.5rem !important;
    margin-top: 0.5rem;
    background: #fee2e2 !important;
    color: #991b1b !important;
    border-color: #fca5a5 !important;
}

/* Font size scales — applied to html element via JS */
html.a11y-font-large { font-size: 110% !important; }
html.a11y-font-larger { font-size: 120% !important; }
html.a11y-font-largest { font-size: 135% !important; }

/* High contrast mode — applied to body via JS */
body.a11y-high-contrast {
    background: #000 !important;
    color: #fff !important;
}
body.a11y-high-contrast,
body.a11y-high-contrast * {
    background-color: #000 !important;
    color: #fff !important;
    border-color: #fff !important;
    box-shadow: none !important;
    text-shadow: none !important;
}
body.a11y-high-contrast a,
body.a11y-high-contrast .top-nav-link,
body.a11y-high-contrast button:not(.a11y-toggle),
body.a11y-high-contrast .btn {
    color: #ffd700 !important;
    text-decoration: underline !important;
}
body.a11y-high-contrast .a11y-toolbar,
body.a11y-high-contrast .a11y-panel,
body.a11y-high-contrast .a11y-toggle {
    background: #000 !important;
    color: #fff !important;
}
body.a11y-high-contrast img:not([alt=""]),
body.a11y-high-contrast svg {
    filter: grayscale(1) contrast(1.5) brightness(1.1);
}
body.a11y-high-contrast .skip-link {
    background: #ffd700 !important;
    color: #000 !important;
}

/* Focus visibility — WCAG 2.4.7 */
*:focus-visible {
    outline: 3px solid #1E5AA6 !important;
    outline-offset: 2px !important;
}

/* Reduce motion respect */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* Mobile A11y toolbar position */
@media (max-width: 480px) {
    .a11y-toolbar { right: 12px; bottom: 80px; }
    .a11y-toggle { width: 46px; height: 46px; font-size: 1.25rem; }
    .a11y-panel { width: 260px; right: -10px; }
}

/* ===========================================
   BREADCRUMB — Smart 3-tier dengan separator ›
   Added 2026-05-12 — semantic + Schema.org BreadcrumbList
   =========================================== */
.breadcrumb-nav .breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 0.4rem 0 0 0;
    margin: 0;
    list-style: none;
    font-size: 0.9rem;
    background: transparent;
}
.breadcrumb-nav .breadcrumb-item {
    color: rgba(255, 255, 255, 0.85);
    display: inline-flex;
    align-items: center;
}
.breadcrumb-nav .breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    padding: 0 0.55rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.05rem;
    line-height: 1;
}
.breadcrumb-nav .breadcrumb-item a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.15s, text-decoration 0.15s;
}
.breadcrumb-nav .breadcrumb-item a:hover,
.breadcrumb-nav .breadcrumb-item a:focus {
    color: #ffd700;
    text-decoration: underline;
}
.breadcrumb-nav .breadcrumb-item.active {
    color: #ffffff;
    font-weight: 600;
    max-width: 60vw;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
@media (max-width: 575px) {
    .breadcrumb-nav .breadcrumb {
        font-size: 0.82rem;
    }
    .breadcrumb-nav .breadcrumb-item + .breadcrumb-item::before {
        padding: 0 0.35rem;
    }
    .breadcrumb-nav .breadcrumb-item.active {
        max-width: 70vw;
    }
}

/* ============================================
   Search header form (Fix #13 — wave2C 2026-05-12)
   ============================================ */
.top-nav-search-item {
    display: flex;
    align-items: center;
    padding: 0 0.5rem;
}
.search-header-form {
    align-items: center;
    gap: 0.4rem;
    max-width: 240px;
}
.search-header-form .form-control {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.30);
    border-radius: 999px;
    padding: 0.35rem 0.85rem;
    font-size: 0.875rem;
    transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.search-header-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.75);
}
.search-header-form .form-control:focus {
    background: rgba(255, 255, 255, 0.95);
    color: #1E5AA6;
    border-color: #1E5AA6;
    box-shadow: 0 0 0 0.18rem rgba(30, 90, 166, 0.25);
    outline: none;
}
.search-header-form .form-control:focus::placeholder {
    color: rgba(30, 90, 166, 0.55);
}
.btn-search-header {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #1E5AA6;
    border: none;
    border-radius: 999px;
    width: 32px;
    height: 32px;
    transition: background-color .2s ease, color .2s ease, transform .15s ease;
}
.btn-search-header:hover,
.btn-search-header:focus {
    background: #1E5AA6;
    color: #ffffff;
    transform: scale(1.05);
}
@media (max-width: 991.98px) {
    .top-nav-search-item { display: none; }
}

/* ============================================================
   COOKIE CONSENT BANNER — UU PDP 27/2022 (2026-05-12)
   ============================================================ */
.cookie-consent-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(135deg, #1E5AA6 0%, #2767BD 100%);
    color: #fff;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.18);
    z-index: 9998;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Lexend', system-ui, sans-serif;
}
.cookie-consent-banner.show { transform: translateY(0); }
.cookie-consent-content {
    display: flex; gap: 1.25rem; align-items: center; flex-wrap: wrap;
    max-width: 1280px; margin: 0 auto;
}
.cookie-consent-icon {
    font-size: 2.5rem; color: #ffd700;
    flex-shrink: 0;
}
.cookie-consent-text { flex: 1; min-width: 260px; }
.cookie-consent-text strong { display: block; font-size: 1.05rem; margin-bottom: 0.25rem; }
.cookie-consent-text p { margin: 0 0 0.35rem 0; font-size: 0.92rem; line-height: 1.5; color: #fff; }
.cookie-consent-text small { font-size: 0.8rem; color: rgba(255,255,255,0.85); }
.cookie-consent-text small a { color: #ffd700; text-decoration: underline; }
.cookie-consent-text small a:hover { color: #fff; }
.cookie-consent-actions {
    display: flex; gap: 0.5rem; flex-shrink: 0;
}
.cookie-consent-actions .btn { font-weight: 600; padding: 0.5rem 1.25rem; border-radius: 8px; }
.cookie-consent-actions .btn-primary { background: #fff; color: #1E5AA6; border-color: #fff; }
.cookie-consent-actions .btn-primary:hover { background: #ffd700; color: #1E5AA6; border-color: #ffd700; }
.cookie-consent-actions .btn-outline-light { color: #fff; border-color: rgba(255,255,255,0.6); }
.cookie-consent-actions .btn-outline-light:hover { background: rgba(255,255,255,0.15); color: #fff; border-color: #fff; }
@media (max-width: 640px) {
    .cookie-consent-banner { padding: 1rem; }
    .cookie-consent-icon { font-size: 2rem; }
    .cookie-consent-actions { width: 100%; }
    .cookie-consent-actions .btn { flex: 1; }
}

/* ============================================================
   TAGLINE ASN BerAKHLAK — pita biru paling atas (2026-05-12)
   ============================================================ */
.asn-tagline {
    background: linear-gradient(90deg, #1E5AA6 0%, #2767BD 50%, #1E5AA6 100%);
    color: #fff;
    padding: 0.4rem 0;
    text-align: center;
    font-family: 'Lexend', system-ui, sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    font-weight: 500;
}
.asn-tagline-text i { color: #ffd700; margin-right: 0.5rem; }
@media (max-width: 480px) {
    .asn-tagline { font-size: 0.78rem; padding: 0.35rem 0; }
}

/* ============================================================
   TTS (Text-to-Speech) controls — aksesibilitas pembaca artikel
   ============================================================ */
.tts-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    padding: 0.7rem 1rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-family: 'Lexend', system-ui, sans-serif;
}
.tts-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: #1E5AA6;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color .2s, transform .15s;
}
.tts-btn:hover,
.tts-btn:focus {
    background: #2767BD;
    transform: translateY(-1px);
}
.tts-btn:focus-visible {
    outline: 3px solid #1E5AA6;
    outline-offset: 2px;
}
.tts-status {
    color: #1E5AA6;
    font-size: 0.88rem;
    font-weight: 500;
    margin-left: auto;
}
.tts-stop { background: #dc3545; }
.tts-stop:hover,
.tts-stop:focus { background: #c82333; }
.tts-pause { background: #f59e0b; }
.tts-pause:hover,
.tts-pause:focus { background: #d97706; }
@media (max-width: 480px) {
    .tts-controls { padding: 0.7rem; }
    .tts-btn span { display: none; }
    .tts-btn {
        padding: 0.5rem 0.7rem;
        min-width: 40px;
        justify-content: center;
    }
    .tts-status {
        width: 100%;
        text-align: center;
        margin: 0.5rem 0 0 0;
    }
}

/* ============================================================
   PPID Statistik — dashboard publik transparansi
   ============================================================ */
.ppid-statistik { font-family: 'Lexend', system-ui, sans-serif; }
.ppid-stat-card {
    background: #fff;
    border-radius: 14px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 16px rgba(30, 90, 166, 0.08);
    transition: transform 0.25s, box-shadow 0.25s;
    height: 100%;
}
.ppid-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(30, 90, 166, 0.16);
}
.ppid-stat-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}
.ppid-stat-count {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
}
.ppid-stat-label {
    color: #64748b;
    font-size: 0.95rem;
    margin-top: 0.5rem;
}
.ppid-section { margin: 3rem 0; }
.ppid-section-title {
    color: #1E5AA6;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.ppid-section-title i { margin-right: 0.5rem; }
.ppid-tipe-card {
    display: block;
    background: #fff;
    padding: 1.25rem;
    border-radius: 12px;
    text-decoration: none !important;
    color: inherit;
    border: 2px solid transparent;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.2s;
    height: 100%;
}
.ppid-tipe-card:hover {
    border-color: #1E5AA6;
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(30,90,166,0.15);
}
.ppid-tipe-name {
    color: #1E5AA6;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
}
.ppid-tipe-count {
    color: #64748b;
    font-size: 0.88rem;
}
.ppid-tipe-cta {
    color: #1E5AA6;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.6rem;
}
.ppid-activity-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: #fff;
    padding: 1.5rem;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(30,90,166,0.08);
}
.ppid-activity-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: #fff;
    font-size: 1.5rem;
    flex-shrink: 0;
}
.ppid-activity-count {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
}
.ppid-activity-label {
    color: #64748b;
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

/* ============================================================
   ENGAGEMENT WIDGETS — Sosmed Feed (Ikuti Kami) + BMKG Cuaca
   Wave Bench B — 2026-05-12
============================================================ */
.engagement-section {
    background: linear-gradient(180deg, #f0f6ff 0%, #ffffff 100%);
    font-family: 'Lexend', system-ui, -apple-system, sans-serif;
}
.engagement-title {
    color: #1E5AA6;
    font-family: 'Lexend', sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
}
.engagement-sub {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ---- Sosmed Feed Cards (Ikuti Kami) ---- */
.sosmed-feed-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.25rem;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(30, 90, 166, 0.08);
    border: 2px solid transparent;
    transition: transform .25s cubic-bezier(.4,0,.2,1),
                box-shadow .25s ease,
                border-color .25s ease;
    text-decoration: none !important;
    color: inherit;
    height: 100%;
    min-height: 92px;
}
.sosmed-feed-card:hover,
.sosmed-feed-card:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(30, 90, 166, 0.16);
    border-color: #1E5AA6;
    outline: none;
}
.sosmed-feed-icon {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 1.7rem;
    color: #fff;
    flex-shrink: 0;
}
.sosmed-feed-ig .sosmed-feed-icon {
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
}
.sosmed-feed-fb .sosmed-feed-icon { background: #1877F2; }
.sosmed-feed-tt .sosmed-feed-icon { background: #000; color: #25f4ee; }
.sosmed-feed-yt .sosmed-feed-icon { background: #FF0000; }
.sosmed-feed-x  .sosmed-feed-icon { background: #000; }
.sosmed-feed-body { flex: 1; min-width: 0; }
.sosmed-feed-body strong {
    display: block;
    color: #1E5AA6;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.2;
}
.sosmed-feed-body span {
    font-size: 0.82rem;
    color: #64748b;
    display: block;
    margin-top: 2px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.sosmed-feed-cta {
    font-size: 0.82rem;
    color: #1E5AA6;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}
.sosmed-feed-cta i {
    font-size: 0.72rem;
    transition: transform .2s ease;
    margin-left: 2px;
}
.sosmed-feed-card:hover .sosmed-feed-cta i { transform: translateX(3px); }
.sosmed-embed-wrap {
    background: #fff;
    border-radius: 14px;
    padding: 1rem;
    box-shadow: 0 4px 16px rgba(30, 90, 166, 0.08);
    overflow: hidden;
}

/* ---- BMKG Weather Widget ---- */
.bmkg-widget-wrap {
    width: 100%;
    height: 100%;
}
.bmkg-widget {
    background: linear-gradient(135deg, #1E5AA6 0%, #2767BD 100%);
    color: #fff;
    border-radius: 18px;
    padding: 1.5rem 1.25rem;
    box-shadow: 0 8px 24px rgba(30, 90, 166, 0.25);
    font-family: 'Lexend', system-ui, sans-serif;
    text-align: center;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.bmkg-widget::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.bmkg-widget-header {
    font-weight: 600;
    margin-bottom: 0.5rem;
    opacity: 0.95;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}
.bmkg-widget-header i {
    color: #ffd700;
    margin-right: 0.4rem;
}
.bmkg-widget-body {
    position: relative;
    z-index: 1;
}
.bmkg-widget-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}
.bmkg-widget-temp {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1;
    margin: 0.4rem 0 0.25rem;
    letter-spacing: -1px;
}
.bmkg-widget-temp .bmkg-deg {
    font-size: 1.4rem;
    font-weight: 500;
    margin-left: 2px;
    opacity: 0.85;
}
.bmkg-widget-desc {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.95;
    margin-bottom: 0.35rem;
}
.bmkg-widget-loc {
    font-size: 0.82rem;
    opacity: 0.85;
    margin-bottom: 0.5rem;
}
.bmkg-widget-loc i { margin-right: 0.25rem; }
.bmkg-widget-meta {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 0.5rem;
    opacity: 0.9;
}
.bmkg-widget-meta small {
    font-size: 0.82rem;
}
.bmkg-widget-meta i {
    margin-right: 0.25rem;
    opacity: 0.85;
}
.bmkg-widget-footer {
    margin-top: 0.75rem;
    opacity: 0.8;
    font-size: 0.78rem;
    position: relative;
    z-index: 1;
}
.bmkg-widget-footer a {
    color: #ffd700;
    text-decoration: none;
}
.bmkg-widget-footer a:hover { text-decoration: underline; }

/* ---- Responsive ---- */
@media (max-width: 575.98px) {
    .engagement-title { font-size: 1.4rem; }
    .sosmed-feed-card {
        padding: 0.9rem;
        gap: 0.75rem;
        min-height: 80px;
    }
    .sosmed-feed-icon {
        width: 44px;
        height: 44px;
        font-size: 1.35rem;
        border-radius: 12px;
    }
    .sosmed-feed-body strong { font-size: 0.95rem; }
    .sosmed-feed-body span { font-size: 0.75rem; }
    .sosmed-feed-cta { display: none; }
    .bmkg-widget { padding: 1.25rem 1rem; }
    .bmkg-widget-temp { font-size: 2.2rem; }
    .bmkg-widget-icon { width: 64px; height: 64px; }
}
/* End engagement widgets */

/* Cookie consent COMPACT variant — auto-close 10s = rejected */
.cookie-consent-banner.cookie-consent-compact {
    max-width: 520px;
    left: 16px;
    right: auto;
    bottom: 16px;
    border-radius: 14px;
    padding: 0.85rem 1rem;
}
.cookie-consent-compact .cookie-consent-content {
    gap: 0.75rem;
    align-items: center;
}
.cookie-consent-compact .cookie-consent-icon {
    font-size: 1.6rem;
    color: #ffd700;
}
.cookie-consent-compact .cookie-consent-text p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.4;
}
.cookie-consent-compact .cookie-consent-text a {
    color: #ffd700;
    text-decoration: underline;
    margin-left: 0.3rem;
}
.cookie-consent-compact .cookie-consent-actions {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
}
.cookie-consent-compact .cookie-btn-accept {
    background: #fff;
    color: #1E5AA6;
    border: none;
    font-weight: 600;
    padding: 0.4rem 0.85rem;
    border-radius: 8px;
    font-size: 0.85rem;
}
.cookie-consent-compact .cookie-btn-accept:hover {
    background: #ffd700;
    color: #1E5AA6;
}
.cookie-consent-compact .cookie-btn-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.cookie-consent-compact .cookie-btn-close:hover {
    background: rgba(255,255,255,0.25);
    border-color: #fff;
}
@media (max-width: 575px) {
    .cookie-consent-banner.cookie-consent-compact {
        left: 8px;
        right: 8px;
        max-width: none;
        bottom: 8px;
        padding: 0.7rem;
    }
    .cookie-consent-compact .cookie-consent-text p { font-size: 0.78rem; }
    .cookie-consent-compact .cookie-consent-actions { flex-direction: row; }
}

/* Hide top-bar template bawaan (garis hijau/biru kosong sebelum tagline ASN).
   Tagline ASN baru sudah handle peran header banner. */
.top-bar {
    display: none !important;
}

/* Tagline ASN — visual focal di hashtag #BerAKHLAK */
.asn-tagline-text {
    letter-spacing: 0.04em;
}

/* WCAG 2.1 AA fix 2026-05-13 — preserve amber for non-text gradients only */
:root { --ddt-amber-gradient-start: #f4a437; --ddt-amber-gradient-end: #d97706; }
/* Focus ring fallback if some browser ignores blue */
a:focus-visible, button:focus-visible, [tabindex]:focus-visible {
    outline: 3px solid #1E5AA6 !important;
    outline-offset: 2px;
}

/* News author pill (X3 2026-05-13) */
.news-author { display:inline-flex; align-items:center; gap:0.25rem; color:#475569; font-size:0.85rem; margin-left:0.5rem; }
.news-author i { color:#1E5AA6; }

/* Visi-Misi-Tentang section REMOVED 2026-05-13 — kebijakan dinas tidak menampilkan visi-misi sendiri */

/* BerAKHLAK link: warna resmi #AF2524 (crimson logo BKN) + halo putih untuk legibility di blue gradient bar */
.asn-berakhlak-link { color:#AF2524; text-shadow:0 0 6px rgba(255,255,255,0.85), 0 0 12px rgba(255,255,255,0.55); font-weight:800; text-decoration:underline; text-decoration-thickness:1px; text-underline-offset:3px; transition:all .15s ease; }
.asn-berakhlak-link:hover, .asn-berakhlak-link:focus-visible { color:#8F1D1C; text-shadow:0 0 8px rgba(255,255,255,1), 0 0 16px rgba(255,255,255,0.7); text-decoration-thickness:2px; outline:none; }

/* Shortcut menu-item image icon (2026-05-13) */
.menu-item-icon .menu-item-img {
    max-width: 60%;
    max-height: 48px;
    width: auto;
    height: auto;
    margin: 0 auto 0.4rem;
    display: block;
    filter: brightness(0) invert(1);
    transition: transform 0.25s ease;
}
.menu-item:hover .menu-item-icon .menu-item-img { transform: scale(1.05); }
.menu-item.cream .menu-item-icon .menu-item-img,
.menu-item.yellow .menu-item-icon .menu-item-img,
.menu-item.orange .menu-item-icon .menu-item-img {
    filter: brightness(0) saturate(100%) invert(13%) sepia(94%) saturate(2456%) hue-rotate(208deg) brightness(91%) contrast(94%);
}

/* === Infrastruktur module (W3 2026-05-13) === */
.infra-hero { background: linear-gradient(135deg, #1E5AA6, #2767BD, #4080d4); color: #fff; padding: 4rem 0 3rem; position: relative; overflow: hidden; }
.infra-hero h1 { font-family: 'Lexend', sans-serif; font-weight: 700; font-size: clamp(1.8rem, 4vw, 2.8rem); }
.infra-hero p.lead { font-size: 1.1rem; opacity: 0.95; max-width: 780px; }
.infra-hero .cta-row { gap: 0.75rem; margin-top: 1.25rem; }
.infra-hero .btn-cta-primary { background: #fff; color: #1E5AA6; font-weight: 600; padding: 0.75rem 1.5rem; border-radius: 0.75rem; transition: all .2s; }
.infra-hero .btn-cta-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,0.18); }
.infra-hero .btn-cta-secondary { background: rgba(255,255,255,0.15); color: #fff; border: 1px solid rgba(255,255,255,0.4); font-weight: 500; padding: 0.75rem 1.5rem; border-radius: 0.75rem; backdrop-filter: blur(4px); }
.infra-hero .btn-cta-secondary:hover { background: rgba(255,255,255,0.25); color: #fff; }
.infra-content { padding: 3rem 0; }
.infra-content h2 { color: #1E5AA6; font-family: 'Lexend', sans-serif; font-weight: 600; margin-top: 1.5rem; }
.infra-content h3 { color: #1E5AA6; font-family: 'Lexend', sans-serif; font-weight: 600; }
.infra-stats-section { padding: 2rem 0 3rem; background: #f8fafc; }
/* Card style minimal — TANPA border garis (sesuai tema clean, bukan AI-look). Hanya subtle shadow + bg */
.infra-stat-card { background: #fff; border-radius: 0.75rem; padding: 1.5rem 1.25rem; text-align: center; box-shadow: 0 2px 8px rgba(15,23,42,0.05); height: 100%; transition: box-shadow .25s; border: 0 !important; }
.infra-stat-card:hover { box-shadow: 0 6px 18px rgba(30,90,166,0.10); }
.infra-stat-icon-wrap { width: 56px; height: 56px; border-radius: 14px; background: linear-gradient(135deg,#1E5AA6,#2767BD); color:#fff; display:inline-flex; align-items:center; justify-content:center; font-size:1.4rem; margin-bottom:0.85rem; }
.infra-stat-value { font-size: 2.25rem; font-weight: 700; color: #1E5AA6; font-family: 'Lexend', sans-serif; line-height: 1; }
.infra-stat-label { font-weight: 600; color: #0F172A; margin-top: 0.4rem; }
.infra-stat-desc { color: #64748b; font-size: 0.85rem; margin-top: 0.3rem; }
.infra-cap-card { background: #fff; border-radius: 0.75rem; padding: 1.5rem 1.25rem; box-shadow: 0 2px 8px rgba(15,23,42,0.05); height: 100%; transition: box-shadow .25s; border: 0 !important; }
.infra-cap-card:hover { box-shadow: 0 6px 18px rgba(30,90,166,0.10); }
.infra-cap-icon-wrap { width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(135deg,#1E5AA6,#2767BD); color:#fff; display:inline-flex; align-items:center; justify-content:center; font-size:1.2rem; margin-bottom:0.75rem; }
.infra-cap-card h3 { font-size: 1.05rem; color: #1E5AA6; margin-bottom: 0.5rem; font-weight: 600; }
.infra-service-card { background: #fff; border-radius: 0.75rem; padding: 1.5rem 1.25rem; box-shadow: 0 2px 8px rgba(15,23,42,0.05); height: 100%; display: flex; flex-direction: column; transition: box-shadow .25s; border: 0 !important; }
.infra-service-card:hover { box-shadow: 0 6px 18px rgba(30,90,166,0.10); }
.infra-service-icon-wrap { width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(135deg,#1E5AA6,#2767BD); color:#fff; display:inline-flex; align-items:center; justify-content:center; font-size:1.2rem; margin-bottom:0.75rem; }
.infra-service-card h3 { color:#1E5AA6; font-size:1.05rem; font-weight:600; margin-bottom:0.5rem; }
.infra-service-cta { margin-top: auto; padding-top: 1rem; }
.infra-app-section { padding: 1.25rem 0 1.75rem; }
.infra-app-category-title { font-family: 'Lexend', sans-serif; color: #1E5AA6; font-size: 1.15rem; font-weight: 600; margin-bottom: 1rem; border: 0; }
.infra-app-card { background: #fff; border-radius: 0.625rem; padding: 1.1rem 1rem; box-shadow: 0 1px 5px rgba(15,23,42,0.05); height: 100%; transition: box-shadow .2s; border: 0 !important; }
.infra-app-card:hover { box-shadow: 0 4px 14px rgba(30,90,166,0.10); }
.infra-app-icon-wrap { width: 40px; height: 40px; border-radius: 10px; background: linear-gradient(135deg,#1E5AA6,#2767BD); color:#fff; display:inline-flex; align-items:center; justify-content:center; font-size:1rem; }
.infra-app-name { font-weight: 600; color: #1E5AA6; font-size:1rem; }
.infra-app-internal { color: #B45309; font-size: 0.78rem; display:inline-flex; align-items:center; gap:0.25rem; }
.infra-status-card { padding: 1.75rem 1.5rem; border-radius: 0.75rem; text-align: center; color: #fff; font-weight: 600; border: 0; }
.infra-status-operational { background: linear-gradient(135deg, #10b981, #059669); }
.infra-status-degraded { background: linear-gradient(135deg, #f59e0b, #d97706); }
.infra-status-outage { background: linear-gradient(135deg, #dc2626, #b91c1c); }
.infra-status-maintenance { background: linear-gradient(135deg, #2767BD, #1E5AA6); }
.infra-team-card { background: #fff; border-radius: 0.75rem; padding: 1.5rem 1.25rem; box-shadow: 0 2px 8px rgba(15,23,42,0.05); text-align: center; height: 100%; transition: box-shadow .25s; border: 0 !important; }
.infra-team-card:hover { box-shadow: 0 6px 18px rgba(30,90,166,0.10); }
.infra-team-avatar { width: 72px; height: 72px; border-radius: 50%; background: linear-gradient(135deg, #1E5AA6, #2767BD); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; font-weight: 700; margin: 0 auto 0.75rem; }
.infra-team-name { font-weight: 600; color: #1E5AA6; margin-bottom: 0.25rem; }
.infra-team-position { color: #64748b; font-size: 0.9rem; }
.infra-team-role { color: #0F172A; font-size: 0.85rem; font-weight: 500; margin-top: 0.25rem; }
@media (max-width: 767px) {
    .infra-hero { padding: 2.5rem 0 2rem; }
    .infra-stats-section, .infra-content { padding: 1.5rem 0; }
}

/* ============================================================
   NAVBAR COMPACT 2026-05-13 — 9 nav items + search muat 1 baris
   ============================================================ */
@media (min-width: 992px) {
    .top-menu-ul { flex-wrap: nowrap !important; gap: 0.1rem !important; }
    .top-nav-link { padding: 0.5rem 0.55rem !important; min-width: 56px !important; }
    .top-nav-link span { font-size: 0.72rem !important; letter-spacing: -0.01em; }
    .top-nav-link i { font-size: 1.05rem !important; }
    .top-nav-search-item { padding: 0 0.25rem !important; }
    .search-header-form { max-width: 175px !important; gap: 0.25rem !important; }
    .search-header-form .form-control { font-size: 0.78rem !important; padding: 0.3rem 0.7rem !important; }
    .btn-search-header { width: 28px !important; height: 28px !important; }
}
@media (min-width: 1200px) {
    .top-nav-link { padding: 0.55rem 0.7rem !important; min-width: 62px !important; }
    .top-nav-link span { font-size: 0.76rem !important; }
    .top-nav-link i { font-size: 1.1rem !important; }
    .search-header-form { max-width: 210px !important; }
    .btn-search-header { width: 30px !important; height: 30px !important; }
}

/* ============================================================
   FORM PENGAJUAN LAYANAN — theme biru Diskominfo (2026-05-13)
   ============================================================ */
.contact-form { background:#fff; border-radius:0.75rem; padding:1.75rem 1.5rem; box-shadow:0 2px 12px rgba(15,23,42,0.06); border:0; }
.contact-form-title { color:#1E5AA6; font-family:'Lexend',sans-serif; font-weight:700; font-size:1.25rem; }
.contact-form fieldset { border:0; padding:0; margin:0; }
.contact-form legend { color:#1E5AA6; font-family:'Lexend',sans-serif; font-weight:600 !important; font-size:0.95rem !important; border-bottom:2px solid #e2e8f0 !important; padding-bottom:0.5rem !important; margin-bottom:1rem !important; display:block; width:100%; }
.contact-form .form-label { color:#0F172A; font-weight:600; font-size:0.875rem; margin-bottom:0.4rem; }
.contact-form .form-control { background:#fff; border:1.5px solid #cbd5e1; border-radius:0.5rem; padding:0.55rem 0.85rem; font-size:0.95rem; color:#0F172A; transition:border-color .15s, box-shadow .15s, background-color .15s; }
.contact-form .form-control:hover { border-color:#94a3b8; }
.contact-form .form-control:focus { border-color:#1E5AA6 !important; box-shadow:0 0 0 0.2rem rgba(30,90,166,0.18) !important; background:#fff !important; color:#0F172A !important; outline:none; }
.contact-form .form-control::placeholder { color:#94a3b8; opacity:1; }
.contact-form textarea.form-control { resize:vertical; min-height:88px; line-height:1.55; }
.contact-form input[type="file"].form-control { padding:0.45rem 0.65rem; }
.contact-form input[type="file"].form-control::file-selector-button { background:linear-gradient(135deg,#1E5AA6,#2767BD); color:#fff; border:0; padding:0.35rem 0.85rem; border-radius:0.4rem; margin-right:0.85rem; font-weight:600; font-size:0.85rem; cursor:pointer; transition:opacity .15s; }
.contact-form input[type="file"].form-control::file-selector-button:hover { opacity:0.9; }
.contact-form small.text-muted { font-size:0.78rem; color:#64748b !important; margin-top:0.25rem; display:block; }
.contact-form .text-danger { color:#dc2626 !important; font-weight:700; }
.contact-form .btn-send { background:linear-gradient(135deg,#1E5AA6,#2767BD); color:#fff; border:0; padding:0.75rem 1.5rem; border-radius:0.55rem; font-weight:600; font-size:1rem; transition:transform .15s, box-shadow .15s, opacity .15s; box-shadow:0 4px 14px rgba(30,90,166,0.25); }
.contact-form .btn-send:hover, .contact-form .btn-send:focus-visible { background:linear-gradient(135deg,#0F3A73,#1E5AA6); color:#fff; box-shadow:0 6px 20px rgba(30,90,166,0.32); outline:none; }
.contact-form .btn-send:active { transform:translateY(1px); }
.contact-form .btn-send:disabled { opacity:0.7; cursor:not-allowed; }
.contact-form .alert { border-radius:0.5rem; border:0; padding:0.85rem 1rem; font-size:0.9rem; }
.contact-form .alert-success { background:#dcfce7; color:#166534; }
.contact-form .alert-danger { background:#fef2f2; color:#991b1b; }
.contact-form hr { border-color:#e2e8f0; opacity:0.8; }
@media (max-width: 767px) {
    .contact-form { padding:1.25rem 1rem; }
    .contact-form-title { font-size:1.1rem; }
}

/* Prioritas radio pills + input-group themed (Pengaduan/Pengajuan 2026-05-13) */
.prioritas-pill { background:#f1f5f9; border:1.5px solid #cbd5e1; border-radius:0.5rem; padding:0.55rem 0.75rem; cursor:pointer; transition:all .15s; font-size:0.85rem; color:#334155; min-width:96px; user-select:none; }
.prioritas-pill input[type="radio"] { position:absolute; opacity:0; pointer-events:none; }
.prioritas-pill:hover { border-color:#1E5AA6; color:#1E5AA6; }
.prioritas-pill:has(input[type="radio"]:checked) { background:linear-gradient(135deg,#1E5AA6,#2767BD); border-color:#1E5AA6; color:#fff; font-weight:600; box-shadow:0 2px 8px rgba(30,90,166,0.25); }
.prioritas-pill:focus-within { outline:2px solid #1E5AA6; outline-offset:2px; }
.contact-form .input-group-text { background:#e2e8f0; color:#475569; border:1.5px solid #cbd5e1; border-left:0; font-size:0.85rem; font-weight:500; }
.contact-form .input-group .form-control { border-right:0; }
.contact-form .input-group .form-control:focus + .input-group-text { border-color:#1E5AA6; }
.contact-form .alert-info { background:#e0ebfa; color:#0F3A73; border:0; }

/* Custom file input theme biru — label "Pilih Berkas" (Indonesia) + presisi rounded (2026-05-13) */
.custom-file-input {
    position: relative;
    display: flex;
    align-items: stretch;
    width: 100%;
    border: 1.5px solid #cbd5e1;
    border-radius: 0.5rem;
    overflow: hidden;
    background: #fff;
    transition: border-color .15s, box-shadow .15s;
}
.custom-file-input:hover { border-color: #94a3b8; }
.custom-file-input:focus-within { border-color: #1E5AA6; box-shadow: 0 0 0 0.2rem rgba(30,90,166,0.18); }
.custom-file-input input[type="file"] {
    position: absolute;
    left: 0; top: 0;
    width: 100%; height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}
.custom-file-btn {
    background: linear-gradient(135deg, #1E5AA6, #2767BD);
    color: #fff;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.55rem 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
    border-right: 1.5px solid #1E5AA6;
    transition: opacity .15s;
    flex-shrink: 0;
}
.custom-file-input:hover .custom-file-btn { opacity: 0.92; }
.custom-file-name {
    flex: 1;
    padding: 0.55rem 0.85rem;
    font-size: 0.9rem;
    color: #475569;
    background: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: flex;
    align-items: center;
    min-height: 38px;
}
.custom-file-name.has-file { color: #0F172A; font-weight: 500; }

/* Hide Trix attachment caption (filename + filesize "tombol download" auto-render) — 2026-05-13 */
.isikonten .attachment__caption,
.isikonten figure.attachment figcaption,
.isikonten .attachment__name,
.isikonten .attachment__size { display: none !important; }
/* Image inside attachment: rapikan + no underline (kalau <a> wrapper) */
.isikonten figure.attachment { margin: 0 0 1.25rem; }
.isikonten figure.attachment a { display: block; text-decoration: none; }
.isikonten figure.attachment img { max-width: 100%; height: auto; border-radius: 0.5rem; }

/* ============================================================
   WIDGET STATISTIK PENGUNJUNG — sidebar berita (2026-05-13)
   ============================================================ */
.visitor-stats-widget {
    background: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 2px 12px rgba(15,23,42,0.06);
    overflow: hidden;
    font-family: 'Lexend', sans-serif;
}
.visitor-stats-header {
    background: linear-gradient(135deg, #1E5AA6, #2767BD);
    color: #fff;
    padding: 0.75rem 1rem;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.visitor-stats-header i { font-size: 1.05rem; opacity: 0.95; }
.visitor-stats-body {
    padding: 0.5rem 0;
}
.visitor-stat-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 1rem;
    border-bottom: 1px solid #f1f5f9;
    transition: background-color .15s;
}
.visitor-stat-row:hover { background: #f8fafc; }
.visitor-stat-row:last-of-type { border-bottom: 0; }
.visitor-stat-label {
    color: #475569;
    font-size: 0.82rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.visitor-stat-label i {
    color: #1E5AA6;
    font-size: 0.85rem;
    width: 16px;
    text-align: center;
}
.visitor-stat-value {
    color: #0F172A;
    font-weight: 700;
    font-size: 1rem;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.01em;
}
.visitor-stat-total { background: linear-gradient(135deg, #e0ebfa 0%, #f0f6ff 100%); border-top: 1px solid #cbd5e1; }
.visitor-stat-total .visitor-stat-label { color: #0F3A73; font-weight: 600; }
.visitor-stat-total .visitor-stat-label i { color: #0F3A73; }
.visitor-stat-total .visitor-stat-value { color: #0F3A73; font-size: 1.1rem; }
.visitor-stats-footer {
    background: #f8fafc;
    padding: 0.5rem 1rem;
    font-size: 0.78rem;
    color: #64748b;
    text-align: center;
    border-top: 1px solid #f1f5f9;
}
.visitor-stats-footer strong { color: #1E5AA6; font-weight: 600; }
@media (max-width: 767px) {
    .visitor-stat-row { padding: 0.55rem 0.85rem; }
    .visitor-stat-label { font-size: 0.78rem; }
    .visitor-stat-value { font-size: 0.95rem; }
}

/* ============================================================
   DARK MODE — body.a11y-dark-mode (toggle via a11y toolbar) 2026-05-13
   ============================================================ */
body.a11y-dark-mode {
    background: #0f172a !important;
    color: #e2e8f0 !important;
}
body.a11y-dark-mode .container,
body.a11y-dark-mode .container-fluid { color: #e2e8f0; }
body.a11y-dark-mode .card,
body.a11y-dark-mode .contact-form,
body.a11y-dark-mode .visitor-stats-widget,
body.a11y-dark-mode .infra-stat-card,
body.a11y-dark-mode .infra-cap-card,
body.a11y-dark-mode .infra-service-card,
body.a11y-dark-mode .infra-app-card,
body.a11y-dark-mode .infra-team-card,
body.a11y-dark-mode .menu-item,
body.a11y-dark-mode .modal-content { background: #1e293b !important; color: #e2e8f0 !important; }
body.a11y-dark-mode .text-muted,
body.a11y-dark-mode .text-secondary { color: #94a3b8 !important; }
body.a11y-dark-mode h1, body.a11y-dark-mode h2, body.a11y-dark-mode h3, body.a11y-dark-mode h4, body.a11y-dark-mode h5, body.a11y-dark-mode h6 { color: #93c5fd !important; }
body.a11y-dark-mode a { color: #60a5fa; }
body.a11y-dark-mode a:hover { color: #93c5fd; }
body.a11y-dark-mode .form-control,
body.a11y-dark-mode .contact-form .form-control { background: #0f172a !important; color: #e2e8f0 !important; border-color: #334155 !important; }
body.a11y-dark-mode .form-control:focus { background: #1e293b !important; border-color: #60a5fa !important; box-shadow: 0 0 0 0.18rem rgba(96,165,250,0.2) !important; }
body.a11y-dark-mode .contact-form .form-label,
body.a11y-dark-mode label { color: #e2e8f0 !important; }
body.a11y-dark-mode .custom-file-input { background: #0f172a !important; border-color: #334155 !important; }
body.a11y-dark-mode .custom-file-name { background: #0f172a !important; color: #cbd5e1 !important; }
body.a11y-dark-mode .visitor-stats-body { background: #1e293b; }
body.a11y-dark-mode .visitor-stats-footer { background: #0f172a; color: #cbd5e1; border-color: #334155; }
body.a11y-dark-mode .visitor-stat-row { border-color: #334155; }
body.a11y-dark-mode .visitor-stat-row:hover { background: #0f172a; }
body.a11y-dark-mode .visitor-stat-label { color: #cbd5e1; }
body.a11y-dark-mode .visitor-stat-value { color: #e2e8f0; }
body.a11y-dark-mode .visitor-stat-total { background: linear-gradient(135deg, #1e3a8a 0%, #1e293b 100%) !important; border-color: #475569 !important; }
body.a11y-dark-mode .visitor-stat-total .visitor-stat-label,
body.a11y-dark-mode .visitor-stat-total .visitor-stat-value,
body.a11y-dark-mode .visitor-stat-total i { color: #93c5fd !important; }
body.a11y-dark-mode .footer-main,
body.a11y-dark-mode footer { background: #0f172a !important; }
body.a11y-dark-mode .breadcrumb { background: #1e293b !important; }
body.a11y-dark-mode .breadcrumb-item a { color: #60a5fa; }
body.a11y-dark-mode .breadcrumb-item.active { color: #cbd5e1; }
body.a11y-dark-mode .alert-info { background: #1e3a8a !important; color: #dbeafe !important; }
body.a11y-dark-mode .alert-success { background: #14532d !important; color: #d1fae5 !important; }
body.a11y-dark-mode .alert-danger { background: #7f1d1d !important; color: #fee2e2 !important; }
body.a11y-dark-mode .contact-form-title,
body.a11y-dark-mode .contact-form legend { color: #93c5fd !important; }
body.a11y-dark-mode .contact-form .input-group-text { background: #334155 !important; color: #cbd5e1 !important; border-color: #334155 !important; }
body.a11y-dark-mode .prioritas-pill { background: #1e293b !important; border-color: #334155 !important; color: #cbd5e1 !important; }

/* ============================================================
   PRINT — bersihkan layout untuk cetak 2026-05-13
   ============================================================ */
@media print {
    .asn-tagline, .top-bar, .top-header, .top-menu, .top-menu-ul,
    .a11y-toolbar, .cookie-consent-banner, .menu-backdrop,
    .footer-main, footer,
    .sidebar, .visitor-stats-widget, .engagement-section, .menus,
    .breadcrumb, .news-share, .tts-controls,
    button, .btn, .menu-btn,
    #google_translate_element, .goog-te-banner-frame, .skiptranslate,
    .prioritas-radio-group { display: none !important; }
    body { background: #fff !important; color: #000 !important; font-size: 11pt; }
    h1, h2, h3, h4 { color: #000 !important; page-break-after: avoid; }
    a { color: #000 !important; text-decoration: underline; }
    a::after { content: " (" attr(href) ")"; font-size: 0.85em; color: #555; }
    .container { max-width: 100% !important; padding: 0 !important; }
    img { max-width: 100% !important; page-break-inside: avoid; }
    table { border-collapse: collapse; page-break-inside: avoid; }
    .isikonten p, .isikonten li { page-break-inside: avoid; }
}

/* ============================================================
   A11Y Toolbar dark-mode button + fix Google Translate banner posisi
   ============================================================ */
.goog-te-banner-frame.skiptranslate { display: none !important; }
body { top: 0 !important; }
.goog-tooltip, .goog-tooltip:hover { display: none !important; }
.goog-text-highlight { background-color: transparent !important; box-shadow: none !important; }

/* Dark mode — extend coverage untuk section/widget yg ada hardcoded light bg */
body.a11y-dark-mode .engagement-section,
body.a11y-dark-mode .menus,
body.a11y-dark-mode .visitor-stats-home,
body.a11y-dark-mode .pejabat-directory,
body.a11y-dark-mode .infra-content,
body.a11y-dark-mode .infra-stats-section,
body.a11y-dark-mode .infra-app-section { background: #0f172a !important; }
body.a11y-dark-mode .infra-content[style*="background"] { background: #1e293b !important; }
body.a11y-dark-mode .sosmed-feed-card,
body.a11y-dark-mode .bmkg-widget,
body.a11y-dark-mode .shortcut,
body.a11y-dark-mode .menu-item,
body.a11y-dark-mode .section-heading,
body.a11y-dark-mode .satker-block { background: #1e293b !important; color: #e2e8f0 !important; }
body.a11y-dark-mode .sosmed-feed-card *,
body.a11y-dark-mode .menu-item *,
body.a11y-dark-mode .shortcut * { color: #e2e8f0 !important; }
body.a11y-dark-mode .menu-item-title,
body.a11y-dark-mode .shortcut-text,
body.a11y-dark-mode .engagement-title,
body.a11y-dark-mode .engagement-sub { color: #e2e8f0 !important; }
body.a11y-dark-mode .menu-item.cream,
body.a11y-dark-mode .menu-item.yellow,
body.a11y-dark-mode .menu-item.orange,
body.a11y-dark-mode .menu-item.green,
body.a11y-dark-mode .menu-item.red,
body.a11y-dark-mode .menu-item.redlight,
body.a11y-dark-mode .menu-item.purple,
body.a11y-dark-mode .menu-item.blue,
body.a11y-dark-mode .menu-item.pink,
body.a11y-dark-mode .menu-item.grayy { filter: brightness(0.7) saturate(0.8); }
body.a11y-dark-mode .shortcut.light,
body.a11y-dark-mode .shortcut.orange,
body.a11y-dark-mode .shortcut.yellow,
body.a11y-dark-mode .shortcut.green { filter: brightness(0.7) saturate(0.85); }
body.a11y-dark-mode .footer-main,
body.a11y-dark-mode .footer-main *,
body.a11y-dark-mode footer * { color: #cbd5e1 !important; }
body.a11y-dark-mode .footer-main { background: #0f172a !important; }
body.a11y-dark-mode .contact-card,
body.a11y-dark-mode .footer-bottom { background: #1e293b !important; color: #e2e8f0 !important; }
body.a11y-dark-mode .top-header,
body.a11y-dark-mode .top-menu { background: #1e293b !important; }
body.a11y-dark-mode .top-nav-link,
body.a11y-dark-mode .top-nav-link span,
body.a11y-dark-mode .top-nav-link i { color: #e2e8f0 !important; }
body.a11y-dark-mode .top-nav-link:hover { background: #334155 !important; }
body.a11y-dark-mode .tab-sidebar,
body.a11y-dark-mode .tab-sidebar-header,
body.a11y-dark-mode .tab-sidebar-body,
body.a11y-dark-mode .tab-sidebar-content,
body.a11y-dark-mode .anouncement-card { background: #1e293b !important; color: #e2e8f0 !important; }
body.a11y-dark-mode .anouncement-card-title { color: #93c5fd !important; }
body.a11y-dark-mode .news-card,
body.a11y-dark-mode .news-title a,
body.a11y-dark-mode .news-date span { color: #e2e8f0 !important; }
body.a11y-dark-mode .news-card { background: #1e293b !important; }
body.a11y-dark-mode .pejabat-directory .card { background: #1e293b !important; }
body.a11y-dark-mode .pejabat-directory .card-body h6 { color: #93c5fd !important; }
body.a11y-dark-mode .pejabat-directory .card-body p { color: #cbd5e1 !important; }

/* TTS buttons merged ke news-share row (2026-05-13) — paling kanan dengan separator */
.news-share-sep {
    display: inline-block;
    width: 1px;
    height: 28px;
    background: #cbd5e1;
    margin: 0 0.35rem;
    vertical-align: middle;
}
.news-share-btn.tts-play { background: #1E5AA6; color: #fff; }
.news-share-btn.tts-play:hover, .news-share-btn.tts-play:focus-visible { background: #0F3A73; color: #fff; }
.news-share-btn.tts-pause { background: #f59e0b; color: #fff; }
.news-share-btn.tts-pause:hover { background: #b45309; color: #fff; }
.news-share-btn.tts-resume { background: #10b981; color: #fff; }
.news-share-btn.tts-resume:hover { background: #047857; color: #fff; }
.news-share-btn.tts-stop { background: #dc2626; color: #fff; }
.news-share-btn.tts-stop:hover { background: #991b1b; color: #fff; }
@media (max-width: 575px) {
    .news-share-sep { width: 100%; height: 1px; margin: 0.35rem 0; }
}

/* TTS pill button — icon + label (kontras tinggi) 2026-05-13 */
.news-share-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #1E5AA6;
    color: #fff !important;
    border: 0;
    border-radius: 999px;
    padding: 0.45rem 0.95rem;
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1;
    transition: background-color .15s, transform .1s, box-shadow .15s;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(30,90,166,0.25);
}
.news-share-pill i { font-size: 0.95rem; }
.news-share-pill:hover, .news-share-pill:focus-visible {
    background: #0F3A73;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(30,90,166,0.35);
    transform: translateY(-1px);
    outline: none;
    text-decoration: none;
}
.news-share-pill.tts-pause { background: #d97706; box-shadow: 0 2px 6px rgba(217,119,6,0.25); }
.news-share-pill.tts-pause:hover { background: #92400e; }
.news-share-pill.tts-resume { background: #059669; box-shadow: 0 2px 6px rgba(5,150,105,0.25); }
.news-share-pill.tts-resume:hover { background: #047857; }
.news-share-pill.tts-stop { background: #dc2626; box-shadow: 0 2px 6px rgba(220,38,38,0.25); }
.news-share-pill.tts-stop:hover { background: #991b1b; }
