.keynote-speaker {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 
      segoe ui, Roboto, Helvetica, Arial, 
      sans-serif;
    padding: 30px 30px 12%;
    background-color: white;
}

.keynote-speaker .speaker {
    font-weight: 600;
    font-size: var(--small-size);
    margin-bottom: 30px;
}

.speaker-introduce { padding-right: 50px !important; }

.speaker-introduce p {
    -ms-word-break: break-all;
    word-break: break-all;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 7;
    max-height: calc(7em * 1.5);
}

.speaker-image .speaker-image-box {
    padding-bottom: 114.9%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.other-information img { width: 100%; }

.other-information {
    --radius-size: 15px;
    --radius-blur: 17px;
    --box-bg: var(--font-brown);
    margin-top: -12%;
    padding: 30px 50px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 
      segoe ui, Roboto, Helvetica, Arial, 
      sans-serif;;
    color: var(--font-white);
}

.other-information p + p { margin-top: 16px; }

.other-information-left > .common-component-shape-box-wrapper {
    --radius-size: 15px;
    --radius-blur: 17px;
    --box-bg: var(--font-brown);
    margin-right: 50px;
    padding: 50px;
}

.other-information-right {
    padding: 40px !important;
    background-color: var(--font-brown);
}

@media (max-width: 1199px) {

    .speaker-introduce p {
        -webkit-line-clamp: 8;
        max-height: calc(8em * 1.5);
    }

    .other-information {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 991px) {

    .speaker-introduce p {
        -webkit-line-clamp: 6;
        max-height: calc(6em * 1.5);
    }
}

@media (max-width: 767px) {
    :root {
        --minimum-size: 16px;
    }

    .speaker-introduce { padding-right: 0 !important; margin-bottom: 30px; }

    .speaker-introduce p {
        -webkit-line-clamp: unset;
        max-height: unset;
    }

    .other-information { padding: 30px 0; }

    .other-information-left > .common-component-shape-box-wrapper {
        margin-right: 0;
    }

    .keynote-speaker { padding-bottom: 30px; }

    .other-information { margin-top: 0; }

    .other-information-right { margin-top: 30px; }
}