.content-page {
  background: #f7f9fc;
}

.content-header {
  position: sticky;
  z-index: 40;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.content-header-inner {
  display: grid;
  min-height: 84px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.content-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.content-brand img {
  width: 66px;
  height: 66px;
  object-fit: contain;
}

.content-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-size: 0.86rem;
  font-weight: 780;
}

.content-nav a {
  padding: 10px 0;
  border-bottom: 2px solid transparent;
}

.content-nav a:hover,
.content-nav a[aria-current="page"] {
  border-color: var(--yellow);
  color: var(--navy);
}

.content-language {
  display: inline-flex;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--soft);
}

.content-language button {
  min-width: 42px;
  height: 34px;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  font-size: 0.74rem;
  font-weight: 900;
}

.content-language button.is-active {
  color: white;
  background: var(--navy);
}

.content-main {
  min-height: 65vh;
}

.content-hero {
  padding-block: 82px 72px;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 210, 52, 0.35), transparent 23%),
    linear-gradient(145deg, #eafaff, #f8fcff 70%);
}

.content-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  align-items: center;
  gap: 70px;
}

.content-hero h1 {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: clamp(2.65rem, 6vw, 5.8rem);
}

.content-hero .lead {
  max-width: 780px;
  margin-bottom: 0;
  color: #46566d;
  font-size: 1.08rem;
}

.content-hero-media {
  display: grid;
  aspect-ratio: 4 / 3;
  place-items: center;
  overflow: hidden;
  border-radius: 24px;
  background: white;
  box-shadow: var(--shadow);
}

.content-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-hero-media.is-product img {
  width: 84%;
  height: 84%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.content-section {
  padding-block: 82px;
  background: white;
}

.content-section.alt {
  background: var(--sand);
}

.content-prose {
  width: min(calc(100% - 48px), 860px);
  margin-inline: auto;
}

.content-prose.wide {
  width: min(calc(100% - 48px), 1180px);
}

.content-prose h2 {
  margin: 54px 0 18px;
  font-size: clamp(1.85rem, 3.5vw, 3rem);
}

.content-prose h2:first-child {
  margin-top: 0;
}

.content-prose h3 {
  margin: 32px 0 12px;
  font-size: 1.2rem;
}

.content-prose p,
.content-prose li {
  color: #36465d;
  font-size: 1.02rem;
  line-height: 1.78;
}

.content-prose a:not(.primary-button) {
  color: #075e9e;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.content-prose ul,
.content-prose ol {
  display: grid;
  gap: 10px;
  padding-left: 24px;
}

.content-note {
  margin-block: 34px;
  padding: 22px 24px;
  border-left: 5px solid var(--yellow);
  border-radius: 0 14px 14px 0;
  background: #fffbec;
}

.content-note strong {
  display: block;
  margin-bottom: 5px;
}

.content-note p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.guide-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 24px;
  color: #53647a;
  font-size: 0.82rem;
  font-weight: 780;
}

.guide-meta span + span::before {
  margin-right: 18px;
  color: #b18900;
  content: "•";
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.guide-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.guide-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.guide-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  padding: clamp(8px, 1.2vw, 14px);
  border-bottom: 1px solid rgba(10, 42, 82, 0.08);
  background: linear-gradient(145deg, #ffffff, #f3f7fb);
  object-fit: contain;
  object-position: center;
}

.guide-card-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.guide-card small {
  color: #8a6900;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guide-card h2 {
  margin: 11px 0 12px;
  font-size: 1.6rem;
}

.guide-card p {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.9rem;
}

.guide-card .read-link {
  margin-top: auto;
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 900;
}

.article-hero {
  padding-block: 70px 54px;
  background: white;
}

.article-hero .content-prose {
  text-align: center;
}

.article-hero h1 {
  max-width: 900px;
  margin: 0 auto 20px;
  font-size: clamp(2.55rem, 5.8vw, 5.35rem);
}

.article-hero .lead {
  max-width: 760px;
  margin: 0 auto;
  color: #526176;
  font-size: 1.07rem;
}

.article-hero .guide-meta {
  justify-content: center;
}

.article-image {
  width: min(calc(100% - 48px), 1080px);
  aspect-ratio: 16 / 8;
  margin: 0 auto 72px;
  padding: clamp(12px, 2vw, 22px);
  overflow: hidden;
  border: 1px solid rgba(10, 42, 82, 0.08);
  border-radius: 22px;
  background: linear-gradient(145deg, #ffffff, #f3f7fb);
  box-shadow: var(--shadow-soft);
}

.article-image img {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  object-fit: contain;
  object-position: center;
}

.article-sources {
  margin-top: 58px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.article-sources h2 {
  margin-top: 0;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: 0;
}

.article-sources li,
.article-sources a {
  font-size: 0.83rem;
}

.trust-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.trust-card,
.contact-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
}

.trust-card span,
.contact-card span {
  color: #9a7500;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-card h2,
.contact-card h2 {
  margin: 12px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
}

.trust-card p,
.contact-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-card .primary-button {
  margin-top: 22px;
}

.policy-title {
  padding-block: 72px 46px;
  background: var(--navy);
  color: white;
}

.policy-title h1 {
  margin-bottom: 14px;
}

.policy-title p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

.policy-updated {
  display: block;
  margin-top: 16px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 800;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.page-actions .primary-button,
.page-actions .secondary-button {
  width: auto;
}

.content-page .site-footer {
  min-height: 370px;
}

@media (max-width: 1050px) {
  .content-header-inner {
    gap: 18px;
  }

  .content-nav {
    gap: 18px;
  }

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

  .content-hero-grid {
    gap: 42px;
  }
}

@media (max-width: 820px) {
  .content-header {
    position: relative;
  }

  .content-header-inner {
    grid-template-columns: 1fr auto;
    padding-block: 8px 14px;
  }

  .content-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 2px 0;
    white-space: nowrap;
    scrollbar-width: thin;
  }

  .content-hero-grid,
  .trust-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .content-hero {
    padding-block: 60px;
  }

  .content-hero-media {
    max-height: 520px;
  }
}

@media (max-width: 620px) {
  .content-brand span {
    display: none;
  }

  .content-brand img {
    width: 58px;
    height: 58px;
  }

  .content-prose,
  .content-prose.wide,
  .article-image {
    width: min(calc(100% - 24px), 1180px);
  }

  .guide-grid {
    grid-template-columns: 1fr;
  }

  .content-section {
    padding-block: 62px;
  }

  .article-image {
    aspect-ratio: 4 / 3;
    margin-bottom: 48px;
  }

  .article-hero {
    padding-block: 54px 42px;
  }

  .guide-meta span + span::before {
    margin-right: 10px;
  }
}
