.img-accordion-container-46e6c07d {
    display: flex;
    width: 100%;
    overflow: hidden;
    gap: 10px;
}
.img-accordion-item-46e6c07d {
    flex: 1;
    background-size: cover;
    background-position: center;
    transition: flex 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}
.img-accordion-item-46e6c07d.active {
    flex: 4;
}
.img-accordion-overlay-46e6c07d {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    transition: background 0.5s;
    z-index: 1;
}
.img-accordion-item-46e6c07d.active .img-accordion-overlay-46e6c07d {
    background: rgba(0,0,0,0.2);
}
.img-accordion-content-46e6c07d {
    position: absolute;
    inset: 0;
    padding: 30px;
    z-index: 2;
    display: flex;
    flex-direction: column;
}
.img-accordion-title-46e6c07d {
    margin: 0;
    white-space: nowrap;
    transition: transform 0.4s;
    transform-origin: left bottom;
}
.img-accordion-hidden-content-46e6c07d {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    max-height: 0;
    overflow: hidden;
}
.img-accordion-item-46e6c07d.active .img-accordion-hidden-content-46e6c07d {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    max-height: 500px;
    margin-top: 15px;
    transition-delay: 0.2s;
}
.img-accordion-desc-46e6c07d {
    margin: 0 0 20px 0;
    line-height: 1.5;
}
.img-accordion-cta-46e6c07d {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 4px;
    text-decoration: none;
    transition: opacity 0.3s;
    cursor: pointer;
}
.img-accordion-cta-46e6c07d:hover {
    opacity: 0.9;
}
@media (max-width: 767px) {
    .img-accordion-container-46e6c07d {
        flex-direction: column;
    }
}