/* ═══════════ Site Info module ([address]/[phone]/[socials]/banners…) ═══
   All CSS owned by the Site Info module (inc/site-info.php). Type comes from the
   .subheading-sm / .body-* utilities in typography.css; colors are inline per banner. */

/* ── Social icons ([socials] / [instagram]) ─────────────────── */
.site-social {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}
.site-social__link {
  display: inline-flex;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.site-social__link:hover {
  opacity: 0.7;
}
.site-social svg {
  width: 1.5rem;
  height: 1.5rem;
  display: block;
  fill: currentColor;
}

/* ── Map ([map]) ────────────────────────────────────────────
   The iframe's hard-coded width/height are overridden here. Height fills a sibling
   column in a multi-column row; standalone falls back to min-height. */
.site-map {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 20rem;
  overflow: hidden;
}
.site-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
/* Carry the column height down through the Code module wrappers (scoped to the map only) */
.et_pb_code:has(.site-map) {
  height: 100%;
}
.et_pb_code:has(.site-map) > .et_pb_code_inner {
  height: 100%;
}

/* ── Phone ([phone]/[fax]) digit spacing ────────────────────── */
.site-phone {
  letter-spacing: 0.06em;
}

/* ── Banners (Site Info → Banners) ──────────────────────────
   Announcement bars above the global header, rendered at wp_body_open.
   Non-sticky (scrolls away); text/bg colors come inline per banner. */
.site-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.75rem 3.25rem;
}
.site-banner .subheading-sm {
  color: inherit;
}
.site-banner__close {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 0;
  padding: 0.25rem 0.5rem;
  cursor: pointer;
  color: inherit;
  font-size: 1.375rem;
  line-height: 1;
  opacity: 0.75;
  transition: opacity 0.2s ease;
}
.site-banner__close:hover {
  opacity: 1;
}
