/* ═══════════════════════════════════════════════════
   GMNI Universe · Single Article
   ═══════════════════════════════════════════════════ */

/* ── Layout ── */
.sa-wrap {
  position: relative; 
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

.sa-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  align-items: start;
}

/* ── Breadcrumb ── */
.sa-breadcrumb {
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.5px;
  color: var(--white-dim);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.sa-breadcrumb a { color: var(--white-dim); }
.sa-breadcrumb a:hover { color: var(--white); }
.sa-breadcrumb-sep { color: var(--steel-dim); }
.sa-breadcrumb-current { color: var(--steel); }

/* ── Category badges ── */
.sa-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.sa-cat-badge {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--red-bright);
  background: rgba(196, 30, 30, 0.12);
  border: 1px solid rgba(196, 30, 30, 0.3);
  border-radius: 3px;
  padding: 3px 10px;
}

/* ── Title ── */
.sa-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.25;
  color: var(--white);
  margin-bottom: 14px;
}

/* ── Excerpt ── */
.sa-excerpt {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--white-dim);
  font-style: italic;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

/* ── Author card ── */
.sa-author-card {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.sa-author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(196,30,30,0.4);
  flex-shrink: 0;
}
.sa-author-avatar-placeholder {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy-3);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--steel);
}
.sa-author-name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--white);
}
.sa-author-role {
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.3px;
  color: var(--steel);
  margin-top: 2px;
}

/* ── Meta card ── */
.sa-meta-card {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 18px;
  margin-bottom: 32px;
  padding: 12px 16px;
  background: var(--navy-2);
  border: 1px solid var(--border);
  border-radius: 6px;
}
.sa-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-label);
  font-size: 12.5px;
  letter-spacing: 0.3px;
  color: var(--white-dim);
}
.sa-meta-icon {
  color: var(--steel-dim);
  flex-shrink: 0;
}

