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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Source Sans Pro", system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: #111827;
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "IBM Plex Serif", "Libre Baskerville", Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #0B1F3A;
  margin: 0 0 0.5em;
}

h1 {
  font-size: clamp(26px, 3.4vw, 34px);
}

h2 {
  font-size: clamp(21px, 2.6vw, 27px);
}

h3 {
  font-size: clamp(20px, 2.2vw, 24px);
}

h4 {
  font-size: 24px;
  font-weight: 600;
}

h5 {
  font-size: 20px;
  font-weight: 600;
}

h6 {
  font-size: 18px;
  font-weight: 600;
}

p {
  margin: 0 0 1.2em;
}

a {
  color: #1D4ED8;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: #0B1F3A;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  margin: 0 0 1.2em;
  padding-left: 1.2em;
}

blockquote {
  margin: 1.5em 0;
  padding: 1em 1.5em;
  border-left: 4px solid #D4A017;
  background: #F7F8FA;
  font-family: "IBM Plex Serif", "Libre Baskerville", Georgia, serif;
  font-style: italic;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

:focus-visible {
  outline: 2px solid #1D4ED8;
  outline-offset: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 10px;
  font-family: "Inter", "Source Sans Pro", system-ui, sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}
.btn--primary {
  background: #1D4ED8;
  color: #fff;
}
.btn--primary:hover {
  background: #0B1F3A;
  color: #fff;
}
.btn--subscribe {
  background: #D4A017;
  color: #0B1F3A;
}
.btn--subscribe:hover {
  background: rgb(175.1931914894, 132.2212765957, 19.0068085106);
  color: #fff;
}
.btn--ghost {
  background: transparent;
  border-color: #E5E7EB;
  color: #0B1F3A;
}
.btn--ghost:hover {
  border-color: #0B1F3A;
}

.entry-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: #6B7280;
  font-family: "Inter", "Source Sans Pro", system-ui, sans-serif;
  letter-spacing: 0.3px;
}
.entry-meta a {
  color: #6B7280;
}
.entry-meta a:hover {
  color: #1D4ED8;
}

.entry-category {
  display: inline-block;
  font-family: "Inter", "Source Sans Pro", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1D4ED8;
  margin-bottom: 8px;
}

.entry-excerpt {
  color: #6B7280;
  font-size: 15px;
  line-height: 1.6;
}

