/* CSS Spécifique pour la page Assistance */

/* "Interventions Ponctuelles" Grid Styling */
.bento-grid .bento-card {
    background: white;
    border: 1px solid #f1f5f9;
    /* Very subtle default border */
    border-radius: 16px;
    /* Smooth rounded corners */
    padding: 2rem;
    text-align: left;
    /* Image shows left aligned */
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Align content to left */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.bento-grid .bento-card:hover {
    border-color: #ef3e36;
    /* Red border on hover (or active) as seen in image */
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.01);
}

/* Icon Wrapper Styling */
.card-icon-wrapper {
    background-color: #fef2f2;
    /* Light red/pink background */
    width: 60px;
    height: 60px;
    border-radius: 12px;
    /* Slightly rounded square */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-icon-wrapper i {
    color: #ef3e36;
    /* Red Icon */
    font-size: 1.8rem;
}

/* Title Styling */
.card-title {
    color: #0f172a;
    /* Dark Navy/Black */
    font-size: 1.25rem;
    font-weight: 800;
    /* Bold as in image */
    margin-bottom: 1rem;
    line-height: 1.3;
}

/* Description Styling */
.card-desc {
    color: #64748b;
    /* Slate Gray */
    font-size: 1rem;
    line-height: 1.6;
}

/* Specific Tweak for the grid layout if needed */
.bento-grid {
    gap: 2rem;
}