/**
 * Grassington House — drinks list styles
 * Scoped to .gh-drinks inside menu pages.
 * Single-column priced list layout.
 */

.gh-drinks {
  --drinks-width: 32rem;
  text-align: center;
}

.gh-drinks .drinks_block {
  margin-bottom: 2.75rem;
}

.gh-drinks .drinks_block:last-child {
  margin-bottom: 0;
}

.gh-drinks .drinks_section {
  margin-bottom: 1.75rem;
}

.gh-drinks .drinks_section:last-child {
  margin-bottom: 0;
}

.gh-drinks .drinks_section > h2 {
  font-family: "Open Sans", sans-serif;
  margin: 0 0 1.25rem;
  padding: 0 0 4px;
  font-weight: 300;
  font-size: 25px;
  font-style: normal;
  color: #a1824d;
  text-transform: uppercase;
  border-bottom: 1px dotted #a1824d;
}

.gh-drinks .drinks_section > h3 {
  font-family: "Open Sans", sans-serif;
  margin: 0 auto 0.75rem;
  padding: 0;
  max-width: var(--drinks-width);
  font-weight: 600;
  font-size: 16px;
  font-style: normal;
  color: #a1824d;
  text-transform: uppercase;
  border: none;
  text-align: left;
}

.gh-drinks .drinks_measure {
  max-width: var(--drinks-width);
  margin: 0 auto 0.75rem;
  font-size: 14px;
  font-style: italic;
  color: #888;
  text-align: left;
}

.gh-drinks .drinks_section > h3 .drinks_measure {
  font-weight: 400;
  font-style: italic;
  text-transform: none;
  color: #888;
}

.gh-drinks .drinks_price_list {
  list-style: none;
  margin: 0 auto 1.5rem;
  padding: 0;
  max-width: var(--drinks-width);
  text-align: left;
}

.gh-drinks .drinks_price_list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 0;
  padding: 0.4rem 0;
  font-size: 15px;
  line-height: 1.45;
  color: #555;
  border-bottom: 1px solid #eee;
}

.gh-drinks .drinks_price_list li:last-child {
  border-bottom: none;
}

.gh-drinks .drink_name {
  font-weight: 600;
  color: #444;
}

.gh-drinks .drinks_price_list .drink_price {
  font-weight: 400;
  color: #666;
  white-space: nowrap;
  text-align: right;
}

.gh-drinks .drink_note {
  max-width: var(--drinks-width);
  margin: 0.25rem auto 0.75rem;
  padding: 0;
  font-weight: 300;
  font-size: 14px;
  font-style: italic;
  color: #777;
  line-height: 1.5;
  text-align: left;
}

.gh-drinks .drink_note:last-child {
  margin-bottom: 0;
}
