/* Logika Sehat — dark geopolitical portal */
:root {
  --ls-bg: #0a1428;
  --ls-bg-elevated: #0f1f3d;
  --ls-bg-panel: #132447;
  --ls-gold: #d4af37;
  --ls-gold-dim: rgba(212, 175, 55, 0.35);
  --ls-text: #f0ead6;
  /* Sekunder hangat (bukan abu-biru Bootstrap) */
  --ls-text-muted: #b5aea0;
  --ls-accent-blue: #7eb8da;
  --ls-rule: rgba(212, 175, 55, 0.45);
  --ls-font-step: 0;
  /* Default lebih besar agar teks portal mudah dibaca (skala rem mengikuti ini) */
  --ls-font-base: 18px;
  --ls-serif: "Lora", Georgia, ui-serif;
  --ls-sans: "Source Sans 3", system-ui, -apple-system, "Segoe UI", sans-serif;
}

html[data-ls-root] {
  color-scheme: dark;
}
html[data-ls-root][data-theme="light"] {
  color-scheme: light;
}

[data-theme="light"] {
  --ls-bg: #f4f1ea;
  --ls-bg-elevated: #ffffff;
  --ls-bg-panel: #ebe6dc;
  --ls-text: #1a2744;
  --ls-text-muted: #5a6b82;
  --ls-rule: rgba(26, 39, 68, 0.2);
  --ls-gold-dim: rgba(180, 140, 40, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: calc(var(--ls-font-base) + var(--ls-font-step) * 1.25px);
}

body.ls-page {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--ls-sans);
  background: var(--ls-bg);
  color: var(--ls-text);
  line-height: 1.62;
}

/* Timpa warna link default Bootstrap (biru) di seluruh tema */
body.ls-page a {
  color: var(--ls-gold);
  text-decoration: none;
}
body.ls-page a:hover {
  color: #e8c85c;
  text-decoration: underline;
}

.ls-header {
  background: var(--ls-bg);
  position: relative;
  z-index: 50;
  width: 100%;
  flex-shrink: 0;
}

.ls-header__top {
  padding: 1rem 0 0.75rem;
}

.ls-header__top-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.ls-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ls-text);
  text-decoration: none;
}
a.ls-brand,
a.ls-brand:visited {
  color: var(--ls-text);
  text-decoration: none;
}
a.ls-brand:hover {
  color: var(--ls-gold);
  text-decoration: none;
}
a.ls-brand:hover .ls-brand__title {
  color: var(--ls-gold);
}
a.ls-brand:hover .ls-brand__tagline {
  color: var(--ls-text-muted);
}

.ls-brand__logo {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.ls-brand__text-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.ls-brand__title {
  font-family: var(--ls-sans);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  line-height: 1.15;
  color: var(--ls-text);
}

.ls-brand__tagline {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: var(--ls-text-muted);
  max-width: 22rem;
}

.ls-header__utils {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}

.ls-header__link {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ls-text-muted);
}
.ls-header__link:hover {
  color: var(--ls-gold);
}

.ls-font-ctrl {
  display: inline-flex;
  border: 1px solid var(--ls-rule);
  border-radius: 999px;
  overflow: hidden;
}

.ls-font-ctrl__btn {
  background: transparent;
  border: none;
  color: var(--ls-text);
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  cursor: pointer;
  line-height: 1;
}
.ls-font-ctrl__btn:hover {
  background: var(--ls-bg-panel);
  color: var(--ls-gold);
}

.ls-theme-toggle {
  background: transparent;
  border: 1px solid var(--ls-rule);
  border-radius: 50%;
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ls-gold);
  padding: 0;
}

.ls-theme-toggle__icon {
  font-size: 1rem;
}
/* Mode gelap aktif → tampilkan ikon matahari (klik untuk mode terang) */
[data-theme="dark"] .ls-theme-toggle__icon--dark,
:root:not([data-theme="light"]) .ls-theme-toggle__icon--dark {
  display: none;
}
[data-theme="light"] .ls-theme-toggle__icon--light {
  display: none;
}

.ls-nav-burger {
  background: transparent;
  border: 1px solid var(--ls-rule);
  color: var(--ls-text);
  border-radius: 0.35rem;
  padding: 0.35rem 0.5rem;
  font-size: 1.25rem;
  cursor: pointer;
}

.ls-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ls-rule), transparent);
  margin: 0;
}

.ls-nav__bar {
  display: flex;
  align-items: stretch;
  gap: 0;
  padding: 0;
}

