:root {
  --navy: #071a33;
  --navy-2: #0d2b4d;
  --ink: #132033;
  --muted: #647184;
  --line: #dce3ec;
  --paper: #f7f4ed;
  --surface: #ffffff;
  --gold: #b98b31;
  --green: #466b4d;
  --teal: #1f6f78;
  --ruby: #8b3f4d;
  --shadow: 0 18px 48px rgba(7, 26, 51, 0.14);
  --soft-shadow: 0 10px 26px rgba(7, 26, 51, 0.08);
  --radius: 8px;
  --header: 84px;
  --content: 1120px;
  --content-wide: 1180px;
  font-family: Inter, Pretendard, "Noto Sans KR", Arial, sans-serif;
  color: var(--ink);
  background: var(--surface);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

.is-auth-locked {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: #fbfaf7;
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  background: var(--navy);
  color: #fff;
  padding: 10px 14px;
  border-radius: 6px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 0 36px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(7, 26, 51, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 226px;
  text-decoration: none;
}

.brand-wordmark-image {
  display: block;
  width: clamp(190px, 18vw, 260px);
  height: auto;
}

.site-header .brand-wordmark {
  min-width: 174px;
  gap: 10px;
}

.brand-user-logo {
  width: auto;
  height: 68px;
  max-width: 78px;
  object-fit: contain;
}

.brand-logo {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  width: fit-content;
  line-height: 0.86;
  color: var(--navy);
  letter-spacing: 0;
}

.brand-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  font-weight: 900;
  line-height: 0.78;
}

.brand-copy small {
  margin-top: 7px;
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.085em;
}

.brand-lockup-mark img {
  filter: none;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: var(--header);
}

.primary-nav > a,
.nav-item > a {
  position: relative;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.primary-nav > a::after,
.nav-item > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--gold);
  transition: transform 180ms ease;
}

.primary-nav > a:hover::after,
.primary-nav > a.is-active::after,
.nav-item > a:hover::after,
.nav-item > a.is-active::after {
  transform: scaleX(1);
}

.subnav {
  position: absolute;
  top: calc(100% - 8px);
  left: 50%;
  z-index: 10;
  display: grid;
  min-width: 244px;
  padding: 10px;
  border: 1px solid rgba(7, 26, 51, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-item:hover .subnav,
.nav-item:focus-within .subnav {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.subnav a {
  display: block;
  padding: 11px 12px;
  border-radius: 6px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.35;
  text-transform: none;
  white-space: normal;
}

.subnav a::after {
  display: none;
}

.subnav a:hover,
.subnav a.is-active {
  background: #f4f0e7;
  color: var(--navy);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(7, 26, 51, 0.12);
  border-radius: 999px;
  background: #f5f7f8;
}

.lang-btn {
  min-width: 34px;
  height: 30px;
  padding: 0 9px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.lang-btn.is-active,
.lang-btn[aria-pressed="true"] {
  background: var(--navy);
  color: #fff;
}

.btn,
.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn {
  min-height: 44px;
  padding: 0 18px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.btn svg,
.icon-btn svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.btn-dark {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 12px 30px rgba(7, 26, 51, 0.18);
}

.btn-light {
  background: #fff;
  color: var(--navy);
  border: 1px solid rgba(7, 26, 51, 0.12);
}

.btn-outline-dark {
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.btn-outline-dark:hover {
  color: var(--ink);
  background: #fff;
}

.btn:hover,
.icon-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(7, 26, 51, 0.16);
}

.icon-btn {
  width: 44px;
  height: 44px;
  background: #fff;
  color: var(--navy);
  border: 1px solid rgba(7, 26, 51, 0.12);
}

.mobile-toggle {
  display: none;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header);
  left: 0;
  right: 0;
  z-index: 95;
  padding: 18px 22px 24px;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.mobile-nav.is-open {
  display: grid;
}

.mobile-nav a {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
  color: var(--navy);
}

.route {
  display: none;
}

.route.is-active {
  display: block;
}

.hero {
  position: relative;
  min-height: clamp(560px, calc(100vh - var(--header) - 44px), 700px);
  overflow: hidden;
  display: grid;
  align-items: center;
  border-bottom: 2px solid rgba(185, 139, 49, 0.7);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.66) 32%, rgba(255, 255, 255, 0.04) 62%),
    url("./images/hero-golf-korea.png") center / cover no-repeat;
}

.hero-content {
  position: relative;
  width: min(var(--content), calc(100% - 56px));
  margin: 0 auto;
  padding: 64px 0 78px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-bottom: 20px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: rgba(17, 17, 17, 0.66);
  font-size: 13px;
  font-weight: 800;
}

.hero-pill svg {
  width: 16px;
  height: 16px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--navy);
  font-size: clamp(52px, 6vw, 68px);
  line-height: 1.04;
  font-weight: 500;
}

.page-hero h1 {
  margin: 0;
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--navy);
  font-size: clamp(38px, 4.2vw, 52px);
  line-height: 1.08;
  font-weight: 500;
}

.hero-lede,
.page-hero p {
  max-width: 540px;
  margin: 22px 0 0;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 600;
  overflow-wrap: break-word;
  word-break: keep-all;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.value-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background:
    linear-gradient(135deg, rgba(7, 26, 51, 0.98), rgba(13, 43, 77, 0.98)),
    linear-gradient(45deg, transparent 48%, rgba(255, 255, 255, 0.04) 49% 51%, transparent 52%);
  color: #fff;
}

.value-strip article {
  min-height: 142px;
  padding: 28px 34px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.value-strip article:last-child {
  border-right: 0;
}

.value-strip svg {
  width: 34px;
  height: 34px;
  color: #d3a54a;
}

.value-strip h2 {
  margin: 16px 0 8px;
  font-size: 15px;
  text-transform: uppercase;
}

.value-strip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.7;
}

.band {
  padding: 68px max(28px, calc((100vw - var(--content-wide)) / 2));
}

.band-muted {
  background: #f5f7f8;
}

.platform-band {
  background: var(--paper);
}

.section-head {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-head.compact {
  margin-bottom: 22px;
}

.section-head-row {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.55fr);
  gap: 32px;
  align-items: end;
}

.section-head-row > p {
  margin-bottom: 2px;
}

.section-head h2,
.copy-block h2,
.event-layout h2,
.opportunity-copy h2,
.community-layout h2,
.admin-panels h2,
.prose h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 30px;
  line-height: 1.24;
}

.section-head p,
.copy-block p,
.feature-card p,
.trust-grid p,
.category-grid p,
.media-grid p,
.event-layout p,
.opportunity-copy p,
  .prose p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.78;
  overflow-wrap: break-word;
  word-break: keep-all;
}

.home-overview {
  background: #fff;
}

.home-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  grid-template-areas:
    "intro notices"
    "intro events"
    "intro media";
  gap: 18px;
}

