:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --surface-muted: #eef3fb;
  --text: #162033;
  --text-soft: #55627a;
  --line: #d8e1ef;
  --brand: #183976;
  --brand-strong: #0f2856;
  --accent: #deecff;
  --shadow: 0 18px 50px rgba(24, 57, 118, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  font-family: "Georgia", "Times New Roman", serif;
  background:
    radial-gradient(circle at top right, rgba(24, 57, 118, 0.08), transparent 28%),
    linear-gradient(180deg, #fbfdff 0%, var(--bg) 100%);
  color: var(--text);
}

a {
  color: inherit;
}

.container {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

.site-shell {
  min-height: 100vh;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(251, 253, 255, 0.92);
  border-bottom: 1px solid rgba(24, 57, 118, 0.1);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: Arial, sans-serif;
}

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

.brand-copy span {
  color: var(--text-soft);
  font-size: 0.84rem;
}

.topnav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-family: Arial, sans-serif;
}

.topnav a {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.95rem;
}

.topnav a.current,
.topnav a:hover {
  color: var(--brand);
}

.hero {
  padding: 54px 0 26px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(280px, 0.85fr);
  gap: 28px;
}

.hero-copy,
.hero-panel,
.article-card,
.sidebar-card {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(24, 57, 118, 0.1);
  box-shadow: var(--shadow);
}

.hero-copy,
.hero-panel {
  border-radius: 28px;
  padding: 28px;
}

.eyebrow {
  margin: 0 0 12px;
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
}

.hero h1 {
  margin: 0 0 14px;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 0.98;
}

.hero p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1.08rem;
  line-height: 1.7;
}

.signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.signal-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 9px 14px;
  background: var(--surface-muted);
  border: 1px solid var(--line);
  color: var(--brand-strong);
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-panel {
  background: linear-gradient(180deg, rgba(24, 57, 118, 0.98), rgba(15, 40, 86, 0.96));
  color: #f6f9ff;
}

.panel-label {
  margin: 0 0 12px;
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.78;
}

.panel-copy {
  margin: 0;
  line-height: 1.8;
}

.page {
  padding: 0 0 72px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(250px, 0.75fr);
  gap: 28px;
}

.article-card,
.sidebar-card {
  border-radius: 28px;
}

.article-card {
  padding: 28px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
  font-family: Arial, sans-serif;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.breadcrumbs a {
  text-decoration: none;
  color: var(--brand);
}

.article-header {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 13px;
  background: var(--accent);
  color: var(--brand-strong);
  font-family: Arial, sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
}

.pill.alt {
  background: var(--surface-muted);
}

.detail-title {
  margin: 0 0 14px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
}

.lead {
  margin: 0;
  color: var(--text-soft);
  font-size: 1.06rem;
  line-height: 1.8;
}

.article-body {
  padding-top: 30px;
  font-size: 1.1rem;
  line-height: 1.9;
}

.article-body p {
  margin: 0 0 1.2em;
}

.article-body h2 {
  margin: 2.2em 0 0.8em;
  font-size: 1.55rem;
  line-height: 1.25;
}

.article-body ul {
  margin: 0 0 1.2em 1.2em;
  padding: 0;
}

.article-body li {
  margin-bottom: 0.7em;
}

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

.sidebar-card {
  padding: 22px;
}

.sidebar-card h2 {
  margin: 0 0 12px;
  font-family: Arial, sans-serif;
  font-size: 1rem;
}

.sidebar-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
  font-family: Arial, sans-serif;
}

.sidebar-card .cta {
  display: inline-flex;
  margin-top: 16px;
  border-radius: 999px;
  padding: 11px 16px;
  text-decoration: none;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
}

.back-link {
  display: inline-flex;
  margin-top: 28px;
  text-decoration: none;
  color: var(--brand);
  font-family: Arial, sans-serif;
  font-weight: 700;
}

.listing-hero .hero-copy,
.listing-hero .hero-panel {
  min-height: 100%;
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.listing-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 100%;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(24, 57, 118, 0.14);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.listing-card-top {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.listing-card h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2vw, 2.15rem);
  line-height: 1.08;
}

.listing-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
  font-family: Arial, sans-serif;
}

.listing-date {
  color: var(--text-soft);
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
}

.listing-link {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  color: var(--brand);
  font-family: Arial, sans-serif;
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 920px) {
  .hero-grid,
  .article-layout,
  .listing-grid {
    grid-template-columns: 1fr;
  }

  .topbar-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 32px;
  }

  .hero-copy,
  .hero-panel,
  .article-card,
  .sidebar-card {
    border-radius: 22px;
    padding: 22px;
  }

  .container {
    width: min(100% - 20px, 1100px);
  }
}
