.instructor-page {
    padding-top: 64px;
    padding-bottom: 64px;
}
@media (min-width: 992px) {
    .instructor-page {
        padding-top: 96px;
        padding-bottom: 96px;
    }
}
.instructor-info {
    border-bottom: 1px solid #E9EAEB;
    margin: 0;
}
.instructor-info__photo-wrapper {
    position: relative;
    display: inline-block;
}
.instructor-info__photo {
    --size-mobile: 96px;
    --size-desktop: 160px;
    position: relative;
    max-width: var(--size-mobile);
    max-height: var(--size-mobile);
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    padding: 4px;
    overflow: hidden;
    background: white;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 4px 4px -2px rgba(10, 13, 18, 0.04), 0 24px 48px -12px rgba(10, 13, 18, 0.18);
}
@media (min-width: 992px) {
    .instructor-info__photo {
        max-width: var(--size-desktop);
        max-height: var(--size-desktop);
        padding: 6px;
    }
}
.instructor-info__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.08);
}
.instructor-info__badge {
    width: 24px;
    height: 24px;
    position: absolute;
    bottom: 4px;
    right: 8px;
}
@media (min-width: 992px) {
    .instructor-info__badge {
        width: 32px;
        height: 32px;
    }
}
.instructor-info__name {
    font-size: 20px;
    line-height: 30px;
    font-family: 'SSTProBold', sans-serif;
    margin-bottom: 2px;
    color: #181D27;
}
@media (min-width: 992px) {
    .instructor-info__name {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 4px;
    }
}
.instructor-info__title {
    font-size: 16px;
    line-height: 24px;
    color: #535862;
}
.instructor-info__bio,
.instructor-info__bio ~ p {
    font-size: 16px;
    line-height: 24px;
    color: #535862;
}

.instructor-info__socials {
    gap: 16px;
    margin-top: 10px;
}
@media (min-width: 992px) {
    .instructor-info__socials {
        margin-top: 16px;
    }
}

.instructor-info__socials > a:hover {
    text-decoration: none;
    opacity: 0.7;
    transition: .2s ease;
}