.home-intro-panel,
.home-panel,
.quick-grid a {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.home-intro-panel {
  grid-area: intro;
  display: grid;
  align-content: space-between;
  gap: 22px;
  min-height: 520px;
  padding: 34px;
  background:
    linear-gradient(140deg, rgba(7, 26, 51, 0.94), rgba(13, 43, 77, 0.9)),
    url("./images/hero-about-pga-development.png") center / cover no-repeat;
  color: #fff;
}

.home-intro-panel .eyebrow,
.home-intro-panel h2 {
  color: #fff;
}

.home-intro-panel .eyebrow {
  margin-bottom: 12px;
  font-size: 12px;
  letter-spacing: 0.03em;
}

.home-intro-panel h2 {
  max-width: 680px;
  margin: 0;
  font-size: 30px;
  line-height: 1.34;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  word-break: keep-all;
}

.home-intro-panel p {
  max-width: 640px;
  margin: 15px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.72;
  overflow-wrap: anywhere;
  word-break: keep-all;
}

.hub-portrait {
  margin: -8px -8px 26px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.hub-portrait img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center center;
}

.hub-copy {
  max-width: 680px;
}

.hub-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.hub-menu-grid a {
  min-height: 118px;
  display: grid;
  grid-template-columns: 34px 1fr;
  grid-template-areas:
    "num title"
    "num desc";
  align-content: start;
  gap: 5px 12px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.hub-menu-grid span {
  grid-area: num;
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(211, 165, 74, 0.14);
  color: #d3a54a;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.hub-menu-grid strong {
  grid-area: title;
  color: #fff;
  font-size: 15px;
  line-height: 1.34;
  letter-spacing: 0;
  word-break: keep-all;
}

.hub-menu-grid small {
  grid-area: desc;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12.5px;
  line-height: 1.52;
  word-break: keep-all;
}

.home-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 32px 0 30px;
}

.home-kpis div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.home-kpis strong {
  display: block;
  color: #d3a54a;
  font-size: 27px;
}

.home-kpis span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.home-hub-depth {
  display: grid;
  gap: 16px;
  margin-top: 4px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.hub-depth-head {
  display: grid;
  gap: 6px;
}

.hub-depth-head span {
  color: #d3a54a;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hub-depth-head strong {
  color: #fff;
  font-size: 18px;
  line-height: 1.35;
  word-break: keep-all;
}

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

.hub-depth-grid article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  min-height: 90px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.hub-depth-grid svg {
  width: 18px;
  height: 18px;
  color: #d3a54a;
  margin-top: 2px;
}

.hub-depth-grid strong {
  display: block;
  color: #fff;
  font-size: 14px;
  line-height: 1.3;
}

.hub-depth-grid span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  line-height: 1.55;
  word-break: keep-all;
}

.hub-pipeline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding-top: 4px;
}

.hub-pipeline span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(211, 165, 74, 0.13);
  color: rgba(255, 255, 255, 0.88);
  font-size: 11px;
  font-weight: 900;
}

.hub-pipeline svg {
  width: 14px;
  height: 14px;
  color: rgba(255, 255, 255, 0.36);
}

.home-panel {
  padding: 24px;
}

.home-panel:nth-child(2) {
  grid-area: notices;
}

.home-event-panel {
  grid-area: events;
}

.home-panel:nth-child(4) {
  grid-area: media;
}

.panel-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
  margin-bottom: 16px;
}

.panel-head .eyebrow {
  margin-bottom: 8px;
}

.panel-head h3 {
  margin: 0;
  color: var(--navy);
  font-size: 22px;
  overflow-wrap: anywhere;
  word-break: keep-all;
}

.compact-board,
.schedule-list {
  display: grid;
  gap: 10px;
}

.compact-board-item,
.schedule-item {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid #e9eef3;
  border-radius: 8px;
  background: #fbfcfd;
}

.compact-board-item span,
.schedule-item span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.compact-board-item strong,
.schedule-item strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.45;
}

.compact-board-item small,
.schedule-item small {
  color: var(--muted);
  font-size: 12px;
}

.schedule-item {
  grid-template-columns: 58px 1fr;
  align-items: center;
}

.schedule-item time {
  display: grid;
  place-items: center;
  min-height: 58px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
}

.schedule-item time strong {
  color: #fff;
  font-size: 24px;
  line-height: 1;
}

.schedule-item time span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
}

.refined-feature-grid .feature-card {
  display: grid;
  grid-template-columns: 0.48fr 0.52fr;
}

.refined-feature-grid .feature-card img {
  height: 100%;
  aspect-ratio: auto;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.quick-grid a {
  min-height: 170px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 24px;
}

.quick-grid svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
}

.quick-grid strong {
  color: var(--navy);
  font-size: 18px;
}

.quick-grid span {
  color: var(--muted);
  line-height: 1.65;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.trust-grid article {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.05);
}

.trust-grid svg {
  width: 28px;
  height: 28px;
  margin-bottom: 42px;
  color: var(--ink);
}

.trust-grid h3 {
  margin: 0 0 12px;
  font-size: 21px;
  color: var(--ink);
}

.featured-members-band {
  padding: 82px max(24px, calc((100vw - 1180px) / 2));
  background: #111111;
  color: #fff;
}

.featured-members-inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.dark-head h2,
.dark-head p {
  color: #fff;
}

.dark-head p {
  color: rgba(255, 255, 255, 0.64);
}

.home-member-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.home-member-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.home-member-card button {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.home-member-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 480ms ease;
}

.home-member-card button:hover img {
  transform: scale(1.04);
}

.home-member-card-body {
  padding: 22px;
}

.home-member-card-body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.65;
}

.home-member-card-body h3 {
  margin: 8px 0 12px;
  color: #fff;
  font-size: 27px;
}

.home-member-socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.58);
}

.home-member-socials svg {
  width: 20px;
  height: 20px;
}

.opportunity-band {
  background: var(--paper);
}

.opportunity-panel {
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: stretch;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.opportunity-copy {
  padding: 48px;
}

.opportunity-copy h2 {
  font-size: 48px;
}

.opportunity-list {
  display: grid;
  gap: 12px;
  margin-top: 32px;
  color: rgba(17, 17, 17, 0.7);
  font-weight: 700;
}

.opportunity-panel img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.home-cta {
  margin: 0 max(24px, calc((100vw - 1180px) / 2)) 82px;
  padding: 64px 42px;
  border-radius: var(--radius);
  background: #111111;
  color: #fff;
  text-align: center;
}

.home-cta h2 {
  max-width: 850px;
  margin: 0 auto;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 60px;
  line-height: 1.03;
  font-weight: 500;
}

.home-cta p {
  max-width: 680px;
  margin: 24px auto 34px;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.8;
}

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

.feature-card,
.member-card,
.trust-grid article,
.category-grid article,
.media-grid article,
.partner-card,
.board-item,
.faq-item,
.metric,
.admin-panels article,
.sitemap-column {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.feature-card {
  overflow: hidden;
}

.feature-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.feature-card div {
  padding: 22px;
}

.tag {
  display: inline-flex;
  margin: 0 0 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(185, 139, 49, 0.12);
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-card h3,
.member-card h2,
.timeline h3,
.category-grid h2,
.media-grid h2,
.partner-card h2,
.board-item h3,
.faq-item h3 {
  margin: 0 0 10px;
  color: var(--navy);
}

.feature-card h3,
.board-item h3,
.faq-item h3 {
  font-size: 18px;
  line-height: 1.42;
}

.news-preview,
.board-list,
.lesson-columns {
  display: grid;
  gap: 14px;
}

.news-preview {
  grid-template-columns: repeat(3, 1fr);
}

.board-item {
  padding: 18px;
}

.board-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin: 28px 0 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.board-section-head-compact {
  margin-top: 0;
}

.board-section-head h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
  letter-spacing: 0;
}

.board-section-head .eyebrow {
  margin-bottom: 8px;
}

.board-section-head span,
.panel-actions span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 11px;
  border: 1px solid rgba(185, 139, 49, 0.28);
  border-radius: 999px;
  background: rgba(185, 139, 49, 0.1);
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.panel-actions {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.board-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 12px;
}

.page-hero {
  min-height: 310px;
  display: grid;
  align-content: end;
  padding: 92px max(28px, calc((100vw - var(--content-wide)) / 2)) 46px;
  background:
    linear-gradient(90deg, rgba(7, 26, 51, 0.82), rgba(7, 26, 51, 0.32)),
    url("./images/hero-golf-korea.png") center / cover no-repeat;
  color: #fff;
}

.page-hero h1,
.page-hero .eyebrow,
.page-hero p {
  color: #fff;
}

.about-hero {
  background:
    linear-gradient(90deg, rgba(7, 26, 51, 0.84), rgba(70, 107, 77, 0.42)),
    url("./images/hero-about-pga-development.png") center / cover no-repeat;
}

.us-pga-hero {
  background:
    linear-gradient(90deg, rgba(7, 26, 51, 0.86), rgba(139, 63, 77, 0.28)),
    url("./images/hero-pga-us-heritage.png") center / cover no-repeat;
}

.chapter-hero {
  background:
    linear-gradient(90deg, rgba(7, 26, 51, 0.86), rgba(70, 107, 77, 0.34)),
    url("./images/hero-pga-korea-chapter.png") center / cover no-repeat;
}

.employment-hero {
  background:
    linear-gradient(90deg, rgba(7, 26, 51, 0.86), rgba(7, 26, 51, 0.34)),
    url("./images/hero-pga-careers.png") center / cover no-repeat;
}

.culture-hero {
  background:
    linear-gradient(90deg, rgba(7, 26, 51, 0.84), rgba(70, 107, 77, 0.44)),
    url("./images/hero-pga-community.png") center / cover no-repeat;
}

.careers-hero {
  background:
    linear-gradient(90deg, rgba(7, 26, 51, 0.84), rgba(7, 26, 51, 0.28)),
    url("./images/hero-pga-career-pipeline.png") center / cover no-repeat;
}

.strategy-page {
  display: grid;
  gap: 30px;
}

.impact-stat-grid,
.benefit-grid,
.culture-values,
.culture-principles,
.hiring-status-grid {
  display: grid;
  gap: 16px;
}

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

.impact-stat-grid article,
.benefit-grid article,
.culture-values article,
.culture-principles article,
.hiring-status-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.impact-stat-grid article {
  min-height: 210px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 22px;
}

.impact-stat-grid strong,
.culture-values span,
.hiring-status-grid span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.impact-stat-grid span {
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
}

.impact-stat-grid p,
.benefit-grid p,
.culture-values p,
.culture-principles p,
.hiring-status-grid p,
.strategy-copy p,
.culture-copy-stack p,
.career-pipeline p,
.career-resource-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
  word-break: keep-all;
}

.strategy-split,
.culture-layout,
.career-pipeline,
.career-resource-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: 24px;
  align-items: stretch;
}

