.speaker-flex-row {
    display: flex;
    gap: 40px;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.speaker-box {
    position: relative;
    max-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.speaker-flex-row .speaker {
    min-height: 200px;
    overflow: hidden;
    border-radius: 0px 40px 0px 40px;
    background-color: rgba(225, 71, 51, .5);
}
.speaker-flex-row .speaker img {
    width: 100%;
    filter: saturate(0);
}
/* .speaker-flex-row center {
    display: flex;
    justify-content: center;
    overflow: hidden;
} */
.ts-speaker-info .ts-speaker-name {
    margin: 12px 0px 6px;
    color: #50555F;
    font-size: 18px;
    font-family: 'MesseUnivers-Bold';
}
.ts-speaker-info .ts-speaker-designation {
    margin: 0px;
    color: #8D8F95;
    font-size: 16px;
    font-family: 'MesseUnivers-Regular';
}
.ts-speaker-info .ts-speaker-designation b {
    margin-top: 16px;
    color: #8D8F95;
    font-family: 'MesseUnivers-Regular', 'Roboto';
}

.role-label {
    margin: 3px 6px;
    color: #363636;
    font-weight: normal;
    position: absolute;
    top: 0px;
    left: 6px;
    font-size: 13px;
    font-family: 'MesseUnivers-Regular', 'Roboto';
}

.section-para .bold {
    margin: 16px 0px 8px;
    font-weight: 700;
    color: rgb(48, 48, 48);
}  
.section-para p {
    font-size: 16.5px;
    font-weight: 300;
    color: #50565f;
}

.read-more-btn {
    font-family: 'MesseUnivers-Regular', 'Roboto';
    font-size: 14px;
    margin-top: 0px;
    padding: 4px 0px;
    border: none;
    background: none;
    color: var(--primary);
    cursor: pointer;
    padding: 0px 12px;
}

.bio-text {
    font-size: 12.5px;
    line-height: 20px;
    transition: max-height 0.9s ease, opacity 0.9s ease;
    overflow: hidden;
    display: block;
    margin: 0px;
    font-family: 'MesseUnivers-Regular', 'Roboto';
    color: var(--text);
    padding: 0px 12px;
}

.bio-text.is-short {
    max-height: 60px;
    opacity: 0.8;
}

.bio-text:not(.is-short) {
    max-height: 500px;
    opacity: 1;
}

/* Mobile Device */
@media (max-width : 479px) {
    .speaker-box {
        width: 137px;
    }
    .speaker-flex-row .speaker {
        min-height: 137px;
    }
}