/* ============================================
   MAP — Map Section
   ============================================ */

/* ============================================
   MAP SECTION
   ============================================ */
.map-section {
    padding: 90px 0;
    background: var(--cream);
}

.map-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border);
}

.map-info-card {
    padding: 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.map-info-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--night-soft);
    margin-bottom: 20px;
    line-height: 1.4;
}

.map-address {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    color: var(--smoke);
}

.map-address svg { flex-shrink: 0; margin-top: 2px; color: var(--sunset-deep); }
.map-address p { font-size: 0.95rem; line-height: 1.6; }

.map-embed { min-height: 400px; }
.map-embed iframe { width: 100%; height: 100%; display: block; }