.strategy-copy,
.culture-copy-stack,
.career-pipeline > div,
.career-resource-panel > div {
  display: grid;
  align-content: center;
  gap: 16px;
}

.strategy-copy h2,
.culture-statement h2,
.culture-copy-stack h2,
.process-band h2,
.career-pipeline h2,
.career-resource-panel h2 {
  margin: 0;
  color: var(--navy);
  font-size: 34px;
  line-height: 1.25;
  letter-spacing: 0;
}

.dark-panel {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 34px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(7, 26, 51, 0.9), rgba(7, 26, 51, 0.96)),
    url("./images/hero-pga-careers.png") center / cover no-repeat;
  color: #fff;
  box-shadow: var(--shadow);
}

.dark-panel span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.dark-panel strong {
  color: #fff;
  font-size: 26px;
  line-height: 1.35;
}

.dark-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
}

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

.benefit-grid article {
  min-height: 240px;
  padding: 24px;
}

.benefit-grid svg {
  width: 30px;
  height: 30px;
  margin-bottom: 22px;
  color: var(--gold);
}

.benefit-grid h3,
.culture-values h3,
.hiring-status-grid strong {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.35;
}

.process-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1fr);
  gap: 28px;
  padding: 30px;
  border: 1px solid rgba(185, 139, 49, 0.22);
  border-radius: 8px;
  background: #fbf8f0;
}

.process-band ol,
.career-steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-band li,
.career-steps li {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid rgba(7, 26, 51, 0.08);
  border-radius: 8px;
  background: #fff;
}

.process-band li strong,
.career-steps li strong {
  color: var(--navy);
  font-size: 15px;
}

.process-band li span,
.career-steps li span {
  color: var(--muted);
  line-height: 1.65;
}

.culture-statement {
  max-width: 920px;
  display: grid;
  gap: 16px;
}

.culture-statement p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

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

.culture-values article {
  min-height: 250px;
  padding: 24px;
}

.culture-values h3 {
  margin-top: 12px;
}

.culture-image-card {
  min-height: 520px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.culture-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.culture-principles article {
  padding: 24px;
}

.culture-principles strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 20px;
}

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

.hiring-status-grid article {
  min-height: 250px;
  padding: 24px;
}

.hiring-status-grid strong {
  display: block;
  margin-top: 12px;
}

.career-pipeline {
  align-items: start;
}

.career-resource-panel {
  align-items: center;
  padding: 30px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow);
}

.career-resource-panel h2,
.career-resource-panel .eyebrow {
  color: #fff;
}

.career-resource-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.career-resource-panel .btn {
  justify-self: end;
}

.source-feature,
.chairman-feature,
.lesson-feature {
  display: grid;
  gap: 28px;
}

.source-feature {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  align-items: start;
}

.source-copy h2,
.chairman-feature h2,
.lesson-feature h2 {
  margin: 0;
  color: var(--navy);
  font-size: 36px;
  line-height: 1.25;
  overflow-wrap: anywhere;
  word-break: keep-all;
}

.source-copy p,
.chairman-feature p,
.lesson-feature p {
  color: var(--muted);
  line-height: 1.85;
}

.source-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.source-stats div,
.source-card-list article,
.lesson-table div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.source-stats strong {
  display: block;
  color: var(--gold);
  font-size: 30px;
}

.source-stats span,
.lesson-table span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.source-card-list {
  display: grid;
  gap: 14px;
}

.source-card-list article span {
  color: var(--gold);
  font-weight: 900;
}

.source-card-list article h3 {
  margin: 10px 0 8px;
  color: var(--navy);
}

.about-deep {
  display: grid;
  gap: 28px;
}

.about-text-stack p {
  max-width: 740px;
  color: var(--muted);
  line-height: 1.9;
}

.about-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.about-pill-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid rgba(185, 139, 49, 0.26);
  border-radius: 999px;
  background: rgba(185, 139, 49, 0.09);
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
}

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

.about-depth-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.about-depth-card.span-2 {
  grid-column: span 2;
}

.about-depth-card span {
  color: var(--gold);
  font-weight: 900;
}

.about-depth-card h3 {
  margin: 10px 0;
  color: var(--navy);
  font-size: 21px;
}

.about-depth-card p,
.long-copy p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.85;
}

.about-knowledge-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) repeat(2, minmax(0, 0.7fr));
  gap: 16px;
}

.about-knowledge-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.about-knowledge-card.lead {
  background:
    linear-gradient(180deg, rgba(7, 26, 51, 0.84), rgba(7, 26, 51, 0.94)),
    url("./images/hero-about-pga-development.png") center / cover no-repeat;
  color: #fff;
  box-shadow: var(--shadow);
}

.about-knowledge-card svg {
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
  color: var(--gold);
}

.about-knowledge-card h3 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.32;
}

.about-knowledge-card.lead h3,
.about-knowledge-card.lead .eyebrow {
  color: #fff;
}

.about-knowledge-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
}

.about-knowledge-card.lead p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.8);
}

.about-factbar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(7, 26, 51, 0.12);
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
  box-shadow: var(--soft-shadow);
}

.about-factbar div {
  min-height: 132px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.about-factbar div:last-child {
  border-right: 0;
}

.about-factbar strong {
  color: var(--gold);
  font-size: 36px;
  line-height: 1;
}

.about-factbar span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

.about-comparison {
  display: grid;
  gap: 20px;
  padding-top: 8px;
}

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

.about-compare-grid article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.about-compare-grid span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.about-compare-grid strong {
  display: block;
  margin: 12px 0;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.35;
}

.about-compare-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.expanded-source .source-card-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.chairman-feature {
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  align-items: center;
}

.chairman-feature figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.chairman-feature img {
  width: 100%;
  min-height: 460px;
  object-fit: cover;
  object-position: center top;
}

.chairman-feature strong {
  display: block;
  margin-top: 24px;
  color: var(--navy);
}

.chapter-program-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.chapter-program-grid article {
  padding: 16px;
  border: 1px solid rgba(7, 26, 51, 0.1);
  border-radius: 8px;
  background: #fff;
}

.chapter-program-grid strong {
  margin: 0 0 6px;
}

.chapter-program-grid span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.lesson-feature {
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.72fr);
  align-items: center;
}

.lesson-table {
  display: grid;
  gap: 12px;
}

