/* css/about.css
   About: page hero, brand card, values, portrait, team-area, timeline, map/location.
   Split from styles.css (Phase 4, boundary-corrected); linked in source order to preserve the cascade. */
.page-hero {
  padding: 56px 0 94px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.page-hero--courses {
  padding-bottom: 56px;
}

.page-hero--news {
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}

.page-hero--mypage {
  padding: 34px 0 28px;
}

/* .page-hero h1(64px)이 뒤에 와서 같은 특정도로는 덮인다 — 클래스를 겹쳐 이긴다. */
.page-hero.page-hero--mypage h1 {
  margin-top: 26px;
  font-size: 28px;
  font-weight: 600;
}

.section--mypage {
  padding-top: 56px;
}

.page-hero h1 {
  max-width: 960px;
  margin-top: 22px;
  font-size: 64px;
  line-height: 1.16;
}

.page-hero h1 span,
.page-hero h2 span,
.philosophy-section h2 span,
.timeline-copy h2 span,
.location-grid h2 span {
  color: var(--brand);
}

.page-hero p {
  max-width: 650px;
  margin-top: 26px;
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.8;
}

.inquiry-status-hero h1 span {
  color: var(--brand);
}

.inquiry-status-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: 28px;
  align-items: start;
}

.inquiry-status-auth,
.inquiry-status-user-list {
  grid-column: 1 / -1;
}

.inquiry-status-auth {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  padding: 22px 24px;
}

.inquiry-status-auth strong {
  color: var(--ink);
  font-size: 20px;
}

.inquiry-status-auth p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.inquiry-status-auth .btn {
  flex: none;
}

.inquiry-status-user-list {
  display: grid;
  gap: 14px;
}

.inquiry-status-user-list[hidden] {
  display: none;
}

.inquiry-status-user-list > h2 {
  font-size: 26px;
}

.mypage-layout {
  display: grid;
  gap: 22px;
}

.mypage-shell {
  display: grid;
  grid-template-columns: minmax(260px, 3fr) minmax(0, 7fr);
  gap: 24px;
  align-items: start;
}

.mypage-profile-form,
.mypage-sidebar,
.mypage-content,
.mypage-panel,
.mypage-side-actions a,
.mypage-side-actions button {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.mypage-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 28px);
  display: grid;
  gap: 18px;
  padding: 0;
  overflow: hidden;
}

/* 누구로 로그인했는지는 사이드바가 아니라 페이지 첫 줄에서 확인되게 한다. */
.mypage-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
}

.mypage-hero__avatar {
  width: 56px;
  height: 56px;
  flex-basis: 56px;
  font-size: 20px;
}

.mypage-hero__avatar span {
  font-size: 20px;
  font-weight: 800;
}

.mypage-hero__who {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.mypage-hero__who strong {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.3;
}

.mypage-hero__who span {
  color: var(--muted);
  font-size: 14px;
  overflow-wrap: anywhere;
}

.mypage-status-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #fff4df;
  color: #9a650d;
  padding: 7px 11px;
  font-size: 12px;
  font-weight: 900;
}

.mypage-status-chip.is-complete {
  background: var(--brand-soft);
  color: var(--brand);
}

.mypage-tab-nav {
  display: grid;
  gap: 8px;
  padding: 18px 18px 0;
}

.mypage-tab-nav button {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 14px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 900;
  text-align: left;
}

.mypage-tab-nav button:hover {
  background: var(--surface-2);
  color: var(--ink);
}

.mypage-tab-nav button.is-active {
  border-color: color-mix(in srgb, var(--brand) 22%, var(--line));
  background: var(--brand-soft);
  color: var(--brand);
}

.mypage-side-actions {
  display: grid;
  gap: 10px;
  border-top: 1px solid var(--line);
  padding: 16px 18px 18px;
}

.mypage-side-actions a,
.mypage-side-actions button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.mypage-side-actions button:first-child {
  background: var(--brand);
  color: var(--surface);
}

.mypage-help-card {
  display: grid;
  gap: 10px;
  border-top: 1px solid var(--line);
  padding: 18px;
}

.mypage-help-card strong {
  font-size: 15px;
  font-weight: 800;
}

.mypage-help-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.mypage-help-card a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: #fee500;
  color: #181600;
  font-size: 14px;
  font-weight: 700;
}

.mypage-content {
  min-width: 0;
  padding: 0;
  overflow: hidden;
}

.mypage-panel {
  display: grid;
  gap: 22px;
  min-height: 520px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 32px;
}

.mypage-panel[hidden] {
  display: none;
}

.mypage-panel-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
}

.mypage-panel-head h2 {
  color: var(--ink);
  font-size: 30px;
}

