\
.rp-blog-slider-wrap {
    position: relative;
    margin: 0 0 2rem;
}

.rp-blog-slider {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: #050607;
}

.rp-carousel-item {
    position: relative;
}

.rp-slide-shell {
    position: relative;
    min-height: 420px;
    background: #050607;
}

.rp-slide-media,
.rp-slide-scrim {
    position: absolute;
    inset: 0;
}

.rp-slide-image,
.rp-slide-placeholder {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    object-position: center center;
}

.rp-slide-placeholder {
    background:
        radial-gradient(circle at 25% 25%, rgba(255,255,255,.08), transparent 30%),
        linear-gradient(135deg, #15181b, #090a0b);
}

.rp-slide-scrim {
    background: linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.46) 38%, rgba(0,0,0,.18) 100%);
    pointer-events: none;
}

.rp-slide-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 370px;
    max-width: 760px;
    padding: 2rem;
    color: #fff;
}

.rp-cats {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin: 0 0 1rem;
}

.rp-cat {
    display: inline-flex;
    align-items: center;
    padding: .3rem .7rem;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.22);
    color: #fff;
    font-size: .78rem;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .03em;
}

.rp-title {
    margin: 0 0 .75rem;
    color: #fff;
    font-size: clamp(1.25rem, 3.5vw, 2rem);
    line-height: 1.04;
}

.rp-title a,
.rp-title a:hover,
.rp-title a:focus {
    color: inherit;
    text-decoration: none;
}

.rp-excerpt {
    max-width: 54ch;
    margin: 0 0 1rem;
    color: rgba(255,255,255,.92);
    font-size: 1rem;
    line-height: 1.55;
}

.rp-readmore {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    min-height: 48px;
    padding: .75rem 1.1rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.9);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}

.rp-readmore:hover,
.rp-readmore:focus {
    background: #fff;
    border-color: #fff;
    color: #111;
}

.rp-control {
    width: auto;
    opacity: 1;
}

.rp-control.carousel-control-prev {
    left: 24px;
}

.rp-control.carousel-control-next {
    right: 24px;
}

.rp-control-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 2px solid rgba(255,255,255,.55);
    background: rgba(255,255,255,.16);
    backdrop-filter: blur(3px);
}

.rp-arrow {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
}

.rp-prev {
    transform: rotate(-135deg);
    margin-left: 8px;
}

.rp-next {
    transform: rotate(45deg);
    margin-right: 8px;
}

.rp-indicators {
    right: auto;
    bottom: 24px;
    left: 24px;
    justify-content: flex-start;
    gap: 12px;
    margin: 0;
}

.rp-indicators [data-bs-target] {
    width: 72px;
    height: 6px;
    margin: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,.32);
    opacity: 1;
}

.rp-indicators .active {
    background: #fff;
}

@media (max-width: 991px) {
    .rp-slide-shell,
    .rp-slide-image,
    .rp-slide-placeholder,
    .rp-slide-content {
        min-height: 450px;
    }

    .rp-slide-content {
        padding: 1.5rem;
    }

    .rp-control-circle {
        width: 72px;
        height: 72px;
    }

    .rp-arrow {
        width: 16px;
        height: 16px;
    }

    .rp-indicators [data-bs-target] {
        width: 52px;
    }
}

@media (max-width: 767px) {
    .rp-slide-shell,
    .rp-slide-image,
    .rp-slide-placeholder,
    .rp-slide-content {
        min-height: 400px;
    }

    .rp-slide-content {
        padding: 1.25rem;
    }

    .rp-control.carousel-control-prev {
        left: 12px;
    }

    .rp-control.carousel-control-next {
        right: 12px;
    }

    .rp-control-circle {
        width: 56px;
        height: 56px;
    }

    .rp-indicators {
        left: 16px;
        bottom: 16px;
        gap: 8px;
    }

    .rp-indicators [data-bs-target] {
        width: 36px;
        height: 5px;
    }
}