.lesson-table strong {
  display: block;
  margin-top: 6px;
  color: var(--navy);
}

.expanded-lesson {
  align-items: start;
  position: relative;
  overflow: hidden;
  gap: 22px;
  border: 1px solid rgba(7, 26, 51, 0.08);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 245, 0.9)),
    radial-gradient(circle at 92% 12%, rgba(182, 142, 64, 0.16), transparent 34%);
}

.expanded-lesson::before {
  content: "";
  position: absolute;
  inset: 18px 18px auto auto;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(182, 142, 64, 0.18);
  border-radius: 999px;
  pointer-events: none;
}

.expanded-lesson > * {
  position: relative;
}

.lesson-pathway {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.lesson-pathway article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--soft-shadow);
  min-height: 150px;
}

.lesson-pathway span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.lesson-pathway strong {
  display: block;
  margin: 8px 0 6px;
  color: var(--navy);
}

.lesson-pathway p {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
}

.lesson-copy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.lesson-copy-grid article {
  min-height: 96px;
  padding: 16px;
  border: 1px solid rgba(7, 26, 51, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.lesson-copy-grid span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lesson-copy-grid strong {
  display: block;
  margin-top: 8px;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.55;
  word-break: keep-all;
}

.lesson-copy-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  margin-top: 14px;
  padding: 16px;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  background: rgba(7, 26, 51, 0.05);
}

.lesson-copy-note svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
  margin-top: 2px;
}

.lesson-copy-note p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.lesson-cta-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 24px;
  border: 1px solid rgba(7, 26, 51, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(7, 26, 51, 0.98), rgba(12, 58, 66, 0.94)),
    var(--navy);
  box-shadow: 0 22px 50px rgba(7, 26, 51, 0.18);
  color: #fff;
}

.lesson-cta-panel span {
  display: inline-flex;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lesson-cta-panel strong {
  display: block;
  max-width: 720px;
  margin-top: 8px;
  color: #fff;
  font-size: clamp(20px, 2.1vw, 30px);
  line-height: 1.25;
  letter-spacing: 0;
}

.lesson-cta-panel p {
  max-width: 720px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.75;
}

.lesson-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.lesson-profile-btn {
  min-height: 52px;
  border-radius: 8px;
  white-space: nowrap;
}

.lesson-profile-btn i:last-child {
  transition: transform 0.2s ease;
}

.lesson-profile-btn:hover i:last-child {
  transform: translateX(3px);
}

.lesson-profile-btn.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
}

.expanded-lesson {
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.72fr);
  align-items: stretch;
  gap: 18px;
  padding: clamp(24px, 3vw, 46px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 243, 0.94)),
    radial-gradient(circle at 92% 12%, rgba(182, 142, 64, 0.16), transparent 34%),
    radial-gradient(circle at 4% 100%, rgba(7, 26, 51, 0.08), transparent 34%);
}

.lesson-story-card,
.lesson-directory-card,
.expanded-lesson .lesson-copy-grid,
.lesson-pathway,
.lesson-cta-panel,
.lesson-copy-note {
  position: relative;
  z-index: 1;
}

.lesson-story-card {
  min-height: 100%;
  padding: clamp(24px, 2.6vw, 36px);
  border: 1px solid rgba(7, 26, 51, 0.1);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.lesson-story-card h2 {
  max-width: 680px;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.16;
}

.lesson-story-card p {
  max-width: 720px;
  margin: 18px 0 0;
  line-height: 1.86;
}

.lesson-signal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.lesson-signal-list span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(185, 139, 49, 0.24);
  border-radius: 999px;
  background: rgba(185, 139, 49, 0.08);
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
}

.lesson-signal-list svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex: 0 0 auto;
}

.lesson-directory-card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(7, 26, 51, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--soft-shadow);
}

.lesson-directory-visual {
  position: relative;
  min-height: 235px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--navy);
}

.lesson-directory-visual img {
  width: 100%;
  height: 100%;
  min-height: 235px;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.04);
}

.lesson-directory-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 34%, rgba(7, 26, 51, 0.86));
}

.lesson-directory-visual div {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  color: #fff;
}

.lesson-directory-visual span {
  display: block;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lesson-directory-visual strong {
  display: block;
  margin-top: 6px;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.1;
}

.lesson-directory-card .lesson-table {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.lesson-directory-card .lesson-table div {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  padding: 15px;
  box-shadow: none;
  background: rgba(255, 255, 255, 0.92);
}

.lesson-directory-card .lesson-table span {
  margin-top: 2px;
}

.lesson-directory-card .lesson-table strong {
  margin-top: 0;
  font-size: 14px;
  line-height: 1.45;
}

.expanded-lesson .lesson-copy-grid {
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 4px;
}

.expanded-lesson .lesson-copy-grid article {
  min-height: 118px;
  padding: 18px;
  border-color: rgba(7, 26, 51, 0.08);
}

.expanded-lesson .lesson-copy-grid strong {
  font-size: 14px;
  line-height: 1.5;
}

.expanded-lesson .lesson-pathway {
  margin-top: 2px;
}

.expanded-lesson .lesson-pathway article {
  min-height: 138px;
  background: linear-gradient(180deg, #fff, rgba(255, 255, 255, 0.86));
}

.expanded-lesson .lesson-cta-panel {
  margin-top: 2px;
  border-radius: 10px;
}

.expanded-lesson .lesson-copy-note {
  grid-column: 1 / -1;
  margin-top: 0;
  border-left: 0;
  border: 1px solid rgba(185, 139, 49, 0.22);
  background: rgba(255, 255, 255, 0.74);
}

.members-hero {
  background:
    linear-gradient(90deg, rgba(7, 26, 51, 0.88), rgba(7, 26, 51, 0.48)),
    url("./images/member-portraits-sheet.png") center / cover no-repeat;
}

.sitemap-hero {
  background:
    linear-gradient(90deg, rgba(7, 26, 51, 0.88), rgba(7, 26, 51, 0.4)),
    url("./images/reference-main.png") center / cover no-repeat;
}

.legal-hero {
  background:
    linear-gradient(90deg, rgba(7, 26, 51, 0.9), rgba(7, 26, 51, 0.5)),
    url("./images/hero-golf-korea-original.png") center / cover no-repeat;
}

.events-hero {
  background:
    linear-gradient(90deg, rgba(7, 26, 51, 0.84), rgba(139, 63, 77, 0.36)),
    url("./images/hero-pga-events-networking.png") center / cover no-repeat;
}

.partners-hero {
  background:
    linear-gradient(90deg, rgba(7, 26, 51, 0.84), rgba(139, 63, 77, 0.32)),
    url("./images/hero-pga-partners.png") center / cover no-repeat;
}

.private-lessons-hero {
  background:
    linear-gradient(90deg, rgba(7, 26, 51, 0.86), rgba(31, 111, 120, 0.32)),
    url("./images/hero-pga-coaching-academy.png") center / cover no-repeat;
}

.categories-hero {
  background:
    linear-gradient(90deg, rgba(7, 26, 51, 0.86), rgba(31, 111, 120, 0.3)),
    url("./images/hero-pga-program-categories.png") center / cover no-repeat;
}

.media-hero {
  background:
    linear-gradient(90deg, rgba(7, 26, 51, 0.86), rgba(31, 111, 120, 0.32)),
    url("./images/hero-pga-media-studio.png") center / cover no-repeat;
}

.community-hero {
  background:
    linear-gradient(90deg, rgba(7, 26, 51, 0.86), rgba(70, 107, 77, 0.36)),
    url("./images/hero-pga-community.png") center / cover no-repeat;
}

.login-hero,
.admin-hero {
  background:
    linear-gradient(90deg, rgba(7, 26, 51, 0.88), rgba(31, 111, 120, 0.28)),
    url("./images/hero-pga-member-portal.png") center / cover no-repeat;
}

.contact-hero {
  background:
    linear-gradient(90deg, rgba(7, 26, 51, 0.86), rgba(70, 107, 77, 0.26)),
    url("./images/hero-pga-contact.png") center / cover no-repeat;
}

.split-layout,
.event-layout,
.contact-layout,
.auth-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 42px;
  align-items: center;
}

.auth-layout {
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  align-items: start;
  background: #f7f4ed;
}

.auth-side {
  display: grid;
  gap: 18px;
  position: sticky;
  top: calc(var(--header) + 24px);
}

.auth-card,
.application-panel,
.admin-auth-card,
.admin-toolbar {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 22px rgba(17, 17, 17, 0.06);
}

.auth-card,
.application-panel,
.admin-auth-card {
  padding: 28px;
}

.auth-card h2,
.application-panel h2,
.admin-auth-card h2 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 28px;
}

.auth-card p,
.application-panel p,
.admin-auth-card p,
.admin-toolbar p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.7;
}

