
:root {
  --golf-primary: #113c2b;
  --golf-accent: #d9b866;
  --golf-secondary: #8c3f2a;
  --golf-cream: #f7f1e2;
  --golf-bg: #f3ead8;
  --golf-text: #101820;
  --golf-muted: rgba(16, 24, 32, 0.66);
  --golf-line: rgba(17, 60, 43, 0.18);
  --golf-paper: #fffdf4;
  --golf-sky: #dfeee9;
  --golf-shadow: 0 28px 70px rgba(18, 44, 32, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 16% 8%, rgba(216, 179, 95, 0.18), transparent 28rem),
    radial-gradient(circle at 84% 26%, rgba(72, 127, 98, 0.14), transparent 28rem),
    var(--golf-bg);
  color: var(--golf-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

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

main {
  width: min(100% - 44px, 1660px);
  margin: 0 auto;
}

.golf-header {
  width: min(100% - 44px, 1660px);
  margin: 22px auto 0;
  padding: 18px 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid var(--golf-line);
}

.golf-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 300px;
}

.golf-brand-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid var(--golf-line);
  border-radius: 50%;
  background: var(--golf-paper);
  box-shadow: 0 10px 24px rgba(17, 60, 43, 0.1);
}

.golf-brand-mark svg {
  width: 44px;
  height: 44px;
}

.golf-brand-mark circle:first-child {
  fill: var(--golf-primary);
}

.golf-brand-mark path:first-of-type {
  fill: none;
  stroke: #fff8ea;
  stroke-width: 5;
  stroke-linecap: round;
}

.golf-brand-mark path:last-of-type {
  fill: var(--golf-accent);
}

.golf-brand-mark circle:last-child {
  fill: #fff8ea;
}

.golf-brand strong {
  display: block;
  font-size: 1.35rem;
  letter-spacing: 0;
}

.golf-brand small {
  display: block;
  max-width: 360px;
  color: var(--golf-muted);
  font-weight: 650;
}

.golf-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
}

.golf-nav a {
  padding: 10px 14px;
  border: 1px solid var(--golf-line);
  border-radius: 999px;
  background: rgba(255, 253, 244, 0.72);
  color: var(--golf-primary);
  font-size: 0.9rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
}

.golf-hero {
  position: relative;
  min-height: 760px;
  margin: 28px 0 18px;
  border-radius: 28px;
  overflow: hidden;
  background: var(--golf-primary);
  box-shadow: var(--golf-shadow);
  isolation: isolate;
}

.golf-hero-image,
.golf-hero-photo,
.golf-hero-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.golf-hero-photo img {
  object-fit: cover;
}

.golf-hero-photo::after,
.golf-media-fallback::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 35, 25, 0.92), rgba(11, 35, 25, 0.62) 44%, rgba(11, 35, 25, 0.2));
}

