body {
    color: #000;
}

.hero-speakers,
.hero-speakers .container-fluid,
.hero-speakers .container-fluid .main-content {
    min-height: calc(100vh - var(--navbar-height));
}

body {
    background: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

.hero {
    /* padding: 30px 15px; */
}

.card-left {
    padding: 40px;
}

.speaker-name {
    color: #C3051E;
    font-weight: 700;

    font-weight: 700;
    font-style: Bold;
    font-size: 30px;
    line-height: 150%;
    letter-spacing: 0%;
    vertical-align: middle;

}

.speaker-role {
    font-weight: 700;
    margin-bottom: 20px;

    font-weight: 800;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0%;
    vertical-align: middle;
}

.speaker-bio {
    font-family: var(--font-actor);
    font-weight: 400;
    font-size: 22px;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: justify;
    vertical-align: middle;
    color: #111617;
    margin-bottom: 20px;
}

.topic-label {
    color: #C3051E;
    font-weight: 700;
    margin-top: 18px;

    font-style: Bold;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: justify;
    vertical-align: middle;
}

.speaker-topic {
    font-weight: 600;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: justify;
    vertical-align: middle;
}

.main-image-container {
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-left: 1px solid #eee;
}

.thumb {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all .15s;
    object-position: top;
}

.thumb:hover {
    transform: translateY(-3px);
}

.thumb.active {
    border-color: #c51b2b;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .15);
}

.thumb-list {
    gap: 10px;
    display: flex;
    align-items: center;
}

.bio {
    color: #333;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .main-image-container {
        height: 360px;
    }
}