.auth-form,
.member-application-form {
  display: grid;
  gap: 16px;
}

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

.form-grid label,
.auth-form label,
.member-application-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.form-grid input,
.form-grid select,
.form-grid textarea,
.auth-form input,
.member-application-form input,
.member-application-form select,
.member-application-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 12px;
  background: #fff;
  color: var(--ink);
}

.form-grid textarea,
.member-application-form textarea {
  padding-top: 11px;
  resize: vertical;
}

.form-grid input[type="file"] {
  padding: 10px 12px;
}

.full-span {
  grid-column: 1 / -1;
}

.consent-line {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 10px !important;
  padding: 14px;
  border-radius: 6px;
  background: #f5f7f8;
}

.consent-line input {
  width: auto;
  min-height: auto;
  margin-top: 3px;
  accent-color: var(--green);
}

.process-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 6px;
  background: #f5f7f8;
}

.process-list strong {
  color: var(--gold);
  font-size: 13px;
}

.process-list span {
  color: var(--ink);
  font-weight: 800;
  line-height: 1.5;
}

.form-message {
  min-height: 22px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.6;
}

.form-message.is-error {
  color: var(--ruby);
}

.member-session {
  display: grid;
  gap: 12px;
}

.member-session strong {
  color: var(--navy);
  font-size: 20px;
}

.status-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(70, 107, 77, 0.12);
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.member-portal {
  display: grid;
  gap: 18px;
}

.member-portal-hero {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(7, 26, 51, 0.96), rgba(13, 43, 77, 0.9)),
    url("./images/hero-pga-member-portal.png") center / cover no-repeat;
  color: #fff;
}

.member-portal-hero img {
  width: 92px;
  height: 92px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

.member-portal-hero h2,
.member-portal-hero p,
.member-portal-hero strong {
  color: #fff;
}

.member-portal-hero h2 {
  margin: 10px 0 8px;
  font-size: 25px;
  line-height: 1.2;
}

.member-portal-hero p {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.78);
}

.member-portal-hero strong {
  display: block;
  line-height: 1.55;
}

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

.portal-action-grid a,
.portal-action-grid button {
  min-height: 96px;
  display: grid;
  align-content: start;
  gap: 7px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  text-align: left;
  box-shadow: 0 8px 18px rgba(7, 26, 51, 0.06);
  cursor: pointer;
}

.portal-action-grid svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
}

.portal-action-grid strong {
  color: var(--navy);
  font-size: 15px;
}

.portal-action-grid span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.member-portal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 18px;
  align-items: start;
}

.portal-form,
.portal-panel {
  display: grid;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(7, 26, 51, 0.06);
}

.portal-form-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
}

.portal-form-head h3,
.portal-panel h3 {
  margin: 10px 0 8px;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.25;
}

.portal-form-head p {
  margin: 0;
}

.portal-form-head img {
  width: 74px;
  height: 74px;
  border-radius: 8px;
  object-fit: cover;
}

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

.member-activity-list article {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 8px;
  background: #f5f7f8;
}

.member-activity-list img,
.activity-icon {
  width: 74px;
  height: 56px;
  border-radius: 6px;
  object-fit: cover;
}

.activity-icon {
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--gold);
}

.activity-status {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 5px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(185, 139, 49, 0.14);
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
}

.activity-status.is-approved {
  background: rgba(70, 107, 77, 0.12);
  color: var(--green);
}

.activity-status.is-rejected {
  background: rgba(139, 63, 77, 0.12);
  color: var(--ruby);
}

.member-activity-list strong {
  display: block;
  color: var(--navy);
}

.member-activity-list p {
  margin: 4px 0 0;
  font-size: 12px;
}

.empty-state {
  min-height: 150px;
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 20px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: #f8fafb;
  color: var(--muted);
  text-align: center;
}

.empty-state svg {
  color: var(--gold);
}

.admin-auth-card {
  max-width: 520px;
  margin: 0 auto;
}

.admin-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 20px;
  padding: 20px;
}

.admin-toolbar p {
  margin: 0;
}

.stat-panel {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 18px;
  padding: 32px;
  border-radius: var(--radius);
  background: var(--navy);
  color: #fff;
}

.stat-panel strong {
  color: #d3a54a;
  font-size: 38px;
}

.stat-panel span {
  align-self: center;
  color: rgba(255, 255, 255, 0.78);
}

.timeline {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.timeline article {
  padding: 22px;
  border-left: 3px solid var(--gold);
  background: #f7f4ed;
  border-radius: var(--radius);
}

.timeline span {
  color: var(--gold);
  font-weight: 900;
}

.timeline p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.directory-toolbar {
  position: sticky;
  top: calc(var(--header) + 12px);
  z-index: 3;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(150px, 0.55fr));
  gap: 10px;
  margin-bottom: 22px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 32px rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(12px);
}

.directory-toolbar label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.search-box {
  position: relative;
}

.search-box svg {
  position: absolute;
  left: 14px;
  bottom: 13px;
  width: 18px;
  height: 18px;
  color: var(--muted);
}

.directory-toolbar input,
.directory-toolbar select,
.contact-form input,
.contact-form select,
.contact-form textarea,
.admin-form input,
.admin-form select,
.admin-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 12px;
  background: #fff;
  color: var(--ink);
}

.admin-form textarea {
  padding-top: 11px;
  resize: vertical;
}

.search-box input {
  padding-left: 42px;
}

.member-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.member-card {
  overflow: hidden;
}

.member-card button {
  width: 100%;
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.member-card img {
  width: 92px;
  height: 92px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(7, 26, 51, 0.14);
}

.member-card-head {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #fbfcfd);
}

.member-card-body {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 18px 20px 20px;
}

.member-card h2 {
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.2;
}

.member-card h2 span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-family: Inter, Pretendard, "Noto Sans KR", Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
}

.member-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.member-card-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0;
}

.member-card-meta div {
  padding: 12px;
  border-radius: 8px;
  background: #f5f7f8;
}

.member-card-meta dt {
  margin-bottom: 4px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.member-card-meta dd {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.cv-open-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 30px;
  margin-top: 2px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 4px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #eef3f2;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.category-grid,
.media-grid,
.partner-grid,
.admin-grid,
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.category-grid article,
.media-grid article,
.partner-card,
.metric,
.admin-panels article,
.sitemap-column {
  padding: 22px;
}

.category-grid svg,
.media-grid svg {
  width: 34px;
  height: 34px;
  color: var(--gold);
  margin-bottom: 18px;
}

.media-hero h1 {
  max-width: 760px;
  font-size: 58px;
}

.media-band {
  display: grid;
  gap: 30px;
}

.media-showcase {
  display: grid;
  grid-template-columns: minmax(340px, 0.74fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.media-feature-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 360px;
  padding: 28px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(7, 26, 51, 0.78), rgba(7, 26, 51, 0.92)),
    url("./images/hero-pga-media-studio.png") center / cover no-repeat;
  color: #fff;
  box-shadow: var(--shadow);
}

.media-feature-card h2 {
  max-width: 560px;
  margin: 0 0 16px;
  color: #fff;
  font-size: 30px;
  line-height: 1.28;
}

.media-feature-card p:not(.tag) {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.78;
}

.media-proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.media-proof-list span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.media-grid-refined {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.media-grid-refined article {
  min-height: 172px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-content: start;
  padding: 22px;
}

.media-grid-refined svg {
  margin: 2px 0 0;
}

.media-grid-refined h2 {
  margin-bottom: 8px;
  font-size: 20px;
}

.media-submit-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
  padding: 24px;
  border: 1px solid rgba(7, 26, 51, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 245, 0.92)),
    #fff;
  box-shadow: var(--soft-shadow);
}

.media-submit-copy {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(7, 26, 51, 0.86), rgba(7, 26, 51, 0.94)),
    url("./images/hero-pga-media-studio.png") center / cover no-repeat;
  color: #fff;
}

