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

.gh-drinks {
  text-align: center;
}

.gh-drinks .drinks_row {
  display: grid;
  gap: 2rem 2.5rem;
  margin-bottom: 2.5rem;
}

.gh-drinks .drinks_row--2col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gh-drinks .drinks_row--3col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 767px) {
  .gh-drinks .drinks_row--2col,
  .gh-drinks .drinks_row--3col {
    grid-template-columns: 1fr;
  }
}

.gh-drinks .drinks_col {
  min-width: 0;
}

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

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

.gh-drinks .drinks_major {
  font-family: "Open Sans", sans-serif;
  margin: 0 0 1.5rem;
  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 {
  margin-bottom: 1.75rem;
}

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

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

.gh-drinks .drinks_section > h2 {
  font-size: 25px;
  font-weight: 300;
  padding-bottom: 4px;
  margin-bottom: 1.25rem;
  border-bottom: 1px dotted #a1824d;
}

.gh-drinks .drinks_list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.gh-drinks .drinks_list li {
  margin: 0.35rem 0;
  font-size: 15px;
  line-height: 1.45;
  color: #555;
}

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

.gh-drinks .drink_abv {
  font-weight: 400;
  color: #888;
}

.gh-drinks .drink_item {
  margin: 0.75rem 0 0;
  font-size: 15px;
  line-height: 1.45;
}

.gh-drinks .drink_item .drink_name {
  font-weight: 700;
  color: #a1824d;
  text-transform: uppercase;
}

.gh-drinks .drink_note {
  margin: 0.25rem 0 0.75rem;
  padding: 0;
  font-weight: 300;
  font-size: 14px;
  font-style: italic;
  color: #777;
  line-height: 1.5;
}

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