/**************

common

**************/

.instructor {
    padding-top: 80px;
}

@media screen and (max-width: 720px) {
    .instructor {
        padding-top: 12vw;
    }
}

/**************

list

**************/

.instructor__list {
    display: flex;
    flex-direction: column;
}

.instructor__box {
    align-items: center;
    display: flex;  
    justify-content: space-between;
}

.instructor__name h3,
.instructor__name p {
    font-weight: 600;
}

.instructor__txt {
    display: flex;
    flex-direction: column;
    row-gap: 56px;
    justify-content: flex-end;
    width: 52%;
}

.instructor__thumb {
    height: 680px;
    width: 44%;
}

.instructor__thumb img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.instructor__detail dl {
    border-top: 1px solid #D5D5D5;
    display: flex;
}

.instructor__detail dl:last-child {
    border-bottom: 1px solid #D5D5D5;   
}

.instructor__detail dl dt {
    font-weight: 600;
    padding: 16px 16px;
    width: 30%;
}

.instructor__detail dl dd {
    font-weight: 600;
    padding: 16px 16px;
    width: 70%;
}

.instructor__detail dl dd ul {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
}

.instructor__detail dl dd ul li {
    display: flex; 
    justify-content: space-between;
}

.instructor__detail dl dd ul li:before {
    content: "";
    width: 8px;
    height: 8px;
    display: block;
    background-color: #1c1c1c;
    border-radius: 50%;
    position: relative;
    top: 8px;  
}

.instructor__detail dl dd ul li p {
    font-weight: 600;
    width: 95%;
}

.instructor__detail dl dd a.btn {
    align-items: center;
    border-radius: 50%;
    border: 1px solid #1c1c1c;
    display: flex;
    font-size: 28px;
    justify-content: center;
    transition: .2s;
    height: 56px;
    width: 56px;
}

.instructor__detail dl dd a.btn:hover {
    background-color: #1c1c1c;
    color: #ffffff;
}

@media screen and (max-width: 720px) {
    .instructor__box {
        flex-direction: column;
        row-gap: 8vw;
    }
    .instructor__thumb {
        height: 100vw;
        width: 100%;
    }  
    .instructor__txt {
        row-gap: 4.8vw;
        width: 100%; 
    }  
    .instructor__detail dl dt {
        padding: 4.0vw 2.1vw;
        font-size: 3.8vw;
        width: 24%;
    }
    .instructor__detail dl dd {
        font-weight: 400;
        padding: 4.0vw 2.1vw;
        width: 76%;
    }  
    .instructor__detail dl dd ul li:before {
        width: 1.2vw;
        height: 1.2vw;
        top: 3vw;
    }  
    .instructor__detail dl dd ul li p {
        font-weight: 500;
    }   
    .instructor__detail dl dd a.btn {
        font-size: 6.8vw;
        height: 14vw;
        width: 14vw;
    }    
    .instructor__name h3 {
        font-size: 6vw;
    } 
}