.media-submit-copy h3 {
  margin: 8px 0 12px;
  color: #fff;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.12;
}

.media-submit-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
}

.media-submit-copy ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.media-submit-copy li {
  display: flex;
  gap: 10px;
  align-items: center;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 800;
}

.media-submit-copy svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex: 0 0 auto;
}

.event-submit-panel {
  margin: 30px 0;
}

.event-submit-panel .media-submit-copy {
  background:
    linear-gradient(180deg, rgba(7, 26, 51, 0.82), rgba(7, 26, 51, 0.94)),
    url("./images/hero-pga-events-networking.png") center / cover no-repeat;
}

.media-submit-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.media-submit-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
}

.media-submit-form input,
.media-submit-form select,
.media-submit-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(7, 26, 51, 0.14);
  border-radius: 8px;
  background: #fff;
  color: var(--navy);
  font: inherit;
  font-size: 14px;
  line-height: 1.45;
  padding: 11px 12px;
}

.media-submit-form textarea {
  resize: vertical;
}

.media-submit-form .full-span,
.media-submit-form .btn,
.media-submit-form .form-message {
  grid-column: 1 / -1;
}

.media-submit-form .btn {
  justify-self: start;
}

.media-board-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.media-board-panel .panel-head {
  margin-bottom: 18px;
}

.media-board-panel h3 {
  margin: 0;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.25;
}

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

.media-update-grid .board-item {
  min-height: 176px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  box-shadow: none;
}

.media-update-grid .board-meta {
  margin-bottom: 14px;
}

.media-update-grid .board-item h3 {
  color: var(--navy);
  font-size: 17px;
  line-height: 1.48;
}

.event-layout {
  margin-bottom: 34px;
}

.event-layout .event-inquiry-btn {
  margin-top: 24px;
}

.event-layout img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.community-layout,
.admin-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.faq-list {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.faq-head {
  margin-top: 34px;
  max-width: 820px;
}

.faq-head h2 {
  margin: 8px 0 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  color: var(--navy);
}

.faq-head p:last-child {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.75;
  word-break: keep-all;
}

.faq-item {
  min-height: 236px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(7, 26, 51, 0.1);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(248, 245, 238, 0.86)),
    #fff;
  box-shadow: var(--soft-shadow);
}

.faq-item h3 {
  margin: 0;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.42;
  letter-spacing: 0;
  word-break: keep-all;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.partner-card {
  display: grid;
  gap: 10px;
}

.partner-card .partner-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: #d3a54a;
  font-weight: 900;
}

.text-link {
  color: var(--navy);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 4px;
}

.metric {
  background: var(--navy);
  color: #fff;
}

.metric span {
  color: #d3a54a;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.metric strong {
  display: block;
  margin: 10px 0 6px;
  font-size: 40px;
}

.metric p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.admin-panels {
  margin-top: 20px;
}

.admin-panels > article:first-child {
  grid-row: span 2;
}

.admin-panels > article {
  min-width: 0;
}

.admin-panel-note {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.admin-member-edit-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.admin-member-edit-item + .admin-member-edit-item {
  margin-top: 12px;
}

.admin-member-edit-item summary {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 78px;
  padding: 14px;
  cursor: pointer;
  list-style: none;
}

.admin-member-edit-item summary::-webkit-details-marker {
  display: none;
}

.admin-member-edit-item summary img {
  width: 58px;
  height: 58px;
  border-radius: 8px;
  object-fit: cover;
}

.admin-member-edit-item summary strong,
.admin-member-edit-item summary small {
  display: block;
}

.admin-member-edit-item summary small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.admin-member-edit-form {
  padding: 0 14px 16px;
}

.smtp-form {
  margin-bottom: 18px;
}

.admin-subhead {
  margin: 22px 0 10px;
  color: var(--navy);
  font-size: 18px;
}

.contact-message-item p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.checklist,
.approval-list {
  display: grid;
  gap: 10px;
}

.checklist label,
.approval-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  border-radius: 6px;
  background: #f5f7f8;
}

.checklist input {
  margin-top: 4px;
  accent-color: var(--green);
}

.approval-item span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.approval-item p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.application-queue {
  max-height: 720px;
  overflow: auto;
}

.content-queue {
  max-height: 540px;
  overflow: auto;
}

.application-item,
.content-approval-item {
  align-items: stretch;
}

.application-item img,
.content-approval-item img {
  width: 92px;
  height: 92px;
  border-radius: 6px;
  object-fit: cover;
  flex: 0 0 auto;
}

.content-approval-item > svg {
  width: 38px;
  height: 38px;
  padding: 9px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--gold);
  flex: 0 0 auto;
}

.application-item details {
  margin-top: 12px;
}

.application-item summary {
  cursor: pointer;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.application-summary {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 8px 12px;
  margin: 12px 0 0;
  padding: 12px;
  border-radius: 6px;
  background: #fff;
}

.application-summary dt {
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
}

.application-summary dd {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.approval-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.admin-form {
  display: grid;
  gap: 14px;
}

.admin-form label,
.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.sitemap-column h2 {
  margin: 0 0 14px;
  color: var(--navy);
}

.sitemap-column ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sitemap-column a {
  color: var(--muted);
}

.sitemap-column a:hover {
  color: var(--navy);
}

.utility-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.prose {
  max-width: 880px;
}

.prose h2 {
  margin-top: 28px;
}

.legal-page .prose {
  width: min(var(--content), 100%);
  max-width: var(--content);
  margin-inline: auto;
  display: grid;
  gap: 22px;
  justify-items: stretch;
}

.legal-page .prose > *,
.legal-document-head,
.legal-toc,
.legal-toc a,
.legal-note,
.legal-article-list,
.legal-article {
  min-width: 0;
}

.legal-document-head {
  display: grid;
  gap: 14px;
  width: 100%;
  padding: 28px;
  border: 1px solid rgba(7, 26, 51, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 245, 0.92)),
    #fff;
  box-shadow: var(--soft-shadow);
}

.legal-document-head span {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(182, 142, 64, 0.12);
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.legal-document-head p {
  max-width: 980px;
  margin: 0;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.85;
  overflow-wrap: anywhere;
  word-break: keep-all;
}

.legal-toc {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.legal-toc a {
  display: flex;
  gap: 10px;
  min-height: 54px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(7, 26, 51, 0.1);
  border-radius: 8px;
  background: #fff;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
  box-shadow: var(--soft-shadow);
  overflow-wrap: anywhere;
  word-break: keep-all;
}

.legal-toc span {
  color: var(--gold);
  font-size: 12px;
}

.legal-note {
  width: 100%;
  display: grid;
  gap: 8px;
  padding: 20px 22px;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
}

.legal-note strong {
  color: #fff;
}

.legal-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.75;
}

.legal-article-list {
  width: 100%;
  display: grid;
  gap: 16px;
}

.legal-article {
  position: relative;
  width: 100%;
  padding: 28px;
  border: 1px solid rgba(7, 26, 51, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--soft-shadow);
  scroll-margin-top: calc(var(--header) + 24px);
}

.legal-section-number {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.legal-article h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: clamp(22px, 2.3vw, 32px);
  line-height: 1.25;
}

.legal-article p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
  overflow-wrap: anywhere;
  word-break: keep-all;
}

.legal-article p:last-child {
  margin-bottom: 0;
}

.legal-article ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.75;
  overflow-wrap: anywhere;
  word-break: keep-all;
}