.golf-media-fallback {
  position: relative;
  min-height: 260px;
  background:
    linear-gradient(135deg, rgba(255, 253, 244, 0.84), rgba(223, 238, 233, 0.72)),
    repeating-linear-gradient(-35deg, rgba(17, 60, 43, 0.12) 0 2px, transparent 2px 18px),
    var(--golf-primary);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.golf-media-fallback::before {
  content: "18";
  position: absolute;
  right: 20px;
  bottom: 12px;
  color: rgba(17, 60, 43, 0.12);
  font-size: clamp(4.2rem, 11vw, 8rem);
  line-height: 0.8;
  font-weight: 950;
}

.golf-media-fallback::after {
  background:
    radial-gradient(circle at 22% 26%, rgba(216, 179, 95, 0.34), transparent 0 11px, transparent 12px),
    linear-gradient(135deg, rgba(17, 60, 43, 0.08), rgba(72, 127, 98, 0.18));
}

.golf-media-fallback span {
  position: relative;
  z-index: 1;
  padding: 10px 14px;
  border: 1px solid rgba(17, 60, 43, 0.18);
  border-radius: 999px;
  background: rgba(255, 253, 244, 0.78);
  color: var(--golf-primary);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0;
}

.golf-hero-panel {
  position: relative;
  z-index: 1;
  width: min(760px, 62%);
  padding: clamp(46px, 6vw, 92px);
  min-height: 760px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff8ea;
}

.golf-kicker {
  margin: 0 0 16px;
  color: var(--golf-accent);
  font-size: 0.86rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.golf-hero-panel .golf-kicker,
.golf-hero-board .golf-kicker {
  color: #f2ce72;
}

.golf-hero h1 {
  max-width: 780px;
  margin: 0;
  color: #fffdf4;
  font-size: clamp(4.6rem, 10vw, 10.8rem);
  line-height: 0.86;
  letter-spacing: 0;
  font-weight: 950;
}

.golf-hero-panel > p:not(.golf-kicker) {
  max-width: 620px;
  margin: 30px 0 0;
  color: rgba(255, 253, 244, 0.84);
  font-size: clamp(1.08rem, 1.5vw, 1.45rem);
}

.golf-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.golf-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border: 2px solid var(--golf-accent);
  border-radius: 999px;
  background: var(--golf-accent);
  color: #16261c;
  font-weight: 950;
}

.golf-button.ghost {
  border-color: rgba(255, 253, 244, 0.52);
  background: rgba(255, 253, 244, 0.08);
  color: #fffdf4;
}

.golf-hero-board {
  position: absolute;
  z-index: 2;
  right: clamp(24px, 4vw, 70px);
  bottom: clamp(24px, 4vw, 64px);
  width: min(460px, 34vw);
  padding: 26px;
  border: 1px solid rgba(255, 253, 244, 0.32);
  border-radius: 24px;
  background: rgba(13, 45, 31, 0.78);
  color: #fffdf4;
  backdrop-filter: blur(16px);
}

.golf-hero-board h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
}

.golf-hero-board > p:not(.golf-kicker) {
  color: rgba(255, 253, 244, 0.78);
}

.golf-hero-notes {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.golf-compact-note {
  display: grid;
  gap: 5px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 253, 244, 0.22);
  border-radius: 14px;
  background: rgba(255, 253, 244, 0.08);
}

.golf-compact-note span {
  color: #f2ce72;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0;
}

.golf-compact-note strong {
  color: inherit;
  line-height: 1.18;
}

.golf-note-strip {
  border: 1px solid var(--golf-line);
  border-radius: 20px;
  background: rgba(255, 253, 244, 0.72);
  overflow: hidden;
}

.golf-note-strip ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.golf-note-strip li {
  min-height: 116px;
  padding: 23px;
  border-right: 1px solid var(--golf-line);
  color: var(--golf-primary);
  font-weight: 850;
}

.golf-note-strip li:last-child {
  border-right: 0;
}

.golf-manifest,
.golf-routes,
.golf-stories,
.golf-clubhouse,
.golf-category-hero,
.golf-category-feature,
.golf-category-library,
.golf-other-map,
.golf-article,
.golf-next-section {
  margin-top: clamp(44px, 7vw, 110px);
}

.golf-category-hero,
.golf-article {
  margin-top: clamp(34px, 4vw, 58px);
}

.golf-manifest {
  width: min(1100px, 92%);
  margin-inline: auto;
  text-align: center;
}

.golf-manifest h2,
.golf-section-heading h2,
.golf-category-hero h1,
.golf-clubhouse h2,
.golf-next-section h2 {
  margin: 0;
  color: var(--golf-primary);
  font-size: clamp(2.5rem, 5vw, 6rem);
  line-height: 0.95;
  letter-spacing: 0;
  font-weight: 950;
}

.golf-manifest p:not(.golf-kicker),
.golf-category-hero > p,
.golf-clubhouse p {
  color: var(--golf-muted);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
}

.golf-section-heading {
  display: block;
  width: min(1220px, 100%);
  margin-bottom: 26px;
}

.golf-section-heading p {
  margin: 0 0 12px;
}

.golf-section-heading h2 {
  max-width: none;
  text-wrap: balance;
}

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

.golf-route-card {
  min-height: 300px;
  padding: 28px;
  border: 1px solid var(--golf-line);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 253, 244, 0.92), rgba(223, 238, 233, 0.52));
  box-shadow: 0 18px 42px rgba(18, 44, 32, 0.08);
}

