/* ============================================================
   SISTEM SUNYI - HOME ORBIT MENU
   Godmode Editorial Premium v2.2 Final
   Scoped, TagDiv/Newspaper safe
============================================================ */

/* ============================================================
   01. ROOT TOKENS
============================================================ */

.ss-home-orbit-block {
  --sshom-bg: rgba(248,244,236,.58);
  --sshom-bg-soft: rgba(255,255,255,.52);
  --sshom-text: #172235;
  --sshom-muted: rgba(23,34,53,.76);
  --sshom-soft: rgba(23,34,53,.58);
  --sshom-faint: rgba(23,34,53,.38);

  --sshom-line: rgba(23,34,53,.090);
  --sshom-line-strong: rgba(23,34,53,.15);

  --sshom-gold: #9a6f35;
  --sshom-gold-strong: #7d5526;
  --sshom-gold-soft: rgba(154,111,53,.105);

  --sshom-blue-soft: rgba(49,72,98,.060);
  --sshom-shadow: none;

  position: relative !important;
  width: 100% !important;
  max-width: 100% !important;

  margin: 0 !important;
  padding: 20px 0 21px !important;

  text-align: center !important;
  isolation: isolate !important;
  overflow: hidden !important;

  border: 0 !important;
  box-shadow: none !important;

  background:
    radial-gradient(circle at 50% 0%, rgba(154,111,53,.075), transparent 35%),
    radial-gradient(circle at 16% 0%, rgba(49,72,98,.048), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,.66), rgba(248,244,236,.58)) !important;

  color: var(--sshom-text) !important;
}

html.ss-darkmode .ss-home-orbit-block,
body.ss-darkmode .ss-home-orbit-block,
body.ss-dark-mode .ss-home-orbit-block,
body.dark-sunyi .ss-home-orbit-block,
body[data-theme="dark"] .ss-home-orbit-block,
html[data-theme="dark"] .ss-home-orbit-block {
  --sshom-bg: rgba(6,14,24,.90);
  --sshom-bg-soft: rgba(255,255,255,.060);
  --sshom-text: rgba(244,239,230,.94);
  --sshom-muted: rgba(244,239,230,.84);
  --sshom-soft: rgba(244,239,230,.72);
  --sshom-faint: rgba(244,239,230,.52);

  --sshom-line: rgba(255,255,255,.105);
  --sshom-line-strong: rgba(255,255,255,.16);

  --sshom-gold: #caa766;
  --sshom-gold-strong: #e1c27a;
  --sshom-gold-soft: rgba(202,167,102,.13);

  --sshom-blue-soft: rgba(145,171,196,.11);

  background:
    radial-gradient(circle at 50% 0%, rgba(202,167,102,.14), transparent 36%),
    radial-gradient(circle at 18% 0%, rgba(145,171,196,.12), transparent 34%),
    linear-gradient(180deg, #202a33 0%, #111a24 100%) !important;

  color: var(--sshom-text) !important;
}


/* ============================================================
   02. SOFT DECORATIVE LINE
============================================================ */

.ss-home-orbit-block::before {
  content: "" !important;
  position: absolute !important;
  left: 50% !important;
  top: 0 !important;

  width: min(760px, 72vw) !important;
  height: 1px !important;

  transform: translateX(-50%) !important;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(154,111,53,.22),
    transparent
  ) !important;

  opacity: .62 !important;
  pointer-events: none !important;
  z-index: 2 !important;
}

html.ss-darkmode .ss-home-orbit-block::before,
body.ss-darkmode .ss-home-orbit-block::before,
body.ss-dark-mode .ss-home-orbit-block::before,
body.dark-sunyi .ss-home-orbit-block::before,
body[data-theme="dark"] .ss-home-orbit-block::before,
html[data-theme="dark"] .ss-home-orbit-block::before {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(202,167,102,.38),
    transparent
  ) !important;
  opacity: .76 !important;
}


/* ============================================================
   03. HARD RESET
============================================================ */

.ss-home-orbit-block,
.ss-home-orbit-block *,
.ss-home-orbit-block *::before,
.ss-home-orbit-block *::after {
  box-sizing: border-box !important;
}

.ss-home-orbit-block button,
.ss-home-orbit-block a {
  font: inherit !important;
  text-decoration: none !important;
  text-shadow: none !important;
  box-shadow: none !important;
}