.legal-table-wrap {
  width: 100%;
  margin-top: 16px;
  overflow-x: auto;
  border: 1px solid rgba(7, 26, 51, 0.1);
  border-radius: 8px;
}

.legal-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  background: #fff;
}

.legal-table th,
.legal-table td {
  padding: 13px 14px;
  border-bottom: 1px solid rgba(7, 26, 51, 0.08);
  text-align: left;
  vertical-align: top;
  font-size: 14px;
  line-height: 1.65;
}

.legal-table th {
  background: rgba(7, 26, 51, 0.04);
  color: var(--navy);
  font-weight: 900;
}

.legal-table td {
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-layout aside {
  padding: 32px;
  border-radius: var(--radius);
  background: var(--paper);
}

.contact-layout aside h2 {
  margin-top: 0;
  color: var(--navy);
}

.contact-layout aside p {
  color: var(--muted);
  line-height: 1.7;
}

.member-modal[hidden] {
  display: none;
}

.member-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
}

.modal-scrim {
  position: absolute;
  inset: 0;
  background: rgba(7, 26, 51, 0.72);
}

.modal-panel {
  position: relative;
  width: min(1080px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  background: #f5f7f8;
  border-radius: var(--radius);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
}

.member-detail {
  display: grid;
  grid-template-columns: 320px 1fr;
}

.member-detail img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.member-detail-content {
  padding: 34px;
}

.member-detail-content h2 {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 34px;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 24px 0;
}

.detail-grid div {
  padding: 14px;
  border-radius: 6px;
  background: #f5f7f8;
}

.detail-grid strong {
  display: block;
  margin-bottom: 5px;
  color: var(--navy);
  font-size: 13px;
}

.detail-grid span,
.member-detail p,
.member-detail li {
  color: var(--muted);
  line-height: 1.7;
}

.link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.member-cv {
  display: grid;
  grid-template-columns: 310px 1fr;
  min-height: 640px;
}

.cv-sidebar {
  padding: 30px 26px;
  background:
    linear-gradient(180deg, rgba(7, 26, 51, 0.98), rgba(13, 43, 77, 0.98)),
    linear-gradient(45deg, transparent 48%, rgba(255, 255, 255, 0.05) 49% 51%, transparent 52%);
  color: #fff;
}

.cv-photo {
  width: 132px;
  height: 132px;
  margin-bottom: 22px;
  border: 3px solid rgba(211, 165, 74, 0.78);
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}

.cv-sidebar h2 {
  margin: 4px 0 10px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1.08;
  font-weight: 500;
}

.cv-sidebar h2 span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-family: Inter, Pretendard, "Noto Sans KR", Arial, sans-serif;
  font-size: 15px;
  font-weight: 800;
}

.cv-title,
.cv-slogan {
  margin: 0;
  line-height: 1.7;
}

.cv-title {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.cv-slogan {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.72);
}

.cv-contact {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.cv-contact div {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.55;
}

.cv-contact svg {
  width: 18px;
  height: 18px;
  color: #d3a54a;
}

.cv-actions {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.cv-actions .btn {
  width: 100%;
  justify-content: flex-start;
}

.cv-main {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: 30px;
}

.cv-section {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 22px;
  box-shadow: var(--soft-shadow);
}

.cv-section-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.cv-section-head svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
}

.cv-section h3 {
  margin: 0;
  color: var(--navy);
  font-size: 18px;
}

.cv-section p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  overflow-wrap: break-word;
  word-break: keep-all;
}

.cv-two-column,
.cv-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.cv-timeline {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: cv-step;
}

.cv-timeline li {
  position: relative;
  min-height: 42px;
  padding: 0 0 0 44px;
  color: var(--muted);
  line-height: 1.65;
  overflow-wrap: break-word;
  word-break: keep-all;
}

.cv-timeline li::before {
  counter-increment: cv-step;
  content: counter(cv-step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(185, 139, 49, 0.12);
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
}

.cv-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cv-tags span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: #eef3f2;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.cv-media-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 13px;
}

.cv-resource-card {
  min-width: 0;
}

