.hosting-health {
    max-width: 1100px;
    margin: 30px auto;
    padding: 24px;

    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;

    box-shadow: 0 8px 30px rgba(0,0,0,.04);

    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont,
                 "Segoe UI", sans-serif;
}


/* État global */

.global-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 8px 13px;

    color: #15803d;
    background: #f0fdf4;

    border: 1px solid #bbf7d0;
    border-radius: 999px;

    font-size: 14px;
}

.global-dot {
    width: 9px;
    height: 9px;

    border-radius: 50%;
    background: #22c55e;

    box-shadow: 0 0 0 4px rgba(34,197,94,.12);
}

.last-check {
    margin-top: 9px;
    margin-left: 2px;

    color: #9ca3af;
    font-size: 12px;
}


/* Grille */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 24px 35px;

    margin-top: 28px;
}


/* Un service */

.service-card {
    min-width: 0;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 9px;
}

.service-name {
    display: flex;
    align-items: center;
    gap: 8px;

    color: #4b5563;
    font-size: 13px;
    font-weight: 500;
}

.service-dot {
    width: 7px;
    height: 7px;

    background: #22c55e;
    border-radius: 50%;
}

.service-percent {
    color: #16a34a;

    font-size: 13px;
    font-weight: 700;
}


/* Barre individuelle */

.service-progress {
    width: 100%;
    height: 6px;

    background: #dcfce7;
    border-radius: 999px;

    overflow: hidden;
}

.service-progress-bar {
    height: 100%;

    background: #22c55e;
    border-radius: 999px;

    transition: width .4s ease;
}


/* État */

.service-state {
    margin-top: 7px;

    color: #16a34a;
    font-size: 11px;
}


/* Mobile */

@media (max-width: 800px) {

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 520px) {

    .services-grid {
        grid-template-columns: 1fr;
    }

}