.entry-image {
  width: 100%;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.section-title,
.sidebar-title {
  font-family: "IBM Plex Serif", "Libre Baskerville", Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  color: #0B1F3A;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid #0B1F3A;
}
.section-title span,
.sidebar-title span {
  position: relative;
}

.skip-link {
  position: absolute;
  left: -999px;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 999;
  background: #fff;
  padding: 8px 12px;
  border-radius: 8px;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Layout modes: boxed caps the WHOLE page (header, content, footer) at
   ~1200px centered; full-width uses the wide 1440px container. Applied via
   body class set in inc/customizer.php. */
body.layout-boxed .topbar,
body.layout-boxed .site-header,
body.layout-boxed .primary-nav,
body.layout-boxed .site-main,
body.layout-boxed .site-footer,
body.layout-boxed .container,
body.layout-boxed .site-footer__inner,
body.layout-boxed .site-footer__bottom,
body.layout-boxed .topbar__inner,
body.layout-boxed .site-header__inner,
body.layout-boxed .primary-nav__inner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
body.layout-full-width .container {
  max-width: 1440px;
}

.homepage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 40px;
  padding-top: 40px;
  padding-bottom: 64px;
}
@media (max-width: 1024px) {
  .homepage {
    grid-template-columns: 1fr;
  }
}

.homepage__main {
  min-width: 0;
}

.homepage__side {
  min-width: 0;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 1024px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 720px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}

.single-post__layout {
  display: grid;
  grid-template-columns: minmax(0, 860px) 340px;
  gap: 40px;
  padding-top: 32px;
  padding-bottom: 64px;
}
@media (max-width: 1024px) {
  .single-post__layout {
    grid-template-columns: 1fr;
  }
}

.single-post__content {
  min-width: 0;
  max-width: 860px;
}

.single-post__side {
  min-width: 0;
}

section {
  margin-bottom: 56px;
}

.topbar {
  background: #0B1F3A;
  color: #fff;
  font-size: 13px;
  font-family: "Inter", "Source Sans Pro", system-ui, sans-serif;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
  gap: 16px;
}
.topbar__date {
  color: rgba(255, 255, 255, 0.75);
}
.topbar__menu {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.topbar__menu a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
}
.topbar__menu a:hover {
  color: #D4A017;
}

.theme-toggle {
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  padding: 4px;
  border-radius: 6px;
}
.theme-toggle:hover {
  color: #D4A017;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid #E5E7EB;
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 24px;
}
.site-header__actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-branding {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.site-branding .site-logo img {
  height: 44px;
  width: auto;
}

.site-tagline {
  font-family: "Inter", "Source Sans Pro", system-ui, sans-serif;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: #6B7280;
  margin: 0;
  max-width: 320px;
}

.search-form {
  display: flex;
  align-items: center;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  overflow: hidden;
  max-width: 100%;
}
.search-form input {
  border: none;
  padding: 10px 14px;
  font-size: 14px;
  font-family: "Inter", "Source Sans Pro", system-ui, sans-serif;
  width: 200px;
  max-width: 100%;
  min-width: 0;
  outline: none;
  background: #F7F8FA;
}
.search-form button {
  background: #0B1F3A;
  color: #fff;
  border: none;
  padding: 10px 14px;
  flex-shrink: 0;
  cursor: pointer;
  display: inline-flex;
}
.search-form--center {
  max-width: 480px;
  margin: 24px auto;
}
.search-form--center input {
  flex: 1;
  width: auto;
}
.search-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  background: #F7F8FA;
  color: #0B1F3A;
  cursor: pointer;
}
.search-close {
  display: none;
  background: #0B1F3A;
  color: #fff;
  border: none;
  padding: 10px 14px;
  flex-shrink: 0;
  cursor: pointer;
  align-items: center;
}

.primary-nav {
  background: #0B1F3A;
  border-bottom: 3px solid #D4A017;
}
.primary-nav__inner {
  padding: 0 24px;
}
.primary-nav .primary-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.primary-nav .primary-menu > li > a {
  display: block;
  padding: 14px 18px;
  color: #fff;
  font-family: "Inter", "Source Sans Pro", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 500;
  transition: background 0.2s ease;
}
.primary-nav .primary-menu > li > a:hover {
  background: rgba(255, 255, 255, 0.08);
}
.primary-nav .primary-menu > li.current-menu-item > a {
  background: #D4A017;
  color: #0B1F3A;
  font-weight: 600;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  width: 24px;
  height: 2px;
  background: #0B1F3A;
  display: block;
}
@media (max-width: 720px) {
  .menu-toggle {
    display: flex;
  }
}

.mobile-menu {
  background: #0B1F3A;
}
.mobile-menu[hidden] {
  display: none;
}
.mobile-menu__list {
  list-style: none;
  margin: 0;
  padding: 16px 24px;
}
.mobile-menu__list a {
  color: #fff;
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 720px) {
  .primary-nav .primary-menu {
    display: none;
  }
  .search-toggle {
    display: inline-flex;
  }
  .search-form {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    display: none;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    border-width: 0 0 1px 0;
    background: #fff;
    padding: 10px 16px;
    gap: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  }
  .search-form input {
    flex: 1 1 auto;
    width: auto;
  }
  .search-form.is-open {
    display: flex;
  }
  .search-form.is-open .search-close {
    display: inline-flex;
  }
}
.site-footer {
  background: #0B1F3A;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 64px;
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-top: 64px;
  padding-bottom: 48px;
}
@media (max-width: 1024px) {
  .site-footer__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 720px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
  }
}
.site-footer .site-logo img {
  height: 44px;
  filter: brightness(0) invert(1);
}
.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  padding-bottom: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  flex-wrap: wrap;
}