.ss-home-orbit-block a,
.ss-home-orbit-block a:link,
.ss-home-orbit-block a:visited,
.ss-home-orbit-block a:hover,
.ss-home-orbit-block a:active {
  text-decoration: none !important;
}

.ss-home-orbit-block button {
  appearance: none !important;
  -webkit-appearance: none !important;
  border: 0 !important;
  background: transparent !important;
  cursor: pointer !important;
}


/* ============================================================
   04. TAGDIV / NEWSPAPER GUARD
============================================================ */

#td-outer-wrap .ss-home-orbit-block,
.td-main-content-wrap .ss-home-orbit-block,
.td-post-content .ss-home-orbit-block,
.td-container .ss-home-orbit-block {
  border: 0 !important;
  box-shadow: none !important;
}

#td-outer-wrap .ss-home-orbit-block button,
#td-outer-wrap .ss-home-orbit-block a,
.td-main-content-wrap .ss-home-orbit-block button,
.td-main-content-wrap .ss-home-orbit-block a,
.td-post-content .ss-home-orbit-block button,
.td-post-content .ss-home-orbit-block a,
.td-container .ss-home-orbit-block button,
.td-container .ss-home-orbit-block a {
  font-style: normal !important;
  text-decoration: none !important;
  text-shadow: none !important;
  box-shadow: none !important;
}


/* ============================================================
   05. INNER
============================================================ */

.ss-home-orbit-inner {
  position: relative !important;

  width: min(1180px, calc(100% - 30px)) !important;
  max-width: 1180px !important;

  margin: 0 auto !important;
  padding: 0 !important;

  container-type: inline-size !important;
}


/* ============================================================
   06. ROW BASE
============================================================ */

.ss-home-orbit-boxes,
.ss-home-orbit-sub {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;

  width: 100% !important;
  max-width: 100% !important;

  overflow-x: auto !important;
  overflow-y: hidden !important;

  -webkit-overflow-scrolling: touch !important;
  scroll-snap-type: x proximity !important;

  scrollbar-width: thin !important;
  scrollbar-color: rgba(154,111,53,.42) transparent !important;
}

.ss-home-orbit-boxes::-webkit-scrollbar,
.ss-home-orbit-sub::-webkit-scrollbar {
  height: 4px !important;
}

.ss-home-orbit-boxes::-webkit-scrollbar-track,
.ss-home-orbit-sub::-webkit-scrollbar-track {
  background: transparent !important;
}

.ss-home-orbit-boxes::-webkit-scrollbar-thumb,
.ss-home-orbit-sub::-webkit-scrollbar-thumb {
  border-radius: 999px !important;
  background: rgba(154,111,53,.42) !important;
}


/* ============================================================
   07. ROW 1 - ORBIT UTAMA
============================================================ */

.ss-home-orbit-boxes {
  gap: 12px !important;
  padding: 0 2px 9px !important;
}

.ss-home-orbit-btn {
  position: relative !important;

  flex: 0 0 auto !important;
  scroll-snap-align: start !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  min-height: 36px !important;
  padding: 7px 15px !important;

  border: 1px solid transparent !important;
  border-radius: 999px !important;

  color: var(--sshom-muted) !important;
  background: transparent !important;

  font-family: Georgia, "Times New Roman", serif !important;
  font-size: 18px !important;
  line-height: 1.15 !important;
  font-weight: 520 !important;
  letter-spacing: -.005em !important;
  text-transform: none !important;

  white-space: nowrap !important;
  opacity: 1 !important;

  transition:
    color .22s ease,
    background .22s ease,
    border-color .22s ease,
    transform .22s ease !important;
}

#td-outer-wrap .ss-home-orbit-btn,
.td-main-content-wrap .ss-home-orbit-btn,
.td-post-content .ss-home-orbit-btn,
.td-container .ss-home-orbit-btn {
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: 18px !important;
  line-height: 1.15 !important;
  font-weight: 520 !important;
  letter-spacing: -.005em !important;
  text-transform: none !important;
}

.ss-home-orbit-btn::after {
  content: "" !important;
  position: absolute !important;
  left: 50% !important;
  bottom: 5px !important;

  width: 0 !important;
  height: 1px !important;

  transform: translateX(-50%) !important;

  background: linear-gradient(90deg, transparent, var(--sshom-gold), transparent) !important;
  opacity: .85 !important;

  transition: width .22s ease !important;
}