.golf-route-card span {
  color: var(--golf-accent);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.golf-route-card h3 {
  margin: 42px 0 18px;
  color: var(--golf-primary);
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 0.98;
}

.golf-route-card p {
  color: var(--golf-muted);
  font-size: 1.03rem;
}

.golf-route-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.golf-route-card li {
  padding: 7px 10px;
  border: 1px solid var(--golf-line);
  border-radius: 999px;
  background: rgba(255, 253, 244, 0.7);
  color: var(--golf-primary);
  font-size: 0.82rem;
  font-weight: 850;
}

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

.golf-story-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid var(--golf-line);
  border-radius: 24px;
  background: var(--golf-paper);
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(18, 44, 32, 0.08);
}

.golf-card-media {
  height: 255px;
  background: var(--golf-sky);
}

.golf-card-media img,
.golf-category-lead-media img,
.golf-article-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.golf-story-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px;
}

.golf-story-body h3 {
  margin: 0;
  color: var(--golf-text);
  font-size: clamp(1.55rem, 2vw, 2.25rem);
  line-height: 1.03;
}

.golf-story-body p:not(.golf-kicker) {
  color: var(--golf-muted);
  font-size: 1rem;
}

.golf-text-link {
  margin-top: auto;
  color: var(--golf-primary);
  font-weight: 950;
}

.golf-clubhouse {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.6fr);
  gap: 22px;
  align-items: stretch;
  padding: clamp(28px, 4vw, 54px);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(17, 60, 43, 0.96), rgba(48, 85, 57, 0.88));
  color: #fffdf4;
}

.golf-clubhouse h2,
.golf-clubhouse .golf-kicker {
  color: #fffdf4;
}

.golf-clubhouse p {
  color: rgba(255, 253, 244, 0.78);
}

.golf-clubhouse .golf-story-card {
  background: #fffdf4;
}

.golf-category-hero {
  padding: clamp(40px, 7vw, 90px);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 253, 244, 0.96), rgba(216, 179, 95, 0.18)),
    var(--golf-paper);
  border: 1px solid var(--golf-line);
}

.golf-category-hero h1 {
  max-width: 1050px;
}

.golf-category-hero > p {
  max-width: 960px;
}

.golf-topic-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.golf-topic-row span {
  padding: 9px 12px;
  border: 1px solid var(--golf-line);
  border-radius: 999px;
  background: rgba(255, 253, 244, 0.78);
  color: var(--golf-primary);
  font-weight: 850;
}

.golf-category-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.55fr);
  gap: 22px;
  align-items: stretch;
}

.golf-category-lead {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 0.7fr);
  min-height: 520px;
  border: 1px solid var(--golf-line);
  border-radius: 28px;
  overflow: hidden;
  background: var(--golf-paper);
  box-shadow: var(--golf-shadow);
}

.golf-category-lead-media {
  min-height: 100%;
}

.golf-category-lead > div:not(.golf-category-lead-media) {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 54px);
}

.golf-category-lead h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4.4vw, 5rem);
  line-height: 0.92;
}

.golf-category-lead p:not(.golf-kicker) {
  color: var(--golf-muted);
  font-size: 1.15rem;
}

.golf-category-lead .golf-button {
  align-self: flex-start;
  margin-top: 18px;
}

.golf-yardage-card,
.golf-related-card,
.golf-source-card {
  padding: 28px;
  border: 1px solid var(--golf-line);
  border-radius: 24px;
  background: var(--golf-paper);
  box-shadow: 0 18px 42px rgba(18, 44, 32, 0.08);
}

.golf-yardage-card h2,
.golf-related-card h2,
.golf-source-card h2 {
  margin: 0 0 20px;
  color: var(--golf-primary);
  font-size: 2rem;
  line-height: 1;
}

.golf-yardage-card .golf-compact-note,
.golf-related-card .golf-compact-note {
  color: var(--golf-text);
  border-color: var(--golf-line);
  background: rgba(223, 238, 233, 0.35);
  margin-bottom: 10px;
}

.golf-other-map {
  padding-top: 28px;
  border-top: 1px solid var(--golf-line);
}

.golf-other-map div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.golf-other-map a {
  padding: 11px 14px;
  border: 1px solid var(--golf-line);
  border-radius: 999px;
  background: var(--golf-paper);
  color: var(--golf-primary);
  font-weight: 900;
}

.golf-article-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  gap: 22px;
  align-items: stretch;
  margin-top: 34px;
}

