.image-accordion-container-13d1cbfb {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    width: 100%;
}

.ia-left-accordion {
    flex: 1 1 350px;
    display: flex;
    flex-direction: column;
}

.ia-right-visual {
    flex: 1 2 450px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.ia-item {
    border-left: 3px solid #e5e7eb;
    padding: 12px 0 12px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ia-item.active {
    border-left-color: #1a56db;
}

.ia-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
}

.ia-body {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: none; /* Instant collapse to prevent layout jumping */
}

.ia-item.active .ia-body {
    max-height: 200px;
    opacity: 1;
    margin-top: 10px;
    transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.3s ease;
}

.ia-desc {
    margin: 0 0 12px 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.ia-link {
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

.ia-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s;
    border-radius: 16px;
    overflow: hidden;
}

.ia-image-wrapper.active {
    opacity: 1;
    visibility: visible;
}

.ia-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.ia-badge-wrapper {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #ffffff;
    border-radius: 8px;
    padding: 10px 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.ia-badge-img {
    max-height: 35px;
    display: block;
    width: auto;
}
