* { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy: #1b2a4a;
  --navy-mid: #243356;
  --accent: #005fcc;
  --accent-hover: #0047a3;
  --saffron: #e86d00;
  --green: #1a6b3a;
  --red: #c0392b;
  --red-light: #fde8e7;
  --border: #dde3ed;
  --border-dark: #c6cedb;
  --bg: #f3f5f9;
  --bg-card: #ffffff;
  --ink: #1a2744;
  --ink-mid: #374665;
  --muted: #6b7a99;
  --sky: #0369a1;
  --sky-pale: #e0f2fe;
  /* Legacy aliases for seo-template compat */
  --navy-deep: #1b2a4a;
  --saffron-light: #ff8a2b;
  --forest: #1a6b3a;
  --forest-mid: #2e8b57;
  --forest-pale: #d4edda;
  --forest-text: #0f4724;
  --chai: #b45309;
  --chai-pale: #fef3c7;
  --chai-text: #78350f;
  --sky-light: #93c5fd;
  --sky-text: #0369a1;
  --red-alert: #c0392b;
  --red-pale: #fde8e7;
  --red-text: #8b0000;
  --cream: #f3f5f9;
  --white: #ffffff;
  --border-light: #dde3ed;
  --border-dark-css: rgba(0,0,0,0.08);
  --shadow: 0 4px 12px rgba(0,0,0,0.10);
}
body {
  margin: 0;
  color: var(--ink);
  font-family: "Inter", "Poppins", Arial, sans-serif;
  font-size: 14.5px;
  line-height: 1.6;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
.mobile-detail-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(15,23,42,0.08);
  margin: 0 0 10px;
  overflow: hidden;
}
.mobile-detail-hero {
  background: linear-gradient(180deg, #203454 0%, #1a2c47 100%);
  color: #fff;
  padding: 12px;
  position: relative;
}
.mobile-detail-hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 4px;
  background: var(--saffron);
}
.mobile-detail-title {
  font-size: 24px;
  line-height: 1.12;
  margin: 0 0 8px;
  color: #fff;
}
.mobile-detail-text {
  color: rgba(255,255,255,0.88);
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
}
.mobile-detail-official {
  display: block;
  margin-top: 10px;
  border-radius: 999px;
  background: var(--saffron);
  color: #fff !important;
  text-align: center;
  font-weight: 800;
  padding: 12px 14px;
  text-decoration: none;
}
.mobile-detail-body,
.mobile-detail-related {
  padding: 10px;
}
.mobile-detail-related h3 {
  margin: 0 0 8px;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--navy-deep);
}
.mobile-detail-related .related-link {
  padding-left: 0;
  padding-right: 0;
}
a { color: var(--accent); text-decoration: none; font-weight: 600; }
a:hover { text-decoration: underline; color: var(--accent-hover); }
.topline {
  background: var(--navy);
  color: #fff;
}
.topline-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 8px 16px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 12px;
}
.live-stamp {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  padding: 4px 10px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #94a3c0;
}
.live-stamp::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f87171;
  box-shadow: 0 0 0 4px rgba(248,113,113,.22);
  animation: sirenPulse 1.6s ease-in-out infinite;
  flex-shrink: 0;
}
.topline-note {
  font-size: 12px;
  font-weight: 500;
  color: #cbd5e1;
}
.topline-link {
  color: #fff;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  padding: 4px 10px;
  border-radius: 5px;
  font-size: 11.5px;
  font-weight: 600;
}
.brandbar {
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.brandbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 16px 12px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
}
.brand-name {
  font-size: 28px;
  letter-spacing: -.03em;
  margin: 0;
  font-family: "Baloo 2", "Inter", sans-serif;
  font-weight: 800;
  line-height: 1;
}
.brand-name a { color: #fff; text-decoration: none; }
.brand-name .brand-accent { color: var(--saffron); }
.brand-note {
  color: #94a3c0;
  font-size: 12px;
  margin-top: 4px;
}
.page-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 16px;
}
.breadcrumbs,
.article-shell,
.side-panel,
.ad-box {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-card);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.breadcrumbs {
  padding: 10px 12px;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 12px;
  margin-bottom: 14px;
}
.section-head {
  padding: 10px 14px;
  color: var(--navy);
  background: #f9fafb;
  border-left: 4px solid var(--saffron);
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
}
.article-shell {
  border-top: none;
}
.article-body {
  padding: 14px;
  color: var(--ink);
}
.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.meta-chip {
  display: inline-block;
  border-radius: 999px;
  background: #f0ece4;
  color: #4a4540;
  border: 1px solid #d8d0c0;
  padding: 5px 10px;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
}
.meta-chip:nth-child(1) {
  background: var(--sky-pale);
  color: var(--sky-text);
  border-color: var(--sky-light);
}
.meta-chip:nth-child(2) {
  background: var(--forest-pale);
  color: var(--forest-text);
  border-color: #b7e4c7;
}
.meta-chip:nth-child(3) {
  background: var(--chai-pale);
  color: var(--chai-text);
  border-color: #ffc97a;
}
.meta-chip:nth-child(4) {
  background: var(--red-pale);
  color: var(--red-text);
  border-color: #f5c2c7;
}
.post-title {
  font-size: 31px;
  line-height: 1.24;
  margin: 0 0 12px;
  color: var(--navy-deep);
  font-family: Georgia, "Times New Roman", serif;
}
.summary-box,
.info-box {
  border: 1px solid var(--border-light);
  border-radius: 18px;
  background: var(--white);
  color: var(--ink);
  padding: 12px;
  margin: 13px 0;
}
.summary-box p,
.info-box p {
  margin: 0;
  color: var(--ink);
  -webkit-text-fill-color: currentColor;
}
.post-rich-content p,
.post-rich-content ul,
.post-rich-content ol,
.post-rich-content blockquote,
.post-rich-content table,
.post-rich-content h2,
.post-rich-content h3,
.post-rich-content h4 {
  margin: 0 0 14px;
}
.post-rich-content ul,
.post-rich-content ol {
  padding-left: 18px;
}
.post-rich-content li + li {
  margin-top: 6px;
}
.post-rich-content a {
  color: var(--sky-text);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.post-rich-content blockquote {
  border-left: 3px solid var(--border-light);
  padding-left: 12px;
  color: var(--muted);
}
.post-table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
}
.post-rich-content table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.55;
}
.post-rich-content caption {
  caption-side: top;
  text-align: left;
  padding: 14px 14px 8px;
  font-weight: 700;
  color: var(--navy-deep);
}
.post-rich-content th,
.post-rich-content td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border-light);
  text-align: left;
  vertical-align: top;
}
.post-rich-content th {
  font-weight: 700;
  color: var(--navy-deep);
  background: #f6f9fd;
}
.post-rich-content tbody tr:nth-child(even) td {
  background: #fcfdff;
}
.post-rich-content tbody tr:last-child td {
  border-bottom: none;
}
.summary-box,
.summary-box *,
.article-body .summary-box,
.article-body .summary-box *,
.article-shell .summary-box,
.article-shell .summary-box * {
  color: var(--ink) !important;
  -webkit-text-fill-color: currentColor !important;
}
.link-block-intro {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
.link-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}
.link-card {
  display: block;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid var(--border-light);
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(15, 26, 48, 0.06);
}
.link-card-label {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--sky-text);
}
.link-card strong {
  display: block;
  font-size: 16px;
  line-height: 1.3;
  color: var(--navy-deep);
}
.link-card span:last-child {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
  font-weight: 500;
}
.link-section-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.link-section-panel {
  border: 1px solid var(--border-light);
  border-radius: 18px;
  background: var(--white);
  overflow: hidden;
}
.link-section-title {
  padding: 10px 12px;
  background: rgba(36, 51, 86, 0.06);
  color: var(--navy-mid);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border-light);
}
.action-link {
  display: inline-block;
  border-radius: 999px;
  background: var(--saffron);
  color: #fff;
  padding: 12px 16px;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  margin: 10px 0 6px;
  box-shadow: 0 14px 28px rgba(255, 98, 0, 0.18);
}
.action-note {
  color: var(--muted);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 12px;
}
.related-link,
.quick-link {
  display: block;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border-light);
}
.related-link:last-child,
.quick-link:last-child { border-bottom: none; }
.side-panel { margin-bottom: 14px; overflow: hidden; }
.sponsored-flag {
  display: inline-block;
  margin: 10px 12px 0;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(82,183,136,0.15);
  color: var(--forest-mid);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.ad-body {
  padding: 10px 12px 14px;
  font-family: "Poppins", Arial, sans-serif;
}
.ad-media {
  display: block;
  width: calc(100% - 20px);
  margin: 10px auto 0;
  border-radius: 18px;
  max-height: 240px;
  object-fit: cover;
  background: rgba(20, 25, 45, 0.08);
}
.ad-copy {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}
.ad-cta {
  display: inline-block;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--sky);
  color: #fff;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}
.share-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  padding: 10px 18px;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.15s, transform 0.12s;
  color: #fff !important;
}
.share-btn:hover {
  text-decoration: none;
  opacity: 0.88;
  transform: translateY(-1px);
}
.share-btn-wa {
  background: linear-gradient(135deg, #25d366, #1ebe5d);
  box-shadow: 0 4px 14px rgba(37,211,102,0.3);
}
.share-btn-tg {
  background: linear-gradient(135deg, #24a1de, #1a8bc2);
  box-shadow: 0 4px 14px rgba(36,161,222,0.25);
}
.share-btn-copy {
  background: rgba(27,42,74,0.08);
  color: var(--navy) !important;
  border: 1.5px solid rgba(27,42,74,0.12);
  box-shadow: none;
}
.share-btn-copy:hover {
  background: rgba(27,42,74,0.14);
  color: var(--navy) !important;
}

.soft-video-gate {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 50;
}
.soft-video-gate.open { display: flex; }
.soft-video-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 18, 32, 0.52);
  backdrop-filter: blur(4px);
}
.soft-video-card {
  position: relative;
  z-index: 1;
  width: min(540px, calc(100vw - 28px));
  border-radius: 24px;
  background: var(--cream);
  border: 1px solid var(--border-light);
  padding: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}