/* ── Content ── */
.sa-content {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  color: var(--white);
  margin-bottom: 36px;
}
.sa-content p {
  margin-bottom: 1.25em;
}
.sa-content h2 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 22px;
  color: var(--white);
  margin: 2em 0 0.75em;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.sa-content h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  margin: 1.75em 0 0.5em;
}
.sa-content h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--white-dim);
  margin: 1.5em 0 0.5em;
}
.sa-content strong { color: var(--white); font-weight: 700; }
.sa-content em { color: inherit; }
.sa-content a { color: var(--red-bright); text-decoration: underline; }
.sa-content a:hover { color: var(--gold); }
.sa-content ul,
.sa-content ol {
  padding-left: 24px;
  margin-bottom: 1.25em;
}
.sa-content li { margin-bottom: 0.4em; }
.sa-content blockquote {
  border-left: 3px solid var(--red);
  background: var(--navy-2);
  margin: 1.5em 0;
  padding: 14px 20px;
  color: var(--white-dim);
  font-style: italic;
  border-radius: 0 4px 4px 0;
}
.sa-content pre,
.sa-content code {
  font-family: monospace;
  background: var(--navy-3);
  border-radius: 4px;
  font-size: 14px;
  color: var(--gold-light);
}
.sa-content pre {
  padding: 16px;
  overflow-x: auto;
  margin-bottom: 1.25em;
}
.sa-content code { padding: 2px 6px; }
/* Quill alignment */
.sa-content .ql-align-center { text-align: center; }
.sa-content .ql-align-right  { text-align: right; }
.sa-content .ql-align-justify { text-align: justify; }
.sa-content .ql-indent-1 { padding-left: 2em; }
.sa-content .ql-indent-2 { padding-left: 4em; }
/* Inline figure (gambar di dalam konten) */
.sa-content figure {
  margin: 1.75em auto;
  max-width: 88%;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.sa-content figure img {
  width: 100%;
  display: block;
  object-fit: cover;
  margin: 0;
  border-radius: 0;
}
.sa-content figcaption {
  padding: 8px 14px;
  font-size: 13px;
  color: var(--steel);
  font-style: italic;
  border-top: 1px solid var(--border);
  line-height: 1.5;
}

/* Featured image */
.sa-featured-image {
  margin: 0 0 32px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.sa-featured-image img {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.sa-featured-image figcaption {
  padding: 10px 14px;
  font-size: 12px;
  color: var(--steel);
  font-style: italic;
  border-top: 1px solid var(--border);
}

.sa-content img {
  max-width: 100%;
  border-radius: 6px;
  margin: 8px 0;
}

/* ── Tags section ── */
.sa-tags-section {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  margin-bottom: 40px;
}
.sa-tags-label {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 10px;
}
.sa-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.sa-tag {
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.3px;
  color: var(--white-dim);
  background: var(--navy-3);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 4px 12px;
  transition: var(--transition);
}
.sa-tag:hover {
  border-color: var(--steel-dim);
  color: var(--white);
}

/* ── Related articles ── */
.sa-related { margin-top: 40px; }
.sa-related-title {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.sa-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.sa-related-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: var(--transition);
}
.sa-related-card:hover {
  border-color: var(--steel-dim);
  transform: translateY(-2px);
}
.sa-related-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.sa-related-card-img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--navy-3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sa-related-card-img-placeholder svg { opacity: 0.2; }
.sa-related-card-body { padding: 12px; }
.sa-related-card-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  line-height: 1.4;
  color: var(--white);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 8px;
}
.sa-related-card-meta {
  font-family: var(--font-label);
  font-size: 11px;
  color: var(--steel);
  letter-spacing: 0.3px;
}

/* ── Baca Juga ── */
.baca-juga-wrap {
  margin: 32px 0;
}
.baca-juga-card,
.baca-juga-card:hover,
.baca-juga-card *,
.baca-juga-card:hover * {
  text-decoration: none !important;
}
.baca-juga-card {
  display: block;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.09);
  border-left: 3px solid var(--red);
  border-radius: 8px;
  padding: 10px 14px;
  color: inherit;
  transition: background 0.2s, border-color 0.2s;
}
.baca-juga-card:hover {
  background: rgba(196,30,30,0.06);
  border-color: rgba(196,30,30,0.4);
  border-left-color: var(--red);
}
.baca-juga-label {
  display: block;
  font-family: var(--font-label);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  margin-bottom: 8px;
}
.baca-juga-body {
  display: flex;
  align-items:start;
  gap: 10px;
}

.baca-juga-body img {margin: 0;}

.baca-juga-img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
  margin: 0;
}
.baca-juga-img-placeholder {
  width: 72px;
  height: 72px;
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
  flex-shrink: 0;
  margin: 0;
}
.baca-juga-title {
  font-family: var(--font-body);
  font-size: 16px;
  color: #fff;
  line-height: 1.4;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Sidebar ── */
.sa-sidebar { }
.sa-sidebar-box {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 24px;
}
.sa-sidebar-head {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--steel);
}
/* .sa-sidebar-list { padding: 8px 0; } */
.sa-sidebar-empty { padding: 16px; font-family: var(--font-label); font-size: 13px; color: var(--steel); }
.sa-sidebar-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 16px;
  transition: var(--transition);
  border-bottom: 1px solid var(--border);
}
.sa-sidebar-item:last-child { border-bottom: none; }
.sa-sidebar-item:hover { background: rgba(255,255,255,0.03); }
.sa-sidebar-thumb {
  width: 72px;
  height: 54px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}
.sa-sidebar-thumb-placeholder {
  width: 72px;
  height: 54px;
  background: var(--navy-3);
  border-radius: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sa-sidebar-item-content { flex: 1; min-width: 0; }
.sa-sidebar-item-title {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--white);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 4px;
  transition: var(--transition);
}
.sa-sidebar-item:hover .sa-sidebar-item-title { color: var(--red-bright); }
.sa-sidebar-item-meta {
  font-family: var(--font-label);
  font-size: 11px;
  color: var(--steel);
  letter-spacing: 0.3px;
}

