/* ============================================================
   PRICES PAGE  -  /prices  full price list by category
   Hero comes from page.css.
   ============================================================ */
.price-block { padding-block: clamp(3rem, 2.5rem + 3.5vw, 5.5rem); }
.price-block.bg-cream { background: var(--cream); }
.price-block.bg-oat { background: var(--oat); }

.price-block-title { margin-bottom: clamp(1.5rem, 1rem + 2.5vw, 2.5rem); }

.price-group + .price-group { margin-top: clamp(2.25rem, 1.5rem + 3vw, 3.5rem); }
.price-group-title {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--wine);
  margin-bottom: var(--space-s);
}

.price-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  max-width: 900px;
  display: grid;
}
.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.62rem 0;
  border-bottom: 1px solid var(--line);
}
.price-name { font-family: var(--font-body); font-size: 0.95rem; color: var(--ink); }
.price-figure {
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  white-space: nowrap;
}

.price-note-block p {
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 62ch;
}
.price-note-block a {
  color: var(--wine);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: color 0.3s var(--ease);
}
.price-note-block a:hover { color: var(--wine-deep); }

@media (min-width: 760px) {
  .price-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(2.5rem, 5vw, 4.5rem);
  }
}