.site-footer__social {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.site-footer__social-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.footer-social .social-menu {
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-social .social-menu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transition: background 0.2s ease, color 0.2s ease;
}
.footer-social .social-menu a:hover {
  background: #D4A017;
  color: #0B1F3A;
}

.hero {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 32px;
  margin-bottom: 56px;
}
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
  }
}
.hero__feature.feature-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.06);
  transition: box-shadow 0.3s ease;
}
.hero__feature.feature-card:hover {
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
}
.hero__media {
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__body {
  padding: 24px;
}
.hero__title {
  font-size: clamp(28px, 3vw, 40px);
  margin: 8px 0 12px;
}
.hero__title a {
  color: #0B1F3A;
}
.hero__title a:hover {
  color: #1D4ED8;
}
.hero__meta {
  margin-top: 16px;
}
.hero__secondary {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-left: 1px solid #E5E7EB;
  padding-left: 32px;
}
@media (max-width: 1024px) {
  .hero__secondary {
    border-left: none;
    padding-left: 0;
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.asanasa-slider-section {
  margin-bottom: 56px;
}

.asanasa-main-feature {
  margin-bottom: 24px;
}
.asanasa-main-feature .entry-kicker {
  display: inline-block;
  font-family: "Inter", "Source Sans Pro", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #D4A017;
  margin-bottom: 8px;
}

.asanasa-slider {
  position: relative;
}
.asanasa-slider__track {
  display: flex;
  overflow: hidden;
  border-radius: 8px;
  scroll-behavior: smooth;
}
.asanasa-slide {
  flex: 0 0 100%;
  min-width: 0;
  padding: 0 6px;
}
.asanasa-slide__card {
  height: 100%;
}
.asanasa-slide .news-card__media {
  aspect-ratio: 16/9;
}

.asanasa-slider__nav {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 31, 58, 0.85);
  color: #fff;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s ease;
}
.asanasa-slider__nav:hover {
  background: #1D4ED8;
}
.asanasa-slider__prev {
  left: 14px;
}
.asanasa-slider__next {
  right: 14px;
}

.asanasa-slider__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.asanasa-slider__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 999px;
  border: none;
  background: #C7CDD6;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.asanasa-slider__dot.is-active {
  background: #1D4ED8;
  transform: scale(1.25);
}

@media (max-width: 720px) {
  .asanasa-slider__nav {
    width: 38px;
    height: 38px;
  }
}

[data-theme=dark] .asanasa-slider__dot {
  background: #475569;
}
[data-theme=dark] .asanasa-slider__dot.is-active {
  background: #D4A017;
}

.mini-card__media {
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
}
.mini-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mini-card__title {
  font-size: 17px;
  margin: 4px 0 6px;
  line-height: 1.3;
}
.mini-card__title a {
  color: #0B1F3A;
}
.mini-card__title a:hover {
  color: #1D4ED8;
}
@media (max-width: 1024px) {
  .mini-card {
    flex: 1 1 45%;
  }
}

.news-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.news-card:hover {
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
}
.news-card:hover .entry-image {
  transform: scale(1.05);
}
.news-card__media {
  aspect-ratio: 4/3;
  overflow: hidden;
  display: block;
}
.news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-card__body {
  padding: 18px;
}
.news-card__title {
  font-size: 20px;
  margin: 6px 0 10px;
  line-height: 1.3;
}
.news-card__title a {
  color: #0B1F3A;
}
.news-card__title a:hover {
  color: #1D4ED8;
}
.news-card--opinion {
  border-top: 3px solid #D4A017;
}

.feature-card .entry-image {
  border-radius: 0;
}

.site-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.sidebar-block {
  background: #F7F8FA;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 24px;
}
.sidebar-block--newsletter {
  background: #0B1F3A;
  color: #fff;
}
.sidebar-block--newsletter .sidebar-title {
  color: #fff;
  border-color: #D4A017;
}
.sidebar-block--newsletter p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.sidebar-title {
  font-family: "IBM Plex Serif", "Libre Baskerville", Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid #1D4ED8;
  color: #0B1F3A;
}
.sidebar-title span {
  position: relative;
}

.trending-list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: trending;
}
.trending-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #E5E7EB;
}
.trending-list li:last-child {
  border-bottom: none;
}
.trending-list .trending-num {
  font-family: "IBM Plex Serif", "Libre Baskerville", Georgia, serif;
  font-weight: 700;
  font-size: 20px;
  color: #D4A017;
  min-width: 24px;
}
.trending-list .trending-link {
  font-size: 15px;
  line-height: 1.4;
  color: #0B1F3A;
  font-weight: 500;
}
.trending-list .trending-link:hover {
  color: #1D4ED8;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag-cloud a {
  display: inline-block;
  padding: 4px 12px;
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 999px;
  font-size: 13px;
  color: #6B7280;
}
.tag-cloud a:hover {
  border-color: #1D4ED8;
  color: #1D4ED8;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}
.newsletter-form input {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-family: "Inter", "Source Sans Pro", system-ui, sans-serif;
}
.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.newsletter-form .btn--primary {
  background: #D4A017;
  color: #0B1F3A;
}

.entry-header {
  margin-bottom: 28px;
}

.entry-title {
  font-size: 30px;
  line-height: 1.2;
  margin: 8px 0 12px;
}

@media (max-width: 720px) {
  .entry-title {
    font-size: 23px;
  }
}

.entry-subtitle {
  font-family: "IBM Plex Serif", "Libre Baskerville", Georgia, serif;
  font-size: 22px;
  line-height: 1.4;
  color: #6B7280;
  font-weight: 400;
}

.entry-meta--single {
  border-top: 1px solid #E5E7EB;
  border-bottom: 1px solid #E5E7EB;
  padding: 14px 0;
  margin-bottom: 24px;
}

.entry-share {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}
.entry-share a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #F7F8FA;
  border: 1px solid #E5E7EB;
  color: #0B1F3A;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.entry-share a:hover {
  background: #1D4ED8;
  color: #fff;
  border-color: #1D4ED8;
}

