:root {
  --portal-bg: #0f121b;
  --portal-bg-soft: #171d2b;
  --portal-surface: linear-gradient(180deg, rgba(27, 32, 49, 0.92), rgba(18, 23, 36, 0.94));
  --portal-surface-strong: rgba(22, 28, 42, 0.96);
  --portal-border: rgba(198, 162, 106, 0.22);
  --portal-border-soft: rgba(170, 201, 255, 0.12);
  --portal-text: #f1eadb;
  --portal-muted: #b9b0a1;
  --portal-accent: #c6a26a;
  --portal-accent-2: #82a8d8;
  --portal-shadow: 0 24px 52px rgba(4, 7, 14, 0.38);
  --portal-shadow-soft: 0 16px 32px rgba(6, 8, 14, 0.28);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 18%, rgba(130, 168, 216, 0.18), transparent 22%),
    radial-gradient(circle at 82% 14%, rgba(198, 162, 106, 0.16), transparent 18%),
    radial-gradient(circle at 50% -10%, rgba(255, 255, 255, 0.08), transparent 26%),
    linear-gradient(180deg, #0c1018 0%, #121725 42%, #0d111a 100%);
  color: var(--portal-text);
  font-family: "Source Serif 4", Georgia, serif;
  font-optical-sizing: auto;
  font-size: 1.06rem;
  line-height: 1.72;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 12% 30%, rgba(255, 255, 255, 0.28) 0 1px, transparent 1.4px),
    radial-gradient(circle at 78% 22%, rgba(255, 255, 255, 0.2) 0 1px, transparent 1.2px),
    radial-gradient(circle at 63% 67%, rgba(198, 162, 106, 0.18) 0 1px, transparent 1.6px),
    radial-gradient(circle at 28% 78%, rgba(130, 168, 216, 0.16) 0 1px, transparent 1.8px);
  opacity: 0.45;
  z-index: -1;
}

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

a {
  color: inherit;
  text-decoration: none;
}

p,
li {
  color: var(--portal-muted);
}

h1,
h2,
h3,
h4,
h5,
h6,
.portal-brand-copy strong,
.portal-brand-copy small,
.portal-topnav-link,
.ampstart-btn,
.hub-card-meta,
.article-kicker,
.portal-spotlight-kicker,
.site-footer h2,
.site-drawer-head strong,
.site-drawer-nav a,
.static-meta {
  font-family: "Barlow Semi Condensed", "Segoe UI", sans-serif;
  letter-spacing: 0.03em;
}

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

.skip-link {
  position: absolute;
  top: 0.85rem;
  left: 1rem;
  z-index: 60;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(198, 162, 106, 0.26);
  background: rgba(14, 18, 29, 0.96);
  color: var(--portal-text);
  font-family: "Barlow Semi Condensed", "Segoe UI", sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateY(-160%);
  transition: transform 0.18s ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--portal-border);
  background:
    linear-gradient(180deg, rgba(16, 21, 33, 0.96), rgba(13, 18, 28, 0.92));
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 38px rgba(4, 7, 14, 0.28);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(198, 162, 106, 0.4), transparent);
}

.site-header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 4.5rem;
}

.site-menu-button,
.site-drawer-close {
  border: 0;
  background: transparent;
  color: var(--portal-accent);
  cursor: pointer;
}

.site-menu-button {
  min-height: 2.85rem;
  padding: 0 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(198, 162, 106, 0.18);
  white-space: nowrap;
}

.site-menu-button:hover,
.site-menu-button:focus-visible,
.site-drawer-close:hover,
.site-drawer-close:focus-visible,
.portal-topnav-link:focus-visible,
.site-drawer-nav a:focus-visible,
.portal-footer-links a:focus-visible,
.site-social-links a:focus-visible,
.ampstart-btn:focus-visible {
  outline: 2px solid rgba(130, 168, 216, 0.75);
  outline-offset: 2px;
}

.site-menu-icon {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.28rem;
}

