:root {
  color-scheme: light;
  --ink: #17201b;
  --muted: #68736c;
  --line: #dce3dd;
  --panel: #ffffff;
  --panel-soft: #f5f8f6;
  --green: #246b4a;
  --green-strong: #154d35;
  --amber: #a36218;
  --blue: #2f6f9f;
  --danger: #ad3d32;
  --shadow: 0 16px 40px rgba(23, 32, 27, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  color: var(--ink);
  font-family: "Segoe UI", "Malgun Gothic", sans-serif;
  background: #eef3ef;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
  color: inherit;
  background: transparent;
}

.app-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  min-height: 100vh;
}

.map-stage {
  position: relative;
  container-type: inline-size;
  min-height: 100vh;
  background: #d9e7dc;
}

.topbar {
  position: absolute;
  z-index: 10;
  top: 18px;
  left: 18px;
  right: 18px;
  display: grid;
  grid-template-columns: auto minmax(0, 470px);
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(220, 227, 221, 0.9);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.brand-lockup {
  display: flex;
  align-items: center;
  justify-self: start;
  gap: 11px;
  min-width: 0;
  height: 56px;
}

.brand-lockup > div {
  display: grid;
  align-content: center;
  min-width: 0;
}

.brand-logo {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.eyebrow {
  margin: 0 0 3px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  font-size: 24px;
  line-height: 1.2;
}

.brand-title-accent {
  color: var(--green-strong);
}

.topbar-meta {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-left: auto;
}

.topbar-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px 44px;
  align-items: stretch;
  justify-self: end;
  width: 100%;
  min-width: 0;
  gap: 8px;
}

.topbar-meta span,
.badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 9px;
  color: var(--green-strong);
  font-size: 13px;
  font-weight: 700;
  background: #e7f3ec;
  border: 1px solid #cfe3d6;
  border-radius: 8px;
}

.map-canvas {
  width: 100%;
  height: 100vh;
}

.map-empty {
  display: grid;
  place-content: center;
  height: 100%;
  padding: 24px;
  color: var(--muted);
  text-align: center;
  background:
    linear-gradient(90deg, rgba(36, 107, 74, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(36, 107, 74, 0.08) 1px, transparent 1px),
    #eef6f0;
  background-size: 42px 42px;
}

.map-empty strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 20px;
}

.side-panel {
  display: grid;
  grid-template-rows: minmax(180px, 34vh) minmax(0, 1fr);
  gap: 12px;
  height: 100vh;
  padding: 14px;
  overflow: hidden;
  background: var(--panel-soft);
  border-left: 1px solid var(--line);
}

.side-panel.list-collapsed {
  grid-template-rows: auto minmax(0, 1fr);
}

.course-list-panel,
.detail-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

input,
select,
button {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.topbar-search input,
.topbar-search button {
  height: 44px;
}

input,
select {
  min-width: 0;
  width: 100%;
  padding: 0 12px;
  color: var(--ink);
  background: #fff;
}

input:focus,
select:focus,
button:focus-visible {
  outline: 3px solid rgba(47, 111, 159, 0.24);
  outline-offset: 1px;
}

#refreshButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 19px;
  font-weight: 800;
  line-height: 1;
  background: var(--green);
}

#currentLocationButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--green-strong);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  background: #e7f3ec;
  border-color: #cfe3d6;
}

#currentLocationButton .location-icon {
  width: 21px;
  height: 21px;
  fill: currentColor;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

#currentLocationButton.is-busy .location-icon {
  animation: location-spin 0.85s linear infinite;
}

#currentLocationButton:disabled {
  cursor: default;
  opacity: 0.66;
}

@keyframes location-spin {
  to {
    transform: rotate(360deg);
  }
}

.course-list-panel {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  min-height: 0;
  overflow: hidden;
}

.course-list-panel.is-collapsed {
  grid-template-rows: auto;
}

.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
}

.course-list-panel.is-collapsed .panel-heading {
  border-bottom-color: transparent;
  cursor: pointer;
}

.course-list-panel.is-collapsed .course-list {
  display: none;
}

.panel-title-group {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.region-select-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 0;
  background: #e7f3ec;
  border: 1px solid #cfe3d6;
  border-radius: 11px;
}

.region-select-wrap::after {
  position: absolute;
  top: 50%;
  right: 15px;
  width: 6px;
  height: 6px;
  content: "";
  border-right: 1.5px solid var(--green-strong);
  border-bottom: 1.5px solid var(--green-strong);
  pointer-events: none;
  transform: translateY(-60%) rotate(45deg);
}

