/* Structural styles for Interactive Tabs Widget */
.it-17a762b0-container {
    width: 100%;
}

.it-17a762b0-layout {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.it-17a762b0-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    border-top: 1px solid #eeeeee;
}

.it-17a762b0-item {
    border-bottom: 1px solid #eeeeee;
    transition: all 0.3s ease;
}

.it-17a762b0-item-header {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px 0;
    cursor: pointer;
    user-select: none;
}

.it-17a762b0-index {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    min-width: 40px;
    transition: color 0.3s ease;
}

.it-17a762b0-title-group {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.it-17a762b0-title {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.it-17a762b0-subtitle {
    font-size: 14px;
    transition: color 0.3s ease;
}

.it-17a762b0-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: #ffffff;
    transition: all 0.3s ease;
    font-size: 18px;
    line-height: 1;
    padding: 0;
}

.it-17a762b0-icon .close-symbol {
    display: none;
}

.it-17a762b0-item.active .it-17a762b0-icon .plus-symbol {
    display: none;
}

.it-17a762b0-item.active .it-17a762b0-icon .close-symbol {
    display: block;
}

/* Detail Box Desktop Styling */
.it-17a762b0-detail-column {
    flex: 1;
    display: flex;
}

.it-17a762b0-detail-box {
    background: #f9f8f6;
    border-radius: 24px;
    padding: 40px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.it-17a762b0-detail-content {
    animation: itFadeIn_17a762b0 0.4s ease forwards;
}

.it-17a762b0-detail-image-wrapper {
    margin-bottom: 24px;
}

.it-17a762b0-detail-box img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.it-17a762b0-description {
    font-size: 16px;
    line-height: 1.6;
}

/* Hide Mobile Content Slot on Desktop */
.it-17a762b0-mobile-content {
    display: none;
}

@keyframes itFadeIn_17a762b0 {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile & Tablet Styles (Accordion Collapse Layout) */
@media (max-width: 1024px) {
    .it-17a762b0-layout {
        flex-direction: column;
    }

    .it-17a762b0-detail-column {
        display: none !important; /* Hide Desktop detail side entirely */
    }

    .it-17a762b0-mobile-content {
        display: block;
        height: 0;
        overflow: hidden;
        transition: height 0.3s ease-out;
    }

    .it-17a762b0-item.active .it-17a762b0-mobile-content {
        height: auto;
    }

    .it-17a762b0-mobile-content-inner {
        padding: 0 0 24px 0;
    }

    .it-17a762b0-mobile-image {
        margin-bottom: 16px;
    }

    .it-17a762b0-mobile-image img {
        width: 100%;
        height: auto;
        display: block;
    }
}
