/* =====================================================
   C2CIMS Map Block
   ===================================================== */

.c2cims-map-block {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

/* ── Map iframe ───────────────────────────────────── */
.c2cims-map-embed {
    width: 100%;
    background: #f0f0f0;
}

.c2cims-map-embed iframe {
    display: block;
}

/* ── Info bar below the map ───────────────────────── */
.c2cims-map-info {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    background: var(--c2cims-dark-bg, #1a1a1a);
    padding: 16px 24px;
}

.c2cims-map-info-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 8px 24px 8px 0;
    font-size: 14px;
    color: var(--c2cims-text-on-dark, #f0f0f0);
    line-height: 1.5;
}

.c2cims-map-info-row:not(:last-child) {
    border-right: 1px solid rgba(255,255,255,0.12);
    margin-right: 24px;
}

.c2cims-map-info-row a {
    color: var(--c2cims-text-on-dark, #f0f0f0);
    text-decoration: none;
}

.c2cims-map-info-row a:hover {
    color: var(--c2cims-accent, #fcba16);
}

.c2cims-map-info-icon {
    color: var(--c2cims-accent, #fcba16);
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 1px;
}

.c2cims-map-directions {
    display: inline-block;
    margin-top: 4px;
    font-size: 12px;
    font-weight: 600;
    color: var(--c2cims-accent, #fcba16) !important;
    letter-spacing: 0.3px;
}

/* ── No-address placeholder ───────────────────────── */
.c2cims-map-placeholder {
    background: #f9f9f9;
    border: 2px dashed #ddd;
    border-radius: 8px;
    padding: 32px;
    text-align: center;
    color: #888;
    font-size: 14px;
}

/* ── Editor placeholder ───────────────────────────── */
.wp-block-c2cims-map {
    background: #f0f6fc;
    border: 2px dashed #c5d5e8;
    border-radius: 8px;
    padding: 40px 24px;
    text-align: center;
}

@media (max-width: 600px) {
    .c2cims-map-info {
        flex-direction: column;
        padding: 12px 16px;
    }
    .c2cims-map-info-row:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.12);
        margin-right: 0;
        padding-bottom: 12px;
        margin-bottom: 4px;
    }
}
