.homecost-accordion-slider-widget {
    width: 100%;
    position: relative;
}

.homecost-accordion-slider {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.homecost-accordion-slider .slide {
    flex: 1; /* inactive width */
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.6s ease;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.homecost-accordion-slider .slide.active {
    flex: 0 0 auto; /* expands to fill */
    max-width: 60%;/* adjust as per the number of slides */
}

.homecost-accordion-slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}
.homecost-accordion-slider .slide.active img {
    object-fit: contain;
}

/* Optional: Keep vertical title for inactive slides */
.homecost-accordion-slider .slide .slide-title-box {
    position: absolute;
    inset:0;
    color: white;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
    font-size: 30px;
    pointer-events: none;
    z-index: 2;
    background: #01579bb3;
    display: flex;
    align-items: center;
    justify-content: center;
}
.homecost-accordion-slider .slide .slide-title {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

/* Full-width title for active */
.homecost-accordion-slider .slide.active .slide-title-box {
    inset: unset;
    top: auto;
    bottom: 0;
    background: linear-gradient(to bottom, #01579B00, #01579BFF);
    left: 0;
    font-size: 32px;
    padding: 20px 30px;
    width: 100%;
    display: block;
}
.homecost-accordion-slider .slide.active .slide-title {
    transform: none;
    writing-mode: horizontal-tb;
    line-height: 1;
}



/* Absolute Navigation Arrows */
.homecost-accordion-slider-widget .nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: white;
    
    border-radius: 50%;
    border: 2px solid #01579B;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #333;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}
.homecost-accordion-slider-widget .nav-arrow svg {
    fill: #01579B;
}

.homecost-accordion-slider-widget .nav-arrow:hover {
    background: #01579B;
    color: white;
}
.homecost-accordion-slider-widget .nav-arrow:hover svg {
    fill: white;
}

.homecost-accordion-slider-widget .prev-arrow {
    left: -55px;
}

.homecost-accordion-slider-widget .next-arrow {
    right: -55px;
}

@media (max-width: 850px) {
    .homecost-accordion-slider .slide:not(.active) {
        display: none;
    }
    .homecost-accordion-slider-widget .nav-arrow {
        width: 30px;
        height: 30px;
    }
    .homecost-accordion-slider-widget .prev-arrow {
        left: -35px;
    }
    .homecost-accordion-slider-widget .next-arrow {
        right: -35px;
    }
}