.doctor-intro {
    background-color: #EFF0F0;
}

.doctor-intro__link {
    display: block;
    position: relative;
    transition: opacity ease .5s;
}

.doctor-intro__link::before {
    content: '';
    background: url(/images/doctor-detail-play.svg) no-repeat center center;
    width: 80px;
    height: 80px;
    display: block;
    position: absolute;
    top: calc(50% - 40px);
    left: calc(50% - 40px);
}

.doctor-intro__link:hover {
    opacity: .9;
}

.doctor-intro__img {
    width: 100%;
    height: 392px;
    object-fit: cover;
    object-position: top;
    display: block;
}

.doctor-intro__content {
    padding: 20px;
}

.doctor-intro__heading {
    font-family: 'Halvar Breitschrift';
    font-size: 34px;
    line-height: 1.29;
    letter-spacing: -0.01em;
    color: #000;
    font-weight: 400;
    margin: 0 0 15px;
}

.doctor-intro__spec {
    font-weight: 500;
    font-size: 15px;
    line-height: 1.6;
    text-transform: uppercase;
    color: #A38800;
    margin-bottom: 4px;
}

.doctor-intro__exp {
    font-family: 'Cera Pro';
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.33;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 0;
}

.doctor-intro__button {
    font-weight: 500;
    font-size: 15px;
    line-height: 1.33;
    color: #fff;
    padding: 18px 24px;
    text-align: center;
    background-color: #BDA10F;
    border-radius: 28px;
    width: 100%;
    border: 0;
    cursor: pointer;
    margin-top: 30px;
    margin-bottom: 30px;
    transition: opacity ease .5s;
}

.doctor-intro__button:hover {
    opacity: .8;
}

.doctor-intro__collapse .collapse__term {
    font-weight: 500;
    font-size: 17px;
    line-height: 1.06;
    padding-top: 23px;
    padding-bottom: 23px;
}

@media screen and (min-width: 720px) {
    .doctor-intro {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 40px;
        padding: 40px;
        align-items: start;
    }

    .doctor-intro__link {
        order: 2;
    }

    .doctor-intro__img {
        height: 350px;
        order: 2;
    }

    .doctor-intro__content {
        order: 1;
    }

    .doctor-intro__button {
        max-width: 238px;
    }
}

@media screen and (min-width: 768px) {
    .doctor-intro {
        padding-top: 0;
    }

    .doctor-intro__content {
        padding-top: 0;
        padding-left: 0;
        padding-bottom: 0;
    }
}

@media screen and (min-width: 1024px) {
    .doctor-intro__img {
        height: 450px;
    }
}

@media screen and (min-width: 1280px) {

    .doctor-intro {
        padding: 0 80px 50px;
        column-gap: 64px;
        grid-template-columns: 64fr 36fr;
    }

    .doctor-intro__link {
        justify-self: start;
    }

    .doctor-intro__img {
        max-width: 312px;
        height: auto;
        justify-self: start;
    }

    .doctor-intro__heading {
        font-size: 44px;
        line-height: 1.27;
    }
}

@media screen and (min-width: 1366px) {
    .doctor-intro {
        padding-bottom: 80px;
    }

    .doctor-intro__img {
        max-width: 82%;
    }
}