.contact-map__panel {
    overflow: hidden;
}

.contact-map__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
}

.contact-map__content {
    justify-content: flex-start;
}

.contact-map__channels {
    display: grid;
    gap: 0.5rem;
}

@media (min-width: 640px) {
    .contact-map__channels {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-map__channel--full {
        grid-column: span 2;
    }
}

.contact-map__channel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 0.75rem;
    border: 1px solid rgba(226, 232, 240, 0.95);
    background: #f8fafc;
    padding: 0.65rem 0.85rem;
    transition:
        border-color 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

@media (min-width: 640px) {
    .contact-map__channel {
        border-radius: 0.875rem;
        padding: 0.7rem 0.95rem;
    }
}

.contact-map__channel:hover {
    border-color: rgba(30, 90, 168, 0.28);
    background: #fff;
    box-shadow: 0 14px 30px -24px rgba(30, 90, 168, 0.35);
    transform: translateY(-1px);
}

.contact-map__channel-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #1e5aa8;
}

@media (min-width: 640px) {
    .contact-map__channel-label {
        font-size: 0.75rem;
    }
}

.contact-map__channel-value {
    margin-top: 0.25rem;
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.4;
    color: #0f172a;
    overflow-wrap: anywhere;
}

@media (min-width: 640px) {
    .contact-map__channel-value {
        margin-top: 0.3rem;
        font-size: 0.875rem;
    }
}

.contact-map__embed {
    position: relative;
    width: 100%;
    min-height: 18.75rem;
    background: #e2e8f0;
    border-top: 1px solid #e5e7eb;
}

.contact-map__iframe {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (min-width: 640px) {
    .contact-map__embed {
        min-height: 22.5rem;
    }
}

@media (min-width: 1024px) {
    .contact-map__grid {
        grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
        align-items: stretch;
        min-height: 28rem;
    }

    .contact-map__embed {
        min-height: 28rem;
        height: 100%;
        border-top: 0;
        border-left: 1px solid #e5e7eb;
    }
}