.site-menu-icon span {
  display: block;
  width: 1.2rem;
  height: 2px;
  background: currentColor;
}

.site-menu-label {
  font-family: "Barlow Semi Condensed", "Segoe UI", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portal-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex: 1;
  min-width: 0;
}

.portal-brand img {
  border-radius: 999px;
  box-shadow: 0 0 0 2px rgba(198, 162, 106, 0.18), 0 0 36px rgba(130, 168, 216, 0.08);
}

.portal-brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.portal-brand-copy strong {
  font-size: 1.26rem;
  color: var(--portal-text);
  line-height: 0.96;
}

.portal-brand-copy small {
  font-size: 0.78rem;
  text-transform: uppercase;
  color: var(--portal-muted);
  opacity: 0.9;
  letter-spacing: 0.12em;
  line-height: 1.1;
}

.portal-topnav {
  margin-left: auto;
  display: none;
  align-items: center;
  gap: 0.7rem;
}

.portal-topnav-link {
  color: var(--portal-text);
  text-transform: uppercase;
  font-size: 0.96rem;
  padding: 0.4rem 0.78rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.portal-topnav-link:hover {
  background: rgba(198, 162, 106, 0.08);
  border-color: rgba(198, 162, 106, 0.18);
  color: var(--portal-accent);
  box-shadow: inset 0 0 0 1px rgba(198, 162, 106, 0.08);
}

.site-drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 39;
  background: rgba(20, 17, 16, 0.42);
  backdrop-filter: blur(4px);
}

.site-drawer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  width: min(22rem, 88vw);
  height: 100vh;
  padding:
    calc(1rem + env(safe-area-inset-top))
    1rem
    calc(1.2rem + env(safe-area-inset-bottom));
  background:
    radial-gradient(circle at top right, rgba(130, 168, 216, 0.14), transparent 26%),
    linear-gradient(180deg, #151a27 0, #0f131e 100%);
  border-right: 1px solid var(--portal-border);
  box-shadow: 0 24px 52px rgba(3, 5, 10, 0.42);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.site-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  position: sticky;
  top: calc(env(safe-area-inset-top) * -1);
  padding-bottom: 0.8rem;
  background: linear-gradient(180deg, rgba(15, 19, 30, 0.98), rgba(15, 19, 30, 0.86));
  z-index: 1;
}

.site-drawer-head strong {
  font-size: 1.2rem;
}

.site-drawer-close {
  font-size: 2rem;
  line-height: 1;
}

.site-drawer-nav {
  display: grid;
  gap: 0.65rem;
}

.site-drawer-nav a {
  display: flex;
  align-items: center;
  min-height: 3.35rem;
  padding: 0.8rem 0.9rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(198, 162, 106, 0.14);
  text-transform: uppercase;
  color: var(--portal-text);
}

.site-drawer-cta {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(198, 162, 106, 0.16);
}

.site-drawer-cta .ampstart-btn {
  width: 100%;
}

body.has-drawer {
  overflow: hidden;
}

.site-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.6rem 1rem 4rem;
  position: relative;
}

.site-page {
  background: transparent;
  display: grid;
  gap: 1.25rem;
}

.article-breadcrumbs {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.45rem;
  align-items: center;
  margin: 0;
  padding: 0 0 0.2rem;
  color: var(--portal-muted);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  overflow-x: auto;
  scrollbar-width: none;
}

.article-breadcrumbs::-webkit-scrollbar {
  display: none;
}

.article-breadcrumbs > * {
  flex: 0 0 auto;
}

.article-breadcrumbs a {
  color: var(--portal-accent);
}

.article-hero,
.portal-spotlight,
.hub-card,
.article-actions,
.site-section {
  border: 1px solid var(--portal-border);
  border-radius: 26px;
  box-shadow: var(--portal-shadow);
}

.article-hero,
.portal-spotlight {
  position: relative;
  overflow: hidden;
}

