:root {
  --bz-accent: #2168f3;
  --bz-secondary: #ef3340;
  --bz-ink: #111827;
  --bz-muted: #64748b;
  --bz-border: #e5e7eb;
  --bz-surface: #ffffff;
  --bz-soft: #f3f7ff;
  --bz-page: #ffffff;
  --bz-shadow: 0 16px 45px rgba(15, 23, 42, 0.12);
  --bz-radius: 14px;
  --bz-container: 1180px;
  --bz-sidebar: 320px;
  --bz-gap: 28px;
  --bz-header-offset: 132px;
}

html[data-theme="dark"] {
  --bz-ink: #f8fafc;
  --bz-muted: #94a3b8;
  --bz-border: #273244;
  --bz-surface: #111827;
  --bz-soft: #172033;
  --bz-page: #0b1220;
  --bz-shadow: 0 18px 45px rgba(0, 0, 0, 0.34);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--bz-ink);
  background: var(--bz-page);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.bz-overlay-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--bz-accent); }
img, svg, video, iframe { max-width: 100%; }
img { height: auto; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
figure { margin: 0; }
.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.screen-reader-text:focus,
.skip-link:focus {
  clip: auto !important;
  width: auto;
  height: auto;
  top: 10px;
  left: 10px;
  z-index: 100000;
  padding: 10px 16px;
  color: #fff;
  background: #000;
  border-radius: 8px;
}
.bz-container {
  width: min(calc(100% - 40px), var(--bz-container));
  margin-inline: auto;
}
.bz-main-space { padding-block: 34px 64px; }
.bz-icon { width: 24px; height: 24px; display: block; }
.bz-icon-button {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.bz-icon-button:hover { background: var(--bz-soft); color: var(--bz-accent); }
.bz-icon-button:active { transform: scale(0.94); }

/* Mobile Scroll Gate */
.bz-scroll-gate { display: none; }
.bz-site-layer { position: relative; min-height: 100vh; background: var(--bz-page); }

@media (max-width: 768px) {
  /*
   * Okezone-style scroll cover:
   * - the advertisement is fixed to the viewport behind the page;
   * - an equal-height spacer keeps the header below it initially;
   * - the site layer scrolls upward and covers the fixed advertisement.
   */
  .bz-scroll-gate.is-active {
    display: block;
    position: relative;
    z-index: 1;
    width: 100%;
    background: transparent;
  }
  .bz-scroll-gate__stage {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: min(var(--bz-gate-height, 680px), 78svh);
    min-height: 360px;
    padding: 0 14px 22px;
    display: grid;
    place-items: center;
    background: var(--bz-gate-bg, #fff);
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateZ(0);
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }
  .bz-scroll-gate__spacer {
    height: min(var(--bz-gate-height, 680px), 78svh);
    min-height: 360px;
    background: transparent;
    transition: height 0.22s ease, min-height 0.22s ease;
  }
  .bz-scroll-gate__mount {
    width: min(100%, var(--bz-gate-max-width, 560px));
    height: 100%;
    min-height: 0;
    display: grid;
    place-items: center;
  }
  .bz-scroll-gate__creative {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
  }
  .bz-scroll-gate__creative img,
  .bz-scroll-gate__creative iframe,
  .bz-scroll-gate__creative video {
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
  .bz-scroll-gate__creative--html {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    overflow: hidden;
  }
  .bz-scroll-gate__close {
    position: absolute;
    top: 8px;
    right: 10px;
    z-index: 6;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    padding: 0;
    color: #fff;
    background: #050505;
    border: 3px solid rgba(255, 255, 255, 0.95);
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.24);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  .bz-scroll-gate__close .bz-icon { width: 21px; height: 21px; }
  .bz-scroll-gate__instruction {
    position: relative;
    z-index: 3;
    min-height: 32px;
    display: grid;
    place-items: center;
    padding: 5px 14px;
    color: #fff;
    background: var(--bz-gate-bar, var(--bz-accent));
    font-size: 15px;
    font-weight: 800;
    line-height: 1.3;
    text-align: center;
    transition: min-height 0.2s ease, padding 0.2s ease, opacity 0.16s ease;
  }
  .bz-site-layer {
    position: relative;
    z-index: 20;
    min-height: 100vh;
    background: var(--bz-page);
    box-shadow: 0 -1px 0 var(--bz-page);
    isolation: isolate;
  }
  .bz-scroll-gate.is-closing .bz-scroll-gate__stage {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .bz-scroll-gate.is-closing .bz-scroll-gate__spacer {
    height: 0;
    min-height: 0;
  }
  .bz-scroll-gate.is-closing .bz-scroll-gate__instruction {
    min-height: 0;
    padding-block: 0;
    opacity: 0;
    overflow: hidden;
  }
  .bz-scroll-gate__demo {
    width: 100%;
    min-height: min(520px, 64svh);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 38px 28px;
    color: #172033;
    background: linear-gradient(145deg, #f8fbff, #edf4ff);
    border: 1px solid #dbe8ff;
    border-radius: 18px;
    text-align: center;
  }
  .bz-scroll-gate__demo-badge {
    display: inline-flex;
    padding: 5px 10px;
    color: #4b5563;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #dbe3ef;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  .bz-scroll-gate__demo-logo {
    width: 86px;
    height: 86px;
    display: grid;
    place-items: center;
    margin: 42px 0 18px;
    color: #fff;
    background: #111827;
    border-radius: 22px;
    box-shadow: 0 18px 40px rgba(33, 104, 243, 0.25);
    font-size: 30px;
    font-weight: 900;
    letter-spacing: -0.08em;
  }
  .bz-scroll-gate__demo h2 { margin: 0 0 8px; font-size: 28px; line-height: 1.15; }
  .bz-scroll-gate__demo p { max-width: 370px; margin: 0; color: #64748b; font-size: 15px; }
  .bz-scroll-gate__demo-button {
    display: inline-flex;
    margin-top: 24px;
    padding: 11px 18px;
    color: #fff;
    background: var(--bz-accent);
    border-radius: 999px;
    font-weight: 800;
  }

  /* WordPress admin bar must not cover the fixed advertisement controls. */
  body.admin-bar .bz-scroll-gate__stage {
    top: 46px;
    height: min(var(--bz-gate-height, 680px), calc(78svh - 46px));
  }
  body.admin-bar .bz-scroll-gate__spacer {
    height: min(var(--bz-gate-height, 680px), calc(78svh - 46px));
  }
}

/* Header */
.bz-header-sentinel { height: 1px; }
.site-header {
  position: relative;
  z-index: 900;
  color: var(--bz-ink);
  background: color-mix(in srgb, var(--bz-surface) 96%, transparent);
  border-bottom: 1px solid var(--bz-border);
  transition: box-shadow 0.2s ease, backdrop-filter 0.2s ease;
}
.bz-has-sticky-header .site-header { position: sticky; top: 0; }
.site-header.is-stuck {
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.09);
  backdrop-filter: blur(14px);
}
.bz-utility-bar { border-bottom: 1px solid var(--bz-border); background: var(--bz-soft); }
.bz-utility-bar__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--bz-muted);
  font-size: 12px;
  font-weight: 700;
}
.bz-utility-bar ul { display: flex; gap: 20px; margin: 0; padding: 0; list-style: none; }
.bz-brand-row { background: var(--bz-surface); }
.bz-brand-row__inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 16px;
}
.site-branding { min-width: 0; display: flex; align-items: center; }
.custom-logo-link { display: inline-flex; align-items: center; }
.custom-logo { width: auto; max-width: 220px; max-height: 56px; object-fit: contain; }
.bz-wordmark {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  padding-right: 0;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.06em;
}
.bz-wordmark__main { color: var(--bz-accent); }
.bz-wordmark__zone { color: var(--bz-secondary); }
.bz-wordmark__channel {
  display: none;
  position: absolute;
  right: 2px;
  bottom: -8px;
  color: var(--bz-secondary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
}
.bz-header-actions { display: flex; align-items: center; gap: 4px; }
.bz-theme-icon--sun { display: none; }
html[data-theme="dark"] .bz-theme-icon--moon { display: none; }
html[data-theme="dark"] .bz-theme-icon--sun { display: block; }
.bz-menu-button:first-child { display: none; }
.bz-primary-nav { background: var(--bz-surface); border-top: 1px solid var(--bz-border); }
.bz-primary-nav__scroller { overflow-x: auto; scrollbar-width: none; }
.bz-primary-nav__scroller::-webkit-scrollbar { display: none; }
.bz-primary-menu,
.bz-primary-nav .menu {
  width: max-content;
  min-width: 100%;
  min-height: 52px;
  display: flex;
  align-items: stretch;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.bz-primary-menu > li,
.bz-primary-nav .menu > li { position: relative; display: flex; align-items: center; }
.bz-primary-menu > li > a,
.bz-primary-nav .menu > li > a {
  min-height: 52px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  color: #4b5563;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}
html[data-theme="dark"] .bz-primary-menu > li > a,
html[data-theme="dark"] .bz-primary-nav .menu > li > a { color: #dbe4f0; }
.bz-primary-menu > .current-menu-item > a,
.bz-primary-menu > .current-category-ancestor > a,
.bz-primary-nav .menu > .current-menu-item > a { color: var(--bz-accent); }
.bz-primary-menu > .current-menu-item::after,
.bz-primary-menu > .current-category-ancestor::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--bz-accent);
  border-radius: 3px 3px 0 0;
}
.bz-primary-menu .sub-menu {
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  z-index: 20;
  min-width: 220px;
  margin: 0;
  padding: 10px;
  list-style: none;
  background: var(--bz-surface);
  border: 1px solid var(--bz-border);
  border-radius: 12px;
  box-shadow: var(--bz-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.18s ease;
}
.bz-primary-menu li:hover > .sub-menu,
.bz-primary-menu li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.bz-primary-menu .sub-menu a { display: block; padding: 9px 11px; border-radius: 8px; font-size: 14px; font-weight: 700; }
.bz-primary-menu .sub-menu a:hover { background: var(--bz-soft); }

/* Search and drawer */
.bz-overlay,
.bz-drawer { position: fixed; inset: 0; z-index: 1200; }
.bz-overlay__backdrop,
.bz-drawer__backdrop { position: absolute; inset: 0; background: rgba(2, 6, 23, 0.65); backdrop-filter: blur(3px); }
.bz-search-panel {
  position: relative;
  width: min(calc(100% - 32px), 700px);
  margin: 11vh auto 0;
  padding: 26px;
  color: var(--bz-ink);
  background: var(--bz-surface);
  border-radius: 20px;
  box-shadow: var(--bz-shadow);
}
.bz-panel-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.bz-panel-head h2 { margin: 0; font-size: 24px; }
.bz-search-form { display: flex; gap: 10px; width: 100%; }
.bz-search-field {
  min-width: 0;
  flex: 1;
  height: 48px;
  padding: 0 16px;
  color: var(--bz-ink);
  background: var(--bz-page);
  border: 1px solid var(--bz-border);
  border-radius: 12px;
  outline: none;
}
.bz-search-field:focus { border-color: var(--bz-accent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--bz-accent) 18%, transparent); }
.bz-search-submit {
  min-width: 108px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  color: #fff;
  background: var(--bz-accent);
  border: 0;
  border-radius: 12px;
  font-weight: 800;
  cursor: pointer;
}
.bz-search-submit .bz-icon { width: 20px; height: 20px; }
.bz-search-hint { margin: 12px 0 0; color: var(--bz-muted); font-size: 13px; }
.bz-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(92vw, 420px);
  padding: 24px;
  overflow-y: auto;
  color: var(--bz-ink);
  background: var(--bz-surface);
  box-shadow: -20px 0 50px rgba(15, 23, 42, 0.2);
}
.bz-drawer-kicker { margin: 0 0 2px; color: var(--bz-accent); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.1em; }
.bz-drawer-search { margin: 24px 0; }
.bz-drawer-search .bz-search-submit span { display: none; }
.bz-drawer-search .bz-search-submit { min-width: 48px; padding: 0; }
.bz-drawer-menu,
.bz-drawer-nav .menu { margin: 0; padding: 0; list-style: none; }
.bz-drawer-menu > li,
.bz-drawer-nav .menu > li { border-bottom: 1px solid var(--bz-border); }
.bz-drawer-menu a,
.bz-drawer-nav .menu a { display: block; padding: 12px 2px; font-weight: 800; }
.bz-drawer-menu .sub-menu { margin: 0 0 10px; padding: 0 0 0 14px; list-style: none; border-left: 2px solid var(--bz-border); }
.bz-drawer-menu .sub-menu a { padding: 8px 10px; color: var(--bz-muted); font-size: 14px; }

/* Advertisements */
.bz-below-nav-ad { padding-top: 22px; }
.bz-ad { position: relative; width: 100%; text-align: center; overflow: hidden; }
.bz-ad img { display: block; width: auto; max-width: 100%; height: auto; margin-inline: auto; }
.bz-ad iframe { max-width: 100%; border: 0; }
.bz-ad__label { display: block; margin-bottom: 5px; color: var(--bz-muted); font-size: 9px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.bz-ad--leaderboard { min-height: 90px; display: grid; place-items: center; }
.bz-ad--placeholder {
  min-height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: var(--bz-muted);
  background: repeating-linear-gradient(135deg, var(--bz-soft), var(--bz-soft) 10px, transparent 10px, transparent 20px);
  border: 1px dashed var(--bz-border);
  border-radius: 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.bz-ad--placeholder a { color: var(--bz-accent); font-size: 12px; letter-spacing: 0; }
.bz-ad--sidebar { margin-bottom: 24px; }
.bz-ad--300x250 { min-height: 250px; }
.bz-ad--300x600 { min-height: 600px; }
.bz-ad--inline,
.bz-ad--feed { margin: 28px 0; padding: 16px 0; border-block: 1px solid var(--bz-border); }

/* Home */
.bz-channel-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}
.bz-channel-header p { margin: 0; color: var(--bz-secondary); font-size: 12px; font-weight: 900; letter-spacing: 0.18em; text-transform: uppercase; }
.bz-channel-header h1 { margin: 0; font-size: clamp(28px, 4vw, 42px); line-height: 1; letter-spacing: -0.05em; }
.bz-channel-header > span { color: var(--bz-muted); font-size: 13px; font-weight: 700; }
.bz-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(300px, 0.85fr);
  gap: 18px;
  margin-bottom: 36px;
}
.bz-hero-main { position: relative; min-height: 490px; overflow: hidden; background: #0f172a; border-radius: var(--bz-radius); }
.bz-hero-main__media,
.bz-hero-main__media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.bz-hero-main__media img { object-fit: cover; transition: transform 0.35s ease; }
.bz-hero-main:hover img { transform: scale(1.035); }
.bz-hero-main::after { content: ""; position: absolute; inset: 26% 0 0; background: linear-gradient(to bottom, transparent, rgba(2, 6, 23, 0.9)); pointer-events: none; }
.bz-hero-overlay { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; padding: 28px; color: #fff; }
.bz-hero-overlay .bz-post-meta { color: rgba(255,255,255,0.8); }
.bz-hero-overlay h2 { max-width: 760px; margin: 8px 0 0; font-size: clamp(27px, 3.3vw, 44px); line-height: 1.12; letter-spacing: -0.045em; }
.bz-hero-overlay a:hover { color: #fff; }
.bz-hero-side { display: grid; grid-template-rows: repeat(3, 1fr); gap: 14px; }
.bz-hero-side-card { min-height: 0; display: grid; grid-template-columns: 128px minmax(0, 1fr); gap: 14px; padding: 12px; background: var(--bz-surface); border: 1px solid var(--bz-border); border-radius: 12px; }
.bz-hero-side-card__media { aspect-ratio: 1.15 / 1; overflow: hidden; border-radius: 9px; background: var(--bz-soft); }
.bz-hero-side-card__media img { width: 100%; height: 100%; object-fit: cover; }
.bz-hero-side-card h3 { margin: 7px 0 0; font-size: 16px; line-height: 1.35; }
.bz-content-grid { display: grid; grid-template-columns: minmax(0, 1fr) var(--bz-sidebar); gap: var(--bz-gap); align-items: start; }
.bz-content-column { min-width: 0; }
.bz-section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--bz-border);
}
.bz-section-heading h1,
.bz-section-heading h2 { position: relative; margin: 0; padding-left: 15px; font-size: 25px; line-height: 1.2; letter-spacing: -0.03em; }
.bz-section-heading h1::before,
.bz-section-heading h2::before { content: ""; position: absolute; top: 2px; bottom: 2px; left: 0; width: 5px; background: var(--bz-accent); border-radius: 5px; }
.bz-section-heading > a { display: inline-flex; align-items: center; gap: 6px; color: var(--bz-accent); font-size: 13px; font-weight: 800; }
.bz-section-heading > a .bz-icon { width: 18px; height: 18px; }
.bz-list { display: grid; gap: 0; }
.bz-news-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--bz-border);
}
.bz-news-card:first-child { padding-top: 0; }
.bz-news-card__media { aspect-ratio: 16 / 9; overflow: hidden; background: var(--bz-soft); border-radius: 11px; }
.bz-news-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.bz-news-card:hover .bz-news-card__media img { transform: scale(1.035); }
.bz-post-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; color: var(--bz-muted); font-size: 11px; font-weight: 700; }
.bz-post-meta__category { color: var(--bz-secondary); font-weight: 900; text-transform: uppercase; }
.bz-news-card__title { margin: 7px 0 8px; font-size: clamp(19px, 2vw, 23px); line-height: 1.3; letter-spacing: -0.025em; }
.bz-news-card__excerpt { color: var(--bz-muted); font-size: 14px; line-height: 1.55; }

/* Sidebar */
.bz-sidebar { min-width: 0; }
.bz-sidebar-sticky { position: sticky; top: calc(var(--bz-header-offset) + 18px); }
.bz-widget { margin-bottom: 26px; }
.bz-widget-title,
.widget-title { margin: 0 0 14px; padding-bottom: 10px; border-bottom: 1px solid var(--bz-border); }
.bz-widget-title h2,
.widget-title { position: relative; padding-left: 13px; font-size: 21px; line-height: 1.2; }
.bz-widget-title h2::before,
.widget-title::before { content: ""; position: absolute; top: 2px; bottom: 2px; left: 0; width: 4px; background: var(--bz-secondary); border-radius: 4px; }
.bz-popular-list { margin: 0; padding: 0; list-style: none; }
.bz-popular-list li { display: grid; grid-template-columns: 46px minmax(0, 1fr); gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--bz-border); }
.bz-popular-number { color: var(--bz-accent); font-size: 29px; line-height: 1; font-weight: 900; letter-spacing: -0.06em; }
.bz-popular-list h3 { margin: 0 0 7px; font-size: 15px; line-height: 1.4; }
.widget ul { margin: 0; padding-left: 18px; }

/* Article */
.bz-single-grid { grid-template-columns: minmax(0, 820px) var(--bz-sidebar); justify-content: space-between; }
.bz-article { min-width: 0; }
.bz-breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; margin-bottom: 24px; color: var(--bz-muted); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.bz-breadcrumb a:first-child { color: var(--bz-secondary); }
.bz-breadcrumb__sep { display: inline-flex; color: #a3aab5; }
.bz-breadcrumb__sep .bz-icon { width: 14px; height: 14px; }
.bz-article-header h1 { margin: 0 0 20px; font-size: clamp(34px, 4.5vw, 52px); line-height: 1.12; letter-spacing: -0.045em; }
.bz-article-meta { display: flex; align-items: center; gap: 11px; margin-bottom: 22px; color: var(--bz-muted); font-size: 13px; }
.bz-author-avatar img { display: block; border-radius: 50%; }
.bz-article-meta a { color: var(--bz-ink); }
.bz-article-meta__sub { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 2px; font-size: 12px; }
.bz-article-toolbar {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 0 0 24px;
  padding: 10px 14px;
  color: var(--bz-accent);
  background: color-mix(in srgb, var(--bz-accent) 10%, var(--bz-surface));
  border-radius: 12px;
}
.bz-article-toolbar__left,
.bz-article-toolbar__right { display: flex; align-items: center; gap: 12px; }
.bz-listen-button,
.bz-toolbar-share,
.bz-font-controls button,
.bz-article-bottom-share button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 10px;
  color: var(--bz-accent);
  background: transparent;
  border: 0;
  border-radius: 9px;
  font-weight: 800;
  cursor: pointer;
}
.bz-listen-button:hover,
.bz-toolbar-share:hover,
.bz-font-controls button:hover { background: color-mix(in srgb, var(--bz-accent) 10%, transparent); }
.bz-listen-button .bz-icon { width: 34px; height: 34px; fill: var(--bz-accent); color: var(--bz-accent); }
.bz-toolbar-share { width: 42px; padding: 0; }
.bz-font-controls { display: flex; align-items: center; gap: 2px; }
.bz-font-controls button[data-bz-font="small"] { font-size: 13px; }
.bz-font-controls button[data-bz-font="large"] { font-size: 18px; }
.bz-font-controls button.is-active { color: #fff; background: var(--bz-accent); }
.bz-featured-image { margin-bottom: 24px; overflow: hidden; border-radius: 14px; background: var(--bz-soft); }
.bz-featured-image img { width: 100%; display: block; }
.bz-featured-image figcaption { padding: 9px 2px 0; color: var(--bz-muted); font-size: 12px; }
.bz-article-content { font-size: 18px; line-height: 1.78; }
.bz-article-content[data-font-size="small"] { font-size: 16px; }
.bz-article-content[data-font-size="large"] { font-size: 20px; }
.bz-article-content > * { max-width: 100%; }
.bz-article-content p { margin: 0 0 1.35em; }
.bz-article-content h2 { margin: 1.55em 0 0.7em; font-size: 30px; line-height: 1.25; }
.bz-article-content h3 { margin: 1.45em 0 0.65em; font-size: 24px; line-height: 1.3; }
.bz-article-content a { color: var(--bz-accent); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.bz-article-content blockquote { margin: 1.5em 0; padding: 18px 22px; background: var(--bz-soft); border-left: 5px solid var(--bz-accent); border-radius: 0 10px 10px 0; font-size: 1.06em; font-weight: 600; }
.bz-article-content table { width: 100%; border-collapse: collapse; font-size: 15px; }
.bz-article-content th,
.bz-article-content td { padding: 10px 12px; border: 1px solid var(--bz-border); text-align: left; }
.bz-page-links { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin: 34px 0; padding: 16px; background: var(--bz-soft); border-radius: 12px; }
.bz-page-links > span:first-child { margin-right: 4px; font-weight: 800; }
.bz-page-links a,
.bz-page-links > span:not(:first-child) { min-width: 38px; height: 38px; display: grid; place-items: center; padding: 0 10px; background: var(--bz-surface); border: 1px solid var(--bz-border); border-radius: 8px; text-decoration: none; }
.bz-tags { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin: 30px 0; padding-top: 22px; border-top: 1px solid var(--bz-border); }
.bz-tags > span { margin-right: 4px; color: var(--bz-muted); font-size: 13px; font-weight: 800; }
.bz-tags a { padding: 7px 11px; background: var(--bz-soft); border-radius: 999px; font-size: 12px; font-weight: 700; }
.bz-article-bottom-share { display: flex; gap: 10px; margin-bottom: 34px; }
.bz-article-bottom-share button { padding: 0 16px; color: var(--bz-ink); background: var(--bz-surface); border: 1px solid var(--bz-border); }
.bz-article-bottom-share button:hover { color: var(--bz-accent); border-color: var(--bz-accent); }
.bz-related { margin-top: 42px; }
.bz-related-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.bz-related-card__media { aspect-ratio: 16 / 9; display: block; overflow: hidden; border-radius: 10px; background: var(--bz-soft); }
.bz-related-card__media img { width: 100%; height: 100%; object-fit: cover; }
.bz-related-card .bz-post-meta { margin-top: 9px; }
.bz-related-card h3 { margin: 6px 0 0; font-size: 17px; line-height: 1.4; }
.bz-page-article .bz-article-header h1 { margin-bottom: 26px; }

/* Archives, empty state, comments */
.bz-archive-header { margin-bottom: 24px; }
.bz-archive-header > p { margin: 0; color: var(--bz-secondary); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.12em; }
.bz-archive-header h1 { margin: 4px 0 0; font-size: clamp(30px, 4vw, 44px); line-height: 1.2; letter-spacing: -0.04em; }
.bz-archive-description { color: var(--bz-muted); }
.bz-empty-state { max-width: 680px; margin: 40px auto; padding: 42px; text-align: center; background: var(--bz-soft); border-radius: 18px; }
.bz-empty-state h1 { margin: 0 0 8px; font-size: 34px; }
.bz-empty-state p { color: var(--bz-muted); }
.bz-empty-state .bz-search-form { margin: 24px auto 0; }
.bz-404-code { margin: 0 !important; color: var(--bz-accent) !important; font-size: 78px; line-height: 1; font-weight: 900; }
.bz-button { display: inline-flex; margin-top: 20px; padding: 11px 18px; color: #fff; background: var(--bz-accent); border-radius: 10px; font-weight: 800; }
.bz-comments { margin-top: 44px; padding-top: 30px; border-top: 1px solid var(--bz-border); }
.bz-comments h2 { font-size: 24px; }
.comment-list { margin: 0; padding: 0; list-style: none; }
.comment-list .comment { margin-bottom: 18px; padding: 18px; background: var(--bz-soft); border-radius: 12px; }
.comment-list .children { margin-top: 16px; padding-left: 24px; list-style: none; }
.comment-form input:not([type="submit"]),
.comment-form textarea { width: 100%; padding: 11px 13px; color: var(--bz-ink); background: var(--bz-surface); border: 1px solid var(--bz-border); border-radius: 9px; }
.comment-form input[type="submit"] { padding: 11px 18px; color: #fff; background: var(--bz-accent); border: 0; border-radius: 9px; font-weight: 800; cursor: pointer; }
.nav-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.nav-links .page-numbers { min-width: 40px; height: 40px; display: grid; place-items: center; padding: 0 12px; background: var(--bz-surface); border: 1px solid var(--bz-border); border-radius: 8px; font-weight: 700; }
.nav-links .current { color: #fff; background: var(--bz-accent); border-color: var(--bz-accent); }

/* Footer */
.site-footer { margin-top: 30px; color: #d7e1ef; background: #0d1728; }
.bz-footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 38px; padding-block: 50px; }
.bz-wordmark--footer { font-size: 30px; }
.bz-footer-brand p { max-width: 340px; margin: 20px 0 0; color: #9fb0c7; font-size: 14px; }
.site-footer h2 { margin: 0 0 16px; color: #fff; font-size: 15px; text-transform: uppercase; letter-spacing: 0.08em; }
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer li { margin-bottom: 9px; }
.site-footer a { color: #b8c5d8; font-size: 14px; }
.site-footer a:hover { color: #fff; }
.bz-footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); }
.bz-footer-bottom .bz-container { min-height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: #8596ad; font-size: 12px; }

/* Tablet */
@media (max-width: 1050px) {
  :root { --bz-sidebar: 290px; --bz-gap: 22px; }
  .bz-hero-grid { grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.9fr); }
  .bz-hero-main { min-height: 440px; }
  .bz-news-card { grid-template-columns: 200px minmax(0, 1fr); }
}

@media (max-width: 900px) {
  :root { --bz-header-offset: 112px; }
  .bz-utility-bar { display: none; }
  .bz-brand-row__inner { min-height: 68px; }
  .bz-content-grid,
  .bz-single-grid { grid-template-columns: minmax(0, 1fr); }
  .bz-sidebar { display: none; }
  .bz-hero-grid { grid-template-columns: minmax(0, 1fr); }
  .bz-hero-main { min-height: 480px; }
  .bz-hero-side { grid-template-columns: repeat(3, minmax(240px, 1fr)); grid-template-rows: none; overflow-x: auto; padding-bottom: 6px; scrollbar-width: none; }
  .bz-hero-side::-webkit-scrollbar { display: none; }
  .bz-hero-side-card { grid-template-columns: 110px minmax(0, 1fr); }
  .bz-footer-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile */
@media (max-width: 768px) {
  :root { --bz-header-offset: 116px; }
  .bz-container { width: min(calc(100% - 32px), var(--bz-container)); }
  .bz-main-space { padding-block: 26px 50px; }
  .bz-brand-row__inner { min-height: 72px; grid-template-columns: 44px minmax(0, 1fr) auto; gap: 8px; }
  .bz-menu-button:first-child { display: inline-grid; }
  .bz-menu-button--desktop { display: none; }
  .site-branding { justify-content: flex-start; }
  .custom-logo { max-width: 160px; max-height: 44px; }
  .bz-wordmark { padding-right: 27px; font-size: 29px; }
  .bz-wordmark__channel { right: 0; bottom: -7px; font-size: 10px; }
  .bz-header-actions { gap: 0; }
  .bz-header-actions .bz-icon-button { width: 40px; height: 44px; flex-basis: 40px; }
  .bz-header-actions .bz-icon { width: 25px; height: 25px; }
  .bz-primary-nav__scroller { width: 100%; padding-left: 16px; }
  .bz-primary-menu,
  .bz-primary-nav .menu { gap: 30px; min-height: 58px; padding-right: 18px; }
  .bz-primary-menu > li > a,
  .bz-primary-nav .menu > li > a { min-height: 58px; font-size: 13px; }
  .bz-primary-menu .sub-menu { display: none; }
  .bz-below-nav-ad { padding-top: 20px; }
  .bz-ad--leaderboard { min-height: 60px; }
  .bz-channel-header { align-items: flex-start; }
  .bz-channel-header > span { display: none; }
  .bz-hero-grid { gap: 14px; margin-bottom: 30px; }
  .bz-hero-main { min-height: 390px; border-radius: 12px; }
  .bz-hero-overlay { padding: 22px; }
  .bz-hero-overlay h2 { font-size: 28px; }
  .bz-hero-side { grid-template-columns: repeat(3, 78vw); margin-right: -16px; }
  .bz-hero-side-card { grid-template-columns: 112px minmax(0, 1fr); min-height: 130px; }
  .bz-section-heading h1,
  .bz-section-heading h2 { font-size: 22px; }
  .bz-news-card { grid-template-columns: 132px minmax(0, 1fr); gap: 13px; padding: 16px 0; }
  .bz-news-card__title { margin: 5px 0 0; font-size: 16px; line-height: 1.38; }
  .bz-news-card__excerpt { display: none; }
  .bz-post-meta { gap: 5px; font-size: 10px; }
  .bz-article-header h1 { margin-bottom: 18px; font-size: clamp(30px, 8.6vw, 40px); line-height: 1.17; }
  .bz-article-meta { margin-bottom: 18px; }
  .bz-article-toolbar { margin-inline: -16px; padding-inline: 16px; border-radius: 0; }
  .bz-font-controls button[data-bz-font="small"] { display: none; }
  .bz-listen-button { padding-left: 0; }
  .bz-listen-button .bz-icon { width: 38px; height: 38px; }
  .bz-featured-image { margin-inline: -16px; border-radius: 0; }
  .bz-featured-image figcaption { padding-inline: 16px; }
  .bz-article-content { font-size: 17px; line-height: 1.75; }
  .bz-article-content[data-font-size="small"] { font-size: 16px; }
  .bz-article-content[data-font-size="large"] { font-size: 19px; }
  .bz-article-content h2 { font-size: 26px; }
  .bz-article-content h3 { font-size: 22px; }
  .bz-related-grid { grid-template-columns: 1fr; }
  .bz-article-bottom-share { display: grid; grid-template-columns: repeat(2, 1fr); }
  .bz-article-bottom-share button { width: 100%; }
  .bz-footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 22px; padding-block: 42px; }
  .bz-footer-brand { grid-column: 1 / -1; }
  .bz-footer-bottom .bz-container { flex-direction: column; align-items: flex-start; justify-content: center; gap: 2px; padding-block: 16px; }
  .bz-footer-bottom p { margin: 0; }
  .bz-search-panel { margin-top: 8vh; padding: 20px; }
  .bz-search-panel .bz-search-form { flex-direction: column; }
  .bz-search-panel .bz-search-submit { width: 100%; }
}

@media (max-width: 420px) {
  .bz-container { width: min(calc(100% - 28px), var(--bz-container)); }
  .bz-wordmark { font-size: 26px; }
  .bz-header-actions .bz-icon-button { width: 38px; flex-basis: 38px; }
  .bz-news-card { grid-template-columns: 122px minmax(0, 1fr); }
  .bz-hero-main { min-height: 350px; }
  .bz-hero-overlay h2 { font-size: 25px; }
  .bz-footer-grid { grid-template-columns: 1fr; }
  .bz-footer-brand { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}

/* --------------------------------------------------------------------------
 * BanterZone v1.0.3 — mobile menu, search, and fixed scroll-gate experience.
 * -------------------------------------------------------------------------- */
.bz-search-button__close { display: none; }
body.bz-search-open .bz-search-button__open { display: none; }
body.bz-search-open .bz-search-button__close { display: inline-flex; }

.bz-drawer__panel { padding: 0; }
.bz-drawer-topbar {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 22px;
  color: #fff;
  background: var(--bz-accent);
}
.bz-drawer-topbar h2 {
  margin: 0;
  color: inherit;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: .01em;
  text-transform: uppercase;
}
.bz-drawer-close {
  color: #fff;
  background: transparent;
}
.bz-drawer-close:hover,
.bz-drawer-close:focus-visible { background: rgba(255,255,255,.14); }
.bz-drawer__content { padding: 26px 24px 48px; }
.bz-drawer-login {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--bz-ink);
  font-size: 18px;
  font-weight: 800;
}
.bz-drawer-login__avatar {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #dc1019;
  border-radius: 50%;
}
.bz-drawer-login__avatar .bz-icon { width: 30px; height: 30px; stroke-width: 2.2; }
.bz-drawer-section { margin-top: 42px; }
.bz-drawer-section h3 {
  margin: 0 0 22px;
  color: var(--bz-ink);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 850;
}
.bz-drawer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 26px;
  row-gap: 22px;
}
.bz-drawer-grid__item {
  min-width: 0;
  min-height: 42px;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  color: var(--bz-ink);
  font-size: 16px;
  line-height: 1.2;
  font-weight: 750;
}
.bz-drawer-grid__item.has-trailing { grid-template-columns: 32px minmax(0, 1fr) 22px; }
.bz-drawer-grid__label { min-width: 0; overflow-wrap: anywhere; }
.bz-drawer-grid__icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #7b8ea6;
  border-radius: 9px;
}
.bz-drawer-grid__icon .bz-icon { width: 19px; height: 19px; stroke-width: 1.9; }
.bz-drawer-grid__icon--tone-1 { background: #88a8ef; }
.bz-drawer-grid__icon--tone-2 { background: #ef476f; }
.bz-drawer-grid__icon--tone-3 { background: #d9a24a; }
.bz-drawer-grid__icon--tone-4 { background: #e46baa; }
.bz-drawer-grid__icon--tone-5 { background: #ee79ba; }
.bz-drawer-grid__icon--tone-6 { background: #4dbb70; }
.bz-drawer-grid__icon--tone-7 { background: #ef9a62; }
.bz-drawer-grid__icon--tone-8 { background: #1b87bb; }
.bz-drawer-grid__trailing { display: grid; place-items: center; color: var(--bz-ink); }
.bz-drawer-grid__trailing .bz-icon { width: 20px; height: 20px; stroke-width: 2.6; }

.bz-mobile-search-footer { display: none; }

@media (min-width: 769px) {
  .bz-menu-button--mobile { display: none !important; }
  .bz-drawer__panel { width: min(92vw, 460px); }
  .bz-drawer-grid { grid-template-columns: 1fr; }
  .bz-drawer-grid__item { min-height: 38px; }
}

@media (max-width: 768px) {
  .bz-brand-row__inner {
    min-height: 72px;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 8px;
  }
  .site-branding { justify-content: center; }
  .site-branding .custom-logo-link { justify-content: center; }
  .custom-logo { max-width: 190px; max-height: 46px; }
  .bz-wordmark { padding-right: 28px; font-size: 31px; }
  .bz-header-actions { width: 44px; justify-content: flex-end; }
  .bz-header-actions .bz-theme-button,
  .bz-header-actions .bz-menu-button--desktop { display: none; }
  .bz-header-actions .bz-search-button { width: 44px; height: 44px; flex-basis: 44px; }
  .bz-menu-button--mobile { width: 44px; height: 44px; }
  .bz-menu-button--mobile .bz-icon,
  .bz-search-button .bz-icon { width: 28px; height: 28px; stroke-width: 2; }

  .bz-drawer__backdrop { display: none; }
  .bz-drawer__panel {
    inset: 0;
    width: 100%;
    max-width: none;
    box-shadow: none;
    background: var(--bz-surface);
  }
  .bz-drawer-topbar {
    position: sticky;
    top: 0;
    z-index: 3;
    min-height: 80px;
    padding-inline: 30px 22px;
  }
  .bz-drawer-topbar h2 { font-size: 22px; }
  .bz-drawer-close { width: 48px; height: 48px; }
  .bz-drawer-close .bz-icon { width: 30px; height: 30px; stroke-width: 2.2; }
  .bz-drawer__content { padding: 38px 30px 70px; }
  .bz-drawer-login { gap: 14px; font-size: 21px; }
  .bz-drawer-login__avatar { width: 50px; height: 50px; }
  .bz-drawer-section { margin-top: 52px; }
  .bz-drawer-section h3 { margin-bottom: 30px; font-size: 21px; }
  .bz-drawer-grid { column-gap: 30px; row-gap: 26px; }
  .bz-drawer-grid__item {
    min-height: 50px;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 11px;
    font-size: 17px;
    font-weight: 770;
  }
  .bz-drawer-grid__item.has-trailing { grid-template-columns: 34px minmax(0, 1fr) 20px; }
  .bz-drawer-grid__icon { width: 32px; height: 32px; border-radius: 10px; }
  .bz-drawer-grid__icon .bz-icon { width: 20px; height: 20px; }

  body.bz-search-open { overflow-y: auto; }
  body.bz-search-open .bz-primary-nav,
  body.bz-search-open .bz-below-nav-ad,
  body.bz-search-open #page,
  body.bz-search-open > .site-footer { display: none !important; }
  body.bz-search-open .site-header { position: relative; top: auto; box-shadow: none; backdrop-filter: none; }

  .bz-overlay {
    position: relative;
    inset: auto;
    z-index: 1;
    min-height: calc(100vh - 72px);
    background: var(--bz-surface);
  }
  .bz-overlay__backdrop { display: none; }
  .bz-search-panel {
    width: 100%;
    min-height: calc(100vh - 72px);
    margin: 0;
    padding: 30px 0 0;
    color: var(--bz-ink);
    background: var(--bz-surface);
    border-radius: 0;
    box-shadow: none;
  }
  .bz-panel-head--search { display: none; }
  .bz-search-panel__form { padding: 0 16px 34px; }
  .bz-search-panel .bz-search-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
  }
  .bz-search-panel .bz-search-field {
    width: 100%;
    height: 52px;
    padding-inline: 12px;
    background: var(--bz-surface);
    border-color: #d9dde4;
    border-radius: 0;
    font-size: 17px;
  }
  .bz-search-panel .bz-search-submit {
    width: auto;
    min-width: 92px;
    height: 52px;
    gap: 8px;
    padding-inline: 12px;
    color: #fff;
    background: var(--bz-secondary);
    border-radius: 0;
    font-size: 16px;
  }
  .bz-search-panel .bz-search-submit .bz-icon { width: 25px; height: 25px; }

  .bz-mobile-search-footer {
    position: relative;
    isolation: isolate;
    min-height: 860px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    padding: 0 20px 60px;
    text-align: center;
    background: #fff;
  }
  .bz-mobile-search-footer::before,
  .bz-mobile-search-footer::after {
    content: "";
    position: absolute;
    z-index: -1;
    width: 140%;
    height: 260px;
    left: -20%;
    background: rgba(15, 23, 42, .025);
    transform: rotate(-13deg);
  }
  .bz-mobile-search-footer::before { top: 280px; }
  .bz-mobile-search-footer::after { bottom: 10px; transform: rotate(14deg); }
  .bz-mobile-search-footer__rule {
    width: calc(100% + 40px);
    height: 16px;
    margin-bottom: 30px;
    background: var(--bz-accent);
  }
  .bz-mobile-search-footer__company h2,
  .bz-mobile-search-footer__social h2 {
    margin: 0 0 22px;
    color: #222;
    font-size: 18px;
    font-weight: 850;
    text-transform: uppercase;
  }
  .bz-company-links ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 0;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .bz-company-links li { display: inline-flex; align-items: center; }
  .bz-company-links li:not(:last-child)::after {
    content: "";
    width: 1px;
    height: 26px;
    margin-inline: 14px;
    background: #8d8d8d;
  }
  .bz-company-links a { color: #222; font-size: 16px; }
  .bz-wordmark--search {
    margin-top: 64px;
    padding-right: 0;
    font-size: 48px;
  }
  .bz-wordmark--search .bz-wordmark__channel { display: none; }
  .bz-app-links {
    display: flex;
    justify-content: center;
    gap: 34px;
    margin-top: 42px;
  }
  .bz-app-badge {
    min-width: 142px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 6px 10px;
    color: #fff;
    background: #050505;
    border-radius: 7px;
  }
  .bz-app-badge .bz-icon { width: 26px; height: 26px; }
  .bz-app-badge span { display: flex; flex-direction: column; align-items: flex-start; font-size: 15px; line-height: 1.05; font-weight: 750; }
  .bz-app-badge small { font-size: 8px; font-weight: 500; text-transform: uppercase; }
  .bz-network-signature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 50px 0 0;
    color: #777;
    font-size: 15px;
    font-weight: 750;
  }
  .bz-network-signature strong {
    color: var(--bz-accent);
    font-size: 18px;
    line-height: .9;
    text-align: left;
    text-transform: uppercase;
  }
  .bz-mobile-search-footer__social { margin-top: 46px; }
  .bz-mobile-search-footer__social h2 { margin-bottom: 18px; font-size: 16px; text-transform: none; }
  .bz-social-links { display: flex; justify-content: center; gap: 10px; }
  .bz-social-link {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: #fff;
    border-radius: 7px;
  }
  .bz-social-link .bz-icon { width: 25px; height: 25px; }
  .bz-social-link--instagram { background: linear-gradient(145deg, #7d3cde, #ed346e, #ff9f35); }
  .bz-social-link--facebook { background: #315caa; }
  .bz-social-link--x-social { background: #38a9dc; }
  .bz-social-link--youtube { background: #f00000; }
  .bz-social-link--tiktok { background: #050505; }
  .bz-mobile-search-footer__copyright { margin: 38px 0 0; color: #5b5b5b; font-size: 12px; font-weight: 650; }
}

@media (max-width: 420px) {
  .bz-drawer__content { padding-inline: 24px; }
  .bz-drawer-grid { column-gap: 18px; }
  .bz-drawer-grid__item { font-size: 15px; }
  .bz-wordmark--search { font-size: 42px; }
  .bz-app-links { gap: 14px; }
  .bz-app-badge { min-width: 132px; }
}

/* Homepage editorial modules v1.0.3 */
.bz-home-section { min-width: 0; margin-bottom: 40px; }
.bz-home-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.bz-home-section__header h2 {
  position: relative;
  margin: 0;
  padding-bottom: 9px;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.12;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.bz-home-section__header h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 44px;
  height: 4px;
  background: var(--bz-accent);
  border-radius: 999px;
}
.bz-carousel-controls { display: flex; gap: 8px; }
.bz-carousel-button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--bz-ink);
  background: var(--bz-surface);
  border: 1px solid var(--bz-border);
  border-radius: 999px;
  cursor: pointer;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease;
}
.bz-carousel-button:hover,
.bz-carousel-button:focus-visible {
  color: #fff;
  background: var(--bz-accent);
  border-color: var(--bz-accent);
}
.bz-carousel-button:active { transform: scale(.94); }
.bz-carousel-button .bz-icon { width: 22px; height: 22px; stroke-width: 2.3; }
.bz-headline-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
  border-radius: var(--bz-radius);
}
.bz-headline-track::-webkit-scrollbar { display: none; }
.bz-headline-slide {
  position: relative;
  min-height: clamp(400px, 50vw, 590px);
  overflow: hidden;
  color: #fff;
  background: #0f172a;
  border-radius: var(--bz-radius);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  isolation: isolate;
}
.bz-headline-slide::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 24% 0 0;
  background: linear-gradient(to bottom, transparent, rgba(2, 6, 23, .94));
  pointer-events: none;
}
.bz-headline-slide__media,
.bz-headline-slide__media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.bz-headline-slide__media img { object-fit: cover; transition: transform .45s ease; }
.bz-headline-slide:hover .bz-headline-slide__media img { transform: scale(1.025); }
.bz-headline-slide__overlay {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: clamp(22px, 4vw, 40px);
}
.bz-headline-slide__overlay .bz-post-meta { color: rgba(255,255,255,.82); }
.bz-headline-slide__overlay .bz-post-meta__category { color: #fff; }
.bz-headline-slide__overlay h3 {
  max-width: 900px;
  margin: 10px 0 0;
  font-size: clamp(28px, 4.2vw, 50px);
  line-height: 1.13;
  letter-spacing: -0.045em;
}
.bz-headline-slide__overlay a:hover { color: #fff; }
.bz-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 14px;
}
.bz-carousel-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  background: #cbd5e1;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: width .2s ease, background-color .2s ease;
}
.bz-carousel-dot.is-active { width: 28px; background: var(--bz-accent); }

.bz-home-popular {
  padding: 22px;
  background: color-mix(in srgb, var(--bz-accent) 5%, var(--bz-surface));
  border: 1px solid color-mix(in srgb, var(--bz-accent) 18%, var(--bz-border));
  border-radius: var(--bz-radius);
}
.bz-home-popular__track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.bz-home-popular__item {
  min-width: 0;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: start;
  gap: 11px;
  padding: 16px 0;
  border-top: 1px solid var(--bz-border);
}
.bz-home-popular__item:nth-child(-n+3) { border-top: 0; }
.bz-home-popular__number {
  color: var(--bz-accent);
  font-size: 24px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -.06em;
}
.bz-home-popular__item h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: -.015em;
}

.bz-trending { margin-bottom: 44px; }
.bz-trending__title-wrap { margin-bottom: 22px; }
.bz-trending__title-wrap h2 {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding-bottom: 10px;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}
.bz-trending__title-wrap h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 4px;
  background: var(--bz-accent);
  border-radius: 999px;
}
.bz-trending__flame { display: inline-block; margin-left: 4px; font-size: .88em; transform: translateY(-1px); }
.bz-trending-tabs {
  display: flex;
  gap: 12px;
  margin: 0 -2px 26px;
  padding: 2px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
}
.bz-trending-tabs::-webkit-scrollbar { display: none; }
.bz-trending-tab {
  min-height: 46px;
  flex: 0 0 auto;
  padding: 0 17px;
  color: color-mix(in srgb, var(--bz-accent) 72%, var(--bz-ink));
  background: var(--bz-surface);
  border: 1px solid var(--bz-border);
  border-radius: 9px;
  font-weight: 800;
  white-space: nowrap;
  scroll-snap-align: start;
  cursor: pointer;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.bz-trending-tab:hover,
.bz-trending-tab:focus-visible { border-color: var(--bz-accent); }
.bz-trending-tab.is-active {
  color: #fff;
  background: var(--bz-accent);
  border-color: var(--bz-accent);
  box-shadow: 0 9px 22px color-mix(in srgb, var(--bz-accent) 22%, transparent);
}
.bz-trending-panel[hidden] { display: none !important; }
.bz-trending-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .8fr);
  gap: 22px;
  align-items: start;
}
.bz-trending-lead__media {
  aspect-ratio: 16 / 9;
  display: block;
  overflow: hidden;
  background: var(--bz-soft);
  border-radius: 11px;
}
.bz-trending-lead__media img,
.bz-trending-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.bz-trending-lead:hover img,
.bz-trending-card:hover img { transform: scale(1.035); }
.bz-trending-lead h3 {
  margin: 14px 0 0;
  font-size: clamp(24px, 3vw, 31px);
  line-height: 1.35;
  letter-spacing: -.035em;
}
.bz-trending-list { display: grid; gap: 0; }
.bz-trending-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 138px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--bz-border);
}
.bz-trending-card:first-child { padding-top: 0; }
.bz-trending-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bz-soft);
  border-radius: 9px;
}
.bz-trending-card h3 { margin: 2px 0 0; font-size: 16px; line-height: 1.42; letter-spacing: -.015em; }
.bz-trending-empty { margin: 0; padding: 22px; color: var(--bz-muted); background: var(--bz-soft); border-radius: 10px; }
.bz-latest-section { margin-bottom: 0; }

@media (max-width: 900px) {
  .bz-home-popular__track { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bz-home-popular__item:nth-child(-n+3) { border-top: 1px solid var(--bz-border); }
  .bz-home-popular__item:nth-child(-n+2) { border-top: 0; }
  .bz-trending-layout { grid-template-columns: minmax(0, 1fr); }
  .bz-trending-list { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
  .bz-trending-card { grid-template-columns: 1fr; padding: 0; border-bottom: 0; }
}

@media (max-width: 768px) {
  .bz-home .bz-main-space { padding-top: 24px; }
  .bz-home-section { margin-bottom: 34px; }
  .bz-home-section__header { margin-bottom: 14px; }
  .bz-home-section__header h2 { font-size: 25px; }
  .bz-carousel-controls { display: none; }
  .bz-headline-track { gap: 12px; margin-inline: -16px; padding-inline: 16px; border-radius: 0; scroll-padding-inline: 16px; }
  .bz-headline-slide {
    min-height: 420px;
    border-radius: 11px;
  }
  .bz-headline-slide__overlay { padding: 22px; }
  .bz-headline-slide__overlay h3 { font-size: clamp(25px, 7.4vw, 34px); line-height: 1.2; }
  .bz-carousel-dots { margin-top: 12px; }

  .bz-home-popular { margin-inline: -16px; padding: 20px 16px 8px; border-right: 0; border-left: 0; border-radius: 0; }
  .bz-home-popular__track {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(250px, 76vw);
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 12px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }
  .bz-home-popular__track::-webkit-scrollbar { display: none; }
  .bz-home-popular__item,
  .bz-home-popular__item:nth-child(-n+3),
  .bz-home-popular__item:nth-child(-n+2) {
    min-height: 104px;
    align-content: center;
    padding: 15px;
    background: var(--bz-surface);
    border: 1px solid var(--bz-border);
    border-radius: 10px;
    scroll-snap-align: start;
  }
  .bz-home-popular__item h3 { font-size: 16px; }

  .bz-trending__title-wrap { margin-bottom: 20px; }
  .bz-trending__title-wrap h2 { font-size: 34px; }
  .bz-trending-tabs { margin-right: -16px; margin-bottom: 26px; padding-right: 16px; }
  .bz-trending-tab { min-height: 47px; padding-inline: 15px; font-size: 15px; }
  .bz-trending-lead h3 { margin-top: 13px; font-size: 23px; line-height: 1.45; }
  .bz-trending-list { grid-template-columns: minmax(0, 1fr); gap: 0; margin-top: 18px; }
  .bz-trending-card {
    grid-template-columns: 145px minmax(0, 1fr);
    gap: 14px;
    padding: 13px 0;
    border-bottom: 1px solid var(--bz-border);
  }
  .bz-trending-card:first-child { padding-top: 0; }
  .bz-trending-card__media { aspect-ratio: 16 / 10; }
  .bz-trending-card h3 { font-size: 16px; line-height: 1.42; }
}

@media (max-width: 420px) {
  .bz-headline-slide { min-height: 370px; }
  .bz-headline-slide__overlay h3 { font-size: 25px; }
  .bz-home-popular__track { grid-auto-columns: 84vw; }
  .bz-trending__title-wrap h2 { font-size: 31px; }
  .bz-trending-card { grid-template-columns: 126px minmax(0, 1fr); gap: 12px; }
  .bz-trending-card h3 { font-size: 15px; }
}
.bz-carousel-button:disabled { opacity: .38; cursor: default; }
.bz-carousel-button:disabled:hover { color: var(--bz-ink); background: var(--bz-surface); border-color: var(--bz-border); }

/* --------------------------------------------------------------------------
 * BanterZone v1.0.5 — Okezone-inspired article and footer composition.
 * Existing header, home modules, menu, search, and scroll-gate are untouched.
 * -------------------------------------------------------------------------- */

/* Article page */
.bz-single-main { padding-top: 30px; }
.bz-article--oke { padding-bottom: 18px; }
.bz-article--oke .bz-breadcrumb {
  gap: 8px;
  margin-bottom: 22px;
  color: #c34f54;
  font-size: 13px;
  font-weight: 700;
}
.bz-article--oke .bz-breadcrumb a,
.bz-article--oke .bz-breadcrumb span[aria-current="page"] { color: #c34f54; }
.bz-article--oke .bz-breadcrumb__sep { color: #8e98a7; }
.bz-article--oke .bz-article-header h1 {
  max-width: 790px;
  margin: 0 0 18px;
  font-size: clamp(36px, 4.2vw, 48px);
  line-height: 1.16;
  letter-spacing: -0.036em;
}
.bz-article--oke .bz-article-toolbar {
  min-height: 68px;
  margin: 0 0 18px;
  padding: 10px 18px;
  background: #edf4ff;
  border-radius: 0;
}
.bz-article--oke .bz-article-meta {
  margin: 0 0 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--bz-border);
}
.bz-article--oke .bz-featured-image { margin-bottom: 22px; border-radius: 10px; }
.bz-article--oke .bz-featured-image figcaption {
  padding-top: 8px;
  color: #7a8493;
  font-size: 12px;
  line-height: 1.45;
}
.bz-article--oke .bz-article-content {
  color: #20242a;
  font-size: 18px;
  line-height: 1.82;
}
html[data-theme="dark"] .bz-article--oke .bz-article-content { color: var(--bz-ink); }

.bz-follow-card {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  margin: 26px 0;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid #e4e9f0;
  border-radius: 10px;
  box-shadow: 0 7px 24px rgba(24, 39, 75, 0.06);
}
.bz-follow-card__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #22c55e;
  border-radius: 12px;
  font-size: 20px;
  font-weight: 900;
}
.bz-follow-card--google .bz-follow-card__icon { background: #4285f4; }
.bz-follow-card__copy { min-width: 0; display: grid; gap: 2px; }
.bz-follow-card__copy strong { color: #171a20; font-size: 15px; line-height: 1.35; }
.bz-follow-card__copy span { color: #727d8c; font-size: 12px; line-height: 1.45; }
.bz-follow-card__button {
  min-width: 82px;
  min-height: 38px;
  display: inline-grid;
  place-items: center;
  padding: 0 15px;
  color: #fff;
  background: var(--bz-accent);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}
.bz-follow-card--whatsapp .bz-follow-card__button { background: #20b85a; }
.bz-follow-card__button.is-disabled { opacity: 0.72; cursor: default; }
html[data-theme="dark"] .bz-follow-card { background: var(--bz-surface); border-color: var(--bz-border); }
html[data-theme="dark"] .bz-follow-card__copy strong { color: var(--bz-ink); }

.bz-article--oke .bz-tags {
  margin: 24px 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--bz-border);
}
.bz-article--oke .bz-tags > span { width: 100%; margin-bottom: 4px; color: #222; font-size: 14px; }
.bz-article--oke .bz-tags a {
  color: var(--bz-accent);
  background: #f1f6ff;
  border: 1px solid #dce9ff;
}
.bz-article--oke .bz-article-bottom-share { padding-bottom: 24px; border-bottom: 1px solid var(--bz-border); }

.bz-article--oke .bz-related { margin-top: 34px; }
.bz-article--oke .bz-related-grid { gap: 18px; }
.bz-article--oke .bz-related-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  align-content: start;
  column-gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--bz-border);
}
.bz-article--oke .bz-related-card__media { grid-row: 1 / span 3; aspect-ratio: 16 / 10; border-radius: 8px; }
.bz-article--oke .bz-related-card .bz-post-meta { margin-top: 0; }
.bz-article--oke .bz-related-card h3 { margin: 5px 0 0; font-size: 16px; line-height: 1.42; }

.bz-explore-category {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 24px 0 30px;
  padding: 0 16px;
  color: var(--bz-accent);
  background: #f3f7ff;
  border: 1px solid #dfe9fb;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 800;
}
.bz-explore-category .bz-icon { width: 19px; height: 19px; }

.bz-article-popular { display: none; margin-top: 34px; }
.bz-article-popular__list { margin: 14px 0 0; padding: 0; list-style: none; }
.bz-article-popular__list li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid var(--bz-border);
}
.bz-article-popular__list li > span {
  color: var(--bz-accent);
  font-size: 26px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.06em;
}
.bz-article-popular__list a { font-size: 16px; line-height: 1.42; font-weight: 750; }

/* Okezone-inspired light footer with BanterZone identity. */
.site-footer.bz-oke-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: 36px;
  color: #24272d;
  background: #fbfbfc;
  border-top: 0;
}
.bz-footer-accent { position: relative; z-index: 2; height: 9px; background: var(--bz-accent); }
.bz-footer-pattern {
  position: absolute;
  inset: 9px 0 0;
  z-index: -1;
  overflow: hidden;
  background:
    linear-gradient(165deg, rgba(255,255,255,0) 0 36%, rgba(244,245,247,.74) 36.2% 52%, rgba(255,255,255,0) 52.2%),
    linear-gradient(18deg, rgba(255,255,255,0) 0 56%, rgba(246,247,249,.9) 56.2% 70%, rgba(255,255,255,0) 70.2%);
}
.bz-footer-pattern::before,
.bz-footer-pattern::after {
  content: "";
  position: absolute;
  width: 72vw;
  height: 230px;
  background: rgba(245, 246, 248, 0.72);
  transform: rotate(-10deg);
}
.bz-footer-pattern::before { top: 270px; left: -32vw; }
.bz-footer-pattern::after { bottom: 80px; right: -32vw; transform: rotate(12deg); }
.bz-footer-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 32px;
  padding-bottom: 38px;
  text-align: center;
}
.bz-footer-link-group { width: 100%; max-width: 980px; margin-bottom: 24px; }
.site-footer.bz-oke-footer h2 {
  margin: 0 0 13px;
  color: #22252b;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}
.bz-footer-inline-nav ul,
.site-footer.bz-oke-footer .bz-footer-inline-nav ul,
.site-footer.bz-oke-footer .bz-footer-link-group > ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 5px 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-footer.bz-oke-footer .bz-footer-inline-nav li,
.site-footer.bz-oke-footer .bz-footer-link-group > ul > li { position: relative; margin: 0; padding: 0 10px; }
.site-footer.bz-oke-footer .bz-footer-inline-nav li:not(:last-child)::after,
.site-footer.bz-oke-footer .bz-footer-link-group > ul > li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 17px;
  background: #8d929a;
  transform: translateY(-50%);
}
.site-footer.bz-oke-footer a { color: #272a30; font-size: 14px; }
.site-footer.bz-oke-footer a:hover { color: var(--bz-accent); }
.bz-wordmark--footer {
  display: inline-flex;
  margin: 14px auto 26px;
  font-size: clamp(44px, 5vw, 66px);
  line-height: 1;
}
.bz-wordmark--footer .bz-wordmark__channel { display: none; }
.bz-footer-apps { display: flex; align-items: center; justify-content: center; gap: 50px; margin-bottom: 28px; }
.site-footer.bz-oke-footer .bz-app-badge {
  min-width: 150px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 6px 13px;
  color: #fff;
  background: #030303;
  border-radius: 7px;
  text-align: left;
}
.site-footer.bz-oke-footer .bz-app-badge:hover { color: #fff; transform: translateY(-1px); }
.site-footer.bz-oke-footer .bz-app-badge .bz-icon { width: 29px; height: 29px; flex: 0 0 29px; }
.site-footer.bz-oke-footer .bz-app-badge span { display: grid; font-size: 16px; line-height: 1.08; font-weight: 750; }
.site-footer.bz-oke-footer .bz-app-badge small { font-size: 9px; font-weight: 500; text-transform: uppercase; }
.bz-footer-network-signature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 0 28px;
  color: #73777e;
  font-size: 16px;
  font-weight: 700;
}
.bz-footer-network-signature strong { color: #3d4653; font-size: 23px; line-height: 1; }
.bz-footer-social { margin-bottom: 24px; }
.site-footer.bz-oke-footer .bz-footer-social h2 { font-size: 16px; text-transform: none; }
.site-footer.bz-oke-footer .bz-social-links { justify-content: center; gap: 14px; }
.site-footer.bz-oke-footer .bz-social-link {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 9px;
}
.site-footer.bz-oke-footer .bz-social-link--instagram { background: linear-gradient(135deg, #7c3aed, #ec4899, #f59e0b); }
.site-footer.bz-oke-footer .bz-social-link--facebook { background: #4267b2; }
.site-footer.bz-oke-footer .bz-social-link--x-social { background: #1da1f2; }
.site-footer.bz-oke-footer .bz-social-link--youtube { background: #f00; }
.site-footer.bz-oke-footer .bz-social-link--tiktok { background: #090909; }
.site-footer.bz-oke-footer .bz-social-link .bz-icon { width: 23px; height: 23px; }
.bz-footer-copyright { margin: 0; color: #5e6269; font-size: 12px; font-weight: 650; }

html[data-theme="dark"] .site-footer.bz-oke-footer { color: var(--bz-ink); background: #101827; }
html[data-theme="dark"] .bz-footer-pattern { opacity: .12; }
html[data-theme="dark"] .site-footer.bz-oke-footer h2,
html[data-theme="dark"] .site-footer.bz-oke-footer a,
html[data-theme="dark"] .bz-footer-network-signature strong { color: var(--bz-ink); }
html[data-theme="dark"] .bz-footer-network-signature,
html[data-theme="dark"] .bz-footer-copyright { color: #a9b5c7; }

@media (max-width: 900px) {
  .bz-article--oke .bz-related-grid { grid-template-columns: 1fr; }
  .bz-article-popular { display: block; }
}

@media (max-width: 768px) {
  .bz-single-main { padding-top: 26px; }
  .bz-article--oke .bz-breadcrumb {
    margin-bottom: 22px;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
  }
  .bz-article--oke .bz-breadcrumb span[aria-current="page"] { display: none; }
  .bz-article--oke .bz-article-header h1 {
    margin-bottom: 15px;
    font-size: clamp(29px, 8.2vw, 36px);
    line-height: 1.22;
    letter-spacing: -0.025em;
  }
  .bz-article--oke .bz-article-toolbar {
    min-height: 72px;
    margin: 0 -16px 16px;
    padding: 10px 16px;
    background: #eaf2ff;
  }
  .bz-article--oke .bz-article-meta {
    align-items: flex-start;
    margin-bottom: 16px;
    padding-bottom: 15px;
  }
  .bz-article--oke .bz-author-avatar img { width: 38px; height: 38px; }
  .bz-article--oke .bz-featured-image { margin: 0 -16px 20px; border-radius: 0; }
  .bz-article--oke .bz-featured-image figcaption { padding: 8px 16px 0; }
  .bz-article--oke .bz-article-content { font-size: 17px; line-height: 1.78; }
  .bz-follow-card {
    grid-template-columns: 42px minmax(0, 1fr) auto;
    gap: 10px;
    margin: 22px 0;
    padding: 14px 12px;
  }
  .bz-follow-card__icon { width: 38px; height: 38px; border-radius: 10px; font-size: 18px; }
  .bz-follow-card__copy strong { font-size: 13px; }
  .bz-follow-card__copy span { font-size: 11px; }
  .bz-follow-card__button { min-width: 64px; min-height: 34px; padding: 0 11px; font-size: 12px; }
  .bz-article--oke .bz-related-card {
    grid-template-columns: 122px minmax(0, 1fr);
    gap: 12px;
  }
  .bz-article--oke .bz-related-card h3 { font-size: 15px; }
  .bz-footer-content { min-height: 980px; padding-top: 30px; padding-bottom: 70px; }
  .bz-footer-link-group { margin-bottom: 26px; }
  .site-footer.bz-oke-footer h2 { font-size: 17px; }
  .site-footer.bz-oke-footer a { font-size: 13px; }
  .site-footer.bz-oke-footer .bz-footer-inline-nav li,
  .site-footer.bz-oke-footer .bz-footer-link-group > ul > li { padding-inline: 9px; }
  .bz-wordmark--footer { margin-top: 18px; font-size: 54px; }
  .bz-footer-apps { gap: 34px; }
  .site-footer.bz-oke-footer .bz-app-badge { min-width: 140px; }
}

@media (max-width: 430px) {
  .bz-follow-card { grid-template-columns: 38px minmax(0, 1fr); }
  .bz-follow-card__button { grid-column: 1 / -1; width: 100%; }
  .bz-footer-content { min-height: 920px; }
  .bz-footer-apps { gap: 16px; }
  .site-footer.bz-oke-footer .bz-app-badge { min-width: 138px; padding-inline: 10px; }
  .bz-footer-network-signature { flex-direction: column; gap: 5px; }
}


/* Homepage category modules v1.0.5 */
.bz-category-module { padding-top: 4px; }
.bz-category-module__heading { margin-bottom: 18px; }
.bz-category-module__heading h2 { text-transform: none; }
.bz-category-mixed {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .9fr);
  gap: 22px;
  align-items: start;
}
.bz-category-lead__media,
.bz-category-grid-card__media,
.bz-category-list-card__media,
.bz-category-wide-card__media {
  display: block;
  overflow: hidden;
  background: var(--bz-soft);
  border-radius: 10px;
}
.bz-category-lead__media { aspect-ratio: 16 / 9; }
.bz-category-grid-card__media { aspect-ratio: 16 / 10; }
.bz-category-list-card__media,
.bz-category-wide-card__media { aspect-ratio: 16 / 10; }
.bz-category-module img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.bz-category-module article:hover img { transform: scale(1.035); }
.bz-category-lead .bz-post-meta { margin-top: 12px; }
.bz-category-lead h3 { margin: 7px 0 8px; font-size: clamp(23px, 3vw, 31px); line-height: 1.28; letter-spacing: -.035em; }
.bz-category-lead p,
.bz-category-wide-card p { margin: 0; color: var(--bz-muted); line-height: 1.58; }
.bz-category-mixed__list { display: grid; }
.bz-category-list-card {
  display: grid;
  grid-template-columns: 138px minmax(0, 1fr);
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--bz-border);
}
.bz-category-list-card:first-child { padding-top: 0; }
.bz-category-list-card h3 { margin: 1px 0 7px; font-size: 16px; line-height: 1.4; }
.bz-category-list-card .bz-post-meta { font-size: 11px; }
.bz-category-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.bz-category-grid-card { min-width: 0; }
.bz-category-grid-card .bz-post-meta { margin-top: 10px; }
.bz-category-grid-card h3 { margin: 6px 0 0; font-size: 17px; line-height: 1.42; }
.bz-category-list-layout { display: grid; gap: 0; }
.bz-category-wide-card {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--bz-border);
}
.bz-category-wide-card:first-child { padding-top: 0; }
.bz-category-wide-card h3 { margin: 7px 0 8px; font-size: 21px; line-height: 1.34; letter-spacing: -.02em; }

/* Related posts are anchored directly below article content. */
.bz-article--oke .bz-article-content + .bz-related {
  margin-top: 38px;
  padding-top: 28px;
  border-top: 1px solid var(--bz-border);
}

@media (max-width: 900px) {
  .bz-category-mixed { grid-template-columns: 1fr; }
  .bz-category-mixed__list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 20px; }
  .bz-category-list-card { padding-top: 13px; }
  .bz-category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
  .bz-category-module { margin-bottom: 36px; }
  .bz-category-module__heading { margin-bottom: 14px; }
  .bz-category-mixed__list { grid-template-columns: 1fr; gap: 0; }
  .bz-category-list-card { grid-template-columns: 126px minmax(0, 1fr); }
  .bz-category-grid { gap: 16px 12px; }
  .bz-category-grid-card h3 { font-size: 15px; line-height: 1.4; }
  .bz-category-wide-card { grid-template-columns: 130px minmax(0, 1fr); gap: 13px; padding: 14px 0; }
  .bz-category-wide-card h3 { margin: 4px 0 0; font-size: 16px; line-height: 1.4; }
  .bz-category-wide-card p { display: none; }
  .bz-article--oke .bz-article-content + .bz-related { margin-top: 30px; padding-top: 24px; }
}

@media (max-width: 430px) {
  .bz-category-grid { grid-template-columns: 1fr; }
  .bz-category-grid-card { display: grid; grid-template-columns: 124px minmax(0, 1fr); gap: 12px; }
  .bz-category-grid-card__media { grid-row: 1 / span 3; }
  .bz-category-grid-card .bz-post-meta { margin-top: 0; }
  .bz-category-grid-card h3 { margin-top: 5px; }
}

/* --------------------------------------------------------------------------
 * BanterZone v1.0.6 — desktop Okezone-style header states and mega menu.
 * Existing mobile header, search overlay, article layout, footer, ads, and
 * homepage sections are preserved.
 * -------------------------------------------------------------------------- */

.bz-desktop-header { display: block; }
.bz-mobile-header { display: none; }

.bz-desktop-topline {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
}
.bz-desktop-topline__inner {
  min-height: 54px;
  display: grid;
  grid-template-columns: auto minmax(260px, 320px) 1fr auto;
  align-items: center;
  gap: 18px;
}
.bz-desktop-hub-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0;
  color: #1f2937;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.bz-desktop-hub-toggle .bz-icon { width: 18px; height: 18px; }
.bz-desktop-hub-toggle__icon {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  color: #2563eb;
  border-radius: 999px;
}
.bz-desktop-hub-toggle__chevron .bz-icon { width: 14px; height: 14px; transition: transform .2s ease; }
.site-header.has-desktop-mega .bz-desktop-hub-toggle__chevron .bz-icon { transform: rotate(90deg); }

.bz-desktop-topline__search .bz-search-form { display: flex; align-items: center; gap: 8px; }
.bz-desktop-topline__search .bz-search-field,
.bz-desktop-mega__search .bz-search-field {
  width: 100%;
  height: 38px;
  padding: 0 14px;
  border: 1px solid #d1d5db;
  border-radius: 999px;
  background: #fff;
  font-size: 13px;
}
.bz-desktop-topline__search .bz-search-submit,
.bz-desktop-mega__search .bz-search-submit { display: none; }

.bz-desktop-follow {
  grid-column: 3;
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
  min-width: 0;
}
.bz-desktop-follow__label { color: #111827; font-size: 12px; font-weight: 700; white-space: nowrap; }
.bz-desktop-follow .bz-social-links { gap: 6px; }
.bz-desktop-follow .bz-social-link {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  color: #fff;
}
.bz-desktop-login {
  grid-column: 4;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #dc2626;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}
.bz-desktop-login .bz-icon { width: 18px; height: 18px; }

.bz-desktop-brandbar {
  background: #fff;
  border-bottom: 1px solid #eceff3;
}
.bz-desktop-brandbar__inner {
  min-height: 110px;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  align-items: center;
  gap: 28px;
}
.bz-desktop-brandbar__inner .custom-logo { max-width: 180px; max-height: 56px; }
.bz-desktop-brandad__box {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(37,99,235,0.06), rgba(37,99,235,0.01));
  border: 1px solid #e5e7eb;
}

.bz-desktop-primary {
  background: #2563eb;
  border-bottom: 1px solid #1d4ed8;
}
.bz-desktop-primary__inner { overflow-x: auto; scrollbar-width: none; }
.bz-desktop-primary__inner::-webkit-scrollbar { display: none; }
.bz-desktop-primary-menu {
  min-height: 44px;
  display: flex;
  align-items: stretch;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  white-space: nowrap;
}
.bz-desktop-primary-menu > li { position: relative; }
.bz-desktop-primary-menu > li > a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
.bz-desktop-primary-menu > li.current-menu-item > a,
.bz-desktop-primary-menu > li.current-category-ancestor > a { background: rgba(255,255,255,.08); }
.bz-desktop-primary-menu > li.current-menu-item::after,
.bz-desktop-primary-menu > li.current-category-ancestor::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 0;
  height: 3px;
  background: #ef4444;
  border-radius: 4px 4px 0 0;
}

.bz-desktop-network-row {
  background: #f3f4f6;
  border-bottom: 1px solid #e5e7eb;
}
.bz-desktop-network-row__inner,
.bz-desktop-hot-row__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 12px;
  overflow: hidden;
}
.bz-desktop-network-row__label {
  flex: 0 0 auto;
  color: #374151;
  font-size: 12px;
  font-weight: 700;
}
.bz-inline-links ul {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.bz-inline-links a {
  color: #111827;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.bz-inline-links--hot ul { gap: 20px; }
.bz-inline-links--hot a { font-size: 14px; }
.bz-inline-links--hot li:not(:last-child)::after {
  content: "•";
  margin-left: 18px;
  color: #ef4444;
}
.bz-inline-links--network a { font-size: 13px; }

.bz-desktop-hot-row {
  background: #fff;
  border-bottom: 1px solid #eceff3;
}

.bz-desktop-stickybar {
  display: none;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
}
.bz-desktop-stickybar__inner {
  min-height: 42px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
}
.bz-desktop-stickybar__menu { min-width: 0; overflow: hidden; }
.bz-desktop-sticky-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
  white-space: nowrap;
}
.bz-desktop-sticky-menu > li > a {
  color: #111827;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
.bz-desktop-login--sticky { color: #b91c1c; font-size: 13px; }

.site-header.is-stuck .bz-desktop-topline,
.site-header.is-stuck .bz-desktop-brandbar,
.site-header.is-stuck .bz-desktop-primary,
.site-header.is-stuck .bz-desktop-network-row,
.site-header.is-stuck .bz-desktop-hot-row { display: none; }
.site-header.is-stuck .bz-desktop-stickybar { display: block; }
.site-header.has-desktop-mega .bz-desktop-stickybar { display: block; }
.site-header.has-desktop-mega .bz-desktop-topline,
.site-header.has-desktop-mega .bz-desktop-brandbar,
.site-header.has-desktop-mega .bz-desktop-primary,
.site-header.has-desktop-mega .bz-desktop-network-row,
.site-header.has-desktop-mega .bz-desktop-hot-row { display: none; }

.bz-desktop-mega {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
}
.bz-desktop-mega__inner {
  margin-top: 0;
  padding: 22px 28px 20px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-top: 0;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.14);
}
.bz-desktop-mega__masthead {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 420px);
  align-items: center;
  gap: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid #edf2f7;
}
.bz-desktop-mega__branding .custom-logo { max-width: 150px; max-height: 42px; }
.bz-desktop-mega__quicklinks { padding: 16px 0 12px; }
.bz-desktop-mega__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.8fr);
  gap: 28px;
}
.bz-desktop-mega__section h3 {
  margin: 0 0 16px;
  color: #111827;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
}
.bz-desktop-mega .bz-drawer-grid--channels {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 18px;
}
.bz-desktop-mega .bz-drawer-grid--network {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
}
.bz-desktop-mega .bz-drawer-grid__item {
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.bz-desktop-mega .bz-drawer-grid__icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border-radius: 999px;
}
.bz-desktop-mega .bz-drawer-grid__label { font-size: 13px; font-weight: 700; }
.bz-desktop-mega .bz-drawer-grid__trailing { display: none; }

@media (max-width: 1180px) {
  .bz-desktop-topline__inner { grid-template-columns: auto minmax(220px, 280px) 1fr auto; gap: 14px; }
  .bz-desktop-follow__label { display: none; }
  .bz-desktop-primary-menu > li > a { padding-inline: 11px; font-size: 12px; }
  .bz-desktop-sticky-menu { gap: 18px; }
  .bz-desktop-mega .bz-drawer-grid--channels { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .bz-desktop-header { display: none; }
  .bz-mobile-header { display: block; }
}

/* --------------------------------------------------------------------------
 * BanterZone v1.0.7 — stable desktop sticky header, visual related news,
 * horizontal footer social icons.
 * -------------------------------------------------------------------------- */

@media (min-width: 901px) {
  .bz-has-sticky-header .site-header {
    position: relative;
    top: auto;
  }

  /* Keep the expanded header in normal document flow. This prevents the
     height from collapsing at the sticky threshold and removes flicker. */
  .site-header.is-stuck .bz-desktop-topline,
  .site-header.is-stuck .bz-desktop-brandbar,
  .site-header.is-stuck .bz-desktop-primary,
  .site-header.is-stuck .bz-desktop-network-row,
  .site-header.is-stuck .bz-desktop-hot-row,
  .site-header.has-desktop-mega .bz-desktop-topline,
  .site-header.has-desktop-mega .bz-desktop-brandbar,
  .site-header.has-desktop-mega .bz-desktop-primary,
  .site-header.has-desktop-mega .bz-desktop-network-row,
  .site-header.has-desktop-mega .bz-desktop-hot-row {
    display: block;
  }

  .site-header.has-desktop-mega:not(.is-stuck) .bz-desktop-stickybar {
    display: none;
  }

  .site-header.is-stuck .bz-desktop-stickybar {
    position: fixed;
    z-index: 1250;
    top: 0;
    right: 0;
    left: 0;
    display: block;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
  }

  body.admin-bar .site-header.is-stuck .bz-desktop-stickybar {
    top: 32px;
  }

  .site-header.is-stuck .bz-desktop-mega {
    position: fixed;
    z-index: 1249;
    top: 42px;
    right: 0;
    left: 0;
  }

  body.admin-bar .site-header.is-stuck .bz-desktop-mega {
    top: 74px;
  }

  .site-header.is-stuck {
    box-shadow: none;
    backdrop-filter: none;
  }
}

/* Related news: three-column visual grid, matching the supplied reference. */
.bz-related--visual {
  margin-top: 38px;
  padding-top: 28px;
  border-top: 1px solid var(--bz-border);
}
.bz-related-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--bz-accent);
}
.bz-related-heading__icon {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 30px;
}
.bz-related-heading__icon .bz-icon { width: 27px; height: 27px; }
.bz-related-heading h2 {
  margin: 0;
  color: var(--bz-accent);
  font-size: clamp(23px, 2.5vw, 31px);
  line-height: 1.15;
  font-weight: 850;
  letter-spacing: -0.025em;
}
.bz-article--oke .bz-related--visual .bz-related-grid,
.bz-related--visual .bz-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 24px;
}
.bz-article--oke .bz-related--visual .bz-related-card,
.bz-related--visual .bz-related-card {
  display: block;
  min-width: 0;
}
.bz-article--oke .bz-related--visual .bz-related-card__media,
.bz-related--visual .bz-related-card__media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 12px;
  background: var(--bz-soft);
}
.bz-related--visual .bz-related-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
}
.bz-related--visual .bz-related-card:hover .bz-related-card__media img { transform: scale(1.035); }
.bz-related--visual .bz-related-card .bz-post-meta { display: none; }
.bz-article--oke .bz-related--visual .bz-related-card h3,
.bz-related--visual .bz-related-card h3 {
  margin: 13px 0 0;
  font-size: 19px;
  line-height: 1.42;
  font-weight: 800;
  letter-spacing: -0.015em;
}

/* Special News slider below related posts. */
.bz-special-news {
  margin-top: 30px;
  background: var(--bz-soft);
  border: 1px solid var(--bz-border);
}
.bz-special-news__head {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 7px 12px 7px 18px;
  border-bottom: 1px solid var(--bz-border);
}
.bz-special-news__head h3 {
  margin: 0;
  color: var(--bz-accent);
  font-size: 20px;
  font-weight: 850;
}
.bz-special-news__controls { display: flex; gap: 8px; }
.bz-special-news__controls button {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--bz-accent);
  background: var(--bz-surface);
  border: 1px solid var(--bz-accent);
  border-radius: 6px;
  cursor: pointer;
}
.bz-special-news__controls button:disabled { opacity: .4; cursor: default; }
.bz-special-news__controls .bz-icon { width: 22px; height: 22px; }
.bz-special-news__track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 14px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.bz-special-news__track::-webkit-scrollbar { display: none; }
.bz-special-news__card {
  flex: 0 0 calc((100% - 42px) / 4);
  min-width: 190px;
  scroll-snap-align: start;
}
.bz-special-news__media {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 5px;
  background: var(--bz-surface);
}
.bz-special-news__media img { width: 100%; height: 100%; object-fit: cover; }
.bz-special-news__card h4 {
  margin: 8px 0 0;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 800;
}

/* Force footer social icons into a single horizontal row on every device. */
.site-footer.bz-oke-footer .bz-footer-social .bz-social-links {
  width: 100%;
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.site-footer.bz-oke-footer .bz-footer-social .bz-social-links::-webkit-scrollbar { display: none; }
.site-footer.bz-oke-footer .bz-footer-social .bz-social-link { flex: 0 0 42px; }

@media (max-width: 900px) {
  .bz-article--oke .bz-related--visual .bz-related-grid,
  .bz-related--visual .bz-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .bz-special-news__card { flex-basis: calc((100% - 28px) / 3); }
}

@media (max-width: 560px) {
  .bz-related-heading { margin-bottom: 16px; }
  .bz-related-heading h2 { font-size: 24px; }
  .bz-article--oke .bz-related--visual .bz-related-grid,
  .bz-related--visual .bz-related-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .bz-article--oke .bz-related--visual .bz-related-card,
  .bz-related--visual .bz-related-card {
    display: grid;
    grid-template-columns: 128px minmax(0, 1fr);
    gap: 13px;
    align-items: start;
  }
  .bz-article--oke .bz-related--visual .bz-related-card__media,
  .bz-related--visual .bz-related-card__media {
    aspect-ratio: 4 / 3;
    grid-row: 1;
  }
  .bz-article--oke .bz-related--visual .bz-related-card h3,
  .bz-related--visual .bz-related-card h3 {
    margin-top: 0;
    font-size: 16px;
    line-height: 1.4;
  }
  .bz-special-news__card { flex-basis: 74vw; min-width: 220px; }
  .bz-special-news__head h3 { font-size: 18px; }
  .bz-special-news__controls button { width: 36px; height: 36px; }
  .site-footer.bz-oke-footer .bz-footer-social .bz-social-links {
    justify-content: flex-start;
    max-width: 260px;
    margin-inline: auto;
  }
}

/* --------------------------------------------------------------------------
 * BanterZone v1.0.8 — bounded parallax advertisements.
 * The sticky creative is constrained by its own track, so it never escapes
 * the article/content column or sidebar and always stops before the footer.
 * -------------------------------------------------------------------------- */

.bz-sidebar-sticky {
  position: relative;
  top: auto;
  min-width: 0;
}

.bz-parallax-ad {
  position: relative;
  width: 100%;
  min-width: 0;
  margin: 34px 0;
  isolation: isolate;
}

.bz-parallax-ad__track {
  position: relative;
  min-height: 760px;
  width: 100%;
}

.bz-parallax-ad__sticky {
  position: sticky;
  top: calc(var(--bz-header-offset) + 20px);
  width: 100%;
  min-width: 0;
}

.bz-parallax-ad__frame {
  position: relative;
  width: 100%;
  height: 430px;
  min-width: 0;
  overflow: hidden;
  background: color-mix(in srgb, var(--bz-soft) 88%, var(--bz-surface));
  border: 1px solid var(--bz-border);
  border-radius: 14px;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
  contain: paint;
}

.bz-ad--parallax {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: grid;
  place-items: center;
  margin: 0;
  overflow: hidden;
  background: transparent;
}

.bz-ad--parallax > a,
.bz-ad--parallax > iframe,
.bz-ad--parallax > video,
.bz-ad--parallax > ins {
  max-width: 100%;
}

.bz-ad--parallax > a {
  width: 100%;
  height: 100%;
  display: block;
}

.bz-ad--parallax img {
  width: 100%;
  max-width: none;
  height: 100%;
  margin: 0;
  object-fit: cover;
}

.bz-ad--parallax iframe,
.bz-ad--parallax video {
  width: 100%;
  height: 100%;
  border: 0;
}

.bz-ad--corner-label .bz-ad__label {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  margin: 0;
  padding: 3px 8px;
  color: #475569;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  pointer-events: none;
}

.bz-parallax-ad .bz-ad--placeholder {
  height: 100%;
  min-height: 100%;
  border-radius: 0;
  border: 0;
}

/* Content-column unit: wide but strictly clipped to the content width. */
.bz-parallax-ad--content {
  max-width: 100%;
  clear: both;
}

/* Sidebar unit: 300x600-style creative, bounded by the sidebar column. */
.bz-parallax-ad--sidebar {
  width: 100%;
  max-width: var(--bz-sidebar);
  margin: 0 0 28px;
}

.bz-parallax-ad--sidebar .bz-parallax-ad__track {
  min-height: 900px;
}

.bz-parallax-ad--sidebar .bz-parallax-ad__frame {
  height: 600px;
  border-radius: 10px;
}

.bz-parallax-ad--sidebar .bz-parallax-ad__sticky {
  top: calc(var(--bz-header-offset) + 18px);
}

/* Keep article typography from affecting ad internals. */
.bz-article-content .bz-parallax-ad,
.bz-article-content .bz-parallax-ad * {
  box-sizing: border-box;
}

.bz-article-content .bz-parallax-ad {
  margin-block: 38px;
  font-size: initial;
  line-height: normal;
}

@media (max-width: 1050px) {
  .bz-parallax-ad__track { min-height: 700px; }
  .bz-parallax-ad__frame { height: 400px; }
  .bz-parallax-ad--sidebar .bz-parallax-ad__track { min-height: 840px; }
  .bz-parallax-ad--sidebar .bz-parallax-ad__frame { height: 560px; }
}

@media (max-width: 900px) {
  /* Mobile/tablet uses a normal in-flow unit to avoid viewport trapping. */
  .bz-parallax-ad {
    margin: 26px 0;
  }

  .bz-parallax-ad__track {
    min-height: 0;
  }

  .bz-parallax-ad__sticky {
    position: relative;
    top: auto;
  }

  .bz-parallax-ad__frame {
    height: auto;
    min-height: 260px;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
  }

  .bz-parallax-ad--sidebar { display: none; }
}

@media (max-width: 520px) {
  .bz-article-content .bz-parallax-ad {
    width: auto;
    margin-inline: -16px;
  }

  .bz-article-content .bz-parallax-ad__frame {
    border-radius: 0;
    border-inline: 0;
  }
}

/* --------------------------------------------------------------------------
 * BanterZone v1.0.9 — fixed-creative parallax for home and article columns.
 * Based on the supplied v2.3.20 reference: the creative stays visually fixed
 * while a short clipped viewport scrolls over it. No tall artificial track.
 * -------------------------------------------------------------------------- */

.bz-parallax-window {
  position: relative;
  display: block;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 28px 0;
  overflow: hidden;
  border-radius: 8px;
  isolation: isolate;
}

.bz-parallax-window__label {
  position: absolute;
  z-index: 3;
  top: 8px;
  left: 10px;
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 3px 8px;
  color: #fff;
  background: rgba(0, 0, 0, 0.52);
  border-radius: 3px;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  pointer-events: none;
}

.bz-parallax-window__viewport {
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
  height: 340px;
  max-height: 55vh;
  overflow: hidden;
  border-radius: inherit;
  background: color-mix(in srgb, var(--bz-accent) 30%, #0f3f92);
  contain: paint;
}

.bz-parallax-window__inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  backface-visibility: hidden;
}

.bz-parallax-window__inner.is-parallax {
  will-change: transform;
}

.bz-parallax-window__image {
  display: block;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.bz-parallax-window__code {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.bz-parallax-window__code iframe,
.bz-parallax-window__code img,
.bz-parallax-window__code ins,
.bz-parallax-window__code video {
  max-width: 100% !important;
}

.bz-parallax-window__code iframe,
.bz-parallax-window__code video {
  width: 100% !important;
  height: 100% !important;
  border: 0;
}

.bz-parallax-window__placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
  gap: 8px;
  text-align: center;
  color: #e2e8f0;
  background: linear-gradient(135deg, #16439c, #087ab8);
}

.bz-parallax-window__placeholder a {
  color: #fff;
  text-decoration: underline;
}

.bz-article-content .bz-parallax-window {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  font-size: initial;
  line-height: normal;
}

@media (max-width: 900px) {
  .bz-parallax-window {
    margin: 18px 0;
    border-radius: 5px;
  }

  .bz-parallax-window__viewport {
    height: 220px;
    max-height: 45vh;
  }
}

@media (max-width: 480px) {
  .bz-parallax-window {
    margin: 15px 0;
  }

  .bz-parallax-window__viewport {
    max-height: 40vh;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bz-parallax-window__inner {
    height: 100% !important;
    transform: none !important;
    will-change: auto !important;
  }
}


/* BanterZone v1.1.1 — configurable account and globe icons. */
.bz-custom-header-icon {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
}
.bz-desktop-hub-toggle__icon .bz-custom-header-icon,
.bz-desktop-hub-toggle > .bz-custom-header-icon { width: 18px; height: 18px; }
.bz-desktop-login .bz-custom-header-icon { width: 18px; height: 18px; flex: 0 0 18px; }
.bz-drawer-login__avatar .bz-custom-header-icon { width: 30px; height: 30px; }
.bz-drawer-login--text-only { padding-left: 0; }
.bz-globe-button { text-decoration: none; }
.bz-globe-button .bz-custom-header-icon { width: 27px; height: 27px; }
@media (max-width: 900px) {
  .bz-header-actions { gap: 2px; }
  .bz-globe-button .bz-icon { width: 25px; height: 25px; }
}

/* BanterZone v1.1.2 — customizable social icons shared by header and footer. */
.bz-social-link.has-custom-icon {
  overflow: hidden;
  padding: 0;
  background: transparent !important;
}
.bz-social-link__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: inherit;
}

/* BanterZone v1.1.3 — bundled global color-circle social icons. */
.bz-social-links {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 0;
}
.bz-social-link,
.bz-social-link.has-custom-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: inline-grid;
  place-items: center;
  overflow: hidden;
  padding: 0;
  color: inherit;
  background: transparent !important;
  border: 0;
  border-radius: 999px;
  box-shadow: none;
  line-height: 0;
  transition: transform .18s ease, opacity .18s ease;
}
.bz-social-link:hover {
  opacity: .88;
  transform: translateY(-2px);
}
.bz-social-link:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--bz-accent) 45%, transparent);
  outline-offset: 3px;
}
.bz-social-link__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 999px;
}
.bz-desktop-follow .bz-social-links {
  max-width: 350px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
}
.bz-desktop-follow .bz-social-links::-webkit-scrollbar { display: none; }
.bz-desktop-follow .bz-social-link {
  width: 24px;
  height: 24px;
  flex-basis: 24px;
  border-radius: 999px;
}
.bz-mobile-search-footer__social .bz-social-links,
.site-footer.bz-oke-footer .bz-footer-social .bz-social-links {
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
}
.bz-mobile-search-footer__social .bz-social-links::-webkit-scrollbar,
.site-footer.bz-oke-footer .bz-footer-social .bz-social-links::-webkit-scrollbar {
  display: none;
}