.panel-title-group #regionSelect {
  appearance: none;
  width: auto;
  min-width: 82px;
  max-width: 136px;
  min-height: 38px;
  height: 38px;
  padding: 0 35px 0 13px;
  color: var(--green-strong);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.1;
  text-overflow: ellipsis;
  background: transparent;
  border: 0;
  border-radius: 4px;
}

.panel-title-group #regionSelect::-ms-expand {
  display: none;
}

.panel-title-group #regionSelect:hover,
.panel-title-group #regionSelect:focus {
  background: #edf7f1;
}

.panel-heading h2 {
  font-size: 20px;
  white-space: nowrap;
}

#listStatus {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 13px;
}

.course-list-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 0 0 auto;
  min-height: 38px;
  padding: 0 8px 0 11px;
  color: var(--muted);
  background: transparent;
  border: 0;
}

.course-list-toggle:hover,
.course-list-toggle:focus-visible {
  color: var(--green-strong);
  background: #edf7f1;
}

.accordion-chevron {
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.16s ease;
}

.course-list-toggle[aria-expanded="true"] .accordion-chevron {
  transform: rotate(225deg) translate(-1px, -1px);
}

.course-list {
  display: grid;
  gap: 7px;
  min-height: 0;
  align-content: start;
  padding: 8px;
  overflow: auto;
}

