@charset "utf-8";

:root {
    --dark_purple: hsl(245, 23%, 21%);
    --medium_purple: hsl(244, 11%, 50%);
    --light_purple: hsl(240, 22%, 90%);
    --red: hsl(0, 57%, 58%);
    --beige: hsl(0, 10%, 90%);
    --button: rgba(133, 133, 168, 95%);
}

.doctor_bio {
    display: flex;
    gap: 1rem;
    margin: 0;
    padding: 0 10%;
    background-color: #fff;
}

.bio_image img {
    flex-shrink: 0;
    flex-grow: 0;
}

.bio_image img {
    max-width: 600px;
    border-radius: 4px;
}

.bio_text {
    padding: 0 1rem 2rem 1rem;
}

.bio_text p {
    margin-bottom: 1rem;
}

.bio_text ul {
    margin: 1rem 0;
}

.bio_text ul li {

    padding: 0 0 0 1rem;
    position: relative;
    margin-bottom: 10px;
}

.bio_text ul > li::before {
    content: '•';
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    color: var(--dark_purple);
    margin-top: 0rem;
}

.bio_text img {
    max-width: 500px;
}

.bio_buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 1.5rem;
}

@media (max-width: 700px) {

    .doctor_bio {
        flex-direction: column;
        padding: 0;
        gap: 3rem;
    }

    .bio_image img {
        max-width: 100%;
        border-radius: 0;
    }

}