.presentation__container {
    display: flex;
    justify-content: space-between;
    gap: 80px;
}

.presentation__info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.presentation__text {
    display: flex;
    flex-direction: column;
    max-width: 700px;
}

.presentation__title {
    word-wrap: break-word;
    color: var(--titles, #333338);
    font-size: 28px;
    font-weight: 600;
    line-height: 38px;
}

.presentation__subtitle {
    word-wrap: break-word;
    color: var(--text, #555558);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.presentation__link {
    margin-top: 32px;
    font-size: 16px;
}

.presentation__speakers {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.speaker {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 309px;
}

.speaker__image {
    border-radius: 20px;
    max-width: 309px;
    min-height: 309px;
    object-fit: cover;
}

.speaker__name {
    margin-top: 20px;
    color: var(--titles, #333338);
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
}

.speaker__post {
    margin-top: 8px;
    color: var(--text, #555558);
    font-size: 15px;
    font-weight: 400;
    line-height: 25px;
}

.-adapt {
    flex-wrap: nowrap;
}

.speakers-adapt {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(309px, 1fr));
}

.speakers-adapt--big .speaker__image {
    width: 100vw;
    max-height: 319px;
    min-width: 100%;
}

.speakers-adapt--big .speaker {
    max-width: none;
}

@media screen and (max-width: 993px) {
    .presentation__text{
        align-items: center;
    }
    .presentation__links{
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .presentation__info{
        align-items: center;
    }

    .presentation__container {
        flex-direction: column;
        /* flex-wrap: wrap; */
    }

    .speaker {
        max-width: none;
        width: 100%;
    }

    .speaker__image {
        max-width: 100%;
        width: 100%;
    }

    .speaker__name, .speaker__post {
        text-align: center;
        width: 100%;
    }

    .speakers-adapt--big .speaker__image {
        max-height: none;
        min-width: 100%;
    }
}

@media screen and (max-width: 568px) {
    .presentation__speakers {
        flex-direction: column;
    }

    .speaker {
        width: 100%;
    }
}