.actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 268px;
  min-height: 54px;
  text-align: center;
}

.section-heading h2.address-heading {
  color: var(--rose);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: .18em;
  margin: 0;
}

.actions svg {
  flex: none;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.actions svg .icon-dot {
  fill: currentColor;
  stroke: none;
}

.hours {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 22px;
}

.hours > div {
  padding: 25px 34px;
  background: var(--blush);
}

.hours h3 {
  margin: 0 0 10px;
  color: var(--wine);
  font: 700 20px Georgia, "Times New Roman", serif;
}

.hours p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

@media (max-width: 720px) {
  .actions {
    flex-direction: column;
    align-items: center;
  }

  .actions a {
    width: min(100%, 300px);
  }

  .hours {
    grid-template-columns: 1fr;
  }
}
