.speakers {
    display: flex;
    flex-direction: column;
    margin: 160px 0;
    align-items: center;
}

.speakers .title {
    text-align: center;
    margin-bottom: 40px;
}

.speakers .speakers__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 73px;
    max-width: 939px;
    margin: 0 auto;
    margin-bottom: 40px;
}

.speakers .speakers__photo-wrap {
    aspect-ratio: 433/452;
    width: 100%;
    border: 1px solid #B9DCFF;
    background-color: #F1F8FF;
    border-radius: 44px;
    overflow: hidden;
    box-shadow: -91px 138px 66px rgba(173, 201, 255, 0.01),
        -51px 78px 56px rgba(173, 201, 255, 0.05),
        -23px 34px 41px rgba(173, 201, 255, 0.09),
        -6px 9px 23px rgba(173, 201, 255, 0.1);
}

.speakers .speakers__name {
    color: var(--Secondary-500-Text-Heading, #474766);
    font-size: 32px;
    font-weight: 700;
    line-height: 140%;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin-top: 16px;
}

.speakers .speakers__list {
    color: var(--Secondary-400-Text-Base, #8787AB);
    font-size: 24px;
    font-weight: 400;
    line-height: 130%;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    list-style: disc;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.speakers .speakers__list li {
    margin-left: 35px;
}

.speakers .speakers__photo {
    width: 100%;
    height: auto;
    margin-top: auto;
}

@media screen and (max-width: 1200px) {
    .speakers .speakers__name {
        font-size: 28px;
    }

    .speakers .speakers__list {
        font-size: 20px;
        gap: 20px;
        margin-top: 16px;
    }

    .speakers .speakers__list li {
        margin-left: 25px;
    }

    .speakers .speakers__grid {
        gap: 35px;
    }
}

@media screen and (max-width: 650px) {
    .speakers .speakers__grid {
        display: flex;
        flex-direction: column;
    }

    .speakers {
        margin: 80px 0;
    }
}