.ls-nav__chev {
  flex-shrink: 0;
  align-self: center;
  width: 2rem;
  border: none;
  background: transparent;
  color: var(--ls-text-muted);
  padding: 0 0.15rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: color 0.15s ease;
}
.ls-nav__chev:hover {
  color: var(--ls-gold);
}

.ls-nav__viewport {
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--ls-gold-dim) transparent;
  mask-image: linear-gradient(90deg, transparent 0, #000 12px, #000 calc(100% - 12px), transparent 100%);
}

.ls-nav__viewport::-webkit-scrollbar {
  height: 4px;
}
.ls-nav__viewport::-webkit-scrollbar-track {
  background: transparent;
}
.ls-nav__viewport::-webkit-scrollbar-thumb {
  background: var(--ls-gold-dim);
  border-radius: 4px;
}

.ls-nav__list {
  list-style: none;
  margin: 0;
  padding: 0.65rem 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  width: max-content;
  min-height: 2.75rem;
}

.ls-nav__list > li {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.ls-nav__list > li + li {
  border-left: 1px solid var(--ls-rule);
  padding-left: 1.1rem;
  margin-left: 1.1rem;
}

.ls-nav__link {
  position: relative;
  display: inline-block;
  padding: 0.35rem 0.1rem;
  font-family: var(--ls-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--ls-text-muted);
  text-decoration: none;
}
.ls-nav__link:hover {
  color: var(--ls-text);
  text-decoration: none;
}

.ls-nav__link.is-active {
  color: var(--ls-gold);
}
.ls-nav__link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 2px;
  background: var(--ls-gold);
  border-radius: 1px;
}

.ls-nav-mobile {
  border-bottom: 1px solid var(--ls-rule);
  padding: 0.5rem 0 1rem;
  background: var(--ls-bg-elevated);
}

.ls-nav-mobile__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ls-nav-mobile__list a {
  display: block;
  padding: 0.5rem 0;
  color: var(--ls-text);
  border-bottom: 1px solid var(--ls-rule);
  font-family: var(--ls-sans);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ls-nav-mobile__list a:hover {
  color: var(--ls-gold);
  text-decoration: none;
}

/* Globe + grid background */
.ls-main {
  flex: 1 1 auto;
  width: 100%;
  min-height: 0;
}

.ls-main--globe {
  position: relative;
  min-height: 50vh;
}

.ls-main--globe::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 800' opacity='0.12'%3E%3Ccircle cx='400' cy='400' r='320' fill='none' stroke='%23d4af37' stroke-width='0.8'/%3E%3Ccircle cx='400' cy='400' r='220' fill='none' stroke='%23d4af37' stroke-width='0.5'/%3E%3Cpath d='M80 400h640M400 80v640' stroke='%23d4af37' stroke-width='0.4'/%3E%3Cellipse cx='400' cy='400' rx='320' ry='120' fill='none' stroke='%23d4af37' stroke-width='0.4'/%3E%3Cellipse cx='400' cy='400' rx='120' ry='320' fill='none' stroke='%23d4af37' stroke-width='0.4'/%3E%3C/svg%3E"),
    radial-gradient(ellipse 70% 50% at 50% 40%, rgba(212, 175, 55, 0.06), transparent 60%);
  background-repeat: no-repeat, no-repeat;
  background-position: center 2rem, center top;
  background-size: min(900px, 95vw) auto, 100% 100%;
  z-index: 0;
}

.ls-main--globe > .container {
  position: relative;
  z-index: 1;
}

/* Search */
.ls-search {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--ls-bg-panel);
  border: 1px solid var(--ls-gold-dim);
  border-radius: 999px;
  padding: 0.65rem 1.25rem;
  margin-bottom: 2rem;
}

.ls-search__icon {
  color: var(--ls-gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.ls-search__input {
  flex: 1;
  border: none;
  background: transparent;
  color: var(--ls-text);
  font-size: 0.92rem;
  outline: none;
}
.ls-search__input::placeholder {
  color: var(--ls-text-muted);
}

/* Trending header */
.ls-trend-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.ls-trend-head__icon {
  color: #e85d04;
  font-size: 1.75rem;
  line-height: 1;
}

.ls-trend-head__title {
  margin: 0;
  font-family: var(--ls-sans);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
}

.ls-trend-head__sub {
  margin: 0.15rem 0 0;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: var(--ls-text-muted);
}

/* Feature grid */
.ls-feature-row {
  align-items: stretch;
}

.ls-card-lg {
  border-radius: 0.85rem;
  overflow: hidden;
  background: var(--ls-bg-elevated);
  border: 1px solid var(--ls-gold-dim);
  height: 100%;
}

.ls-card-lg__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.ls-card-lg__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.ls-card-lg__media:hover .ls-card-lg__img {
  transform: scale(1.03);
}

.ls-card-lg__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ls-bg-panel);
  color: var(--ls-gold);
  font-size: 3rem;
}

