/* =========================
    Nous retrouver dans les réseaux
========================= */

.network-track {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem 2rem;
}

.network-track::before {
    content: '';
    position: absolute;
    top: 1.75rem;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(208, 208, 208, 0.6);
    z-index: 0;
}

.network-step {
    flex: 1 1 220px;
    position: relative;
    text-align: center;
}

.network-circle {
    position: relative;
    z-index: 1;
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid var(--isatis-warning);
    background: #fff;
    color: var(--isatis-warning);
    font-weight: 700;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.network-step:hover .network-circle {
    background: var(--isatis-warning);
    color: #fff;
    transform: scale(1.08);
}

.network-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--isatis-primary);
    margin: 0 0 .5rem;
}

.network-text {
    font-size: .875rem;
    color: #6b7280;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .network-track::before {
        display: none;
    }
}
