.speaker-card {
    display: flex;
    gap: 30px;
}
.speaker-image {
    width: 50%;
}

.speaker-content {
    width: 50%;
}

.speaker-image img {
    width: 100%;
    height: 450px !important;
    object-fit: fill;
    border-radius: 10px !important;
}

h3.speaker-name {
    font-size: 63px;
    line-height: 76px;
    color: #2a548c;
    font-weight: 400;
    margin-bottom: 25px;
}

p.speaker-excerpt {
    font-size: 25px;
    letter-spacing: -1px;
    line-height: 32px;
    color: #2e2b2b;
    font-weight: 300;
}

.speaker-actions {
    display: inline-block;
    background-color: #2a528d;
    border-radius: 5px;
    padding: 10px 20px;
}

.speaker-actions a {
    font-size: 24px;
    line-height: 29px;
    font-weight: 400;
    color: #ffffff;
    text-align: center;
}

/* ========================================
   Slider Navigation Dots (Exact Image Match)
   ======================================== */

.slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    padding: 0 20px;
    position: relative;
    list-style: none;
}

.slider-dots.slick-dots li {
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    list-style: none;
}

.slider-dots.slick-dots li button {
    width: 20px;
    height: 0;
    border-radius: 50%;
    background: #2a528d !important;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 1 !important;
    position: relative;
    padding: 0;
    font-size: 0;
    line-height: 0;
}

.slider-dots.slick-dots li button:hover {
    background: #2a528d !important; 
}

.slider-dots.slick-dots li.slick-active button {
    background: #696969;
    opacity: 1;
    transform: scale(1);
    box-shadow: none;
}

/* Ensure only one dot is active at a time */
.slider-dots.slick-dots li:not(.slick-active) button {
    opacity: 1;
    background: #d3d3d3;
}

.slick-dots li button:before {
    font-family: slick;
    font-size: 22px;
    line-height: 22px;
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    content: '•';
    text-align: center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    opacity: 0.25;
    color: #2a528d !important;
}

.slider-dots.slick-dots {
    margin: 10px 0 0 0;
    padding: 0;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
    color: #2a528d !important;
}
.speaker-info {
    margin-bottom: 35px;
}

.speaker-actions:hover {
    background-color: #ffffff;
    border: 2px solid #2a528d;
    border-radius: 5px;
}

.speaker-actions:hover a {
    color: #2a528d;
}