.entry-hero {
  margin-bottom: 28px;
}
.entry-hero img {
  width: 100%;
  border-radius: 8px;
}

.entry-content {
  font-size: 19px;
  line-height: 1.8;
  color: #111827;
}
.entry-content h2, .entry-content h3, .entry-content h4 {
  margin-top: 1.6em;
}
.entry-content img {
  border-radius: 8px;
  margin: 1.5em 0;
}
.entry-content a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.entry-content figure {
  margin: 1.5em 0;
}

.entry-tags {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid #E5E7EB;
}
.entry-tags .tag-label {
  font-weight: 600;
  margin-right: 8px;
}
.entry-tags a {
  display: inline-block;
  margin: 0 6px 6px 0;
  padding: 4px 12px;
  background: #F7F8FA;
  border-radius: 999px;
  font-size: 13px;
  color: #6B7280;
  text-decoration: none;
}
.entry-tags a:hover {
  color: #1D4ED8;
}

.author-box {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  padding: 24px;
  background: #F7F8FA;
  border-radius: 8px;
  border-left: 4px solid #D4A017;
}
.author-box__avatar img {
  border-radius: 999px;
}
.author-box__name {
  font-size: 18px;
  margin: 0 0 6px;
}
.author-box__bio {
  font-size: 15px;
  color: #6B7280;
  margin: 0 0 8px;
}
.author-box__social {
  font-size: 14px;
  color: #1D4ED8;
}

.related-posts {
  margin-top: 48px;
}
.related-posts .related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 720px) {
  .related-posts .related-grid {
    grid-template-columns: 1fr;
  }
}

.category-hero {
  background: #F7F8FA;
  border-bottom: 1px solid #E5E7EB;
  padding: 40px 0 32px;
}
.category-hero__title {
  font-size: clamp(32px, 4vw, 44px);
  margin: 8px 0;
}
.category-hero__desc {
  color: #6B7280;
  max-width: 640px;
  margin: 0;
}