.ls-card-lg__badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: rgba(10, 20, 40, 0.88);
  color: var(--ls-gold);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.65rem;
  border-radius: 0.25rem;
  border: 1px solid var(--ls-gold-dim);
}

.ls-card-lg__body {
  padding: 1.25rem 1.35rem 1.5rem;
}

.ls-card-lg__meta {
  font-size: 0.75rem;
  color: var(--ls-text-muted);
  margin: 0 0 0.5rem;
}

.ls-card-lg__title {
  margin: 0 0 0.75rem;
  font-family: var(--ls-serif);
  font-weight: 700;
  font-size: 1.45rem;
  line-height: 1.25;
}
.ls-card-lg__title a {
  color: var(--ls-text);
  text-decoration: none;
}
.ls-card-lg__title a:hover {
  color: var(--ls-gold);
}

.ls-card-lg__excerpt {
  margin: 0;
  font-size: 0.88rem;
  color: var(--ls-text-muted);
}

/* Sidebar grid 2x2 */
.ls-sidebar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  height: 100%;
  align-content: start;
}

@media (max-width: 991.98px) {
  .ls-sidebar-grid {
    grid-template-columns: 1fr;
  }
}

.ls-card-sm {
  background: var(--ls-bg-elevated);
  border: 1px solid var(--ls-gold-dim);
  border-radius: 0.65rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.ls-card-sm__thumb {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.ls-card-sm__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ls-card-sm__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 5rem;
  background: var(--ls-bg-panel);
  color: var(--ls-text-muted);
  font-size: 1.5rem;
}

.ls-card-sm__body {
  padding: 0.65rem 0.75rem 0.85rem;
  flex: 1;
}

.ls-card-sm__meta {
  font-size: 0.65rem;
  color: var(--ls-text-muted);
  margin: 0 0 0.35rem;
}

.ls-card-sm__sep {
  margin: 0 0.2rem;
}

.ls-card-sm__cat {
  color: var(--ls-accent-blue);
  font-weight: 600;
  text-decoration: none;
}
.ls-card-sm__cat:hover {
  color: #a8d4f0;
  text-decoration: underline;
}

.ls-card-sm__title {
  margin: 0 0 0.35rem;
  font-family: var(--ls-serif);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.3;
}
.ls-card-sm__title a {
  color: var(--ls-text);
  text-decoration: none;
}
.ls-card-sm__title a:hover {
  color: var(--ls-gold);
}

.ls-card-sm__excerpt {
  margin: 0;
  font-size: 0.68rem;
  color: var(--ls-text-muted);
  line-height: 1.4;
}

.ls-card-sm--flat {
  flex-direction: row;
  align-items: stretch;
}
.ls-card-sm--flat .ls-card-sm__thumb {
  width: 100px;
  min-width: 100px;
  aspect-ratio: auto;
  min-height: 100%;
}
.ls-card-sm--flat .ls-card-sm__thumb img,
.ls-card-sm--flat .ls-card-sm__placeholder {
  min-height: 100%;
}

/* Footer */
.ls-footer {
  width: 100%;
  flex-shrink: 0;
  margin-top: 2rem;
  padding: 1.5rem 0 2rem;
  border-top: 1px solid var(--ls-rule);
}

.ls-footer__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.ls-footer__version {
  margin: 0;
  font-size: 0.78rem;
  color: var(--ls-text-muted);
  text-align: center;
}

.ls-footer__mark {
  position: absolute;
  right: 0;
  color: var(--ls-text);
  opacity: 0.85;
  font-size: 1rem;
  transform: rotate(45deg);
}

/* Breadcrumb */
.ls-breadcrumb {
  font-size: 0.78rem;
  color: var(--ls-text-muted);
  margin-bottom: 1rem;
  text-align: start;
}
.ls-breadcrumb a,
.ls-breadcrumb a:visited {
  color: var(--ls-text-muted);
  text-decoration: none;
}
.ls-breadcrumb a:hover {
  color: var(--ls-gold);
  text-decoration: underline;
}
.ls-breadcrumb__current {
  color: var(--ls-text-muted);
  opacity: 0.9;
}
.ls-breadcrumb__sep {
  margin: 0 0.35rem;
  opacity: 0.55;
}

/* Article */
.ls-article__eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ls-gold);
  margin: 0 0 0.5rem;
}

.ls-article__title {
  font-family: var(--ls-serif);
  font-weight: 700;
  font-size: clamp(1.6rem, 4vw, 2.25rem);
  line-height: 1.2;
  margin: 0 0 1rem;
}