.mypage-panel-head p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.mypage-panel-head > strong {
  min-width: 76px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--brand);
  color: var(--surface);
  font-size: 15px;
  font-weight: 900;
}

.mypage-panel-head > strong b {
  font-size: 20px;
}

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

.mypage-profile-summary div {
  min-width: 0;
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-2);
  padding: 18px;
}

.mypage-profile-summary dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.mypage-profile-summary dd {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.mypage-inquiry-list {
  display: grid;
  gap: 16px;
}

.mypage-course-list {
  display: grid;
  gap: 14px;
}

.mypage-course-card {
  display: grid;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  padding: 22px;
}

.mypage-course-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.mypage-course-card__head span,
.mypage-course-meta dt,
.mypage-payment-details dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.mypage-course-card__head h3 {
  margin-top: 6px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
}

.mypage-status-pill {
  flex: none;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 800;
}

.mypage-status-pill--ok {
  background: var(--brand-soft);
  color: var(--brand);
}

.mypage-status-pill--pending {
  background: #fff4df;
  color: #9a650d;
}

.mypage-status-pill--danger {
  background: #f4eceb;
  color: #98413a;
}

/* 신청 카드 요약은 칸막이 없이 한 줄로 — 값 세 개를 나란히 읽는 게 목적이다. */
.mypage-course-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.mypage-course-meta dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.mypage-course-card__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 10px;
}

.mypage-course-card__actions .btn {
  min-height: 44px;
  padding: 12px 20px;
  font-size: 14px;
}

.mypage-payment-details {
  flex: 0 0 auto;
}

/* 펼치면 카드 폭을 다 쓰도록 — 닫혔을 땐 CTA 옆의 버튼처럼 보인다. */
.mypage-payment-details[open] {
  flex: 1 1 100%;
}

.mypage-payment-details summary {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 20px;
  cursor: pointer;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  list-style: none;
}

.mypage-payment-details summary::-webkit-details-marker {
  display: none;
}

.mypage-payment-details summary:hover {
  border-color: var(--line-strong);
  color: var(--ink);
}

.mypage-payment-details dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 14px 0 0;
}

.mypage-payment-details dl div {
  min-width: 0;
  display: grid;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-2);
  padding: 14px;
}

.mypage-payment-details dd {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.mypage-empty {
  display: grid;
  justify-items: center;
  gap: 12px;
  border: 1px dashed var(--line-strong);
  border-radius: 8px;
  padding: 48px 24px;
  background: var(--surface-2);
  text-align: center;
}

.mypage-empty strong {
  color: var(--ink-2);
  font-size: 18px;
  font-weight: 700;
}

.mypage-empty p {
  max-width: 420px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.mypage-empty .btn {
  margin-top: 4px;
}

.mypage-payment-details a {
  color: var(--brand);
}

.mypage-payment-details p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.mypage-classroom {
  display: grid;
  gap: 18px;
}

.mypage-classroom-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

.mypage-classroom-tabs button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--ink-2);
  padding: 0 16px;
  font-weight: 900;
}

.mypage-classroom-tabs button.is-active {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
}

.mypage-classroom-list {
  display: grid;
  gap: 14px;
}

.mypage-class-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 170px auto;
  gap: 18px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  padding: 20px;
}

.mypage-class-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.mypage-class-card h3 {
  margin-top: 6px;
  color: var(--ink);
  font-size: 22px;
}

.mypage-class-card p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.mypage-class-progress {
  display: grid;
  gap: 8px;
}

.mypage-class-progress div {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #e7e0d2;
}

.mypage-class-progress i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--brand);
}

.mypage-class-progress small {
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.mypage-class-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.mypage-profile-form {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.mypage-profile-form[hidden] {
  display: none;
}

.mypage-section-head {
  display: grid;
  gap: 6px;
}

.mypage-section-head span {
  color: var(--accent);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.mypage-section-head h2 {
  font-size: 26px;
}

.mypage-section-head--sub {
  margin-top: 4px;
  padding-top: 6px;
}

.mypage-section-head--sub h3 {
  font-size: 18px;
}

.mypage-section-head p,
.mypage-profile-actions output {
  color: var(--muted);
  font-size: 14px;
}

.mypage-profile-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.mypage-profile-form input,
.mypage-profile-form select {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-2);
  padding: 0 14px;
}

.mypage-agreements {
  display: grid;
  gap: 10px;
}

.mypage-agreements label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-2);
  padding: 12px 14px;
}

.mypage-agreements input {
  width: 16px;
  height: 16px;
  min-height: 0;
  padding: 0;
}

