.doctorArea{
    width:100%;
    padding:70px 0 90px;
}

.doctorWrap{
    width:100%;
    max-width:1200px;
    margin:0 auto;
    padding:0 30px;
    box-sizing:border-box;
}

.doctorItem{
    display:flex;
    align-items:stretch;
    margin-bottom:36px;
    background:rgba(255,255,255,0.42);
    border:1px solid rgba(95,75,58,0.12);
    box-sizing:border-box;
}

.doctorPhoto{
    width:34%;
    overflow:hidden;
}

.doctorPhoto img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:0.6s;
}

.doctorItem:hover .doctorPhoto img{
    transform:scale(1.04);
}

.doctorInfo{
    width:66%;
    padding:38px 45px;
    box-sizing:border-box;
}

.doctorBranch{
    font-size:13px;
    color:#9b7b62;
    letter-spacing:2px;
    margin-bottom:10px;
}

.doctorName{
    font-size:28px;
    font-weight:500;
    color:#433830;
    letter-spacing:2px;
    margin-bottom:18px;
    padding-bottom:16px;
    border-bottom:1px solid rgba(67,56,48,0.12);
}

.doctorIntro{
    font-size:15px;
    line-height:2;
    color:#655a53;
    margin-bottom:22px;
}

.doctorList{
    margin:0;
    padding:0;
    list-style:none;
}

.doctorList li{
    font-size:14px;
    line-height:2;
    color:#5d5048;
    padding-left:18px;
    position:relative;
}

.doctorList li:before{
    content:"";
    width:5px;
    height:5px;
    background:#b89f8c;
    border-radius:50%;
    position:absolute;
    left:0;
    top:13px;
}

@media screen and (max-width:768px){


.doctorArea{
    width:100%;
    padding:30px 0 30px;
}  

.doctorItem{
    flex-direction:column;
}

.doctorPhoto,
.doctorInfo{
    width:100%;
}

.doctorInfo{
    padding:28px 24px;
}

.doctorName{
    font-size:24px;
}

}









.doctorBottom{
    margin-top:35px;
    padding-top:28px;
    border-top:1px solid rgba(67,56,48,0.08);
}

.doctorTags{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:28px;
}

.doctorTags span{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 18px;
    border:1px solid rgba(184,159,140,0.35);
    font-size:13px;
    color:#7a6a60;
    letter-spacing:1px;
    line-height:1;
    transition:0.4s;
    background:rgba(255,255,255,0.35);
}

.doctorTags span:hover{
    background:#b89f8c;
    border-color:#b89f8c;
    color:#fff;
}

.doctorQuote{
    font-size:18px;
    line-height:2;
    color:#8d7d72;
    font-weight:300;
    letter-spacing:2px;
    font-style:italic;
}

@media screen and (max-width:768px){

.doctorBottom{
    margin-top:28px;
    padding-top:24px;
}

.doctorTags{
    gap:10px;
    margin-bottom:22px;
}

.doctorTags span{
    padding:9px 14px;
    font-size:12px;
}

.doctorQuote{
    font-size:15px;
    line-height:1.9;
    letter-spacing:1px;
}

}