.bcs-section {
    padding: 84px 0;
    overflow: hidden;
    background: transparent;
}

.bcs-container {
    width: min(1280px, calc(100% - 40px));
    margin: 0 auto;
}

.bcs-layout {
    display: grid;
    grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
    gap: 36px;
    align-items: center;
}

.bcs-copy {
    position: relative;
    z-index: 3;
    background: transparent;
    padding: 10px 24px 10px 0;
}

.bcs-eyebrow {
    margin-bottom: 12px;
    color: #666;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.bcs-title {
    margin: 0 0 16px;
    color: #101010;
    font-size: clamp(32px, 5vw, 54px);
    line-height: 1.02;
    font-weight: 700;
}

.bcs-description {
    max-width: 330px;
    margin: 0 0 26px;
    color: #4f4f4f;
    font-size: 15px;
    line-height: 1.65;
}

.bcs-controls {
    display: flex;
    gap: 10px;
}

.bcs-nav-btn {
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    background: #111;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: transform 0.25s ease, opacity 0.25s ease, background 0.25s ease;
}

.bcs-nav-btn:hover {
    transform: translateY(-2px);
}

.bcs-nav-btn.swiper-button-disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.bcs-slider-shell {
    min-width: 0;
    position: relative;
    overflow: hidden;
}

.bcs-swiper {
    overflow: hidden;
	background: transparent;
    padding:  0px;
	 border-radius: 15px;
}

.bcs-swiper .swiper-slide {
    height: auto;
    transition: transform 0.75s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.75s ease;
    opacity: 0.62;
    transform: scale(0.95) translateY(10px);
}

.bcs-swiper .swiper-slide.is-active-card,
.bcs-swiper .swiper-slide.is-next-card {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.bcs-card {
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    min-height: 500px;
}

.bcs-tone-blue { background: #cfe6f8; }
.bcs-tone-yellow { background: #efcb2f; }
.bcs-tone-lilac { background: #dcccf7; }
.bcs-tone-cream { background: #efe6bf; }

.bcs-card-media {
    padding: 18px 18px 0;
}

.bcs-card-image,
.bcs-card-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 10px;
    display: block;
    object-fit: cover;
    background: rgba(255,255,255,0.35);
}

.bcs-card-body {
    padding: 22px 20px 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    flex: 1;
}

.bcs-card-title {
    margin: 0 0 10px;
    color: #111;
    font-size: 24px;
    line-height: 1.15;
    font-weight: 700;
}

.bcs-card-desc {
    margin: 0;
    color: #303030;
    font-size: 14px;
    line-height: 1.65;
}

.bcs-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.bcs-post-count {
    color: #333;
    font-size: 13px;
    font-weight: 600;
}

.bcs-card-link {
    color: #111;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.bcs-card-link:hover {
    opacity: 0.75;
}
.bcs-card-media img {
    border-radius: 10px;
}

@media (max-width: 1199px) {
    .bcs-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .bcs-copy {
        padding-right: 0;
    }

    .bcs-description {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .bcs-section {
        padding: 20px 0;
    }

    .bcs-container {
        width: min(100%, calc(100% - 24px));
		width: 100%;
    }

    .bcs-card {
        min-height: 430px;
        border-radius: 15px;
    }

    .bcs-card-title {
        font-size: 22px;
    }

    .bcs-card-body {
        padding: 18px 16px 18px;
    }
}