/* ── Responsive single article ── */
@media (max-width: 900px) {
  .sa-layout {
    grid-template-columns: 1fr;
  }
  .sa-sidebar {
    position: static;
  }
  .sa-related-grid {
    grid-template-columns: 1fr 1fr;
  }
  .sa-content h2 { font-size: 20px; }
  .sa-content h3 { font-size: 17px; }
}
@media (max-width: 600px) {
  .sa-wrap { padding: 24px 16px 60px; }
  .sa-title { font-size: 24px; }
  .sa-excerpt { font-size: 15px; }
  .sa-content { font-size: 15px; }
  .sa-content h2 { font-size: 18px; }
  .sa-content h3 { font-size: 16px; }
  .sa-content figure { max-width: 100%; }
  .sa-meta-card { gap: 6px 12px; }
  .sa-related-grid { grid-template-columns: 1fr; }
  .sa-author-card { gap: 10px; }

  .baca-juga-wrap { margin: 24px 0; }
  .baca-juga-card { padding: 10px 12px; }
  .baca-juga-label { font-size: 15px; margin-bottom: 6px; }
  .baca-juga-img,
  .baca-juga-img-placeholder { width: 60px; height: 60px; }
  .baca-juga-title { font-size: 14px; }
  .baca-juga-body { gap: 8px; }
}

/* ═══════════════════════════════════════════════════
   GMNI Universe · Kabar (listing)
   ═══════════════════════════════════════════════════ */

/* ── Header ── */
.kb-header { margin-bottom: 20px; }
.kb-header-title {
  font-family: var(--font-display);
  font-size: 34px;
  letter-spacing: 2px;
  color: var(--white);
}

/* ── Filter kategori ── */
.kb-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.kb-filter-btn {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 3px;
  border: 1px solid var(--border);
  color: var(--steel);
  background: transparent;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}
.kb-filter-btn:hover,
.kb-filter-btn.active {
  border-color: var(--red);
  color: var(--red-bright);
  background: rgba(196,30,30,0.08);
}
.kb-filter-btn--all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-color: var(--red);
  color: var(--white);
  background: var(--red);
}
.kb-filter-btn--all svg { flex-shrink: 0; }
.kb-filter-btn--all:hover {
  background: var(--red-bright);
  border-color: var(--red-bright);
  color: var(--white);
}
.kb-filter-btn--all.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* ── Search toggle icon ── */
.kb-search-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  cursor: pointer;
  transition: color .2s, border-color .2s, background .2s;
}
.kb-search-toggle.is-active {
  border-color: var(--red);
  color: var(--red-bright);
  background: rgba(196,30,30,0.08);
}

