/* --- STYLE BLOC MAP (Front & Back) --- */

.qba-map-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px -10px rgba(0,0,0,0.1);
    border: 1px solid #f1f1f1;
    margin: 2rem auto;
}

.qba-map-frame {
    width: 100%;
    background: #f3f4f6;
    position: relative;
}

.qba-map-footer {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border-top: 1px solid #f9fafb;
}

.qba-map-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.qba-map-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #111827;
}

.qba-map-desc {
    margin: 0;
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.4;
}

.qba-map-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background-color: #2563eb;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: background-color 0.2s;
    white-space: nowrap;
}

.qba-map-btn:hover {
    background-color: #1d4ed8;
}

/* Responsivité pour mobile */
@media (max-width: 600px) {
    .qba-map-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .qba-map-btn {
        width: 100%;
        justify-content: center;
    }
}