.page-hero {
  background: #0B1F3A;
  color: #fff;
  padding: 48px 0 40px;
}
.page-hero .asanasa-breadcrumbs {
  color: rgba(255, 255, 255, 0.7);
}
.page-hero .asanasa-breadcrumbs a {
  color: rgba(255, 255, 255, 0.85);
}
.page-hero__title {
  color: #fff;
  font-size: clamp(32px, 4vw, 44px);
  margin: 8px 0 0;
}

.breadcrumbs, .asanasa-breadcrumbs {
  font-size: 13px;
  color: #6B7280;
  margin-bottom: 16px;
}
.breadcrumbs ol, .asanasa-breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
}
.breadcrumbs li::after, .asanasa-breadcrumbs li::after {
  content: "/";
  margin-left: 6px;
  color: #E5E7EB;
}
.breadcrumbs li:last-child::after, .asanasa-breadcrumbs li:last-child::after {
  content: "";
}
.breadcrumbs a, .asanasa-breadcrumbs a {
  color: #6B7280;
}
.breadcrumbs a:hover, .asanasa-breadcrumbs a:hover {
  color: #1D4ED8;
}

.comments-area {
  margin-top: 48px;
}

.comments-title {
  font-size: 24px;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid #0B1F3A;
}

.comment-list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
}

.comment-item {
  margin-bottom: 24px;
}

.comment-body {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: #F7F8FA;
  border-radius: 8px;
  border: 1px solid #E5E7EB;
}

.comment-avatar img {
  border-radius: 999px;
}

.comment-meta {
  display: flex;
  gap: 12px;
  align-items: baseline;
  margin-bottom: 8px;
  font-size: 13px;
  color: #6B7280;
}
.comment-meta .comment-author {
  font-family: "Inter", "Source Sans Pro", system-ui, sans-serif;
  font-weight: 600;
  color: #0B1F3A;
}

.comment-reply-link {
  font-size: 13px;
  font-weight: 600;
  color: #1D4ED8;
}

.comment-form {
  display: grid;
  gap: 16px;
}
.comment-form label {
  font-size: 14px;
  font-weight: 600;
  color: #0B1F3A;
}
.comment-form input[type=text],
.comment-form input[type=email],
.comment-form input[type=url],
.comment-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  font-family: "Inter", "Source Sans Pro", system-ui, sans-serif;
  font-size: 15px;
  background: #fff;
}
.comment-form .comment-form-comment {
  grid-column: 1/-1;
}

.newsletter-band {
  background: #0B1F3A;
  color: #fff;
  padding: 56px 0;
}
.newsletter-band__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 720px) {
  .newsletter-band__inner {
    grid-template-columns: 1fr;
  }
}
.newsletter-band__text h2 {
  color: #fff;
  font-size: clamp(28px, 3vw, 38px);
  margin: 0 0 8px;
}
.newsletter-band__text p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  max-width: 420px;
}
.newsletter-band__form {
  display: flex;
  gap: 12px;
}
.newsletter-band__form input {
  flex: 1;
  padding: 16px 18px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-family: "Inter", "Source Sans Pro", system-ui, sans-serif;
}
.newsletter-band__form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.newsletter-band__form .btn--primary {
  background: #D4A017;
  color: #0B1F3A;
  white-space: nowrap;
}

.asanasa-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}
.asanasa-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  font-family: "Inter", "Source Sans Pro", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #0B1F3A;
}
.asanasa-pagination .page-numbers:hover {
  border-color: #1D4ED8;
  color: #1D4ED8;
}
.asanasa-pagination .page-numbers.current {
  background: #0B1F3A;
  color: #fff;
  border-color: #0B1F3A;
}

.asanasa-quote {
  margin: 2em 0;
  padding: 24px 28px;
  border-left: 4px solid #D4A017;
  background: #F7F8FA;
  border-radius: 0 8px 8px 0;
}
.asanasa-quote__text {
  font-family: "IBM Plex Serif", "Libre Baskerville", Georgia, serif;
  font-size: 22px;
  line-height: 1.5;
  font-style: italic;
  color: #0B1F3A;
  margin: 0 0 8px;
}
.asanasa-quote__cite {
  font-size: 14px;
  color: #6B7280;
  font-style: normal;
}