.golf-article-title {
  padding: clamp(34px, 5vw, 76px);
  border: 1px solid var(--golf-line);
  border-radius: 28px;
  background: var(--golf-paper);
  box-shadow: var(--golf-shadow);
}

.golf-back-link {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--golf-primary);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.golf-article-title h1 {
  margin: 0;
  color: var(--golf-text);
  font-size: clamp(3rem, 7vw, 8rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.golf-article-title > p:not(.golf-kicker) {
  max-width: 820px;
  color: var(--golf-muted);
  font-size: clamp(1.1rem, 1.5vw, 1.45rem);
}

.golf-article-photo {
  min-height: 620px;
  border: 1px solid var(--golf-line);
  border-radius: 28px;
  overflow: hidden;
  background: var(--golf-sky);
}

.golf-scorecard {
  grid-column: 1 / -1;
  display: block;
  padding: 26px;
  border: 1px solid var(--golf-line);
  border-radius: 24px;
  background: var(--golf-primary);
  color: #fffdf4;
}

.golf-scorecard h2 {
  margin: 0;
  font-size: 2.2rem;
  line-height: 1;
}

.golf-scorecard ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(170px, 1fr));
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.golf-scorecard li {
  padding: 16px;
  border: 1px solid rgba(255, 253, 244, 0.22);
  border-radius: 16px;
  background: rgba(255, 253, 244, 0.08);
  font-weight: 800;
}

.golf-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(26px, 4vw, 54px);
  align-items: start;
  margin-top: 54px;
}

.golf-article-body {
  max-width: 900px;
  font-size: clamp(1.05rem, 1.3vw, 1.28rem);
}

.golf-article-body section,
.golf-article-body .article-intro,
.golf-source-card {
  margin: 0 0 46px;
}

.golf-article-body h2 {
  margin: 0 0 18px;
  color: var(--golf-primary);
  font-size: clamp(2rem, 3.4vw, 4rem);
  line-height: 0.98;
}

.golf-article-body h3 {
  margin: 0 0 12px;
  color: var(--golf-primary);
  font-size: 1.55rem;
}

.golf-article-body p {
  color: rgba(16, 24, 32, 0.78);
}

.article-list,
.article-checklist,
.golf-source-card ul {
  margin: 18px 0 0;
  padding-left: 1.2rem;
}

.article-list li,
.article-checklist li,
.golf-source-card li {
  margin: 8px 0;
}

.article-callout {
  padding: 24px;
  border-left: 6px solid var(--golf-accent);
  border-radius: 18px;
  background: rgba(216, 179, 95, 0.16);
}

.inline-related-grid,
.article-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0;
}

.inline-related-link,
.article-card {
  display: block;
  padding: 18px;
  border: 1px solid var(--golf-line);
  border-radius: 18px;
  background: var(--golf-paper);
}

.inline-related-link span {
  color: var(--golf-accent);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.inline-related-link strong {
  display: block;
  color: var(--golf-primary);
  font-size: 1.08rem;
  line-height: 1.2;
}

.table-scroll {
  overflow-x: auto;
}

.content-table {
  width: 100%;
  border-collapse: collapse;
  margin: 22px 0;
  background: var(--golf-paper);
}

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

.content-table th {
  color: var(--golf-primary);
  background: rgba(223, 238, 233, 0.5);
}

.golf-related-card {
  position: sticky;
  top: 24px;
}

.golf-story-grid.compact .golf-card-media {
  height: 190px;
}

.golf-footer {
  width: min(100% - 44px, 1660px);
  margin: 90px auto 0;
  padding: 38px 0 46px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.5fr) minmax(220px, 0.5fr);
  gap: 28px;
  border-top: 1px solid var(--golf-line);
}

.golf-footer strong {
  display: block;
  color: var(--golf-primary);
  font-size: 1.5rem;
}

.golf-footer p {
  max-width: 640px;
  color: var(--golf-muted);
}

.golf-fine-print {
  font-size: 0.92rem;
}

.golf-footer-group {
  display: grid;
  align-content: start;
  gap: 10px;
}

.golf-footer-group h2 {
  margin: 0 0 6px;
  color: var(--golf-accent);
  font-size: 0.85rem;
  text-transform: uppercase;
}

