/* ===================================
DEPARTMENT CARD
=================================== */

.department-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    height: 100%;

    border: 1px solid #f1f1f1;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);

    transition: all 0.35s ease;
}

.department-card i {
    display: block;

    font-size: 40px;

    color: #ff6b6b;

    margin-bottom: 15px;
}

.department-card h6 {
    margin: 0;

    font-size: 1rem;

    font-weight: 600;

    color: #333;

    line-height: 1.5;
}

.department-card.emergency i {
    color: #dc3545;
}
