/*
 Theme Name:     The7 Child Theme
 Description:    The7 Child Theme
 Template:       dt-the7
 Version:        1.0.0
*/


.team-card {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 50px;
}

.team-card__photo {
    flex: 0 0 41.6%;
    display: flex;
    justify-content: center;
}

.team-card__img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.team-card__body {
    flex: 1;
    padding-top: 10px;
}

.team-card__name {
    font-size: 22px;
    line-height: 32px;
    font-weight: bold;
    margin: 0 0 5px;
}

.team-card__role {
    font-size: 18px;
    line-height: 28px;
    font-weight: normal;
    margin: 0 0 25px;
}

.team-card__bio {
    font-size: 15px;
    line-height: 26px;
    font-weight: normal;
}

@media (max-width: 768px) {
    .team-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .team-card__photo {
        flex: none;
    }
}