/* ── Search panel ── */
@keyframes kb-panel-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.kb-search-panel {
  margin: -14px 0 28px;
  animation: kb-panel-in 0.18s ease;
}
.kb-search-panel.is-hidden { display: none; }
.kb-search-bar {
  display: flex;
  align-items: center;
  background: var(--navy-card, #1a2340);
  border: 1px solid var(--border, rgba(255,255,255,0.1));
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.kb-search-bar:focus-within { border-color: var(--red, #c41e1e); }
.kb-search-bar svg { flex-shrink: 0; color: var(--steel, #8899aa); margin: 0 4px 0 14px; }
.kb-search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--white, #eee);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 11px 14px;
}
.kb-search-input::placeholder { color: var(--steel, #8899aa); }
.kb-search-clear {
  background: none;
  border: none;
  color: var(--steel, #8899aa);
  font-size: 18px;
  cursor: pointer;
  padding: 0 14px;
  line-height: 1;
  transition: color 0.2s;
}
.kb-search-clear:hover { color: var(--white, #eee); }

/* ── Featured ── */
.kb-featured { margin-bottom: 6px; }
.kb-featured-card {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.kb-featured-card:hover .kb-featured-img { transform: scale(1.03); }
.kb-featured-img-wrap {
  overflow: hidden;
  aspect-ratio: 16/7;
}
.kb-featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.kb-featured-img-placeholder {
  width: 100%;
  aspect-ratio: 16/7;
  background: var(--navy-3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.kb-featured-body {
  padding: 16px 18px 18px;
  background: var(--navy-card);
}
.kb-featured-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.3;
  color: var(--white);
  transition: var(--transition);
}
.kb-featured-card:hover .kb-featured-title { color: var(--red-bright); }

/* ── Highlights (3 bawah featured) ── */
.kb-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 40px;
}
.kb-highlight-item {
  display: block;
  padding: 12px 14px;
  background: var(--navy-card);
  transition: var(--transition);
}
.kb-highlight-item:hover { background: rgba(255,255,255,0.04); }
.kb-highlight-cat {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 4px;
}
.kb-highlight-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4;
  color: var(--white);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: var(--transition);
}
.kb-highlight-item:hover .kb-highlight-title { color: var(--red-bright); }

/* ── Populer ── */
.kb-populer-head {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--steel);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}
.kb-populer-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
  align-items: start;
}
.kb-pop-list { display: flex; flex-direction: column; }
.kb-pop-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
  text-decoration: none;
}
.kb-pop-item:first-child { padding-top: 0; }
.kb-pop-item:last-child { border-bottom: none; }
.kb-pop-thumb {
  width: 100px;
  height: 82px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}
.kb-pop-thumb-placeholder {
  width: 70px;
  height: 52px;
  background: var(--navy-3);
  border-radius: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.kb-pop-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
  color: var(--white);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: var(--transition);
}
.kb-pop-item:hover .kb-pop-title { color: var(--red-bright); }
.kb-pop-main { display: block; text-decoration: none; }
.kb-pop-main-img-wrap {
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 12px;
}
.kb-pop-main-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.kb-pop-main:hover .kb-pop-main-img { transform: scale(1.03); }
.kb-pop-main-img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--navy-3);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.kb-pop-main-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.35;
  color: var(--white);
  transition: var(--transition);
}
.kb-pop-main:hover .kb-pop-main-title { color: var(--red-bright); }

.kb-empty-state {
  padding: 60px 0;
  text-align: center;
  font-family: var(--font-label);
  font-size: 13px;
  color: var(--steel);
  letter-spacing: .5px;
}

/* ── List layout (halaman kategori) ── */
.kb-list { margin-bottom: 32px; }
.kb-list-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: var(--transition);
}
.kb-list-item:first-child { padding-top: 0; }
.kb-list-item:last-child { border-bottom: none; }
.kb-list-thumb {
  width: 140px;
  height: 90px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}
.kb-list-thumb-placeholder {
  width: 140px;
  height: 90px;
  background: var(--navy-3);
  border-radius: 6px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.kb-list-body { flex: 1; min-width: 0; }
.kb-list-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  color: var(--white);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 6px;
  transition: var(--transition);
}
.kb-list-item:hover .kb-list-title { color: var(--red-bright); }
.kb-list-excerpt {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.6;
  color: var(--white-dim);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 8px;
}
.kb-list-meta {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.3px;
  color: var(--steel);
  display: flex;
  align-items: center;
  gap: 6px;
}
.kb-list-meta-dot { opacity: 0.4; }

/* ── Pagination ── */
.kb-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 8px;
}
.kb-page-btn {
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.5px;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--white-dim);
  background: transparent;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}
.kb-page-btn:hover { border-color: var(--steel-dim); color: var(--white); }
.kb-page-btn.active { border-color: var(--red); color: var(--red-bright); background: rgba(196,30,30,0.08); }
.kb-page-btn.disabled { opacity: 0.35; pointer-events: none; }

/* ── Responsive kabar ── */

/* Tablet: sidebar turun ke bawah (sudah dari sa-layout 900px),
   populer layout tetap 2 kolom tapi lebih rapat */
@media (max-width: 900px) {
  .kb-populer-layout { gap: 16px; }
  .kb-highlights { grid-template-columns: 1fr 1fr; }
}

/* Mobile besar */
@media (max-width: 640px) {
  .kb-header-title { font-size: 26px; }
  .kb-filter { gap: 6px; }
  .kb-filter-btn { font-size: 10px; padding: 4px 10px; }

  /* Featured */
  .kb-featured-title { font-size: 18px; }
  .kb-featured-body { padding: 12px 14px 14px; }

  /* Highlights: 1 kolom */
  .kb-highlights { grid-template-columns: 1fr; }
  .kb-highlight-title { font-size: 14px; }

  /* Populer: stack vertikal */
  .kb-populer-layout { grid-template-columns: 1fr; }
  .kb-pop-title { font-size: 13px; }
  .kb-pop-main-title { font-size: 16px; }

  /* List kategori */
  .kb-list-thumb,
  .kb-list-thumb-placeholder { width: 90px; height: 64px; }
  .kb-list-title { font-size: 14px; }
  .kb-list-excerpt { display: none; }

  /* Search panel */
  .kb-search-toggle { padding: 4px 8px; }
}