.ls-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  font-size: 0.8rem;
  color: var(--ls-text-muted);
  margin-bottom: 1.25rem;
}
.ls-meta-row--sm {
  font-size: 0.72rem;
  margin-bottom: 0.5rem;
}

.ls-summary {
  padding: 1rem 1.15rem;
  border-left: 3px solid var(--ls-gold);
  background: var(--ls-bg-panel);
  margin-bottom: 1.5rem;
  font-size: 0.92rem;
  color: var(--ls-text-muted);
}

.ls-article__figure {
  margin: 0 0 1.5rem;
}
.ls-article__img {
  width: 100%;
  border-radius: 0.5rem;
  border: 1px solid var(--ls-gold-dim);
}
.ls-article__figure figcaption {
  font-size: 0.75rem;
  color: var(--ls-text-muted);
  margin-top: 0.35rem;
}

.ls-article__body {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ls-text);
}
.ls-article__body img {
  max-width: 100%;
  height: auto;
  border-radius: 0.35rem;
}

.ls-tags {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}
.ls-tags__label {
  font-size: 0.75rem;
  color: var(--ls-text-muted);
  margin-right: 0.25rem;
}
.ls-pill {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--ls-rule);
  font-size: 0.75rem;
  color: var(--ls-text);
}
.ls-pill:hover {
  border-color: var(--ls-gold);
  color: var(--ls-gold);
  text-decoration: none;
}

.ls-entities {
  margin-top: 1.5rem;
  padding: 1rem;
  background: var(--ls-bg-panel);
  border-radius: 0.5rem;
  font-size: 0.88rem;
}
.ls-entities h2 {
  font-size: 1rem;
  margin: 0 0 0.75rem;
  font-family: var(--ls-serif);
}

.ls-share {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--ls-rule);
  font-size: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
}
.ls-share a {
  color: var(--ls-accent-blue);
}

.ls-related {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--ls-rule);
}
.ls-related__title {
  font-family: var(--ls-serif);
  font-size: 1.25rem;
  margin: 0 0 1rem;
}

/* Listing */
.ls-page-head__eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ls-gold);
  margin: 0 0 0.35rem;
}
.ls-page-head__title {
  font-family: var(--ls-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 0.5rem;
}
.ls-page-head__desc {
  margin: 0 0 1.5rem;
  color: var(--ls-text-muted);
  font-size: 0.9rem;
}

.ls-spotlight {
  padding: 1.25rem;
  background: var(--ls-bg-elevated);
  border: 1px solid var(--ls-gold-dim);
  border-radius: 0.75rem;
  margin-bottom: 2rem;
}
.ls-spotlight__img {
  width: 100%;
  border-radius: 0.5rem;
  object-fit: cover;
  max-height: 220px;
}
.ls-spotlight__placeholder {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ls-bg-panel);
  border-radius: 0.5rem;
  color: var(--ls-gold);
  font-size: 2.5rem;
}
.ls-spotlight__title {
  font-family: var(--ls-serif);
  font-size: 1.35rem;
  margin: 0.5rem 0;
}
.ls-spotlight__excerpt {
  color: var(--ls-text-muted);
  font-size: 0.9rem;
}

.ls-btn {
  display: inline-block;
  padding: 0.45rem 1.1rem;
  background: transparent;
  border: 1px solid var(--ls-gold);
  color: var(--ls-gold);
  border-radius: 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
}
.ls-btn:hover {
  background: var(--ls-gold);
  color: var(--ls-bg);
  text-decoration: none;
}

.ls-list__item {
  display: flex;
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--ls-rule);
}
.ls-list__media {
  width: 140px;
  min-width: 140px;
  height: 90px;
  border-radius: 0.4rem;
  overflow: hidden;
  display: block;
}
.ls-list__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ls-list__ph {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: var(--ls-bg-panel);
  color: var(--ls-text-muted);
}
.ls-list__body h3 {
  font-family: var(--ls-serif);
  font-size: 1.05rem;
  margin: 0 0 0.35rem;
  line-height: 1.3;
}
.ls-list__body h3 a {
  color: var(--ls-text);
  text-decoration: none;
}
.ls-list__body h3 a:hover {
  color: var(--ls-gold);
}
.ls-list__body p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--ls-text-muted);
}

.ls-meta-pill {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: 0.25rem;
  background: var(--ls-bg-panel);
  border: 1px solid var(--ls-gold-dim);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ls-gold);
}

