:root {
  --bg: #fbfcfb;
  --surface: #ffffff;
  --surface-soft: #f3f6f4;
  --ink: #17211c;
  --muted: #5b6962;
  --line: #dbe3de;
  --accent: #176b5b;
  --accent-dark: #0d4d43;
  --accent-soft: #e3f2ed;
  --gold: #8b6a22;
  --shadow: 0 14px 34px rgba(23, 33, 28, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

a {
  color: var(--accent-dark);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px max(16px, calc((100vw - 1120px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
}

.brand {
  flex: 0 0 auto;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 850;
  text-decoration: none;
}

.site-nav {
  flex: 1 1 auto;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px 16px;
  justify-content: flex-end;
  min-width: 0;
  max-width: 100%;
  overflow: visible;
  padding: 0;
  font-size: 0.92rem;
  text-transform: capitalize;
  scrollbar-width: none;
}

.site-nav::-webkit-scrollbar {
  display: none;
}

.site-nav a,
.site-nav summary {
  flex: 0 0 auto;
  color: var(--muted);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav summary:hover {
  color: var(--accent-dark);
}

.site-nav-more {
  position: relative;
  flex: 0 0 auto;
}

.site-nav-more summary {
  list-style: none;
}

.site-nav-more summary::-webkit-details-marker {
  display: none;
}

.site-nav-menu {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  z-index: 20;
  display: grid;
  min-width: 210px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.site-nav-menu a {
  padding: 8px 10px;
  border-radius: 6px;
}

.site-nav-menu a:hover {
  background: var(--surface-soft);
}

.hero,
.home-hero {
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #f5f8f6 0%, #ffffff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 36px;
  align-items: center;
  padding: 56px 0;
}

.hero-grid > *,
.featured-layout > *,
.home-editorial-grid > *,
.home-card-stack > *,
.home-topic-layout > *,
.home-directory-grid > *,
.home-compact-grid > *,
.article-grid > *,
.category-grid > *,
.topic-chip-grid > * {
  min-width: 0;
}

.home-hero-inner {
  padding: 70px 0 58px;
}

.home-intro {
  display: grid;
  gap: 18px;
  align-content: center;
  min-width: 0;
}

.home-intro h1 {
  max-width: 620px;
  font-size: clamp(2.5rem, 5vw, 4.25rem);
}

.home-intro .lede {
  margin: 0;
}

.hero-cta {
  display: inline-flex;
  justify-self: start;
  align-items: center;
  min-height: 44px;
  margin-top: 4px;
  padding: 0 16px;
  border: 1px solid var(--accent-dark);
  border-radius: 8px;
  background: var(--accent-dark);
  color: #ffffff;
  font-weight: 820;
  text-decoration: none;
}

.hero-cta:hover {
  background: var(--accent);
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-search {
  display: grid;
  gap: 8px;
  width: min(100%, 620px);
  margin-top: 8px;
}

.site-search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  min-width: 0;
}

.site-search input {
  min-width: 0;
  min-height: 48px;
  width: 100%;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  font: inherit;
}

.site-search button {
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--accent-dark);
  border-radius: 8px;
  background: var(--accent-dark);
  color: #ffffff;
  font: inherit;
  font-weight: 820;
  cursor: pointer;
}

.site-search button:hover {
  background: var(--accent);
}

.search-hint {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-search-compact {
  margin-top: 18px;
}

.featured-layout {
  display: grid;
  grid-template-columns: minmax(0, 45fr) minmax(0, 55fr);
  gap: 48px;
  align-items: center;
}

.featured-card {
  display: grid;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(23, 33, 28, 0.07);
}

.featured-card:hover,
.home-guide-card:hover,
.card-link:hover,
.category-card:hover {
  border-color: rgba(23, 107, 91, 0.55);
  box-shadow: var(--shadow);
}

.featured-card-large {
  grid-template-columns: 1fr;
  min-height: 520px;
}

.featured-card-small {
  grid-template-columns: 128px minmax(0, 1fr);
  min-height: 184px;
}

.featured-image,
.card-image,
.media-card-image,
.article-card-image,
.category-hero-image,
.article-hero-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 14px;
  background: #eef3ef;
}

.list-card-image {
  display: block;
  width: 160px;
  aspect-ratio: 4 / 3;
  height: 120px;
  align-self: center;
  object-fit: cover;
  border-radius: 12px;
  background: #eef3ef;
  flex-shrink: 0;
}

.featured-card-large .featured-image {
  aspect-ratio: 16 / 10;
  height: auto;
}

.featured-card-small .featured-image {
  min-height: 184px;
}

.featured-copy {
  display: grid;
  align-content: center;
  gap: 12px;
  min-width: 0;
  padding: 30px;
}

.featured-card-small .featured-copy {
  padding: 16px;
}

.guide-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 760;
  line-height: 1.2;
}

.guide-label {
  color: var(--gold);
  font-weight: 840;
  text-transform: uppercase;
}

.featured-copy strong {
  font-size: clamp(1.45rem, 2.6vw, 2.35rem);
  line-height: 1.12;
  overflow-wrap: break-word;
}

.featured-card-small .featured-copy strong {
  font-size: 1.05rem;
}

.featured-copy p {
  margin: 0;
  color: var(--muted);
}

.breadcrumb {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.section-kicker {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.14;
}

h1 {
  max-width: 850px;
  font-size: clamp(2.25rem, 6vw, 4.6rem);
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.lede {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.hero-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.article-hero-panel {
  padding: 0;
  background: var(--surface);
}

.mobile-article-hero-panel {
  display: none;
}

.hero-panel-body {
  padding: 18px;
}

.article-hero-image {
  aspect-ratio: 16 / 9;
  height: auto;
  border-radius: 0;
}

.category-hero-image {
  aspect-ratio: 16 / 9;
  height: auto;
}

.hero-panel strong {
  display: block;
  margin-bottom: 10px;
}

.hero-panel ul,
.hero-panel p {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.hero-panel p {
  padding-left: 0;
}

.article-layout,
.category-layout,
.home-sections {
  padding: 36px 0 64px;
}

.content-section {
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.content-section > p,
.content-section li {
  max-width: 880px;
}

.content-section ul {
  display: grid;
  gap: 10px;
  margin: 18px 0;
  padding-left: 22px;
}

.home-portal-section {
  padding: 42px 0;
}

.home-section-heading {
  display: flex;
  max-width: 780px;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 22px;
}

.home-section-heading h2 {
  margin: 0;
}

.home-section-heading p:last-child {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
}

.home-editorial-grid,
.home-directory-grid,
.home-compact-grid {
  display: grid;
  gap: 16px;
}

.home-editorial-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: stretch;
}

.home-editorial-grid > .home-guide-card-large {
  grid-column: span 5;
}

.home-editorial-grid > .home-card-stack {
  grid-column: span 7;
}

.home-card-stack {
  display: grid;
  gap: 14px;
}

.home-cost-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.home-guide-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  text-decoration: none;
}

.home-guide-card-large {
  min-height: 100%;
}

.home-guide-card-grid {
  min-height: 100%;
}

.home-guide-card-small,
.home-guide-card-wide {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  min-height: 156px;
}

.home-guide-card-wide {
  grid-column: span 2;
  grid-template-columns: 160px minmax(0, 1fr);
}

.home-guide-card-large .card-image {
  aspect-ratio: 16 / 9;
  height: auto;
}

.home-guide-card-grid .card-image {
  aspect-ratio: 16 / 9;
  height: auto;
}

.home-guide-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  padding: 18px;
}

.home-guide-card-large .home-guide-copy {
  padding: 24px;
}

.home-guide-copy strong {
  display: -webkit-box;
  font-size: 1.08rem;
  line-height: 1.24;
  overflow: hidden;
  overflow-wrap: break-word;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-guide-card-large .home-guide-copy strong {
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  line-height: 1.12;
}

.home-guide-copy p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.92rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-guide-card-large .home-guide-copy p {
  -webkit-line-clamp: 3;
}

.home-topic-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: 16px;
}

.home-topic-layout .category-card {
  min-height: 0;
  height: 100%;
}

.category-card-featured {
  grid-row: span 2;
}

.home-topic-layout .category-card .card-image {
  border-radius: 0;
  aspect-ratio: 16 / 9;
}

.home-topic-chip-grid {
  margin-top: 14px;
}

.home-directory-grid-nested {
  margin-top: 16px;
}

.home-directory-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

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

.related-topics {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  margin: 34px 0;
  padding: 24px;
  border: 1px solid #cbdcd3;
  border-radius: 8px;
  background: var(--accent-soft);
}

.related-topics h2 {
  margin-bottom: 8px;
}

.related-topics p {
  margin: 0;
  color: var(--muted);
}

.related-transition {
  margin: 34px 0 -16px;
  color: var(--muted);
  font-weight: 720;
}

.top-related-topics,
.comparison-checklist {
  margin: 24px 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.top-related-topics {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.top-related-topics h2,
.comparison-checklist h2 {
  margin-bottom: 8px;
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
}

.top-related-topics p {
  margin: 0;
  color: var(--muted);
}

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

.top-topic-button {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid rgba(23, 107, 91, 0.22);
  border-radius: 8px;
  background: var(--surface-soft);
  color: var(--accent-dark);
  font-size: 0.92rem;
  font-weight: 740;
  line-height: 1.25;
  text-decoration: none;
}

.top-topic-button:hover {
  border-color: rgba(23, 107, 91, 0.55);
}

.comparison-checklist ul {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.comparison-checklist li {
  max-width: none;
  min-height: 64px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.35;
}

.planning-tool {
  display: grid;
  gap: 14px;
  margin-top: 22px;
  padding: 18px;
  border: 1px solid #cbdcd3;
  border-radius: 8px;
  background: var(--surface-soft);
}

.planning-tool h2 {
  margin-bottom: 0;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
}

.planning-tool-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.planning-tool label {
  display: grid;
  gap: 6px;
  min-width: 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 720;
}

.planning-tool select {
  min-width: 0;
  width: 100%;
  min-height: 42px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  font: inherit;
}

.planning-result {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}

.comparison-table-wrap {
  max-width: 920px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

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

.comparison-table-wrap th,
.comparison-table-wrap td {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.comparison-table-wrap th {
  background: var(--surface-soft);
  color: var(--ink);
  font-size: 0.88rem;
  text-transform: uppercase;
}

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

.final-decision-section ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-left: 0;
  list-style: none;
}

.final-decision-section li {
  max-width: none;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
}

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

.topic-button {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(23, 107, 91, 0.32);
  border-radius: 8px;
  background: var(--surface);
  color: var(--accent-dark);
  font-weight: 760;
  line-height: 1.25;
  text-decoration: none;
}

.topic-button:hover {
  border-color: var(--accent-dark);
  box-shadow: 0 8px 18px rgba(13, 77, 67, 0.1);
}

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

.card-link,
.category-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 280px;
  overflow: hidden;
  padding: 0 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  text-decoration: none;
}

.card-link span {
  padding: 0 18px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.card-link strong,
.category-card strong {
  display: -webkit-box;
  padding: 0 18px;
  font-size: 1.05rem;
  line-height: 1.25;
  overflow: hidden;
  overflow-wrap: break-word;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.card-link small,
.category-card span {
  padding: 0 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.card-description {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.card-cta {
  margin-top: auto;
  padding: 0 18px;
  color: var(--accent-dark);
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 780;
}

.featured-copy .card-cta {
  padding: 0;
}

.home-guide-copy .card-cta {
  padding: 0;
}

.topic-chip-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.topic-chip {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--accent-dark);
  font-weight: 740;
  line-height: 1.25;
  text-decoration: none;
}

.topic-chip:hover {
  border-color: rgba(23, 107, 91, 0.55);
}

.search-hero-inner {
  padding: 56px 0;
}

.search-page-layout {
  padding: 36px 0 64px;
}

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

.search-result-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 300px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  text-decoration: none;
}

.search-result-card:hover {
  border-color: rgba(23, 107, 91, 0.55);
  box-shadow: var(--shadow);
}

.search-result-card span {
  padding: 0 18px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.search-result-card strong {
  display: -webkit-box;
  padding: 0 18px;
  font-size: 1.08rem;
  line-height: 1.25;
  overflow: hidden;
  overflow-wrap: break-word;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.search-result-card small {
  padding: 0 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 1100px) {
  .home-topic-layout,
  .latest-guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.search-related-topics {
  margin-top: 34px;
}

.how-guides-work {
  margin-top: 30px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f3f6f4;
}

.how-guides-work p:last-child {
  max-width: 920px;
  margin-bottom: 0;
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 14px 16px;
}

summary {
  cursor: pointer;
  font-weight: 760;
}

details p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.split-lists > div {
  min-width: 0;
}

.site-footer {
  display: grid;
  gap: 16px;
  padding: 28px max(16px, calc((100vw - 1120px) / 2));
  border-top: 1px solid var(--line);
  background: #eef3f0;
  color: var(--muted);
}

.site-footer p {
  margin: 0;
  max-width: 900px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

@media (max-width: 860px) {
  .site-header {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .site-nav {
    justify-content: flex-start;
    width: 100%;
    margin-right: 0;
    padding-right: 0;
    overflow-x: auto;
    overflow-y: visible;
  }

  .site-nav-menu {
    right: auto;
    left: 0;
    max-width: calc(100vw - 32px);
  }

  .home-intro,
  .featured-layout,
  .home-section-heading,
  .home-editorial-grid,
  .home-topic-layout,
  .home-directory-grid,
  .home-compact-grid,
  .featured-card-large,
  .featured-card-small {
    grid-template-columns: 1fr;
  }

  .featured-card-large {
    min-height: auto;
  }

  .home-guide-card-wide,
  .home-editorial-grid > .home-guide-card-large,
  .home-editorial-grid > .home-card-stack,
  .category-card-featured {
    grid-column: auto;
    grid-row: auto;
  }

  .home-guide-card-small,
  .home-guide-card-wide {
    grid-template-columns: 1fr;
  }

  .desktop-article-hero-panel {
    display: none;
  }

  .mobile-article-hero-panel {
    display: block;
    margin: 0 0 24px;
  }

  .hero-grid,
  .related-topics,
  .top-related-topics,
  .split-lists {
    grid-template-columns: 1fr;
  }

  .article-grid,
  .category-grid,
  .search-results-grid,
  .topic-grid,
  .top-topic-grid,
  .comparison-checklist ul,
  .planning-tool-grid,
  .final-decision-section ul,
  .topic-chip-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .home-hero-inner {
    padding: 40px 0;
  }

  .featured-card-small .featured-image {
    min-height: auto;
    aspect-ratio: 16 / 9;
  }

  .home-guide-card-small .list-card-image,
  .home-guide-card-wide .list-card-image {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    min-height: auto;
  }

  h1 {
    max-width: 100%;
    font-size: 2.35rem;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .site-nav {
    gap: 8px 10px;
    font-size: 0.82rem;
  }

  h1 {
    font-size: 1.75rem;
  }

  .lede {
    font-size: 1rem;
  }

  .site-search-row {
    grid-template-columns: 1fr;
  }

  .home-guide-card-small,
  .home-guide-card-wide {
    grid-template-columns: 1fr;
  }

  .home-guide-card-small .list-card-image,
  .home-guide-card-wide .list-card-image {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    min-height: auto;
  }

  .home-guide-copy,
  .home-guide-card-large .home-guide-copy {
    padding: 18px;
  }
}