.mypage-profile-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.inquiry-status-form,
.inquiry-status-result,
.inquiry-status-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.inquiry-status-form {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  display: grid;
  gap: 16px;
  padding: 24px;
}

.inquiry-status-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.inquiry-status-form input {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-2);
  padding: 0 14px;
}

.inquiry-status-form input:focus {
  border-color: var(--brand);
  outline: 2px solid var(--brand-soft);
}

.inquiry-status-form__actions {
  display: grid;
  gap: 10px;
}

.inquiry-status-form__actions .btn {
  width: 100%;
}

.inquiry-status-message {
  min-height: 20px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.inquiry-status-message.is-error {
  color: var(--danger);
}

.inquiry-status-result {
  min-height: 260px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 28px;
  color: var(--muted);
}

.inquiry-status-result > strong {
  color: var(--ink);
  font-size: 20px;
}

.inquiry-status-card {
  display: grid;
  gap: 22px;
  padding: 0;
  overflow: hidden;
}

.inquiry-status-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  border-bottom: 1px solid var(--line);
  background: var(--surface-2);
}

.inquiry-status-card__head span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.inquiry-status-card__head h2 {
  margin-top: 6px;
  font-size: 28px;
}

.inquiry-status-card__head > strong {
  flex: none;
  border-radius: 999px;
  background: var(--brand);
  color: var(--on-brand);
  padding: 6px 12px;
  font-size: 13px;
}

.inquiry-status-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0 24px;
}

.inquiry-status-meta div {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 14px;
}

.inquiry-status-meta dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
}

.inquiry-status-meta dd {
  margin: 5px 0 0;
  color: var(--ink);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.inquiry-status-replies {
  display: grid;
  gap: 12px;
  padding: 0 24px 24px;
}

.inquiry-status-replies h3 {
  font-size: 18px;
}

.inquiry-status-empty {
  border: 1px dashed var(--line-strong);
  border-radius: 8px;
  background: var(--surface-2);
  padding: 18px;
  color: var(--muted);
  font-weight: 800;
}

.inquiry-status-reply {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 18px;
}

.inquiry-status-reply div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}

.inquiry-status-reply strong {
  color: var(--ink);
  font-size: 16px;
}

.inquiry-status-reply time {
  flex: none;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.inquiry-status-reply p {
  color: var(--ink-2);
  line-height: 1.75;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 1fr);
  align-items: center;
  gap: 64px;
}

.about-hero-photo {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ink);
}

.about-hero-photo .visual-slot {
  aspect-ratio: 4 / 3;
}

.legacy-gallery-band {
  padding: 24px 0;
  background: var(--ink);
}

.legacy-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.legacy-gallery figure {
  position: relative;
  height: 280px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #0f0e0c;
}

.legacy-gallery img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.legacy-gallery figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 5px 8px;
  border-radius: 4px;
  background: rgba(15, 14, 12, 0.76);
  color: var(--accent);
  font-family: var(--font-sans);
  font-size: 10px;
}

.brand-card {
  padding: 34px 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.philosophy-section .brand-card {
  margin-top: 44px;
}

.brand-parts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 24px 0;
}

.brand-parts div {
  padding-top: 18px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.brand-parts b {
  display: block;
  color: var(--brand);
  font-family: var(--font-sans);
  font-size: 38px;
  font-weight: 500;
  line-height: 1;
}

.brand-parts span {
  display: block;
  margin-top: 12px;
  font-weight: 700;
}

.brand-parts small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 10px;
}

.brand-card p {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px dashed var(--line-strong);
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.7;
}

.philosophy-section {
  text-align: center;
}

.philosophy-section h2 {
  max-width: 920px;
  margin: 28px auto 34px;
  font-size: 54px;
  line-height: 1.28;
}

.philosophy-section p {
  max-width: 730px;
  margin: 0 auto;
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.9;
}

.philosophy-axis {
  display: inline-flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--beige);
  color: var(--ink-2);
  font-family: var(--font-sans);
  font-size: 13px;
}

.philosophy-axis b {
  color: var(--beige);
  font-weight: 500;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line-strong);
  background: var(--line-strong);
}

.value-card {
  min-height: 306px;
  display: flex;
  flex-direction: column;
  padding: 32px 26px;
  background: var(--surface);
}

/* 제목을 카드 아래쪽에 붙이면(margin-top:auto) 본문이 한 줄 더 감기는 카드만
   제목이 위로 밀려 5장의 제목선이 어긋난다. subgrid로 행 높이를 카드끼리
   공유해 본문 길이와 무관하게 같은 줄에 놓는다. */
