.bps-slider-wrapper {
    position: relative;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    background: #f3f3f3;
}

.bps-slider-wrapper:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 4px;
}

.bps-viewport {
    width: 100%;
}

.bps-track {
    width: 100%;
}

.bps-slide {
    width: 100%;
    box-sizing: border-box;
}

.bps-slide-inner {
    display: flex;
    align-items: center;
    gap: 34px;
}

.bps-layout-image-right .bps-slide-inner {
    flex-direction: row-reverse;
}

.bps-image,
.bps-info {
    width: 50%;
    min-width: 0;
}

.bps-post-image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 8px;
}

.bps-title {
    margin: 0 0 22px;
    color: #1b1b1b;
    line-height: 1.15;
}

.bps-excerpt {
    margin: 0;
    color: #333333;
    line-height: 1.7;
}

.bps-excerpt-mobile {
    display: none;
}

.bps-button-wrapper {
    margin-top: 24px;
}

.bps-read-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 12px 24px;
    background: #002b49;
    color: #ffffff;
    text-decoration: none;
    border: 1px solid #002b49;
    border-radius: 0;
    transition: opacity 0.2s ease-in-out;
}

.bps-read-more:hover,
.bps-read-more:focus-visible {
    opacity: 0.9;
    color: #ffffff;
    text-decoration: none;
}

.bps-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-top: 34px;
}

.bps-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.bps-dot {
    width: 18px;
    height: 18px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #d9d9d9;
    cursor: pointer;
    transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
}

.bps-dot.is-active,
.bps-dot[aria-selected="true"] {
    background: #c9ac77;
}

.bps-arrow {
    width: 62px;
    height: 62px;
    min-width: 62px;
    min-height: 62px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #c9ac77;
    background: transparent;
    color: #c9ac77;
    border-radius: 999px;
    cursor: pointer;
    font-size: 40px;
    line-height: 1;
    transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
}

.bps-arrow:hover,
.bps-dot:hover {
    opacity: 0.85;
}

.bps-arrow span {
    position: relative;
    top: -1px;
}

.bps-arrow:focus-visible,
.bps-dot:focus-visible,
.bps-read-more:focus-visible,
.bps-toggle-autoplay:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 3px;
}

.bps-autoplay-control {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.bps-toggle-autoplay {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 18px;
    border: 1px solid #c9ac77;
    background: transparent;
    color: #c9ac77;
    cursor: pointer;
    border-radius: 999px;
    transition: opacity 0.2s ease-in-out;
}

.bps-toggle-autoplay:hover {
    opacity: 0.85;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px,1px,1px,1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal;
}

@media (max-width: 767px) {
    .bps-slide-inner,
    .bps-layout-image-right .bps-slide-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .bps-image,
    .bps-info {
        width: 100%;
    }

    .bps-excerpt-desktop {
        display: none;
    }

    .bps-excerpt-mobile {
        display: block;
    }

    .bps-navigation {
        gap: 16px;
        flex-wrap: wrap;
    }

    .bps-arrow {
        width: 50px;
        height: 50px;
        min-width: 50px;
        min-height: 50px;
        font-size: 30px;
    }

    .bps-dot {
        width: 14px;
        height: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .bps-read-more,
    .bps-dot,
    .bps-arrow,
    .bps-toggle-autoplay {
        transition: none;
    }
}