/* ==========================================================================
   SSV College — Contact page
   File: css/Contact.css   (linked from Contact.aspx through the "head" placeholder)

   Load order on Contact.aspx: site-modern.css (tokens, buttons, .ssv-card, section heads)
   → css/AboutUs.css (shared .ssv-page-banner / .ssv-crumbs used by the hero)
   → this file (map frame + contact cards only).
   No design tokens are redeclared here — they come from site-modern.css's :root block.
   Everything is prefixed "ssv-" and lives under ".ssv-scope".

   Contents
     1. Map
     2. Contact cards
   ========================================================================== */


/* 1. MAP --------------------------------------------------------------------
   Edge-to-edge strip (sits outside .container, like the section heading above it). */
.ssv-contact-map {
    width: 100%;
    margin-top: clamp(1.75rem, 1.3rem + 2vw, 2.75rem);
    box-shadow: var(--shadow-md);
    line-height: 0;
}

    .ssv-contact-map iframe {
        display: block;
        width: 100%;
    }


/* 2. CONTACT CARDS ------------------------------------------------------------- */
.ssv-contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: center;
}

.ssv-contact-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    margin-bottom: 1.1rem;
    border-radius: 50%;
    background: linear-gradient(145deg, #FF8A3D, #E8620A);
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 8px 18px rgba(11, 37, 69, .14);
}

.ssv-contact-card__title {
    margin-bottom: .6rem;
    font-size: 1.1rem;
    color: var(--primary);
}

.ssv-contact-card__text {
    margin: 0;
    font-size: .98rem;
    line-height: 1.6;
    color: #334155;
    overflow-wrap: anywhere;
}

    .ssv-contact-card__text a {
        color: var(--primary);
        font-weight: 600;
        text-decoration: none;
    }

        .ssv-contact-card__text a:hover,
        .ssv-contact-card__text a:focus {
            color: var(--accent-deep);
            text-decoration: underline;
        }
