/* Container */
.sbc-container-fded0ef4 {
    width: 100%;
    overflow: hidden;
}

/* Heading */
.sbc-heading-wrapper-fded0ef4 {
    text-align: center;
    margin-bottom: 40px;
}
.sbc-heading-fded0ef4 {
    font-family: 'Playfair Display', serif; /* Elegant fallback */
    font-size: 32px;
    font-weight: 600;
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.sbc-heart-fded0ef4 {
    flex-shrink: 0;
}

/* Carousel / Grid Layout */
.sbc-carousel-fded0ef4 {
    width: 100%;
    padding-bottom: 20px;
}
.sbc-grid-fded0ef4 {
    display: flex;
}

/* Slide item sizing based on responsive needs */
.sbc-slide-fded0ef4 {
    width: 12.5%; /* Desktop: 8 items per row (100/8) */
    display: flex;
    justify-content: center;
}

/* Desktop */
@media (min-width: 1025px) {
    .sbc-slide-fded0ef4 {
        width: 12.5% !important; /* Force grid layout */
    }
    .sbc-carousel-fded0ef4 .swiper-wrapper {
        flex-wrap: wrap; /* Grid wrap on desktop */
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1024px) {
    .sbc-slide-fded0ef4 {
        width: 25% !important; /* 4 items per row */
    }
    .sbc-carousel-fded0ef4 .swiper-wrapper {
        flex-wrap: wrap;
    }
    .sbc-slide-fded0ef4 {
        margin-bottom: 30px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .sbc-slide-fded0ef4 {
        width: 40% !important; /* Carousel sizing */
    }
    .sbc-carousel-fded0ef4 .swiper-wrapper {
        flex-wrap: nowrap; /* Carousel format on mobile */
    }
}

/* Individual Card Items */
.sbc-item-fded0ef4 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease;
    padding: 10px;
}

/* Hover Lift */
.sbc-item-fded0ef4:hover {
    transform: translateY(-5px);
}

/* Image Wrapper */
.sbc-icon-wrapper-fded0ef4 {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 15px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    overflow: hidden; /* Ensure images stay inside the circle */
}

.sbc-image-fded0ef4 {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover the circle gracefully */
    border-radius: 50%;
}

/* Title */
.sbc-title-fded0ef4 {
    font-size: 14px;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

/* Hover Underline */
.sbc-title-fded0ef4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #D4AF37;
    transition: width 0.3s ease;
}
.sbc-item-fded0ef4:hover .sbc-title-fded0ef4::after {
    width: 60%;
}