.course-item {
  display: grid;
  gap: 4px;
  width: 100%;
  min-height: auto;
  padding: 10px 11px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
  text-align: left;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.course-item:hover,
.course-item.active {
  border-color: #87b99e;
  background: #f2f8f4;
}

.course-item strong {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.course-item .course-meta,
.course-item .small-muted {
  display: block;
  line-height: 1.35;
}

.course-item .small-muted {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.course-meta,
.small-muted {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.detail-panel {
  min-width: 0;
  min-height: 0;
  padding: 14px;
  overflow-x: hidden;
  overflow-y: auto;
}

.empty-detail {
  display: grid;
  place-content: center;
  gap: 6px;
  min-height: 240px;
  color: var(--muted);
  text-align: center;
}

.empty-detail strong {
  color: var(--ink);
}

.detail-header {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.detail-header h2 {
  font-size: 22px;
  line-height: 1.25;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.badge.warning {
  color: var(--amber);
  background: #fff4df;
  border-color: #f1d8a9;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  align-items: start;
  margin-bottom: 16px;
}

.info-tile {
  display: grid;
  align-content: start;
  gap: 4px;
  color: inherit;
  text-decoration: none;
  padding: 10px;
  background: var(--panel-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.info-tile.disabled {
  opacity: 0.62;
}

.nav-tile {
  background: #eef7fb;
  border-color: #cce4ef;
}

.phone-tile {
  background: #f1f8f2;
  border-color: #cfe5d3;
}

.homepage-tile {
  background: #f8f5ec;
  border-color: #e4d8b8;
}

.nav-tile:hover {
  border-color: #7eb5cf;
  background: #e5f3f8;
}

.phone-tile:hover {
  color: var(--green-strong);
  border-color: #9bc9a4;
  background: #e9f5eb;
}

.homepage-tile:hover {
  color: #6c5314;
  border-color: #c7b16a;
  background: #f2ead3;
}

.detail-page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 40px;
  margin: 0 0 16px;
  color: var(--green-strong);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  background: #e7f3ec;
  border: 1px solid #cfe3d6;
  border-radius: 8px;
}

.detail-page-link:hover,
.detail-page-link:focus-visible {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

.info-tile strong.nav-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 22px;
  white-space: nowrap;
}

.nav-action-text {
  min-width: 0;
  line-height: 1;
}

.nav-app-icon {
  display: inline-grid;
  flex: 0 0 20px;
  place-items: center;
  width: 20px;
  height: 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.nav-app-icon svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

.inavi-air-icon {
  color: #fff;
  background: #1f7a45;
  border-color: #13532f;
}

.kakao-map-icon {
  color: #211c00;
  background: #fee500;
  border-color: #f0d400;
}

.info-tile > span:not(.weather-icon) {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.info-tile strong {
  display: block;
  margin-top: 4px;
  line-height: 1.3;
  overflow-wrap: anywhere;
  white-space: pre-line;
}

.area-pyeong {
  display: none;
  margin-top: 2px;
  font-size: inherit;
  line-height: 1.25;
}

.info-tile .nav-app-icon {
  display: inline-grid;
  flex: 0 0 20px;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}

.info-tile .kakao-map-icon {
  color: #211c00;
}

.info-tile .nav-action-text {
  display: inline;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.data-section {
  display: grid;
  gap: 16px;
  min-width: 0;
  max-width: 100%;
  margin-top: 18px;
}

.detail-data-section {
  display: grid;
  gap: 10px;
  min-width: 0;
  max-width: 100%;
}

#teeTimeIndexSection,
#restaurantSection {
  min-width: 0;
  max-width: 100%;
}

#teeTimeIndexSection {
  display: grid;
  gap: 10px;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.section-heading h3 {
  font-size: 17px;
  line-height: 1.25;
}

.message {
  padding: 11px;
  color: var(--muted);
  background: #f7f8f7;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.message.error {
  color: var(--danger);
  background: #fff2f0;
  border-color: #f2c8c2;
}

.restaurant-list {
  display: grid;
  gap: 8px;
}

.tee-time-section {
  gap: 9px;
}

.tee-time-recommendation {
  padding: 11px 12px;
  color: var(--green-strong);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.45;
  background: #e7f3ec;
  border: 1px solid #cfe3d6;
  border-radius: 8px;
}

.tee-time-list {
  display: flex;
  gap: 8px;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  inline-size: 100%;
  max-inline-size: 100%;
  padding: 0 0 4px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  cursor: grab;
}

.tee-time-list.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  user-select: none;
}

.tee-time-item {
  display: grid;
  flex: 0 0 clamp(184px, 72%, 250px);
  gap: 10px;
  min-width: 0;
  max-width: 250px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  scroll-snap-align: start;
}

.tee-time-item-header {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  grid-template-areas: "icon text score";
  gap: 10px;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.tee-time-item .tee-time-item-header .weather-icon {
  grid-area: icon;
  width: 40px;
  height: 40px;
}

.tee-time-item-header .weather-icon svg {
  width: 24px;
  height: 24px;
}

.tee-time-hero-text {
  grid-area: text;
  display: block;
  min-width: 0;
}

.tee-time-time {
  min-width: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.tee-time-detail-block > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

.tee-time-score {
  grid-area: score;
  min-width: 0;
  color: var(--ink);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  text-align: right;
  white-space: nowrap;
}

.tee-time-best .tee-time-score,
.tee-time-good .tee-time-score {
  color: var(--green-strong);
}

.tee-time-normal .tee-time-score {
  color: var(--blue);
}

.tee-time-caution .tee-time-score {
  color: var(--amber);
}

.tee-time-bad .tee-time-score {
  color: var(--danger);
}

.tee-time-detail-grid {
  display: grid;
  gap: 8px;
}

.tee-time-detail-block {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.tee-time-detail-block p {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.tee-time-weather {
  color: var(--muted);
}

.tee-time-normal {
  background: #f7fbfd;
  border-color: #cce4ef;
  box-shadow: 0 0 0 1px rgba(47, 111, 159, 0.12);
}

.tee-time-normal .tee-time-item-header {
  border-color: #d7e9f1;
}

.tee-time-disclaimer {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.restaurant-item {
  display: grid;
  gap: 5px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.restaurant-item.active {
  border-color: #87b99e;
  background: #f2f8f4;
  box-shadow: 0 0 0 1px rgba(36, 107, 74, 0.12);
}

.restaurant-title-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24px;
  gap: 6px;
  align-items: center;
}

.restaurant-title-row strong {
  min-width: 0;
  overflow-wrap: anywhere;
}

.restaurant-external-link {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: var(--green-strong);
  background: #e7f3ec;
  border: 1px solid #cfe3d6;
  border-radius: 6px;
}

.restaurant-external-link:hover,
.restaurant-external-link:focus-visible {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

.restaurant-external-link svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.restaurant-item a {
  color: var(--green-strong);
  font-weight: 800;
  text-decoration: none;
}

.restaurant-item .address-link {
  display: inline-flex;
  justify-self: start;
  max-width: 100%;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 3px;
}

.restaurant-item .address-link:hover {
  color: var(--green-strong);
}

.restaurant-item .phone-link {
  display: inline-flex;
  justify-self: start;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.restaurant-item .phone-link:hover {
  color: var(--green-strong);
}

.info-tile .weather-icon,
.tee-time-item .weather-icon {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--green-strong);
  background: #e7f3ec;
  border: 1px solid #cfe3d6;
  border-radius: 8px;
}

.weather-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.weather-icon-temperature {
  color: #9a4f16;
  background: #fff4df;
  border-color: #f1d8a9;
}

.weather-icon-rain,
.weather-icon-snow {
  color: var(--blue);
  background: #eef7fb;
  border-color: #cce4ef;
}

.weather-icon-wind {
  color: #5d6670;
  background: #f1f4f6;
  border-color: #d9e0e5;
}

.weather-icon-sunny {
  color: #a36218;
  background: #fff7d9;
  border-color: #ecd681;
}

@media (max-width: 960px) {
  .app-shell {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(360px, 54vh) auto;
  }

  .map-stage {
    min-height: 54vh;
  }

  .map-canvas {
    height: 54vh;
  }

  .side-panel {
    grid-template-rows: auto auto;
    height: auto;
    min-height: 46vh;
    border-left: 0;
    border-top: 1px solid var(--line);
    overflow: visible;
  }

  .course-list-panel {
    max-height: 320px;
  }
}

@container (max-width: 720px) {
  .topbar {
    top: 10px;
    left: 10px;
    right: 10px;
    grid-template-columns: 44px minmax(0, 1fr);
    align-items: center;
    justify-content: stretch;
    gap: 10px;
    padding: 10px;
  }

  .brand-lockup {
    width: 44px;
    height: 44px;
    gap: 0;
  }

  .brand-lockup > div {
    display: none;
  }

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

  .topbar-search {
    grid-template-columns: minmax(0, 1fr) 42px 42px;
    gap: 6px;
  }

  .topbar-search input,
  .topbar-search button {
    height: 42px;
    min-height: 42px;
  }
}

@media (max-width: 640px) {
  .topbar {
    top: 10px;
    left: 10px;
    right: 10px;
    grid-template-columns: 44px minmax(0, 1fr);
    align-items: center;
    justify-content: stretch;
    gap: 10px;
    padding: 10px;
  }

  .topbar-search,
  .topbar-meta {
    width: 100%;
    max-width: none;
    min-width: 0;
  }

  .brand-lockup {
    width: 44px;
    height: 44px;
    gap: 0;
  }

  .brand-lockup > div {
    display: none;
  }

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

  .topbar-search {
    grid-template-columns: minmax(0, 1fr) 42px 42px;
    gap: 6px;
  }

  .topbar-meta {
    justify-content: flex-start;
  }

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

  .area-pyeong {
    display: block;
  }
}

.seo-page {
  min-height: 100vh;
  padding: 32px clamp(18px, 5vw, 64px) 56px;
  background: #eef3ef;
}

.seo-hero {
  display: grid;
  gap: 12px;
  max-width: 920px;
  margin: 0 auto 28px;
}

.seo-logo-link {
  display: inline-flex;
  width: 56px;
  height: 56px;
}

.seo-hero h1 {
  max-width: 760px;
  font-size: 48px;
  line-height: 1.08;
}

.seo-hero p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.seo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.seo-actions.compact {
  margin-top: 16px;
}

.seo-button,
.seo-text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  font-weight: 900;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 8px;
}

.seo-button.primary {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

.seo-button.secondary,
.seo-text-link {
  color: var(--green-strong);
  background: #e7f3ec;
  border-color: #cfe3d6;
}

.seo-content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
}

.seo-panel,
.seo-related,
.seo-list-section {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.seo-panel,
.seo-related {
  padding: 22px;
}

.seo-panel h2,
.seo-related h2,
.seo-list-section h2 {
  margin-bottom: 14px;
  font-size: 22px;
}

.seo-panel p,
.seo-related p {
  color: var(--muted);
  line-height: 1.65;
}

.seo-fact-grid {
  display: grid;
  gap: 12px;
  margin: 0;
}

.seo-fact-grid div {
  display: grid;
  gap: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.seo-fact-grid div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.seo-fact-grid dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.seo-fact-grid dd {
  margin: 0;
  line-height: 1.5;
}

.seo-fact-grid a,
.seo-course-item a {
  color: var(--green-strong);
  font-weight: 900;
  text-decoration: none;
}

.seo-related,
.seo-list-section {
  max-width: 920px;
  margin: 16px auto 0;
}

.seo-list-section {
  padding: 22px;
}

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

.seo-course-item {
  display: grid;
  gap: 6px;
  padding: 14px;
  background: var(--panel-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.seo-course-item h3 {
  margin: 0;
  font-size: 18px;
}

.seo-course-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.seo-course-item span {
  color: var(--green-strong);
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 720px) {
  .seo-page {
    padding: 22px 14px 40px;
  }

  .seo-content-grid {
    grid-template-columns: 1fr;
  }

  .seo-hero h1 {
    font-size: 34px;
  }

  .seo-button,
  .seo-text-link {
    width: 100%;
  }
}
