.section-restaurants {
  width: 100%;
}
.section-restaurants .section__inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
  align-items: stretch;
}
.section-restaurants .section__heading {
  width: 100%;
  padding: 0 2.8rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.section-restaurants .section__title {
  font-family: var(--font-family-heading);
  font-weight: var(--font-weight-regular);
  font-size: var(--font-size-h4);
  line-height: var(--line-height-dense);
}
.section-restaurants .section__content {
  width: 100%;
}
.section-restaurants .restaurant-items {
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
  padding: 0 0.6rem;
}
.section-restaurants .restaurant-item {
  background-color: var(--color-surface-muted);
  padding: 2.2rem;
  border-radius: 1.8rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.2rem;
}
.section-restaurants .restaurant-item.is-current {
  background-color: var(--color-primary);
}
.section-restaurants .restaurant-item .restaurant-item__title {
  display: block;
  line-height: var(--line-height-snug);
  font-size: var(--font-size-sm);
}
.section-restaurants .restaurant-item .restaurant-item__location {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.section-restaurants .restaurant-item .restaurant-item__location-icon {
  display: block;
  opacity: 0.7;
}
.section-restaurants
  .restaurant-item
  .restaurant-item__location-icon
  .mdc-icon {
  width: 1.4rem;
  height: 1.4rem;
}
.section-restaurants .restaurant-item .restaurant-item__location-content {
  display: block;
  line-height: var(--line-height-dense);
  font-size: var(--font-size-xs);
  padding-top: 0.6rem;
}
