.content-page {
  background: var(--bg-soft);
}

.content-hero {
  padding: clamp(58px, 8vw, 104px) 24px;
  background:
    radial-gradient(circle at 86% 14%, rgba(212, 177, 95, 0.26), transparent 32%),
    linear-gradient(135deg, #fff8e8 0%, #edf7fa 100%);
}

.content-hero .container {
  max-width: 1080px;
}

.content-hero h1 {
  max-width: 980px;
  margin: 0;
  color: var(--navy-2);
  font-size: clamp(39px, 5.5vw, 72px);
  line-height: 1.03;
  letter-spacing: -0.05em;
}

.content-lead {
  max-width: 830px;
  margin: 24px 0 0;
  color: #465564;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.68;
}

.breadcrumbs {
  padding: 15px 24px;
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(16, 47, 77, 0.09);
}

.breadcrumbs ol {
  width: min(1080px, 100%);
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumbs li:not(:last-child)::after {
  content: "›";
  margin-left: 8px;
  color: #a47c25;
}

.breadcrumbs a {
  color: var(--navy);
  font-weight: 700;
}

.content-section {
  padding: clamp(54px, 7vw, 88px) 24px;
}

.content-grid {
  width: min(1080px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 44px;
  align-items: start;
}

.article-body {
  min-width: 0;
}

.article-body h2 {
  margin: 46px 0 16px;
  color: var(--navy-2);
  font-size: clamp(28px, 3.5vw, 43px);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

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

.article-body h3 {
  margin: 28px 0 10px;
  color: var(--navy);
  font-size: 23px;
  line-height: 1.25;
}

.article-body p,
.article-body li {
  color: #394957;
  font-size: 17px;
  line-height: 1.76;
}

.article-body p {
  margin: 0 0 18px;
}

.article-body ul,
.article-body ol {
  padding-left: 25px;
}

.article-body a:not(.btn) {
  color: #0c5b86;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.content-aside {
  position: sticky;
  top: calc(var(--header-h) + 22px);
  display: grid;
  gap: 18px;
}

.aside-card,
.note-box,
.related-box,
.comparison-wrap,
.steps-box {
  border: 1px solid rgba(16, 47, 77, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 40px rgba(16, 47, 77, 0.08);
}

.aside-card {
  padding: 22px;
}

.aside-card h2 {
  margin: 0 0 13px;
  color: var(--navy-2);
  font-size: 21px;
}

.aside-card p,
.aside-card li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.aside-card ul {
  margin: 0;
  padding-left: 19px;
}

.aside-card .btn {
  width: 100%;
  margin-top: 8px;
  text-align: center;
}

.note-box {
  margin: 28px 0;
  padding: 24px 26px;
  border-left: 5px solid var(--gold);
  background: #fff9e9;
}

.note-box strong {
  display: block;
  margin-bottom: 7px;
  color: var(--navy-2);
  font-size: 18px;
}

.note-box p:last-child {
  margin-bottom: 0;
}

.comparison-wrap {
  margin: 25px 0 34px;
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  min-width: 650px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 15px 16px;
  border-bottom: 1px solid #dde6eb;
  text-align: left;
  vertical-align: top;
  color: #394957;
  line-height: 1.5;
}

.comparison-table th {
  background: var(--navy);
  color: white;
}

.comparison-table tr:last-child td {
  border-bottom: 0;
}

.steps-box {
  margin: 28px 0;
  padding: 8px 26px;
  counter-reset: guide-step;
}

.guide-step {
  position: relative;
  padding: 23px 0 23px 54px;
  border-bottom: 1px solid rgba(16, 47, 77, 0.1);
  counter-increment: guide-step;
}

.guide-step:last-child {
  border-bottom: 0;
}

.guide-step::before {
  content: counter(guide-step);
  position: absolute;
  left: 0;
  top: 21px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  font-weight: 900;
}

.guide-step h3 {
  margin-top: 0;
}

.guide-step p:last-child {
  margin-bottom: 0;
}

.related-box {
  margin-top: 46px;
  padding: 26px;
}

.related-box h2 {
  margin-top: 0;
  font-size: 30px;
}

.related-links {
  display: grid;
  gap: 11px;
}

.related-links a {
  display: block;
  padding: 15px 17px;
  border-radius: 14px;
  background: var(--bg-soft);
  color: var(--navy) !important;
  font-weight: 800;
  text-decoration: none !important;
}

.content-cta {
  margin-top: 48px;
  padding: clamp(28px, 5vw, 48px);
  border-radius: 28px;
  background: linear-gradient(135deg, var(--navy-2), var(--navy));
  color: white;
}

.content-cta h2,
.content-cta p {
  color: white;
}

.content-cta h2 {
  margin-top: 0;
}

.content-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 23px;
}

.content-actions .btn.primary {
  background: var(--gold);
  color: var(--navy-2);
}

.content-actions .btn.secondary {
  background: white;
}

.hub-intro {
  width: min(1080px, 100%);
  margin: 0 auto 36px;
  text-align: center;
}

.hub-intro h2 {
  margin: 0;
  color: var(--navy-2);
  font-size: clamp(31px, 4vw, 50px);
}

.hub-intro p {
  max-width: 780px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.topic-grid,
.guide-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.topic-card,
.guide-card {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(16, 47, 77, 0.1);
  box-shadow: 0 16px 40px rgba(16, 47, 77, 0.08);
}

.topic-card {
  padding: 24px;
}

.topic-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  margin-bottom: 17px;
  background: #fff3c8;
  font-size: 23px;
}

.topic-card h2,
.guide-card h2 {
  margin: 0;
  color: var(--navy-2);
  line-height: 1.25;
}

.topic-card h2 {
  font-size: 22px;
}

.topic-card p,
.guide-card p {
  color: var(--muted);
  line-height: 1.65;
}

.guide-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.guide-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.guide-card h2 {
  font-size: 27px;
}

.guide-card .guide-tag {
  width: fit-content;
  margin: 0 0 14px;
  padding: 7px 11px;
  border-radius: 999px;
  background: #fff3c8;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.guide-card a {
  margin-top: auto;
  color: #0c5b86;
  font-weight: 900;
}

.faq-compact {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

.faq-compact details {
  padding: 0 22px;
  border-radius: 18px;
  background: white;
  border: 1px solid rgba(16, 47, 77, 0.1);
}

.faq-compact summary {
  cursor: pointer;
  padding: 20px 0;
  color: var(--navy-2);
  font-size: 18px;
  font-weight: 850;
}

.faq-compact details p {
  margin-top: 0;
  padding-bottom: 19px;
}

@media (max-width: 900px) {
  .content-grid {
    grid-template-columns: 1fr;
  }

  .content-aside {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .topic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .content-hero,
  .content-section,
  .breadcrumbs {
    padding-left: 17px;
    padding-right: 17px;
  }

  .content-aside,
  .topic-grid,
  .guide-grid {
    grid-template-columns: 1fr;
  }

  .article-body p,
  .article-body li {
    font-size: 16px;
  }

  .content-actions .btn {
    width: 100%;
  }
}
