.contact-card,
.contact-map-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 14px rgba(0,0,0,.07);
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Headers */
.contact-card-header,
.contact-map-header {
    padding: .9rem 1.3rem;
    border-bottom: 1px solid #f1f3f5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
}

.contact-title {
    font-size: .98rem;
    font-weight: 700;
    margin: 0;
    color: #1a1a2e;
}

.contact-updated {
    font-size: .75rem;
    color: #868e96;
    display: flex;
    align-items: center;
}

/* Bodies */
.contact-card-body,
.contact-map-body {
    padding: 1.1rem 1.3rem 1.3rem;
    flex: 1;
}

/* Contact items */
.contact-item {
    display: flex;
    gap: .7rem;
    margin-bottom: .75rem;
}

.contact-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 8px;
    background: #fff5f5;
    color: #c0392b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.contact-label {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #868e96;
}

.contact-value {
    font-size: .9rem;
    color: #343a40;
}

.contact-link {
    font-size: .9rem;
    color: #0d6efd;
    text-decoration: none;
}

    .contact-link:hover {
        text-decoration: underline;
    }

/* Map */
.contact-map-embed {
    width: 100%;
    height: 320px;
    border-radius: 12px;
    overflow: hidden;
}

.contact-map-placeholder {
    height: 320px;
    border-radius: 12px;
    border: 1px dashed #dee2e6;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
    gap: .4rem;
}

    .contact-map-placeholder i {
        font-size: 2rem;
    }

/* Responsive */
@media (max-width: 767px) {
    .contact-card-body,
    .contact-map-body {
        padding: .9rem 1rem 1.1rem;
    }

    .contact-map-embed,
    .contact-map-placeholder {
        height: 260px;
    }
}