.soft-video-badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--red-pale);
  color: var(--red-text);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.soft-video-title {
  margin-top: 10px;
  font-size: 22px;
  color: var(--navy-deep);
  line-height: 1.2;
}
.soft-video-copy {
  margin-top: 8px;
  color: var(--muted);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 13px;
}
.soft-video-player {
  width: 100%;
  margin-top: 12px;
  border-radius: 18px;
  background: #111827;
}
.soft-video-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 12px;
}
.soft-video-btn {
  border: none;
  border-radius: 999px;
  padding: 10px 14px;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}
.soft-video-skip {
  background: rgba(36,51,86,0.08);
  color: var(--navy-mid);
}
.soft-video-go {
  background: var(--saffron);
  color: #fff;
}
/* ─── Rich Site Footer ─────────────────────────────────────── */
footer, .site-footer {
  margin-top: 0;
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  border-top: 3px solid var(--saffron);
}
footer a, .site-footer a {
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  text-decoration: none;
}
footer a:hover, .site-footer a:hover { color: #fff; text-decoration: none; }
footer a:visited, .site-footer a:visited { color: rgba(255,255,255,0.55); }

.site-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 20px 28px;
}
.site-footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand-logo {
  font-family: "Baloo 2","Poppins",sans-serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  display: inline-block;
  margin-bottom: 10px;
  line-height: 1;
}
.footer-brand-logo .accent { color: var(--saffron); }
.footer-brand-desc {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  max-width: 260px;
  margin-bottom: 20px;
}
.footer-social-row { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s;
  white-space: nowrap;
}
.footer-social-btn:hover { background: rgba(255,255,255,0.16); color: #fff; }
.footer-social-btn.telegram { background: rgba(36,161,222,0.18); border-color: rgba(36,161,222,0.35); }
.footer-social-btn.telegram:hover { background: rgba(36,161,222,0.28); }
.footer-social-btn.whatsapp { background: rgba(37,211,102,0.15); border-color: rgba(37,211,102,0.3); }
.footer-social-btn.whatsapp:hover { background: rgba(37,211,102,0.25); }
.footer-col-title {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 14px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links a { color: rgba(255,255,255,0.65); font-size: 13px; }
.footer-links a:hover { color: #fff; }
.site-footer-bottom {
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copyright { font-size: 12px; color: rgba(255,255,255,0.45); }
.footer-legal-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-legal-links a { color: rgba(255,255,255,0.5); font-size: 12px; font-weight: 600; }
.footer-legal-links a:hover { color: #fff; }

/* Scroll-to-top */
.scroll-to-top {
  position: fixed;
  bottom: 24px;
  right: 16px;
  z-index: 90;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--navy);
  border: 2px solid rgba(255,255,255,0.14);
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s, transform 0.22s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
.scroll-to-top.visible { opacity: 1; pointer-events: auto; }
.scroll-to-top:hover { background: var(--saffron); border-color: var(--saffron); transform: translateY(-2px); }

@media (max-width: 900px) {
  .site-footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-brand-col { grid-column: 1 / -1; }
}
@media (max-width: 540px) {
  .site-footer-inner { padding: 32px 16px 20px; }
  .footer-brand-col { grid-column: 1 / -1; }
  .footer-brand-desc { max-width: 100%; }
  .site-footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}

@keyframes sirenPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.18); opacity: 0.68; }
}
@media (max-width: 920px) {
  .page-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  body {
    font-size: 14px;
    line-height: 1.45;
  }
  .topline-inner {
    display: block;
    padding: 7px 8px;
  }
  .live-stamp {
    padding: 4px 8px;
    font-size: 10px;
  }
  .topline-note,
  .topline-link,
  .brand-note,
  .breadcrumbs,
  .action-note,
  .share-btn,
  footer {
    font-size: 11px;
  }
  .topline-link { display: inline-block; margin-top: 6px; }
  .brandbar-inner {
    display: block;
    padding: 12px 8px 10px;
  }
  .brand-name { font-size: 22px; }
  .page-wrap {
    padding: 10px 8px 18px;
    gap: 12px;
  }
  .breadcrumbs,
  .article-shell,
  .side-panel,
  .ad-box {
    border-radius: 16px;
  }
  .breadcrumbs {
    padding: 8px 10px;
    margin-bottom: 10px;
  }
  .section-head {
    padding: 9px 11px;
    font-size: 10px;
    border-radius: 16px 16px 0 0;
  }
  .article-body {
    padding: 10px;
  }
  .meta-row {
    gap: 6px;
    margin-bottom: 8px;
  }
  .meta-chip {
    padding: 4px 8px;
    font-size: 9px;
  }
  .post-title {
    font-size: 20px;
    line-height: 1.22;
    margin-bottom: 8px;
  }
  .summary-box,
  .info-box {
    padding: 10px;
    margin: 10px 0;
    border-radius: 14px;
  }
  .post-table-wrap {
    border-radius: 14px;
  }
  .post-rich-content table {
    min-width: 460px;
    font-size: 13px;
  }
  .post-rich-content th,
  .post-rich-content td {
    padding: 10px 12px;
  }
  .link-card-grid,
  .link-section-grid {
    grid-template-columns: 1fr;
  }
  .link-card {
    border-radius: 14px;
    padding: 10px;
  }
  .link-section-panel {
    border-radius: 14px;
  }
  .action-link {
    width: 100%;
    text-align: center;
    padding: 10px 12px;
    font-size: 12px;
  }
  .related-link,
  .quick-link {
    padding: 8px 10px;
    font-size: 13px;
  }
  .share-row {
    gap: 6px;
  }
  .share-btn {
    padding: 7px 10px;
  }
  .soft-video-card {
    border-radius: 18px;
    padding: 12px;
  }
  .soft-video-title { font-size: 18px; }
  .soft-video-copy { font-size: 12px; }
}
@media (max-width: 420px) {
  .post-title { font-size: 18px; }
  .brand-name { font-size: 20px; }
}

/* Compact detail hero — navy + saffron accent */
.detail-wrap {
  display: block;
}

.detail-hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) 340px;
  gap: 16px;
  margin-bottom: 16px;
  padding: 24px;
  border-radius: 20px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.detail-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,137,12,0.16) 0%, transparent 52%);
  pointer-events: none;
}