.article-hero {
  padding: 1.55rem 1.3rem 1.4rem;
  background:
    radial-gradient(circle at top right, rgba(130, 168, 216, 0.18), transparent 28%),
    radial-gradient(circle at bottom left, rgba(198, 162, 106, 0.12), transparent 32%),
    linear-gradient(135deg, rgba(24, 31, 47, 0.96), rgba(14, 18, 29, 0.96));
}

.article-hero::before,
.portal-spotlight::before,
.hub-card::before {
  content: "";
  position: absolute;
  inset: 0.9rem;
  border-radius: 18px;
  border: 1px solid rgba(198, 162, 106, 0.12);
  pointer-events: none;
}

.article-hero::after,
.portal-spotlight::after {
  content: "";
  position: absolute;
  top: -3rem;
  right: -2rem;
  width: 9rem;
  height: 9rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(198, 162, 106, 0.22), rgba(198, 162, 106, 0));
}

.article-kicker,
.portal-spotlight-kicker {
  margin: 0 0 0.45rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--portal-accent);
}

.article-title,
.portal-spotlight-title {
  margin: 0 0 0.75rem;
  color: var(--portal-text);
  line-height: 0.96;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.18);
}

.article-title {
  font-size: clamp(2.25rem, 6vw, 4.4rem);
  max-width: 13ch;
}

.portal-spotlight {
  margin-top: 1.5rem;
  padding: 1.45rem 1.3rem;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 22%),
    linear-gradient(135deg, rgba(24, 34, 58, 0.98), rgba(35, 70, 99, 0.96));
}

.portal-spotlight-kicker,
.portal-spotlight-title,
.portal-spotlight-copy,
.portal-spotlight .ampstart-btn {
  position: relative;
  z-index: 1;
}

.portal-spotlight-kicker {
  color: rgba(239, 223, 191, 0.84);
}

.portal-spotlight-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  color: #fff;
}

.portal-spotlight-copy {
  max-width: 40rem;
  margin: 0 0 1rem;
  color: rgba(241, 234, 219, 0.88);
}

.portal-spotlight .portal-spotlight-btn {
  background: linear-gradient(180deg, #d9ba84 0%, #b88c55 100%);
  color: #10141d;
  border-color: rgba(255, 230, 180, 0.4);
}

.article-summary,
.hub-card-summary,
.article-body p,
.article-body li {
  font-size: 1.12rem;
}

.article-summary {
  max-width: 34rem;
  margin: 0;
}

.article-body {
  margin-top: 0.25rem;
}

.hub-grid,
.static-legal-grid {
  display: grid;
  gap: 1rem;
}

.hub-card {
  padding: 1.25rem 1.15rem;
  position: relative;
  overflow: hidden;
  background: var(--portal-surface);
  backdrop-filter: blur(8px);
}

.hub-card::after {
  content: "";
  position: absolute;
  inset: auto -2.5rem -2.5rem auto;
  width: 8rem;
  height: 8rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(130, 168, 216, 0.12), transparent 72%);
  pointer-events: none;
}

.hub-card-meta {
  margin: 0 0 0.65rem;
  color: var(--portal-accent);
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hub-card-title {
  margin: 0 0 0.75rem;
  color: var(--portal-text);
  font-size: 1.7rem;
  line-height: 1;
  text-transform: none;
}

.hub-card-summary {
  margin: 0 0 0.95rem;
}

.navigation-links,
.article-actions,
.static-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.article-actions {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  background:
    linear-gradient(135deg, rgba(198, 162, 106, 0.08), rgba(130, 168, 216, 0.08)),
    rgba(20, 26, 40, 0.92);
}

.ampstart-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  border: 1px solid rgba(223, 191, 140, 0.32);
  background: linear-gradient(180deg, rgba(208, 171, 112, 0.95), rgba(171, 123, 72, 0.96));
  color: #0f1117;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 12px 24px rgba(7, 10, 16, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.ampstart-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(7, 10, 16, 0.28);
}

.ampstart-btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--portal-accent);
  border-color: rgba(198, 162, 106, 0.22);
}

.ampstart-btn-secondary:hover {
  background: rgba(198, 162, 106, 0.14);
  color: #f7f0e1;
}

