/* patient-management.css */
@font-face {
    font-family: 'WantedSansVariable';
    src: url('assets/fonts/wanted_sans/WantedSans-1.0.1/variable/WantedSansVariable.ttf') format('ttf'),
         url('assets/fonts/wanted_sans/WantedSans-1.0.1/otf/WantedSans-Regular.otf') format('otf');
    font-weight: normal;
    font-style: normal;
}

/* Patient Management Section Styles */
.patient-management {
    font-family: 'WantedSansVariable', sans-serif;
    padding: 3.125rem 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    max-width: 75rem;
    margin: 0 auto;
}

.patient-management-content {
    align-items: center;
    width: 100%;
    max-width: 75rem;
    margin-bottom: 2.5rem;
    font-size: 1.15rem;
}

.patient-management h2 {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    white-space: nowrap;
}

.patient-images {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    max-width: 65rem;
    height: 28.125rem;
    margin: 0 auto;
    margin-top: 2.5rem;
}

.patient-image {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    object-fit: cover;
    position: absolute;
}

@media screen and (max-width: 1280px) {
    .patient-management h2 {
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
        font-size: 4rem;
        margin-bottom: 1rem;
    }

    .patient-management p {
        font-size: 1.125rem;
    }

    .patient-images {
        max-width: 60rem;
        height: auto;
    }

    .patient-image {
        width: 5rem;
        height: 5rem;
    }
}

@media screen and (max-width: 768px) {
    .patient-management h2 {
        font-size: 3rem;
    }

    .patient-management p {
        font-size: 1rem;
    }

    .patient-images {
        flex-wrap: wrap;
        justify-content: center;
        height: auto;
    }

    .patient-image {
        position: static;
        margin: 0.5rem;
    }
}