.detail-hero-card::after {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 5px;
  background: var(--saffron);
  border-radius: 0 20px 20px 0;
}

.detail-hero-copy,
.detail-search-card {
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  position: relative;
}

.detail-hero-copy {
  padding: 20px;
  background: rgba(255,255,255,.06);
}

.detail-search-card {
  padding: 20px;
  background: rgba(255,255,255,.08);
  color: #fff;
}

.detail-hero-card .breadcrumbs {
  margin-bottom: 12px;
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.12);
  color: rgba(255,255,255,.82);
  box-shadow: none;
}

.detail-hero-card .breadcrumbs a {
  color: var(--saffron);
}

.detail-hero-card .post-title,
.detail-post-title {
  color: #fff;
  font-family: "Inter", Arial, sans-serif;
  font-size: 34px;
  line-height: 1.18;
  margin-bottom: 10px;
}

.detail-hero-card .meta-chip {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.14);
  color: rgba(255,255,255,.9);
}

.detail-hero-text {
  color: rgba(255,255,255,.82);
  font-size: 14.5px;
  line-height: 1.68;
  margin: 0;
}

.detail-hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}


.outline-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  transition: background 0.14s;
}

.outline-action:hover {
  text-decoration: none;
  background: rgba(255,255,255,.16);
  color: #fff;
}

