/* ============================================================
   CUSTOM — Per-store overrides for Template TF
   Add store-specific tweaks here. Loaded last so it wins
   over theme.css and style.css.
   ============================================================ */

/* ---------- Visit Us / map + address card (tag service pages) ---------- */

.visit-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  background: var(--card);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  margin-top: 2rem;
}

.visit-card__map {
  position: relative;
  min-height: 420px;
}

.visit-card__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.visit-card__details {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}

.visit-card__info h3 {
  margin-bottom: 0.5rem;
}

.visit-card__info address {
  font-style: normal;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.visit-card__info h4 {
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.visit-card__hours {
  list-style: none;
  margin: 0;
  padding: 0;
}

.visit-card__hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.4rem 0;
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(32, 29, 26, 0.08);
}

.visit-card__hours li:last-child {
  border-bottom: none;
}

.visit-card__actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .visit-card {
    grid-template-columns: 1fr;
  }

  .visit-card__map {
    min-height: 320px;
  }

  .visit-card__actions {
    justify-content: flex-start;
  }
}