.widget-title {
  font-family: "IBM Plex Serif", "Libre Baskerville", Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #0B1F3A;
}

.error-404 {
  padding: 80px 0;
  text-align: center;
}
.error-404__illustration {
  color: #0B1F3A;
  margin-bottom: 24px;
}
.error-404__illustration svg {
  margin: 0 auto;
}
.error-404__title {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 12px;
}
.error-404__text {
  color: #6B7280;
  max-width: 480px;
  margin: 0 auto 24px;
}
.error-404__popular {
  margin-top: 48px;
  text-align: left;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.error-404__popular h2 {
  font-size: 20px;
  text-align: center;
}
.error-404__popular ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.error-404__popular li {
  padding: 12px 0;
  border-bottom: 1px solid #E5E7EB;
}
.error-404__popular a {
  color: #0B1F3A;
  font-weight: 500;
}
.error-404__popular a:hover {
  color: #1D4ED8;
}
.error-404__popular .btn--ghost {
  display: block;
  text-align: center;
}

.asanasa-ad {
  margin: 24px 0;
}
.asanasa-ad--incontent {
  text-align: center;
}
.asanasa-ad--sidebar {
  margin: 0;
  text-align: center;
  background: #F7F8FA;
}
.asanasa-ad--footer {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 32px;
  padding-bottom: 32px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

[data-theme=dark] .asanasa-ad--sidebar {
  background: #111827;
  border-color: #334155;
}

@media (max-width: 720px) {
  .asanasa-ad--footer {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.popular-list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: pop;
}
.popular-list .popular-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #E5E7EB;
}
.popular-list .popular-item:last-child {
  border-bottom: none;
}
.popular-list .popular-num {
  font-family: "IBM Plex Serif", "Libre Baskerville", Georgia, serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1;
  color: #D4A017;
  min-width: 28px;
  flex-shrink: 0;
}
.popular-list .popular-link {
  font-family: "Inter", "Source Sans Pro", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: #0B1F3A;
}
.popular-list .popular-link:hover {
  color: #1D4ED8;
}

[data-theme=dark] .popular-list .popular-item {
  border-color: #334155;
}
[data-theme=dark] .popular-list .popular-link {
  color: #F8FAFC;
}

.baca-lagi {
  margin-top: 48px;
}
.baca-lagi__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 720px) {
  .baca-lagi__grid {
    grid-template-columns: 1fr;
  }
}
.baca-lagi__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.baca-lagi__media {
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
  display: block;
}
.baca-lagi__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.baca-lagi__media:hover img {
  transform: scale(1.05);
}
.baca-lagi__title {
  font-size: 18px;
  margin: 0;
  line-height: 1.3;
}
.baca-lagi__title a {
  color: #0B1F3A;
}
.baca-lagi__title a:hover {
  color: #1D4ED8;
}

[data-theme=dark] .baca-lagi__title a {
  color: #F8FAFC;
}

[data-theme=dark] body {
  background: #0F172A;
  color: #F8FAFC;
}
[data-theme=dark] h1, [data-theme=dark] h2, [data-theme=dark] h3, [data-theme=dark] h4, [data-theme=dark] h5, [data-theme=dark] h6 {
  color: #F8FAFC;
}
[data-theme=dark] a {
  color: rgb(133.7755102041, 161.2755102041, 238.7244897959);
}
[data-theme=dark] .entry-category {
  color: #D4A017;
}
[data-theme=dark] .entry-meta {
  color: #94a3b8;
}
[data-theme=dark] .entry-subtitle {
  color: #cbd5e1;
}
[data-theme=dark] .section-title, [data-theme=dark] .sidebar-title {
  color: #F8FAFC;
  border-color: #D4A017;
}
[data-theme=dark] .news-card,
[data-theme=dark] .hero__feature.feature-card {
  background: #111827;
  box-shadow: none;
  border: 1px solid #334155;
}
[data-theme=dark] .news-card:hover,
[data-theme=dark] .hero__feature.feature-card:hover {
  box-shadow: none;
}
[data-theme=dark] .news-card__title a,
[data-theme=dark] .mini-card__title a,
[data-theme=dark] .hero__title a {
  color: #F8FAFC;
}
[data-theme=dark] .news-card__title a:hover,
[data-theme=dark] .mini-card__title a:hover,
[data-theme=dark] .hero__title a:hover {
  color: #D4A017;
}
[data-theme=dark] .site-header {
  background: #111827;
  border-color: #334155;
}
[data-theme=dark] .site-tagline {
  color: #94a3b8;
}
[data-theme=dark] .search-form {
  border-color: #334155;
}
[data-theme=dark] .search-form input {
  background: #0F172A;
  color: #F8FAFC;
}
[data-theme=dark] .menu-toggle span {
  background: #F8FAFC;
}
[data-theme=dark] .sidebar-block {
  background: #111827;
  border-color: #334155;
  color: #F8FAFC;
}
[data-theme=dark] .trending-list li {
  border-color: #334155;
}
[data-theme=dark] .trending-link {
  color: #F8FAFC;
}
[data-theme=dark] .tag-cloud a {
  background: #0F172A;
  border-color: #334155;
  color: #cbd5e1;
}
[data-theme=dark] .entry-content {
  color: #F8FAFC;
}
[data-theme=dark] .entry-meta--single {
  border-color: #334155;
}
[data-theme=dark] .author-box {
  background: #111827;
  border-color: #334155;
}
[data-theme=dark] .author-box__name {
  color: #F8FAFC;
}
[data-theme=dark] .author-box__bio {
  color: #94a3b8;
}
[data-theme=dark] .entry-tags {
  border-color: #334155;
}
[data-theme=dark] .entry-tags a {
  background: #0F172A;
  color: #cbd5e1;
}
[data-theme=dark] .comment-body {
  background: #111827;
  border-color: #334155;
}
[data-theme=dark] .comment-meta .comment-author {
  color: #F8FAFC;
}
[data-theme=dark] .comment-meta {
  color: #94a3b8;
}
[data-theme=dark] .comment-form input, [data-theme=dark] .comment-form textarea {
  background: #0F172A;
  border-color: #334155;
  color: #F8FAFC;
}
[data-theme=dark] .category-hero {
  background: #111827;
  border-color: #334155;
}
[data-theme=dark] .category-hero__desc {
  color: #94a3b8;
}
[data-theme=dark] .breadcrumbs, [data-theme=dark] .asanasa-breadcrumbs {
  color: #94a3b8;
}
[data-theme=dark] .newsletter-band, [data-theme=dark] .sidebar-block--newsletter {
  background: #111827;
}
[data-theme=dark] .newsletter-form input {
  background: #0F172A;
  border-color: #334155;
}
[data-theme=dark] .asanasa-pagination .page-numbers {
  border-color: #334155;
  color: #F8FAFC;
}
[data-theme=dark] .asanasa-pagination .page-numbers.current {
  background: #D4A017;
  color: #0B1F3A;
}
[data-theme=dark] .asanasa-quote {
  background: #111827;
  border-color: #D4A017;
}
[data-theme=dark] .asanasa-quote__text {
  color: #F8FAFC;
}

@media (prefers-color-scheme: dark) {
  [data-theme=auto] body {
    background: #0F172A;
    color: #F8FAFC;
  }
  [data-theme=auto] h1, [data-theme=auto] h2, [data-theme=auto] h3, [data-theme=auto] h4, [data-theme=auto] h5, [data-theme=auto] h6 {
    color: #F8FAFC;
  }
  [data-theme=auto] .news-card, [data-theme=auto] .hero__feature.feature-card {
    background: #111827;
    border: 1px solid #334155;
  }
  [data-theme=auto] .site-header {
    background: #111827;
    border-color: #334155;
  }
  [data-theme=auto] .sidebar-block {
    background: #111827;
    border-color: #334155;
  }
}
