/* ==========================================================================
   Page Urgences - Charte WRC Platform
   ========================================================================== */

.urgences-main {
    background-color: #fcfbf9;
    min-height: 80vh;
}

/* --- Banner d'Urgence Vitale --- */
.vital-alert-box {
    display: flex;
    align-items: center;
    background-color: #fff5f5;
    border: 2px solid #feb2b2;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(229, 62, 62, 0.08);
    gap: 1.25rem;
}

.vital-alert-icon {
    font-size: 2.2rem;
    color: #e53e3e;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
}

.vital-alert-content {
    flex: 1;
}

/* --- Cartes des Numéros d'Urgence --- */
.urgences-category-block {
    border-bottom: 1px solid #edf2f7;
    padding-bottom: 2rem;
}

.urgences-category-block:last-child {
    border-bottom: none;
}

.category-title {
    display: flex;
    align-items: center;
    border-left: 4px solid #c5a059;
    padding-left: 0.75rem;
}

.urgency-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 1.25rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.urgency-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 21, 75, 0.06);
    border-color: #cbd5e0;
}

.urgency-card-header {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}

.urgency-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #f7f3ed;
    color: #c5a059;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.urgency-badges {
    display: flex;
    gap: 0.35rem;
    flex-wrap: wrap;
    margin-top: 0.25rem;
}

/* --- Boutons personnalisés WRC --- */
.button.is-wrc-gold {
    background-color: #c5a059;
    color: #ffffff;
    border: none;
    transition: background-color 0.2s ease;
}

.button.is-wrc-gold:hover {
    background-color: #b08c46;
    color: #ffffff;
}

.has-text-wrc-plum {
    color: #4a154b !important;
}

.has-text-wrc-gold {
    color: #c5a059 !important;
}

.has-text-wrc-muted {
    color: #64748b !important;
}

/* --- Responsive mobile --- */
@media screen and (max-width: 768px) {
    .vital-alert-box {
        flex-direction: column;
        text-align: center;
    }

    .vital-alert-box .buttons {
        justify-content: center;
    }
}