.msud-carousel-wrapper-be8fbbcd {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
}
.msud-carousel-slide-be8fbbcd {
    display: none;
    animation: fadein 0.5s;
}
.msud-carousel-slide-be8fbbcd.active {
    display: block;
}
.msud-slide-inner-be8fbbcd {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}
.msud-slide-image-be8fbbcd {
    flex: 1 1 300px;
    max-width: 300px;
}
.msud-slide-image-be8fbbcd img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}
.msud-slide-content-be8fbbcd {
    flex: 2 1 300px;
}
.board-member-name {
    margin: 0 0 5px 0;
    font-size: 1.5rem;
}
.board-member-title {
    margin: 0 0 15px 0;
    font-weight: 500;
    color: #555;
}
.board-member-bio {
    line-height: 1.6;
}
.msud-carousel-controls-be8fbbcd {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 15px;
}
.msud-prev-btn-be8fbbcd, .msud-next-btn-be8fbbcd {
    background: #0073aa;
    color: #fff;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    border-radius: 4px;
}
.msud-dots-be8fbbcd {
    display: flex;
    gap: 8px;
}
.msud-dot-be8fbbcd {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    cursor: pointer;
    padding: 0;
}
.msud-dot-be8fbbcd.active {
    background: #0073aa;
}
@keyframes fadein {
    from { opacity: 0; }
    to { opacity: 1; }
}