.ss-home-orbit-btn:hover,
.ss-home-orbit-btn:focus-visible {
  color: var(--sshom-text) !important;
  border-color: var(--sshom-line) !important;

  background:
    radial-gradient(circle at 50% 0%, var(--sshom-gold-soft), transparent 62%),
    var(--sshom-bg-soft) !important;

  transform: translateY(-1px) !important;
  outline: none !important;
}

.ss-home-orbit-btn:hover::after,
.ss-home-orbit-btn:focus-visible::after {
  width: calc(100% - 26px) !important;
}


/* ============================================================
   08. ROW 2 - JENIS TULISAN
============================================================ */

.ss-home-orbit-sub {
  gap: 9px !important;
  padding: 2px 2px 0 !important;
}

.ss-home-orbit-sub a {
  position: relative !important;

  flex: 0 0 auto !important;
  scroll-snap-align: start !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  min-height: 30px !important;
  padding: 6px 10px !important;

  border: 1px solid transparent !important;
  border-radius: 999px !important;

  color: var(--sshom-soft) !important;
  background: transparent !important;

  font-family: Inter, "Lato", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif !important;
  font-size: 11px !important;
  line-height: 1.2 !important;
  font-weight: 760 !important;
  letter-spacing: .050em !important;
  text-transform: uppercase !important;

  white-space: nowrap !important;
  opacity: 1 !important;

  transition:
    color .22s ease,
    background .22s ease,
    border-color .22s ease,
    transform .22s ease !important;
}

#td-outer-wrap .ss-home-orbit-sub a,
.td-main-content-wrap .ss-home-orbit-sub a,
.td-post-content .ss-home-orbit-sub a,
.td-container .ss-home-orbit-sub a {
  font-family: Inter, "Lato", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif !important;
  font-size: 11px !important;
  line-height: 1.2 !important;
  font-weight: 760 !important;
  letter-spacing: .050em !important;
  text-transform: uppercase !important;
}

.ss-home-orbit-sub a::before {
  content: "" !important;

  width: 4px !important;
  height: 4px !important;

  margin-right: 7px !important;

  border-radius: 999px !important;
  background: var(--sshom-gold) !important;
  opacity: .54 !important;
}

.ss-home-orbit-sub a:hover,
.ss-home-orbit-sub a:focus-visible {
  color: var(--sshom-text) !important;
  border-color: var(--sshom-line) !important;
  background: var(--sshom-bg-soft) !important;
  transform: translateY(-1px) !important;
  outline: none !important;
}

.ss-home-orbit-sub a:hover::before,
.ss-home-orbit-sub a:focus-visible::before {
  opacity: 1 !important;
}


/* ============================================================
   09. DARKMODE HARD COLOR FIX
============================================================ */

html.ss-darkmode .ss-home-orbit-btn,
body.ss-darkmode .ss-home-orbit-btn,
body.ss-dark-mode .ss-home-orbit-btn,
body.dark-sunyi .ss-home-orbit-btn,
body[data-theme="dark"] .ss-home-orbit-btn,
html[data-theme="dark"] .ss-home-orbit-btn {
  color: rgba(244,239,230,.92) !important;
  opacity: 1 !important;
  text-shadow: none !important;
}

html.ss-darkmode .ss-home-orbit-sub a,
body.ss-darkmode .ss-home-orbit-sub a,
body.ss-dark-mode .ss-home-orbit-sub a,
body.dark-sunyi .ss-home-orbit-sub a,
body[data-theme="dark"] .ss-home-orbit-sub a,
html[data-theme="dark"] .ss-home-orbit-sub a {
  color: rgba(244,239,230,.78) !important;
  opacity: 1 !important;
  text-shadow: none !important;
}

html.ss-darkmode .ss-home-orbit-sub a::before,
body.ss-darkmode .ss-home-orbit-sub a::before,
body.ss-dark-mode .ss-home-orbit-sub a::before,
body.dark-sunyi .ss-home-orbit-sub a::before,
body[data-theme="dark"] .ss-home-orbit-sub a::before,
html[data-theme="dark"] .ss-home-orbit-sub a::before {
  background: #caa766 !important;
  opacity: .76 !important;
}

