.page-hero {
    padding: 3rem 1.5rem 1.5rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 2rem;
    margin: 0;
}

@media (max-width: 40rem) {
    .page-hero h1 {
        font-size: 1.625rem;
    }
}

.page-content {
    max-width: 45rem;
    margin: 0 auto;
    padding: 1rem 1.5rem 3rem;
    line-height: 1.7;
}

/* Contact page's phone/WhatsApp/email/address rows (admin-managed HTML,
   see the "Contact" DomainPage) — generic enough to reuse for any future
   page needing the same icon+label layout, not Contact-specific in name. */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin: 1.5rem 0;
}

.contact-info-row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    /* .page-content's own line-height:1.7 is meant for body-text
       paragraphs — inherited here, it stretched the <br> between each
       row's label and value into a bigger gap than a tight label/value
       pair should have. "normal" (the font's own natural line height),
       not a fixed number. */
    line-height: normal;
}

.contact-info-row svg {
    flex-shrink: 0;
    margin-top: 0.125rem;
    color: #2563eb;
}

/* WhatsApp's own icon is a filled brand-green path (not a stroke icon
   like the other three), set inline on the SVG itself — this class is
   just here so a future dark-mode pass has somewhere to hook without
   touching the admin-managed content HTML. */
.contact-info-whatsapp {
    color: #25d366;
}

/* No API key needed — plain google.com/maps?q=...&output=embed accepts a
   free-text address instead of the newer Embed API's key+place-id flow. */
.contact-map {
    margin-top: 1.5rem;
    border-radius: 0.75rem;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}