.ampstart-btn[disabled] {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

.site-video {
  margin-top: 1rem;
  border-radius: 24px;
  overflow: hidden;
  background: #0b0f16;
  border: 1px solid rgba(198, 162, 106, 0.14);
  box-shadow: var(--portal-shadow-soft);
}

.site-video iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.site-footer {
  background:
    radial-gradient(circle at top center, rgba(130, 168, 216, 0.1), transparent 24%),
    linear-gradient(135deg, #0d1320, #141d2d 48%, #10263a 100%);
  color: #f7f0e7;
  border-top: 1px solid rgba(198, 162, 106, 0.16);
}

.site-footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2.4rem 1rem calc(2.4rem + env(safe-area-inset-bottom));
  display: grid;
  gap: 1.5rem;
}

.site-footer h2 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  color: #f7f0e7;
  text-transform: uppercase;
}

.portal-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.portal-footer-links a {
  color: rgba(247, 240, 231, 0.86);
}

.portal-footer-links a:hover {
  text-decoration: underline;
}

.portal-footer-note {
  max-width: 28rem;
  margin: 0 0 1rem;
  color: rgba(247, 240, 231, 0.74);
}

.site-footer-cta {
  margin: 0 0 1rem;
}

.site-footer .ampstart-btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.site-footer .ampstart-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.site-social-links {
  display: flex;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-social-links a {
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(198, 162, 106, 0.18);
  color: rgba(247, 240, 231, 0.88);
}

.site-social-links svg {
  fill: currentColor;
}

.site-social-links a:hover {
  background: rgba(198, 162, 106, 0.1);
}

.mt3 {
  margin-top: 1.5rem;
}

.inline-block {
  display: inline-block;
}

.md-mb2 {
  margin-bottom: 1rem;
}

.md-mt2 {
  margin-top: 1rem;
}

.is-hidden {
  display: none;
}

@media (min-width: 52.06rem) {
  .portal-topnav {
    display: flex;
  }

  .site-menu-button {
    display: none;
  }

  .site-main {
    padding-top: 2.4rem;
  }

  .hub-grid,
  .static-legal-grid,
  .site-footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 74rem) {
  .site-footer-inner {
    grid-template-columns: 1.1fr 1fr 1.1fr 0.9fr;
  }
}

@media (max-width: 51.99rem) {
  body::before {
    opacity: 0.34;
  }

  .site-header-inner {
    padding: 0.72rem 0.85rem;
    gap: 0.75rem;
  }

  .site-main {
    padding: 1.15rem 0.9rem 3.2rem;
  }

  .portal-brand {
    gap: 0.7rem;
  }

  .portal-brand img {
    width: 48px;
    height: 48px;
  }

  .portal-brand-copy strong {
    font-size: 1.04rem;
  }

  .portal-brand-copy small {
    display: block;
    max-width: 16ch;
    font-size: 0.66rem;
  }

  .article-hero,
  .portal-spotlight,
  .hub-card,
  .article-actions,
  .site-section {
    border-radius: 20px;
  }

  .article-hero,
  .portal-spotlight,
  .hub-card,
  .article-actions {
    box-shadow: var(--portal-shadow-soft);
  }

  .article-hero::before,
  .portal-spotlight::before,
  .hub-card::before {
    inset: 0.75rem;
    border-radius: 16px;
  }

  .article-title {
    max-width: none;
    font-size: clamp(2rem, 11vw, 3.25rem);
  }

  .portal-spotlight-title {
    font-size: clamp(1.7rem, 8vw, 2.35rem);
  }

  .article-summary,
  .portal-spotlight-copy,
  .hub-card-summary,
  .article-body p,
  .article-body li {
    font-size: 1rem;
  }

  .navigation-links,
  .article-actions,
  .static-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .ampstart-btn {
    width: 100%;
  }

  .static-form input[type='email'] {
    min-height: 3.15rem;
    font-size: 1rem;
  }

  .site-footer-inner {
    gap: 1.85rem;
  }
}

@media (max-width: 23.5rem) {
  .site-menu-label,
  .portal-brand-copy small {
    display: none;
  }

  .site-menu-button {
    width: 2.85rem;
    padding: 0;
  }

  .portal-brand img {
    width: 44px;
    height: 44px;
  }

  .portal-brand-copy strong {
    font-size: 0.98rem;
  }
}

.static-richtext h2,
.static-richtext h3 {
  font-family: "Barlow Semi Condensed", "Segoe UI", sans-serif;
  color: var(--portal-text);
  letter-spacing: 0.03em;
  text-transform: none;
}

.static-richtext h2 {
  font-size: 1.85rem;
  line-height: 1.05;
  margin: 0 0 0.85rem;
}

.static-richtext h3 {
  font-size: 1.2rem;
  line-height: 1.2;
  margin: 1.25rem 0 0.65rem;
}

.static-richtext ul,
.static-richtext ol {
  margin: 0 0 1rem 1.2rem;
  padding: 0;
  color: var(--portal-muted);
}

.static-richtext li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.static-richtext strong {
  color: var(--portal-text);
}

.static-richtext a {
  color: var(--portal-accent);
}

.static-richtext code {
  padding: 0.15rem 0.4rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(198, 162, 106, 0.14);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.9em;
}

.static-meta {
  font-family: "Barlow Semi Condensed", "Segoe UI", sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--portal-accent);
  margin: 0 0 0.9rem;
}