html.ss-darkmode .ss-home-orbit-btn:hover,
html.ss-darkmode .ss-home-orbit-btn:focus-visible,
html.ss-darkmode .ss-home-orbit-sub a:hover,
html.ss-darkmode .ss-home-orbit-sub a:focus-visible,
body.ss-darkmode .ss-home-orbit-btn:hover,
body.ss-darkmode .ss-home-orbit-btn:focus-visible,
body.ss-darkmode .ss-home-orbit-sub a:hover,
body.ss-darkmode .ss-home-orbit-sub a:focus-visible,
body.ss-dark-mode .ss-home-orbit-btn:hover,
body.ss-dark-mode .ss-home-orbit-btn:focus-visible,
body.ss-dark-mode .ss-home-orbit-sub a:hover,
body.ss-dark-mode .ss-home-orbit-sub a:focus-visible,
body.dark-sunyi .ss-home-orbit-btn:hover,
body.dark-sunyi .ss-home-orbit-btn:focus-visible,
body.dark-sunyi .ss-home-orbit-sub a:hover,
body.dark-sunyi .ss-home-orbit-sub a:focus-visible,
body[data-theme="dark"] .ss-home-orbit-btn:hover,
body[data-theme="dark"] .ss-home-orbit-btn:focus-visible,
body[data-theme="dark"] .ss-home-orbit-sub a:hover,
body[data-theme="dark"] .ss-home-orbit-sub a:focus-visible,
html[data-theme="dark"] .ss-home-orbit-btn:hover,
html[data-theme="dark"] .ss-home-orbit-btn:focus-visible,
html[data-theme="dark"] .ss-home-orbit-sub a:hover,
html[data-theme="dark"] .ss-home-orbit-sub a:focus-visible {
  color: #f4efe6 !important;
  border-color: rgba(202,167,102,.22) !important;

  background:
    radial-gradient(circle at 50% 0%, rgba(202,167,102,.15), transparent 62%),
    rgba(255,255,255,.060) !important;
}


/* ============================================================
   10. DESKTOP CENTER
============================================================ */

@media (min-width: 1024px) {
  .ss-home-orbit-boxes,
  .ss-home-orbit-sub {
    justify-content: center !important;
    overflow-x: visible !important;
  }
}


/* ============================================================
   11. MOBILE SWIPE HINT
============================================================ */

@media (max-width: 1023px) {
  .ss-home-orbit-block::after {
    content: "" !important;
    position: absolute !important;
    right: 0 !important;
    top: 0 !important;
    bottom: 0 !important;

    width: 42px !important;

    pointer-events: none !important;

    background: linear-gradient(90deg, transparent, rgba(248,244,236,.92)) !important;
    opacity: .96 !important;
    z-index: 4 !important;
  }

  html.ss-darkmode .ss-home-orbit-block::after,
  body.ss-darkmode .ss-home-orbit-block::after,
  body.ss-dark-mode .ss-home-orbit-block::after,
  body.dark-sunyi .ss-home-orbit-block::after,
  body[data-theme="dark"] .ss-home-orbit-block::after,
  html[data-theme="dark"] .ss-home-orbit-block::after {
    background: linear-gradient(90deg, transparent, rgba(6,14,24,.94)) !important;
  }

  .ss-home-orbit-inner {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 12px !important;
    padding-right: 44px !important;
  }

  .ss-home-orbit-boxes,
  .ss-home-orbit-sub {
    scroll-padding-left: 12px !important;
    scroll-padding-right: 44px !important;
  }
}


/* ============================================================
   12. RESPONSIVE
============================================================ */

@media (max-width: 900px) {
  .ss-home-orbit-block {
    padding: 16px 0 18px !important;
  }

  .ss-home-orbit-boxes {
    gap: 9px !important;
  }

  .ss-home-orbit-sub {
    gap: 7px !important;
  }

  .ss-home-orbit-btn {
    min-height: 34px !important;
    padding-left: 13px !important;
    padding-right: 13px !important;
    font-size: 17px !important;
  }

  .ss-home-orbit-sub a {
    min-height: 29px !important;
    font-size: 10.5px !important;
  }
}

@media (max-width: 640px) {
  .ss-home-orbit-block {
    padding: 14px 0 16px !important;
  }

  .ss-home-orbit-btn {
    font-size: 16.5px !important;
  }

  .ss-home-orbit-sub a {
    padding-left: 9px !important;
    padding-right: 9px !important;
    font-size: 10px !important;
    letter-spacing: .045em !important;
  }
}

@media (max-width: 420px) {
  .ss-home-orbit-block {
    padding-top: 13px !important;
    padding-bottom: 15px !important;
  }

  .ss-home-orbit-btn {
    font-size: 16px !important;
  }
}