.speakers {
    background: var(--white);
    padding: clamp(60px, 6.25vw, 120px) 0;
}

.speakers__wrapper {
    display: flex;
    flex-direction: column;
    gap: clamp(32px, 3.33vw, 64px);
    margin-bottom: clamp(32px, 3.33vw, 64px);
}

.speakers__title {
    font-family: PP Neue Montreal, sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: clamp(32px, 2.92vw, 56px);
    leading-trim: none;
    line-height: 1.3;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    color: var(--gray-100);
}

.speakers__items-container {
    position: relative;
    max-height: clamp(530px, 44vw, 852px);
    overflow: hidden;
    transition: max-height 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.speakers__items-container.is-expanded {
    max-height: 3000px;
}

.speakers__items-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: clamp(100px, 8.33vw, 160px);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 60%, var(--white) 100%);
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s;
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.speakers__items-container.is-expanded::after {
    opacity: 0;
    visibility: hidden;
}

.speakers__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(40px, 5vw, 96px) clamp(40px, 4.16vw, 80px);
    padding-bottom: clamp(60px, 6.25vw, 120px);
}

.speakers__items-item {
    display: flex;
    flex-direction: row;
    gap: clamp(16px, 1.67vw, 32px);
    align-items: flex-start;
}

.speakers__items-item .img-wrapper {
    width: clamp(180px, 13.75vw, 264px);
    height: clamp(180px, 13.75vw, 264px);
    background: #48E451;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.speakers__items-item .img-wrapper img {
    width: clamp(166px, 12.7vw, 244px);
    height: clamp(166px, 12.7vw, 244px);
    border-radius: 100%;
    object-fit: cover;
}

.speakers__items-item .text-section {
    display: flex;
    flex-direction: column;
    gap: clamp(12px, 1.45vw, 28px);
    height: 100%;
}

.speakers__items-item .text-section .glob-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.speakers__items-item .text-section .glob-info .name {
    font-family: PP Neue Montreal, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(22px, 1.66vw, 32px);
    leading-trim: none;
    line-height: 1.3;
    letter-spacing: 0%;
    color: var(--gray-100);
}

.speakers__items-item .text-section .glob-info .possition,
.speakers__items-item .text-section .glob-info .position {
    font-family: Nib Pro, sans-serif;
    font-weight: 400;
    font-style: italic;
    font-size: clamp(16px, 1.04vw, 20px);
    leading-trim: none;
    line-height: 1.5;
    letter-spacing: 0%;
    color: var(--gray-90);
}

.speakers__items-item .text-section .desc {
    font-family: PP Neue Montreal, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(14px, 0.94vw, 18px);
    leading-trim: none;
    line-height: 1.4;
    letter-spacing: 0%;
    color: var(--gray-80);
}

.speakers__toggle-btn {
    margin: clamp(20px, 2vw, 40px) auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: none;
    border: none;
    padding: 0;
    font-family: PP Neue Montreal, sans-serif;
    font-weight: 400;
    font-size: clamp(16px, 0.94vw, 18px);
    line-height: 1.4;
    color: var(--gray-90);
    cursor: pointer;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.speakers__toggle-btn:hover {
    color: var(--gray-100);
}

.speakers__toggle-btn svg {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.speakers__navigation {
    display: none;
}

@media (min-width: 1025px) {
    .speakers__slider {
        overflow: visible;
    }

    .speakers__items,
    .speakers__items.swiper-wrapper {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: clamp(40px, 4.17vw, 80px) clamp(24px, 2.5vw, 48px) !important;
        transform: none !important;
        width: auto !important;
    }

    .speakers__items-item,
    .speakers__items-item.swiper-slide {
        width: auto !important;
        height: auto !important;
        margin: 0 !important;
        flex-direction: row !important;
        align-items: flex-start !important;
        text-align: left !important;
    }

    .speakers__items-item .img-wrapper {
        width: clamp(180px, 13.75vw, 264px);
        height: clamp(180px, 13.75vw, 264px);
        aspect-ratio: auto;
    }

    .speakers__items-item .img-wrapper img {
        width: clamp(166px, 12.7vw, 244px);
        height: clamp(166px, 12.7vw, 244px);
        border-radius: 100%;
        object-fit: cover;
    }

    .speakers__navigation {
        display: none !important;
    }
}

@media (max-width: 1024px) {
    .speakers {
        padding: clamp(48px, 10vw, 80px) 0;
    }

    .speakers__wrapper {
        margin-bottom: clamp(24px, 6vw, 40px);
    }

    .speakers__title {
        font-size: clamp(28px, 7vw, 40px);
        text-align: center;
    }

    .speakers__items-container {
        max-height: none !important;
        overflow: visible !important;
    }

    .speakers__slider {
        width: 100%;
        overflow: hidden;
        position: relative;
    }

    .speakers__items,
    .speakers__items.swiper-wrapper {
        display: flex;
        flex-direction: row;
        gap: 0 !important;
        padding-bottom: 0 !important;
        width: 100%;
        margin: 0;
        max-width: none;
        box-sizing: border-box;
    }

    .speakers__items-item,
    .speakers__items-item.swiper-slide {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
        flex-shrink: 0;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: clamp(14px, 3vw, 18px);
    }

    .speakers__items-item .img-wrapper {
        width: 100%;
        max-width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        background: #48E451;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
    }

    .speakers__items-item .img-wrapper img {
        width: 84%;
        height: 84%;
        border-radius: 50%;
        object-fit: cover;
    }

    .speakers__items-item .text-section {
        align-items: flex-start;
        text-align: left;
        width: 100%;
        gap: 8px;
    }

    .speakers__items-item .text-section .glob-info {
        gap: 4px;
        align-items: flex-start;
        text-align: left;
    }

    .speakers__items-item .text-section .glob-info .name {
        font-size: clamp(20px, 5vw, 26px);
        text-align: left;
        font-weight: 500;
    }

    .speakers__items-item .text-section .glob-info .possition,
    .speakers__items-item .text-section .glob-info .position {
        font-size: clamp(14px, 3.5vw, 16px);
        text-align: left;
    }

    .speakers__items-item .text-section .desc {
        font-size: clamp(13px, 3.4vw, 15px);
        line-height: 145%;
        text-align: left;
        color: var(--gray-80);
    }

    .speakers__navigation {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 16px;
        margin-top: clamp(24px, 6vw, 36px);
    }

    .speakers__arrow {
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid var(--gray-40, #ccc);
        background: transparent;
        cursor: pointer;
        border-radius: 50%;
        color: var(--gray-90);
        transition: border-color 0.3s ease, color 0.3s ease;
    }

    .speakers__arrow:hover {
        border-color: #000;
        color: #000;
    }

    .speakers__arrow svg {
        width: 22px;
        height: auto;
        display: block;
    }

    .speakers__arrow.swiper-button-disabled {
        opacity: 0.35;
        cursor: not-allowed;
    }

    .speakers__arrow.swiper-button-lock {
        display: none !important;
    }

    .speakers__toggle-btn {
        display: none !important;
    }

    .speakers__items-container::after {
        display: none;
    }
}
