.sec-spbc {
    padding: 80px 0;
}

.sec-spbc__title {
    text-transform: uppercase;
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin-bottom: 56px;
}

.sec-spbc__slider {
    position: relative;
    padding: 0 48px;
}

.sec-spbc__swiper {
    overflow: hidden;
}

.sec-spbc__card {
    border: 2px solid #e8d44d;
    border-radius: 16px;
    overflow: hidden;
}

.sec-spbc__card img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4 / 5;
    /* object-fit: cover; */
}

.sec-spbc__info {
    text-align: center;
    padding: 20px 12px 0;
}

.sec-spbc__name {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    margin: 0 0 15px;
    line-height: 1.4;
    min-height: 44px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sec-spbc__btn {
    display: inline-block;
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: #000;
    border: 1px solid #fff;
    border-radius: 20px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.2s ease;
}

.sec-spbc__btn:hover {
    background: #333;
    color: #fff;
}

/* Navigation arrows */
.sec-spbc__prev,
.sec-spbc__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #e8d44d;
    color: #222;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s ease, transform 0.2s ease;
}

.sec-spbc__prev:hover,
.sec-spbc__next:hover {
    background: #d4c035;
    transform: translateY(-50%) scale(1.1);
}

.sec-spbc__prev {
    left: 0;
}

.sec-spbc__next {
    right: 0;
}

@media (max-width: 768px) {
    .sec-spbc {
        padding: 50px 0;
    }

    .sec-spbc__title {
        font-size: 24px;
        margin-bottom: 30px;
        text-align: left;
    }

    .sec-spbc__slider {
        padding: 0;
    }

    .sec-spbc__card {
        border-radius: 12px;
    }

    .sec-spbc__prev,
    .sec-spbc__next {
        position: absolute;
        top: -44px;
        transform: none;
        width: 32px;
        height: 32px;
    }

    .sec-spbc__prev:hover,
    .sec-spbc__next:hover {
        transform: scale(1.1);
    }

    .sec-spbc__prev svg,
    .sec-spbc__next svg {
        width: 16px;
        height: 16px;
    }

    .sec-spbc__prev {
        left: auto;
        right: 44px;
    }

    .sec-spbc__next {
        right: 0;
    }
}
