.iss-97696a46-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .iss-97696a46-container {
        grid-template-columns: 45% 1fr;
    }
}

/* Left - Accordion */
.iss-97696a46-item {
    border-bottom: 1px solid #e5e5e5;
    padding: 24px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.iss-97696a46-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.iss-97696a46-number {
    font-size: 0.9em;
    opacity: 0.5;
    font-weight: 600;
}

.iss-97696a46-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 500;
    flex-grow: 1;
    transition: color 0.3s ease;
}

.iss-97696a46-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.iss-97696a46-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}
.iss-97696a46-icon-close {
    display: none;
}

.iss-97696a46-body {
    display: none;
    padding-top: 16px;
    padding-left: 36px; /* offset for number */
}

.iss-97696a46-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 16px;
}

.iss-97696a46-btn {
    display: inline-block;
    padding: 10px 24px;
    background: #111;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}
.iss-97696a46-btn:hover {
    background: #333;
    color: #fff;
}

/* Active State */
.iss-97696a46-item.is-active .iss-97696a46-icon-open {
    display: none;
}
.iss-97696a46-item.is-active .iss-97696a46-icon-close {
    display: block;
}

/* Right - Image */
.iss-97696a46-image-wrapper {
    position: relative;
    width: 100%;
    min-height: 400px;
    overflow: hidden;
    border-radius: 4px;
    background: #f5f5f5;
}

.iss-97696a46-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out, visibility 0.6s;
}

.iss-97696a46-img.has-zoom {
     transform: scale(1.05);
     transition: opacity 0.6s ease-in-out, visibility 0.6s, transform 3s ease;
}

.iss-97696a46-img.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.iss-97696a46-img.is-active.has-zoom {
    transform: scale(1);
}

.iss-97696a46-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}