.speaker {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    gap: 40px;
}

.speaker-description {
    line-height: 1.45;
    font-size: 20px;
}

.speaker-photo img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 15px;
    display: block;
    outline: black 1px solid;
}

@media screen and (max-width: 768px) {
    .speaker {
        flex-direction: column;
    }

    .speaker-photo img {
        margin-top: 20px;
    }
}