

.prices { max-width: 900px; margin: 0 auto; }
.prices__head { text-align: center; margin-bottom: 76px; }

.price-card { background: var(--shell); padding: 64px 60px; }
.price-card__heading { text-align: center; margin: 0 0 34px; }
.price-card__heading--spaced { margin-top: 56px; }

.price-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.price-row__name { font-family: var(--display); font-size: 21px; color: var(--ink); }

.price-row__leader {
  flex: 1;
  border-bottom: 1px dotted var(--line-dot);
  transform: translateY(-4px);
}

.price-row__cost {
  font-family: var(--display);
  font-size: 19px;
  color: var(--accent);
  white-space: nowrap;
}

.prices__footnote { margin-top: 44px; text-align: center; font-size: 13.5px; }

@media (max-width: 620px) {
  .price-card { padding: 40px 24px; }
  .price-row__name { font-size: 18px; }
}


.price-section + .price-section { margin-top: 56px; }
.price-section .price-card__heading--spaced { margin-top: 0; }


@media (max-width: 560px) {
  .price-row__leader { display: none; }
  .price-row__name { flex: 1; }
  .price-row { gap: 14px; }
}