.cv-resource-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cv-resource-list a,
.cv-resource-list span {
  max-width: 100%;
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eef3f2;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.4;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.cv-resource-list a {
  text-decoration: underline;
  text-decoration-color: rgba(70, 107, 77, 0.38);
  text-underline-offset: 3px;
}

.cv-resource-card .cv-tags span {
  overflow-wrap: anywhere;
  word-break: keep-all;
}

.cv-media-grid ul {
  margin: 0;
  padding-left: 18px;
}

.cv-media-grid li {
  color: var(--muted);
  line-height: 1.7;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  padding: 44px max(28px, calc((100vw - var(--content-wide)) / 2));
  background: var(--navy);
  color: #fff;
}

.footer-brand .brand-copy,
.footer-brand {
  color: #fff;
}

.footer-brand {
  min-width: 310px;
  gap: 14px;
}

.footer-brand .brand-wordmark-image {
  width: clamp(240px, 24vw, 340px);
}

.footer-brand .footer-user-logo {
  width: auto;
  height: 170px;
  max-width: min(78vw, 280px);
  object-fit: contain;
}

.footer-brand .brand-logo {
  width: 94px;
  height: 94px;
}

.footer-brand .brand-copy strong {
  color: #fff;
  font-size: 54px;
  line-height: 0.78;
}

.footer-brand .brand-copy small {
  color: #fff;
  margin-top: 9px;
  font-size: 12px;
  letter-spacing: 0.09em;
}

.site-footer p {
  max-width: 440px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.footer-company {
  display: grid;
  gap: 6px;
  margin-top: 18px;
}

.footer-company strong {
  color: #fff;
  font-size: 15px;
}

.footer-company p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.65;
}

.footer-company p:last-child {
  margin-top: 8px;
  color: rgba(211, 165, 74, 0.86);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.footer-links {
  grid-column: 1 / -1;
  justify-self: end;
  width: 100%;
  max-width: none;
  display: flex;
  align-content: flex-start;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 14px 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: right;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

@media (max-width: 1180px) {
  .site-header {
    padding: 0 24px;
  }

  .primary-nav {
    gap: 10px;
  }
}

@media (max-width: 1020px) {
  .primary-nav,
  .header-actions .btn {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .value-strip,
  .trust-grid,
  .home-member-grid,
  .feature-grid,
  .news-preview,
  .timeline,
  .member-grid,
  .category-grid,
  .media-grid,
  .partner-grid,
  .admin-grid,
  .sitemap-grid,
  .faq-list,
  .quick-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-depth-grid,
  .about-knowledge-grid,
  .about-compare-grid,
  .impact-stat-grid,
  .benefit-grid,
  .culture-values,
  .culture-principles,
  .hiring-status-grid,
  .expanded-source .source-card-list,
  .chapter-program-grid,
  .lesson-pathway,
  .media-update-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-knowledge-card.lead {
    grid-column: 1 / -1;
  }

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

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

  .about-factbar div:nth-child(2) {
    border-right: 0;
  }

  .media-showcase {
    grid-template-columns: 1fr;
  }

  .media-submit-panel {
    grid-template-columns: 1fr;
  }

  .home-overview-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "notices"
      "events"
      "media";
  }

  .home-intro-panel {
    min-height: 420px;
  }

  .section-head-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .directory-toolbar,
  .split-layout,
  .strategy-split,
  .culture-layout,
  .career-pipeline,
  .career-resource-panel,
  .process-band,
  .source-feature,
  .chairman-feature,
  .lesson-feature,
  .event-layout,
  .opportunity-panel,
  .contact-layout,
  .auth-layout,
  .member-detail,
  .member-cv {
    grid-template-columns: 1fr;
  }

  .directory-toolbar {
    position: static;
  }

  .career-resource-panel .btn {
    justify-self: start;
  }

  .lesson-cta-panel {
    grid-template-columns: 1fr;
  }

  .expanded-lesson {
    grid-template-columns: 1fr;
  }

  .expanded-lesson .lesson-copy-grid,
  .expanded-lesson .lesson-pathway {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lesson-cta-actions {
    justify-content: flex-start;
  }

  .culture-image-card {
    min-height: 360px;
  }

  .auth-side {
    position: static;
  }
}

@media (max-width: 720px) {
  :root {
    --header: 76px;
  }

  .lesson-cta-panel {
    padding: 18px;
  }

  .lesson-cta-actions,
  .lesson-profile-btn {
    width: 100%;
  }

  .lesson-profile-btn {
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  .expanded-lesson {
    padding: 18px;
  }

  .lesson-story-card,
  .lesson-directory-card {
    padding: 16px;
  }

  .lesson-story-card h2 {
    font-size: 28px;
  }

  .lesson-directory-visual,
  .lesson-directory-visual img {
    min-height: 210px;
  }

  .lesson-directory-card .lesson-table div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .expanded-lesson .lesson-copy-grid,
  .expanded-lesson .lesson-pathway {
    grid-template-columns: 1fr;
  }

  .lesson-signal-list span {
    width: 100%;
  }

  .site-header {
    padding: 0 16px;
  }

  .brand {
    min-width: auto;
  }

  .brand-wordmark-image {
    width: 184px;
  }

  .site-header .brand-user-logo {
    width: auto;
    height: 58px;
    max-width: 68px;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .brand-copy strong {
    font-size: 34px;
  }

  .brand-copy small {
    margin-top: 5px;
    font-size: 7.5px;
    letter-spacing: 0.075em;
  }

  .language-switch {
    padding: 3px;
  }

  .lang-btn {
    min-width: 30px;
    height: 28px;
    padding: 0 7px;
    font-size: 11px;
  }

  .footer-brand .brand-copy strong {
    font-size: 42px;
  }

  .footer-brand .brand-copy small {
    margin-top: 7px;
    font-size: 9.5px;
  }

  .footer-brand {
    min-width: 0;
    gap: 12px;
  }

  .footer-brand .brand-wordmark-image {
    width: 240px;
  }

  .footer-brand .footer-user-logo {
    width: auto;
    height: 150px;
    max-width: 72vw;
  }

  .footer-brand .brand-logo {
    width: 72px;
    height: 72px;
  }

  .footer-brand .brand-logo {
    width: 60px;
    height: 56px;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.72) 42%, rgba(255, 255, 255, 0.08) 100%),
      url("./images/hero-golf-korea.png") center / cover no-repeat;
  }

  .hero {
    min-height: 560px;
  }

  .hero-content {
    width: min(var(--content), calc(100% - 40px));
    padding: 44px 0 52px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .page-hero h1 {
    font-size: 38px;
  }

  .strategy-copy h2,
  .culture-statement h2,
  .culture-copy-stack h2,
  .process-band h2,
  .career-pipeline h2,
  .career-resource-panel h2 {
    font-size: 28px;
  }

  .impact-stat-grid,
  .benefit-grid,
  .culture-values,
  .culture-principles,
  .hiring-status-grid {
    grid-template-columns: 1fr;
  }

  .impact-stat-grid article,
  .benefit-grid article,
  .culture-values article,
  .hiring-status-grid article {
    min-height: auto;
  }

  .process-band,
  .career-resource-panel {
    padding: 22px;
  }

  .hero-lede,
  .page-hero p {
    font-size: 15px;
  }

  .band {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .value-strip,
  .trust-grid,
  .home-member-grid,
  .feature-grid,
  .quick-grid,
  .news-preview,
  .timeline,
  .member-grid,
  .member-card-meta,
  .category-grid,
  .media-grid,
  .partner-grid,
  .admin-grid,
  .sitemap-grid,
  .faq-list,
  .form-grid,
  .community-layout,
  .admin-panels,
  .member-portal-grid,
  .portal-action-grid,
  .detail-grid,
  .cv-two-column,
  .cv-media-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .home-intro-panel,
  .home-panel,
  .quick-grid a {
    padding: 22px;
  }

  .home-intro-panel {
    min-height: auto;
  }

  .home-intro-panel h2 {
    font-size: 28px;
  }

  .home-hub-depth {
    padding: 16px;
  }

  .hub-pipeline {
    align-items: stretch;
  }

  .hub-pipeline svg {
    display: none;
  }

  .hub-menu-grid,
  .home-kpis,
  .hub-depth-grid,
  .lesson-copy-grid,
  .source-stats,
  .about-depth-grid,
  .about-knowledge-grid,
  .about-factbar,
  .about-compare-grid,
  .expanded-source .source-card-list,
  .chapter-program-grid,
  .lesson-pathway,
  .legal-toc,
  .media-grid-refined,
  .media-update-grid {
    grid-template-columns: 1fr;
  }

  .media-hero h1 {
    font-size: 40px;
  }

  .media-feature-card {
    min-height: auto;
    padding: 22px;
  }

  .media-feature-card h2 {
    font-size: 25px;
  }

  .board-section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .panel-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .media-grid-refined article {
    min-height: auto;
  }

  .legal-document-head,
  .legal-article {
    padding: 18px;
  }

  .legal-page .prose {
    width: 100%;
    max-width: 100%;
    gap: 16px;
  }

  .legal-page .legal-toc {
    grid-template-columns: minmax(0, 1fr);
  }

  .legal-toc a {
    min-height: auto;
    align-items: flex-start;
    padding: 14px;
  }

  .legal-document-head p,
  .legal-article p,
  .legal-article ul {
    font-size: 14px;
  }

  .legal-table {
    min-width: 520px;
  }

  .media-submit-panel,
  .media-submit-copy {
    padding: 18px;
  }

  .media-submit-form {
    grid-template-columns: 1fr;
  }

  .media-submit-form .btn {
    width: 100%;
    justify-content: center;
  }

  .about-depth-card.span-2 {
    grid-column: auto;
  }

  .about-knowledge-card {
    min-height: auto;
  }

  .about-knowledge-card.lead {
    grid-column: auto;
  }

  .about-factbar div {
    min-height: 112px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .about-factbar div:last-child {
    border-bottom: 0;
  }

  .hub-portrait img {
    height: 220px;
  }

  .source-copy h2,
  .chairman-feature h2,
  .lesson-feature h2 {
    font-size: 28px;
  }

  .chairman-feature img {
    min-height: 320px;
  }

  .refined-feature-grid .feature-card {
    grid-template-columns: 1fr;
  }

  .value-strip article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .featured-members-inner {
    display: grid;
  }

  .opportunity-copy {
    padding: 30px;
  }

  .opportunity-copy h2,
  .home-cta h2 {
    font-size: 38px;
  }

  .home-cta {
    padding: 48px 24px;
  }

  .directory-toolbar {
    padding: 12px;
  }

  .admin-toolbar,
  .application-item,
  .content-approval-item,
  .member-portal-hero,
  .portal-form-head {
    display: grid;
  }

  .application-item img,
  .content-approval-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .member-portal-hero {
    grid-template-columns: 1fr;
  }

  .member-portal-hero img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .portal-form-head img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .member-card-head {
    grid-template-columns: 74px 1fr;
    gap: 14px;
    padding: 16px;
  }

  .member-card img {
    width: 74px;
    height: 74px;
  }

  .member-card-body {
    padding: 16px;
  }

  .member-card h2 {
    font-size: 20px;
  }

  .modal-panel {
    max-height: calc(100vh - 24px);
  }

  .member-modal {
    padding: 12px;
  }

  .cv-sidebar,
  .cv-main {
    padding: 22px;
  }

  .cv-photo {
    width: 104px;
    height: 104px;
  }

  .cv-sidebar h2 {
    font-size: 26px;
  }

  .section-head h2,
  .copy-block h2,
  .event-layout h2,
  .community-layout h2,
  .admin-panels h2,
  .prose h2 {
    font-size: 25px;
  }

  .page-hero {
    min-height: 280px;
    padding-top: 74px;
  }

  .site-footer {
    align-items: start;
  }

  .footer-links {
    justify-content: center;
  }
}
