.bwa-articles-carousel {
    padding: 56px 0px;
    background: #f6f5f7;
}

.bwa-articles-carousel__inner {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.bwa-articles-carousel__header {
    display: grid;
    gap: 10px;
    margin-bottom: 28px;
}

.bwa-articles-carousel__title {
    margin: 0;
    color: #1c2842;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.2;
    font-weight: 700;
}

.bwa-articles-carousel__subtitle {
    max-width: 760px;
    margin: 0;
    color: #526070;
    font-size: 17px;
    line-height: 1.6;
}

.bwa-articles-carousel__viewport {
    position: relative;
}

.bwa-articles-carousel__swiper {
    width: 100%;
    overflow: hidden;
}

.bwa-articles-carousel__swiper .swiper-wrapper {
    align-items: stretch;
}

.bwa-articles-carousel__swiper .swiper-slide {
    height: auto;
}

.bwa-articles-carousel__card {
    display: flex;
    height: auto;
    min-width: 0;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(28, 40, 66, 0.08);
}

.bwa-articles-carousel__link {
    display: grid;
    grid-template-rows: auto 1fr;
    width: 100%;
    height: 100%;
    min-height: 100%;
    color: inherit;
    text-decoration: none !important;
}

.bwa-articles-carousel__card--no-image .bwa-articles-carousel__link {
    min-height: 280px;
}

.bwa-articles-carousel__media {
    display: block;
    aspect-ratio: 16 / 10;
    background: #dbe7ef;
    overflow: hidden;
}

.bwa-articles-carousel__image,
.bwa-articles-carousel__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.25s ease;
}

.bwa-articles-carousel__card:hover .bwa-articles-carousel__image,
.bwa-articles-carousel__card:hover .bwa-articles-carousel__media img {
    transform: scale(1.04);
}

.bwa-articles-carousel__content {
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    align-content: start;
    gap: 10px;
    padding: 22px;
}

.bwa-articles-carousel__card--no-image .bwa-articles-carousel__content {
    align-content: center;
    padding: 28px;
}

.bwa-articles-carousel__date {
    color: #03b0ef;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.bwa-articles-carousel__card-title {
    color: #1c2842;
    font-size: 21px;
    line-height: 1.3;
    font-weight: 700;
}

.bwa-articles-carousel__excerpt {
    color: #526070;
    font-size: 15px;
    line-height: 1.6;
}

.bwa-articles-carousel__cta {
    width: fit-content;
    margin-top: 8px;
    padding-bottom: 3px;
    color: #035496;
    border-bottom: 2px solid #03b0ef;
    font-weight: 700;
}

.bwa-articles-carousel__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
}

.bwa-articles-carousel__pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 80px;
}

.bwa-articles-carousel__pagination .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    margin: 0 !important;
    background: #9db0bf;
    opacity: 1;
}

.bwa-articles-carousel__pagination .swiper-pagination-bullet-active {
    background: #03b0ef;
}

@media screen and (max-width: 640px) {
    .bwa-articles-carousel {
        padding: 36px 15px;
    }

    .bwa-articles-carousel__content {
        padding: 18px;
    }
}
