.splide {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}
.splide__progress {
    width: 100%;
    position: relative;
    bottom: 0;
    left: 0;
}
.splide__progress__bar {
    background: #4893ff;
    height: 5px;
    width: 0%;
    transition: width 0.1s linear;
}
.splide__slide {
    position: relative;
}
.splide__slide img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.lnkLearnMore {
    position: absolute;
    bottom: 12px;
    right: 12px;
    z-index: 5;
    background: #4893ff;
    color: #fff;
    padding: 5px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s ease-in-out;
}

.lnkLearnMore:hover {
    background: #143464;
    color: #fff;
}

.lnkLearnMoreLeft {
	left: 12px !important;
	right: initial !important;
}

/* Pagination */
.splide__pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 15px;
	position: relative;
	z-index: 5;
}
.splide__pagination__page {
    width: 40px;
    height: 10px;
    background: rgba(0,0,0,0.6);
    border-radius: 2px;
    opacity: 1;
}
.splide__pagination__page.is-active {
    background: #4893ff;
    transform: scaleX(1);
}
/* Play/Pause */
.splide__toggle {
    position: absolute;
    left: 0px;
    bottom: 0px;
    background: rgba(0, 0, 0, 0.6);
    color: #4893ff;
    border: none;
    padding: 5px;
    border-radius: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
	z-index: 5;
}
/* Force the correct icon visibility */
.splide__toggle__play,
.splide__toggle__pause {
    pointer-events: none; /* prevent click issues */
}

.splide__toggle__play {
    display: inline-block;
}

.splide__toggle__pause {
    display: none;
}

/* When Splide adds .is-active (autoplay running) */
.splide__toggle.is-active .splide__toggle__play {
    display: none !important;
}

.splide__toggle.is-active .splide__toggle__pause {
    display: inline-block !important;
}

/* When paused (no .is-active) */
.splide__toggle:not(.is-active) .splide__toggle__play {
    display: inline-block !important;
}

.splide__toggle:not(.is-active) .splide__toggle__pause {
    display: none !important;
}