@supports (grid-template-rows: subgrid) {
  .values-grid {
    grid-template-rows: auto 1fr auto auto;
  }

  .value-card {
    display: grid;
    grid-row: span 4;
    grid-template-rows: subgrid;
    row-gap: 0;
  }

  .value-card > div {
    grid-row: 1;
  }

  .value-card h3 {
    grid-row: 3;
    margin-top: 0;
  }

  .value-card p {
    grid-row: 4;
    min-height: 0;
  }
}

.value-card > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--accent);
  font-family: var(--font-sans);
  font-size: 12px;
}

.value-card small {
  color: var(--muted);
  font-size: 10px;
}

.value-card h3 {
  margin-top: auto;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 28px;
  font-weight: 500;
}

.value-card p {
  min-height: calc(1.7em * 3);
  margin-top: 14px;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.7;
}

.title-row--dark h2,
.title-row--dark p {
  color: var(--cream);
}

.title-row--dark h2 span {
  color: var(--accent);
}

.title-row--dark p {
  opacity: 0.76;
}

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

.team-lead-card {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  align-items: start;
  gap: 24px;
  padding: 30px;
  border: 1px solid #2e2b25;
  border-radius: 8px;
  background: #0f0e0c;
}

.visual-slot--portrait {
  width: 100%;
  aspect-ratio: 1 / 1;
  min-height: 0;
  border-radius: 6px;
}

.visual-slot--portrait img {
  object-position: center top;
}

.team-lead-card small {
  display: block;
  margin-top: 0;
  color: var(--accent);
  font-family: var(--font-sans);
  font-size: 11px;
  line-height: 1.2;
}

.team-lead-card h3 {
  margin-top: 6px;
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 28px;
  font-weight: 500;
}

.team-lead-card b {
  display: block;
  margin-top: 4px;
  color: #cfc8b9;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
}

.team-pool {
  margin-top: 24px;
  padding: 30px;
  border: 1px solid #2e2b25;
  border-radius: 8px;
  background: #0f0e0c;
}

.team-pool__head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #2e2b25;
  color: #cfc8b9;
  font-family: var(--font-sans);
  font-size: 11px;
}

.team-pool__head span:first-child {
  color: var(--accent);
}

.team-area-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 24px;
}

.team-area-grid div {
  padding: 6px 22px;
  border-left: 1px solid #2e2b25;
}

.team-area-grid div:first-child {
  border-left: 0;
  padding-left: 0;
}

.team-area-grid b {
  display: block;
  color: var(--accent);
  font-family: var(--font-sans);
  font-size: 34px;
  font-weight: 500;
}

.team-area-grid strong {
  display: block;
  margin-top: 8px;
  color: var(--cream);
  font-size: 14px;
}

.team-area-grid span {
  display: block;
  margin-top: 5px;
  color: #cfc8b9;
  font-size: 12px;
  line-height: 1.55;
}

.timeline-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.6fr);
  gap: 76px;
  align-items: start;
}

.timeline-copy {
  position: sticky;
  top: 112px;
}

.timeline-copy h2,
.location-grid h2 {
  margin-top: 20px;
  font-size: 46px;
  line-height: 1.22;
}

.timeline-copy p,
.location-grid p {
  margin-top: 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.78;
}

.timeline-list {
  border-left: 1px solid var(--line-strong);
}

.timeline-list article {
  position: relative;
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 28px;
  padding: 26px 0 26px 30px;
  border-bottom: 1px solid var(--line);
}

.timeline-list article::before {
  content: "";
  position: absolute;
  top: 36px;
  left: -7px;
  width: 13px;
  height: 13px;
  border: 2px solid var(--brand);
  border-radius: 50%;
  background: var(--surface);
}

.timeline-list article.is-soon::before {
  border-color: var(--accent);
  background: var(--accent);
}

.timeline-list time {
  color: var(--brand);
  font-family: var(--font-sans);
  font-size: 38px;
  font-weight: 500;
  line-height: 1;
}

.timeline-list .is-soon time {
  color: var(--accent);
}

.timeline-list h3 {
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 500;
}

.timeline-list p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.66;
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 64px;
  align-items: stretch;
}

.location-list {
  margin: 30px 0 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.location-list div {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px dashed var(--line);
}

.location-list div:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.location-list dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.location-list dd {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

.map-panel {
  position: relative;
  min-height: 460px;
}

.visual-slot--map {
  width: 100%;
  height: 100%;
  min-height: 460px;
  border-radius: 8px;
  background: var(--surface);
}

.visual-slot--map img {
  width: 100%;
  height: 100%;
  padding: 14px;
  object-fit: contain;
  box-sizing: border-box;
}

.board-hero-copy {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 54px;
}

.board-hero-copy p {
  max-width: 410px;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 12px;
  line-height: 1.7;
}