.golf-footer-group a {
  color: var(--golf-primary);
  font-weight: 850;
}

@media (max-width: 1100px) {
  .golf-header,
  .golf-footer,
  main {
    width: min(100% - 28px, 1660px);
  }

  .golf-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .golf-nav {
    justify-content: flex-start;
  }

  .golf-hero {
    min-height: auto;
  }

  .golf-hero-panel {
    width: 100%;
    min-height: 700px;
    padding-bottom: 240px;
  }

  .golf-hero-board {
    left: 24px;
    right: 24px;
    bottom: 24px;
    width: auto;
  }

  .golf-note-strip ul,
  .golf-route-grid,
  .golf-story-grid,
  .golf-category-feature,
  .golf-article-hero,
  .golf-article-layout,
  .golf-footer,
  .golf-clubhouse {
    grid-template-columns: 1fr;
  }

  .golf-note-strip li {
    border-right: 0;
    border-bottom: 1px solid var(--golf-line);
  }

  .golf-category-lead {
    grid-template-columns: 1fr;
  }

  .golf-category-lead-media,
  .golf-article-photo {
    min-height: 360px;
  }

  .golf-scorecard,
  .golf-scorecard ul,
  .golf-section-heading {
    grid-template-columns: 1fr;
  }

  .golf-related-card {
    position: static;
  }
}

@media (max-width: 680px) {
  html,
  body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }

  .golf-page {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }

  .golf-page,
  .golf-page * {
    max-width: 100%;
  }

  main,
  .golf-header,
  .golf-footer {
    width: calc(100vw - 20px) !important;
    max-width: calc(100vw - 20px) !important;
    margin-left: auto;
    margin-right: auto;
    overflow-x: clip;
  }

  .golf-brand {
    min-width: 0;
  }

  .golf-brand small {
    display: none;
  }

  .golf-nav a {
    padding: 8px 10px;
    font-size: 0.78rem;
    min-width: 0;
    text-align: center;
  }

  .golf-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    gap: 8px;
    overflow-x: hidden;
    justify-content: stretch;
    padding-bottom: 4px;
  }

  .golf-hero {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  .golf-hero-panel {
    width: 100% !important;
    max-width: 100% !important;
    min-height: auto;
    padding: 34px 22px 26px;
  }

  .golf-hero h1 {
    max-width: 100%;
    font-size: clamp(2.8rem, 12.8vw, 3.65rem);
    line-height: 0.94;
    overflow-wrap: anywhere;
  }

  .golf-hero-panel > p:not(.golf-kicker),
  .golf-category-hero > p,
  .golf-article-title > p:not(.golf-kicker),
  .golf-story-body p:not(.golf-kicker),
  .golf-category-lead p:not(.golf-kicker),
  .golf-compact-note strong,
  .golf-scorecard li {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .golf-hero-board {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: auto !important;
    max-width: none !important;
    margin: 0 12px 12px;
    padding: 18px;
  }

  .golf-actions,
  .golf-topic-row,
  .golf-other-map div {
    flex-direction: column;
    align-items: stretch;
  }

  .golf-button {
    width: 100%;
  }

  .golf-route-card,
  .golf-story-body,
  .golf-category-hero,
  .golf-article-title {
    padding: 22px;
  }

  .golf-manifest h2,
  .golf-section-heading h2,
  .golf-category-hero h1,
  .golf-clubhouse h2,
  .golf-next-section h2,
  .golf-article-title h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 10vw, 3.1rem);
    line-height: 1;
    overflow-wrap: anywhere;
  }

  .golf-category-hero,
  .golf-article-title,
  .golf-hero-panel,
  .golf-hero-board,
  .golf-section-heading {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .golf-category-feature,
  .golf-category-lead,
  .golf-category-library,
  .golf-story-card,
  .golf-route-card,
  .golf-scorecard,
  .golf-note-strip,
  .golf-article-hero,
  .golf-article-layout,
  .golf-article-body,
  .golf-article-body section,
  .golf-article-body .article-intro {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .golf-card-media {
    height: 210px;
  }

  .golf-scorecard {
    padding: 20px;
  }

  .inline-related-grid,
  .article-card-grid {
    grid-template-columns: 1fr;
  }
}
