.speakers {
    background: #F5F5F5;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    column-gap: 2rem;
    padding: 3rem;
}

.speakers-container {
    display: flex;
    gap: 1.8rem;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin: 3rem 0;
    flex-wrap: wrap;
    max-width: 1400px;
    flex-direction: column;
}

.speaker {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #ffffff;
    width: 100%;
    padding: 2rem;
}

.speaker-image {
    object-fit: contain;
    object-position: center;
    height: 13rem;
    width: 100%;
}

.speaker-info {
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 1rem;
}

.speaker-info .small-text {
    overflow-y: hidden;
    transition: max-height 0.3s ease;
}

.speaker-info-hide {
    padding: 0;
    max-height: 0;
    transition: max-height 0.3s ease;
}

.speaker-extend {
    color: #FF5D20;
    background-color: #ffffff;
    font-family: 'KoHo', sans-serif;
    padding: 0;
}

.speaker-extend:hover, .speaker-extend:focus {
    color: #606060;
    background-color: #ffffff;
}

.speaker-extend:focus {
    border: 1px solid #000000;
}

.speaker-name {
    font-size: 1rem;
    font-weight: 500;
    padding-bottom: 0rem;
    color: #000000;
}

.speaker-toggles {
    display: flex;
    column-gap: 1rem;
    justify-content: center;
    align-items: center;
}

.speaker-toggle {
    height: 1rem;
    width: 1rem;
    border-radius: 50%;
    background: #d9d9d9;
}

.toggled {
    background: #606060 !important;
}

@media only screen and (min-width: 960px) {
    .speakers-container {
        flex-direction: row;
        align-items: flex-start;
    }

    .speaker {
        column-gap: 2rem;
        width: 20rem;
        height: min-content;
    }

    .speaker-info {
        align-items: flex-start;
    }

    .speaker-image {
        width: auto;
    }
}