.ls-pagination .pagination {
  margin-top: 1.5rem;
}
.ls-pagination .page-link {
  background: var(--ls-bg-elevated);
  border-color: var(--ls-gold-dim);
  color: var(--ls-text);
}
.ls-pagination .page-item.active .page-link {
  background: var(--ls-gold);
  border-color: var(--ls-gold);
  color: var(--ls-bg);
}
.ls-pagination .page-link:hover {
  background: var(--ls-bg-panel);
  color: var(--ls-gold);
}

/* Aside */
.ls-panel {
  background: var(--ls-bg-elevated);
  border: 1px solid var(--ls-gold-dim);
  border-radius: 0.65rem;
  padding: 1rem 1.1rem;
  margin-bottom: 1.25rem;
}
.ls-panel__title {
  font-family: var(--ls-sans);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--ls-rule);
}

.ls-cat-nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.ls-cat-nav--scroll {
  max-height: 14rem;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 0.35rem;
  margin-right: -0.15rem;
  scrollbar-width: thin;
  scrollbar-color: var(--ls-gold-dim) transparent;
}
.ls-cat-nav--scroll::-webkit-scrollbar {
  width: 6px;
}
.ls-cat-nav--scroll::-webkit-scrollbar-thumb {
  background: var(--ls-gold-dim);
  border-radius: 4px;
}
.ls-cat-nav a,
.ls-cat-nav a:visited {
  color: var(--ls-text-muted);
  font-size: 0.85rem;
  text-decoration: none;
}
.ls-cat-nav a:hover,
.ls-cat-nav a.is-active {
  color: var(--ls-gold);
}

.ls-aside--search {
  position: sticky;
  top: 1rem;
}
@media (max-width: 991.98px) {
  .ls-aside--search {
    position: static;
  }
}

.ls-recent {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ls-recent__link {
  display: flex;
  gap: 0.65rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--ls-rule);
  text-decoration: none;
  align-items: flex-start;
}
.ls-recent__link:hover .ls-recent__headline {
  color: var(--ls-gold);
}
.ls-recent__thumb-wrap {
  position: relative;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 0.3rem;
  overflow: hidden;
  background: var(--ls-bg-panel);
}
.ls-recent__thumb {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 0.3rem;
  flex-shrink: 0;
}
.ls-recent__thumb-wrap .ls-recent__thumb {
  display: block;
  width: 100%;
  height: 100%;
}
.ls-recent__thumb.is-broken {
  display: none !important;
}
.ls-recent__thumb--fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 0.3rem;
}
.ls-recent__thumb--ph {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ls-bg-panel);
  color: var(--ls-text-muted);
}
.ls-recent__text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.ls-recent__headline {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ls-text);
  line-height: 1.3;
}
.ls-recent__date {
  font-size: 0.68rem;
  color: var(--ls-text-muted);
}

.ls-empty-state,
.ls-empty-note {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--ls-text-muted);
}
.ls-empty-state i {
  font-size: 2rem;
  color: var(--ls-gold-dim);
  display: block;
  margin-bottom: 0.5rem;
}

.ls-result-count {
  font-size: 0.88rem;
  color: var(--ls-text-muted);
  margin-bottom: 0.65rem;
}
.ls-result-count__q {
  color: var(--ls-gold);
  font-weight: 600;
}

/* Halaman pencarian: judul utilitas pakai sans; kolom tidak meregang penuh */
body.ls-search .ls-page-head--search .ls-page-head__title {
  font-family: var(--ls-sans);
  font-weight: 700;
  letter-spacing: 0.02em;
}
body.ls-search .ls-page-head--search .ls-page-head__desc {
  margin-bottom: 1rem;
}
body.ls-search .ls-result-count {
  font-size: 0.92rem;
  margin-bottom: 0.85rem;
  letter-spacing: 0.01em;
}
.ls-search-page .ls-search {
  margin-bottom: 1.35rem;
}

.ls-search-body {
  margin-top: 0.25rem;
}
.ls-empty-state--search {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  text-align: center;
  background: var(--ls-bg-elevated);
  border: 1px solid var(--ls-gold-dim);
  border-radius: 0.75rem;
}
.ls-empty-state--search .ls-empty-state__icon {
  display: block;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--ls-gold);
  opacity: 0.7;
  margin-bottom: 0.85rem;
}
.ls-empty-state--search .ls-empty-state__title {
  margin: 0 0 0.4rem;
  font-family: var(--ls-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ls-text);
}
.ls-empty-state--search .ls-empty-state__hint {
  margin: 0;
  font-size: 0.88rem;
  color: var(--ls-text-muted);
  max-width: 22rem;
  line-height: 1.45;
}
.ls-empty-state--muted .ls-empty-state__icon {
  opacity: 0.45;
}
