/* Rate card / pricing page */

.page-hero--center {
  text-align: center;
}
.page-hero--center p {
  margin-inline: auto;
}
.page-hero--center .breadcrumb {
  justify-content: center;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 1.2rem;
}
.breadcrumb a {
  color: var(--terra-deep);
  font-weight: 600;
}

.section--rates {
  background: var(--cream-2);
}

.price-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 28px;
}
.price-tabs a {
  padding: 0.5em 1.1em;
  border-radius: 100px;
  border: 1px solid var(--line);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--plum);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.price-tabs a:hover {
  background: var(--plum);
  color: var(--cream);
  border-color: var(--plum);
}

.price-block {
  margin-top: 48px;
}
.price-block:first-child {
  margin-top: 0;
}
.price-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 4px;
}
.price-head h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.7rem);
  color: var(--plum);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0;
}
.price-head h3 .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.price-head .count {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--terra-deep);
  background: var(--blush);
  padding: 0.35em 0.85em;
  border-radius: 100px;
}

.price-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 14px;
}

.price-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.price-table th {
  text-align: left;
  background: var(--plum-deep);
  color: var(--cream);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  padding: 14px 16px;
  white-space: nowrap;
}
.price-table td {
  padding: 14px 16px;
  border-top: 1px solid var(--line);
  font-size: 0.94rem;
  vertical-align: top;
  color: var(--ink-soft);
}
.price-table tr:nth-child(even) td {
  background: rgba(244, 233, 222, 0.45);
}
.price-table .sess {
  font-weight: 600;
  color: var(--ink);
  min-width: 9rem;
}
.price-table .amt {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  font-weight: 600;
  color: var(--plum);
}

.price-note {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-top: 16px;
  max-width: 62ch;
}
.price-note a {
  color: var(--terra-deep);
  font-weight: 600;
}

@media (max-width: 640px) {
  .price-table {
    min-width: 560px;
    font-size: 0.86rem;
  }
  .price-table th,
  .price-table td {
    padding: 10px 11px;
  }
}