.static-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.static-form {
  display: grid;
  gap: 0.85rem;
  max-width: 38rem;
}

.static-form label {
  font-family: "Barlow Semi Condensed", "Segoe UI", sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--portal-accent);
}

.static-form input[type="email"] {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(198, 162, 106, 0.18);
  background: rgba(255, 255, 255, 0.05);
  color: var(--portal-text);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.08rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.static-form input[type="email"]::placeholder {
  color: rgba(241, 234, 219, 0.45);
}

.static-form input[type="submit"] {
  -webkit-appearance: none;
  appearance: none;
}

.static-status {
  padding: 1rem 1.15rem;
  border-radius: 18px;
  border: 1px solid rgba(198, 162, 106, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

.static-status h2 {
  font-size: 1.2rem;
  line-height: 1.05;
  margin: 0 0 0.35rem;
}

.static-status.success {
  background: rgba(46, 104, 88, 0.18);
  border-color: rgba(113, 197, 164, 0.22);
}

.static-status.error {
  background: rgba(106, 46, 46, 0.18);
  border-color: rgba(208, 125, 125, 0.18);
}

.static-legal-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 52.06rem) {
  .static-legal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.content-layout {
  display: grid;
  gap: 1.25rem;
}

.content-primary,
.content-secondary {
  min-width: 0;
}

.content-secondary {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.section-card,
.article-featured-media,
.embed-video,
.sidebar-card {
  border: 1px solid var(--portal-border);
  border-radius: 26px;
  box-shadow: var(--portal-shadow);
  background: var(--portal-surface);
  overflow: hidden;
}

.section-card,
.sidebar-card {
  padding: 1.25rem 1.2rem;
}

.sidebar-card {
  position: sticky;
  top: 6rem;
}

.sidebar-card h2,
.sidebar-card h3,
.section-card h2,
.section-card h3 {
  margin: 0 0 0.75rem;
  color: var(--portal-text);
}

.sidebar-card p,
.sidebar-card li {
  margin-top: 0;
}

.sidebar-actions {
  display: grid;
  gap: 0.75rem;
}

.article-featured-media,
.embed-video {
  margin-top: 1.2rem;
  background:
    radial-gradient(circle at top right, rgba(130, 168, 216, 0.12), transparent 20%),
    #0b0f16;
}

.article-featured-media img,
.embed-video iframe {
  display: block;
  width: 100%;
  border: 0;
}

.article-featured-media img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.embed-video iframe {
  aspect-ratio: 16 / 9;
}

.article-body {
  display: grid;
  gap: 1rem;
}

.article-body > :first-child {
  margin-top: 0;
}

.article-body > :last-child {
  margin-bottom: 0;
}

.article-body h2,
.article-body h3,
.article-body h4 {
  margin: 0;
  color: var(--portal-text);
  font-family: "Barlow Semi Condensed", "Segoe UI", sans-serif;
  letter-spacing: 0.03em;
  line-height: 1.02;
}

.article-body h2 {
  font-size: 2rem;
}

.article-body h3 {
  font-size: 1.45rem;
}

.article-body p,
.article-body li {
  margin: 0;
  font-size: 1.08rem;
}

.article-body ul,
.article-body ol {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--portal-muted);
}

.article-body a {
  color: var(--portal-accent);
}

.article-body strong {
  color: var(--portal-text);
}

.article-body blockquote {
  margin: 0;
  padding: 1rem 1.1rem;
  border-left: 3px solid rgba(198, 162, 106, 0.45);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.article-body img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 18px;
}

.article-nav-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.article-nav-grid .ampstart-btn,
.sidebar-actions .ampstart-btn {
  width: 100%;
}

.meta-list {
  display: grid;
  gap: 0.65rem;
}

.meta-item {
  padding: 0.9rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(198, 162, 106, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.meta-item strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--portal-text);
  font-family: "Barlow Semi Condensed", "Segoe UI", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.92rem;
}

.meta-item span,
.meta-item p {
  margin: 0;
  color: var(--portal-muted);
}

.hub-list-compact {
  display: grid;
  gap: 0.75rem;
}

.hub-list-compact a {
  display: block;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(198, 162, 106, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--portal-text);
}

.hub-list-compact small {
  display: block;
  margin-top: 0.2rem;
  color: var(--portal-muted);
  font-size: 0.9rem;
}

.adsense-slot {
  padding: 0.95rem 1rem 1.05rem;
  border: 1px solid rgba(198, 162, 106, 0.16);
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(198, 162, 106, 0.08), transparent 20%),
    rgba(255, 255, 255, 0.035);
  box-shadow: var(--portal-shadow-soft);
}

.adsense-slot-label {
  margin: 0 0 0.7rem;
  color: var(--portal-accent);
  font-family: "Barlow Semi Condensed", "Segoe UI", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.adsense-slot ins {
  min-height: 280px;
}

.adsense-slot-in-article {
  margin: 0.35rem 0 0.6rem;
}

.adsense-slot-in-article ins {
  min-height: 0;
}

.article-actions .article-action-primary {
  background: linear-gradient(180deg, #d9ba84 0%, #b88c55 100%);
  color: #10141d;
  border-color: rgba(255, 230, 180, 0.4);
}

.text-stack {
  display: grid;
  gap: 1rem;
}

@media (min-width: 64rem) {
  .content-layout {
    grid-template-columns: minmax(0, 1.85fr) minmax(18rem, 0.95fr);
    align-items: start;
  }

  .article-nav-grid .ampstart-btn,
  .sidebar-actions .ampstart-btn {
    width: auto;
  }
}

@media (max-width: 51.99rem) {
  .section-card,
  .article-featured-media,
  .embed-video,
  .sidebar-card {
    border-radius: 20px;
    box-shadow: var(--portal-shadow-soft);
  }

  .section-card,
  .sidebar-card {
    padding: 1.1rem 1rem;
  }

  .sidebar-card {
    position: static;
  }

  .article-body h2 {
    font-size: 1.7rem;
  }

  .article-body h3 {
    font-size: 1.28rem;
  }

  .article-body p,
  .article-body li {
    font-size: 1rem;
  }

  .adsense-slot {
    padding: 0.85rem 0.9rem 0.95rem;
    border-radius: 18px;
  }

  .adsense-slot ins {
    min-height: 250px;
  }

  .adsense-slot-in-article {
    margin: 0.2rem 0 0.45rem;
  }

  .article-nav-grid {
    flex-direction: column;
    align-items: stretch;
  }
}
