.gc-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 48px 20px;
}

.gc-page-shell {
  width: 100%;
}

.gc-hero {
  display: grid;
  gap: 24px;
}

.gc-hero--soft {
  padding: 38px 30px 30px;
  border: 1px solid rgba(112, 119, 77, 0.12);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(204, 187, 132, 0.18), transparent 30%),
    linear-gradient(135deg, #fbfaf4 0%, #f4f7ee 56%, #f8fbf4 100%);
  box-shadow: 0 18px 42px -28px rgba(49, 61, 36, 0.22);
}

.gc-hero-layout,
.gc-directory-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.8fr);
  gap: 28px;
  align-items: start;
}

.gc-hero-copy {
  display: grid;
  gap: 18px;
}

.gc-kicker,
.gc-card-kicker,
.gc-panel-label {
  margin: 0;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  color: var(--theme-palette-color-1, #7d6a2f);
}

.gc-title {
  margin: 0;
  font-family: "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.08;
  color: var(--theme-palette-color-4, #18221c);
}

.gc-lead {
  max-width: 760px;
  margin: 0;
  color: var(--theme-text-color, #52605a);
  font-size: 17px;
  line-height: 1.85;
}

.gc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.gc-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(110, 119, 76, 0.18);
  background: var(--theme-palette-color-1, #d4b15a);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  box-shadow: 0 12px 26px -18px rgba(122, 96, 27, 0.5);
}

.gc-button:hover {
  transform: translateY(-1px);
}

.gc-button.secondary {
  background: rgba(255, 255, 255, 0.82);
  color: var(--theme-palette-color-4, #18221c);
}

.gc-pill-nav {
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.gc-pill-nav__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  padding: 8px;
  border-radius: 999px;
  background: #efefef;
}

.gc-pill-nav__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 28px;
  border-radius: 999px;
  color: #0f0e17;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  transition: background 0.2s ease, color 0.2s ease;
  border: 0;
  cursor: pointer;
}

.gc-pill-nav__item:hover {
  background: #dddddd;
}

.gc-pill-nav__item.is-active {
  background: #e0e0e0;
}

.gc-tab-panels {
  display: grid;
}

.gc-tab-panel {
  display: none;
}

.gc-tab-panel.is-active {
  display: block;
}

.gc-overview-band {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 22px;
  margin-bottom: 22px;
}

.gc-overview-band__lead,
.gc-overview-band__stats {
  padding: 22px 24px;
  border-radius: 26px;
  border: 1px solid rgba(112, 119, 77, 0.12);
  background: #fff;
  box-shadow: 0 20px 48px -34px rgba(38, 48, 34, 0.22);
}

.gc-overview-band__lead h2,
.gc-section-heading h2 {
  margin: 0 0 10px;
  color: var(--theme-palette-color-4, #18221c);
  font-family: "Palatino Linotype", Palatino, Georgia, serif;
  font-size: 30px;
}

.gc-overview-band__lead p,
.gc-section-heading p {
  margin: 0;
  color: var(--theme-text-color, #52605a);
  line-height: 1.8;
}

.gc-overview-band__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.gc-overview-band__stats div {
  display: grid;
  align-content: start;
  gap: 6px;
  padding: 16px 14px;
  border-radius: 20px;
  background: linear-gradient(180deg, #fbfbf6 0%, #f2f5ec 100%);
}

.gc-overview-band__stats strong {
  color: var(--theme-palette-color-4, #18221c);
  font-size: 30px;
  line-height: 1;
}

.gc-overview-band__stats span {
  color: var(--theme-text-color, #68756d);
  font-size: 13px;
}

.gc-section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.gc-section-heading--inside {
  margin-bottom: 20px;
}

.gc-hero-panel,
.gc-directory-note {
  display: grid;
  gap: 14px;
}

.gc-panel-card,
.gc-directory-note {
  padding: 20px 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(110, 119, 76, 0.12);
}

.gc-panel-card strong,
.gc-directory-note strong {
  display: block;
  margin-top: 8px;
  color: var(--theme-palette-color-4, #18221c);
  font-size: 22px;
  font-family: "Palatino Linotype", Palatino, Georgia, serif;
}

.gc-panel-card p,
.gc-directory-note p {
  margin: 10px 0 0;
  color: var(--theme-text-color, #55615a);
  line-height: 1.75;
}

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

.gc-mini-stat {
  padding: 16px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(110, 119, 76, 0.1);
  text-align: center;
}

.gc-mini-stat strong {
  display: block;
  color: var(--theme-palette-color-4, #18221c);
  font-size: 28px;
  line-height: 1;
}

.gc-mini-stat span {
  display: block;
  margin-top: 6px;
  color: var(--theme-text-color, #6c786f);
  font-size: 13px;
}

.gc-grid {
  display: grid;
  gap: 22px;
}

.gc-grid.programs {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

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

.gc-card {
  padding: 24px;
  border-radius: 26px;
  border: 1px solid rgba(112, 119, 77, 0.12);
  background: #fff;
  box-shadow: 0 20px 48px -34px rgba(38, 48, 34, 0.22);
}

.gc-card h2,
.gc-card h3,
.gc-card h4,
.gc-card h5 {
  margin: 0 0 12px;
  color: var(--theme-palette-color-4, #18221c);
  font-family: "Palatino Linotype", Palatino, Georgia, serif;
}

.gc-card p {
  margin: 0 0 14px;
  color: var(--theme-text-color, #52605a);
  line-height: 1.8;
}

.gc-card a {
  color: var(--theme-palette-color-2, #7d6a2f);
}

.gc-rich-card > :last-child {
  margin-bottom: 0;
}

.gc-rich-card p,
.gc-rich-card ul,
.gc-rich-card ol {
  max-width: 860px;
}

.gc-rich-card h3,
.gc-rich-card h4 {
  margin-top: 22px;
}

.gc-inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gc-inline-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, #fbfbf6 0%, #f3f6ee 100%);
  border: 1px solid rgba(112, 119, 77, 0.1);
  color: var(--theme-palette-color-4, #223229);
  text-decoration: none;
  font-weight: 600;
}

.gc-card ul {
  margin: 0 0 16px 18px;
  color: var(--theme-text-color, #52605a);
}

.gc-card li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.gc-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 18px 0;
}

.gc-stat {
  min-width: 132px;
  padding: 14px 16px;
  border-radius: 20px;
  background: linear-gradient(180deg, #fbfbf5 0%, #f2f5eb 100%);
  border: 1px solid rgba(112, 119, 77, 0.08);
}

.gc-stat strong {
  display: block;
  font-size: 24px;
  color: var(--theme-palette-color-4, #18221c);
}

.gc-stat span {
  color: var(--theme-text-color, #67756f);
  font-size: 13px;
}

.gc-list {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.gc-list-item {
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, #fbfbf6 0%, #f3f6ee 100%);
  border: 1px solid rgba(112, 119, 77, 0.09);
}

.gc-list-item a {
  color: var(--theme-palette-color-2, #7d6a2f);
  font-weight: 700;
  text-decoration: none;
}

.gc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.gc-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(125, 106, 47, 0.09);
  color: var(--theme-palette-color-4, #304136);
  font-size: 13px;
}

.gc-detail-list {
  display: grid;
  gap: 12px;
}

.gc-detail-list div {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(112, 119, 77, 0.1);
}

.gc-detail-list span {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--theme-text-color, #6d776f);
}

.gc-detail-list strong {
  color: var(--theme-palette-color-4, #18221c);
  font-size: 16px;
}

.gc-directory-form {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(220px, 1fr) minmax(180px, 0.7fr) auto;
  gap: 14px;
  align-items: end;
}

.gc-field {
  display: grid;
  gap: 8px;
}

.gc-field label {
  color: var(--theme-palette-color-4, #22332a);
  font-size: 13px;
  font-weight: 700;
}

.gc-directory-form input,
.gc-directory-form select {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(110, 119, 76, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--theme-palette-color-4, #203128);
  font-size: 15px;
  text-overflow: ellipsis;
}

.gc-directory-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(48, 65, 54, 0.65) 50%),
    linear-gradient(135deg, rgba(48, 65, 54, 0.65) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 21px,
    calc(100% - 14px) 21px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
}

.gc-field-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.gc-field-actions .gc-button {
  min-width: 114px;
}

.gc-table-shell {
  padding: 18px;
  border-radius: 28px;
  border: 1px solid rgba(112, 119, 77, 0.12);
  background: #fff;
  box-shadow: 0 20px 48px -34px rgba(38, 48, 34, 0.22);
}

.gc-table-count {
  margin-bottom: 12px;
  color: var(--theme-text-color, #66726b);
  font-size: 14px;
}

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

.gc-directory-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 820px;
}

.gc-directory-table th,
.gc-directory-table td {
  padding: 14px 14px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(112, 119, 77, 0.1);
  color: var(--theme-text-color, #4d5952);
  font-size: 14px;
  line-height: 1.6;
}

.gc-directory-table th {
  color: var(--theme-palette-color-4, #18221c);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  background: #fafaf5;
}

.gc-directory-table tr:last-child td {
  border-bottom: none;
}

.gc-cell-name {
  font-weight: 700;
  color: var(--theme-palette-color-4, #18221c);
  white-space: nowrap;
}

.gc-directory-table--session {
  min-width: 520px;
}

.gc-directory-table--compact {
  min-width: 420px;
}

.gc-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0;
}

.gc-photo-grid img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
}

.gc-source-list a {
  word-break: break-word;
}

.gc-empty {
  padding: 24px;
  border-radius: 18px;
  border: 1px dashed rgba(112, 119, 77, 0.22);
  background: linear-gradient(180deg, #fbfbf7 0%, #f6f8f2 100%);
  color: var(--theme-text-color, #5d6b65);
}

@media (max-width: 999px) {
  .gc-hero-layout,
  .gc-directory-hero,
  .gc-grid-2,
  .gc-overview-band {
    grid-template-columns: 1fr;
  }

  .gc-directory-form {
    grid-template-columns: 1fr 1fr;
  }

  .gc-field-actions {
    grid-column: 1 / -1;
  }

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

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

  .gc-pill-nav__inner {
    border-radius: 28px;
  }

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

@media (max-width: 689px) {
  .gc-section {
    padding: 36px 16px;
  }

  .gc-hero--soft,
  .gc-card,
  .gc-table-shell {
    padding: 20px;
    border-radius: 22px;
  }

  .gc-directory-form,
  .gc-panel-grid,
  .gc-overview-band__stats {
    grid-template-columns: 1fr;
  }

  .gc-pill-nav__inner {
    width: 100%;
    gap: 8px;
  }

  .gc-pill-nav__item {
    width: 100%;
    padding: 10px 16px;
    font-size: 15px;
  }

  .gc-photo-grid {
    grid-template-columns: 1fr;
  }

  .gc-directory-table,
  .gc-directory-table--session {
    min-width: 640px;
  }
}
