.panel {
  background: var(--color-white);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-card);
}

.results-list {
  gap: 0;
}

.location-card {
  background: var(--color-white);
  border: 2px solid transparent;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-card);
  cursor: pointer;
  margin-bottom: 12px;
}

.location-card:last-child {
  margin-bottom: 0;
}

.location-card:hover {
  box-shadow: var(--shadow-card-hover);
}

.mobile-service-card {
  border: 2px solid transparent;
  border-color: var(--color-header-accent);
  box-shadow:
    0 0 0 3px rgb(82 194 207 / 16%),
    0 10px 24px rgb(8 65 83 / 14%);
}

.mobile-service-card:hover {
  box-shadow:
    0 0 0 3px rgb(82 194 207 / 16%),
    0 10px 24px rgb(8 65 83 / 14%);
}

.location-card[aria-current="true"] {
  border-color: var(--color-coral);
}

.location-card--mobile-service[aria-current="true"] {
  border-color: var(--color-header-accent);
  outline: 2px solid var(--color-coral);
  outline-offset: 2px;
}

.location-card__content,
.location-card__actions {
  padding: 20px;
}

.location-card__heading {
  align-items: flex-start;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.location-card__name {
  color: var(--color-copy);
  font-family: "bold", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
}

.location-card__map-control {
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
  line-height: inherit;
  padding: 0;
  text-align: left;
}

.location-card__distance,
.location-card__address {
  font-size: 14px;
  line-height: 20px;
}

.location-card__distance {
  flex-shrink: 0;
  font-weight: 700;
}

.location-card__address,
.location-card__phone,
.location-card__metadata,
.location-card__hours {
  margin-top: 8px;
}

.location-card__phone {
  font-size: 18px;
  line-height: 28px;
}

.location-card__metadata {
  color: var(--color-copy);
  font-size: 14px;
  line-height: 20px;
}

.location-card__metadata-label {
  font-family: "bold", sans-serif;
  font-weight: 700;
}

.location-card__hours {
  font-size: 14px;
  line-height: 20px;
  white-space: pre-wrap;
}

.location-card__actions {
  border-top: 1px solid #eeeeee;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
