/* Image Accordion - ca955bfb */

.ia-ca955bfb-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.ia-ca955bfb-container {
    display: flex;
    width: 100%;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.ia-ca955bfb-panel {
    position: relative;
    flex: 1;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.ia-ca955bfb-panel.ia-ca955bfb-active {
    flex: 4;
}

.ia-ca955bfb-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.ia-ca955bfb-panel.ia-ca955bfb-active .ia-ca955bfb-image {
    transform: scale(1.05);
}

.ia-ca955bfb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 40%,
        rgba(0, 0, 0, 0.7) 100%
    );
    transition: opacity 0.6s ease;
    opacity: 0.6;
}

.ia-ca955bfb-panel.ia-ca955bfb-active .ia-ca955bfb-overlay {
    opacity: 1;
}

.ia-ca955bfb-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    color: #ffffff;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) 0.1s,
                opacity 0.5s ease 0.1s;
}

.ia-ca955bfb-panel.ia-ca955bfb-active .ia-ca955bfb-content {
    transform: translateY(0);
    opacity: 1;
}

.ia-ca955bfb-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 8px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.ia-ca955bfb-description {
    font-size: 15px;
    font-weight: 400;
    margin: 0;
    opacity: 0.9;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    line-height: 1.5;
    max-width: 400px;
}

/* Collapsed panel number indicator */
.ia-ca955bfb-panel:not(.ia-ca955bfb-active)::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    transition: opacity 0.4s ease;
}

.ia-ca955bfb-panel:not(.ia-ca955bfb-active):hover::after {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.9);
}

/* Responsive */
@media (max-width: 768px) {
    .ia-ca955bfb-container {
        flex-direction: column;
        height: 600px;
    }

    .ia-ca955bfb-panel.ia-ca955bfb-active {
        flex: 5;
    }

    .ia-ca955bfb-title {
        font-size: 22px;
    }

    .ia-ca955bfb-description {
        font-size: 13px;
    }

    .ia-ca955bfb-content {
        padding: 20px;
    }
}
