.florianna-split-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
    margin-bottom: 30px;
}

/* Desktop Layout */
@media (min-width: 992px) {
    .florianna-split-wrapper {
        grid-template-columns: 2fr 1fr;
        /* Approx 66% Left, 33% Right */
        align-items: stretch;
    }
}

/* --- CAROUSEL AREA --- */
.fsc-carousel-area {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background-color: #f5f5f5;
    /* Fallback */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Force Swiper container to fill height */
.fsc-swiper {
    width: 100%;
    height: 100%;
    min-height: 300px;
}

@media (min-width: 992px) {
    .fsc-swiper {
        min-height: 450px;
    }
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.fsc-slide-link,
.fsc-slide-inner {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    /* For hover zoom effect */
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.swiper-slide:hover img {
    transform: scale(1.05);
}


/* Swiper Navigation (Customizing default arrows) */
.fsc-swiper .swiper-button-next,
.fsc-swiper .swiper-button-prev {
    color: #fff;
    background: rgba(0, 0, 0, 0.3);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.fsc-swiper .swiper-button-next:after,
.fsc-swiper .swiper-button-prev:after {
    font-size: 16px;
    font-weight: bold;
}

.fsc-swiper:hover .swiper-button-next,
.fsc-swiper:hover .swiper-button-prev {
    background: rgba(0, 0, 0, 0.6);
}

.fsc-swiper .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.6;
}

.fsc-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: #fff;
    width: 24px;
    border-radius: 4px;
    transition: all 0.3s ease;
}


/* --- FIXED BANNERS AREA --- */
.fsc-fixed-area {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.fsc-fixed-banner {
    flex: 1;
    /* Take equal height */
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    min-height: 200px;
    background-color: #f5f5f5;
}

.fsc-fixed-banner a {
    display: block;
    width: 100%;
    height: 100%;
}

.fsc-fixed-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fsc-fixed-banner:hover img {
    transform: scale(1.05);
}

/* Fallback placeholder style */
.fsc-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    background: #e0e0e0;
    color: #666;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}