.doctors-detail__header {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.doctors-detail__image {
    max-width: calc(50% - 10px);
    width: auto;
    height: fit-content;
    border-radius: 20px;
    overflow: hidden;
}

.doctors-detail__header-info {
    width: calc(50% - 10px);
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex-grow: 1;
}

.doctors-detail__position {
    font-size: 30px;
    line-height: normal;
}

.doctors-detail__time {
    display: flex;
    gap: 30px;
}

.doctors-detail .typography .frame {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.doctors-detail__header-info .typography .frame {
    margin-bottom: 0;
}

.doctors-detail .typography .frame h2 {
    font-size: 30px;
    line-height: normal;
}

.doctors-detail__content .frame:nth-child(odd) {
    background: #fffbcc;
}

@media (max-width: 1200px) {
    .doctors-detail__position {
        font-size: 24px;
    }

    .doctors-detail__time {
        flex-direction: column;
        gap: 20px;
    }

    .doctors-detail .typography .frame h2 {
        font-size: 24px;
    }
}

@media (max-width: 991px) {
    .doctors-detail__header {
        flex-direction: column;
        align-items: center;
    }

    .doctors-detail__image {
        display: flex;
        justify-content: center;
    }

    .doctors-detail__header-info {
        width: 100%;
    }

    .doctors-detail__time {
        flex-direction: row;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .doctors-detail__image {
        max-width: unset;
        width: 100%;
    }

    .doctors-detail__image img {
        width: 100%;
    }
}

@media (max-width: 570px) {
    .doctors-detail__time {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {

}
