/* ============================================================
   Home page — Visit Our Showroom section (fragment/visit.php)
   Centered heading + description, then a two-column row: showroom
   details (name/address/phone/hours) on the left, an embedded
   Google Map on the right — matching the reference layout.
   Relies on the shared theme variables (--bg, --ink, --pine, etc.)
   declared in index.php's own <style> block, with hardcoded
   fallbacks so this still renders correctly on its own.
   ============================================================ */

.vs-section { padding: 64px 0; }

.vs-heading { text-align: center; max-width: 680px; margin: 0 auto 44px; }
.vs-heading h2 {
  font-weight: 800;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: var(--pine, #17402e);
  margin-bottom: 14px;
}
.vs-heading p {
  color: var(--muted, #8a8577);
  font-size: .95rem;
  line-height: 1.7;
  margin: 0;
}

.vs-name {
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--ink, #22271f);
  margin-bottom: 18px;
}

.vs-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--ink, #22271f);
  font-size: .95rem;
}
.vs-row i {
  color: var(--brass, #b98a2f);
  font-size: 1.05rem;
  margin-top: 2px;
  flex: 0 0 auto;
}

.vs-hours-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--pine, #17402e);
  margin: 22px 0 12px;
}

.vs-map {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line, #e7e1d4);
  box-shadow: 0 4px 16px rgba(23, 64, 46, .06);
}
.vs-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 575.98px) {
  .vs-section { padding: 44px 0; }
  .vs-map { aspect-ratio: 4 / 3; }
}
