@charset "UTF-8";

.interview__content {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 60px;
}

.interview__intro, 
.interview__section-title,
.interview__step{
    display: inline-block;
    border: 1px solid #000000;
    padding: 5px 3px;
}

#contents .interview__content h1.interview__title {
    font-size: 20px;
    text-align: left;
    color: #000;
}

.interview__teacher-name {
    font-weight: bold;
}

.interview__image {
    flex-shrink: 0;
    width: 280px;
}

#contents .interview__body .interview__copy {
    font-size: 25px;
    text-align: left;
    font-weight: bold;
    color: #000;
}

.interview__reason,
.interview__summary{
    display: inline-block;
    border-bottom: 1px solid #000000;
}

.interview__text + .interview__text {
    margin-top: 20px;
}

.interview__notes {
    margin-top: 40px;
}

.interview__heading {
    font-weight: bold;
}

@media screen and (max-width: 736px) {

.interview__content {
    flex-direction: column-reverse;
}

.interview__image {
    width: 190;
    margin-inline: auto;
}

#contents .interview__body .interview__copy {
    font-size: 20px;
}

}