.detail-search-kicker {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--saffron);
}

.detail-search-title {
  margin-top: 10px;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
}

.detail-search-form {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.detail-search-field {
  display: grid;
  gap: 7px;
}

.detail-search-field span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
}

.detail-search-field input {
  width: 100%;
  border: none;
  outline: none;
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  padding: 14px 15px;
  font: inherit;
}

.detail-search-form button {
  height: 50px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--saffron), #f5a030);
  color: #fff;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.16s;
}

.detail-search-form button:hover {
  background: linear-gradient(135deg, #c46f00, var(--saffron));
}

.detail-search-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.detail-query-pill {
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.9);
  border-radius: 999px;
  padding: 7px 12px;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.13s;
}

.detail-query-pill:hover {
  background: rgba(255,255,255,.18);
}

.detail-search-results {
  display: none;
  margin-top: 12px;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

.detail-search-results.active {
  display: block;
}

.detail-search-result,
.detail-search-empty {
  display: block;
  padding: 12px 14px;
  border-bottom: 1px solid #ece6dc;
  color: var(--ink);
}

.detail-search-result:last-child,
.detail-search-empty:last-child {
  border-bottom: none;
}

.detail-search-result strong {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.35;
}

.detail-search-result span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted);
}

.detail-search-result-type {
  display: inline-flex;
  padding: 3px 8px;
  border-radius: 999px;
  background: #eef6ff;
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.detail-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 16px;
}

@media (max-width: 980px) {
  .detail-hero-card,
  .detail-main-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .detail-hero-card {
    padding: 14px;
    border-radius: 20px;
  }

  .detail-hero-copy,
  .detail-search-card {
    padding: 16px;
  }

  .detail-post-title {
    font-size: 28px;
  }

  .detail-hero-actions {
    flex-direction: column;
  }
}


