.as-66400628-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 30px;
    align-items: flex-start;
}
.as-66400628-accordion-col {
    flex: 1 1 50%;
    min-width: 0;
}
.as-66400628-image-col {
    flex: 1 1 50%;
    min-width: 0;
}
.as-66400628-item {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}
.as-66400628-title {
    font-weight: 600;
    cursor: pointer;
    font-size: 18px;
    padding-bottom: 10px;
}
.as-66400628-content {
    padding-bottom: 10px;
    color: #666;
}
.as-66400628-image-wrapper {
    position: relative;
    width: 100%;
    height: 800px; /* Fixed height on desktop */
    overflow: hidden;
}
.as-66400628-image-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.5s ease-in-out;
}
.as-66400628-image-slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

@media (max-width: 767px) {
    .as-66400628-wrapper {
        flex-direction: column;
    }
    .as-66400628-accordion-col,
    .as-66400628-image-col {
        flex: 1 1 100%;
        width: 100%;
    }
    .as-66400628-image-wrapper {
        height: auto;
        aspect-ratio: 4 / 3;
    }
}