/**
 * Tabs Content - Flex Part Styles
 */

.tabs-content {
    padding: 0;
}

.tabs-content__title {
    /* Desktop/H1 (Heading) */
    font-family: "Funnel Sans", sans-serif;
    font-size: 60px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%; /* 72px */
    letter-spacing: 0.3px;
    color: var(--color-text, #000);
    padding-top: 120px;
    padding-bottom: 60px;
    margin: 0;
}

.tabs-content__container {
    display: flex;
    width: 1440px;
    max-width: 100%;
    margin: 0 auto;
    flex-direction: column;
    align-items: flex-start;
    filter: drop-shadow(0 4px 15px rgba(39, 43, 43, 0.08));
}

.tabs-content__nav {
    display: flex;
    align-items: center;
    gap: 24px;
    width: 100%;
}

.tabs-content__tab {
    display: flex;
    padding: 24px 32px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 6px 6px 0 0;
    background: var(--brand-ffffff, #FFF);
    color: var(--primary-colors-7336-e-3, #7336E3);
    /* Desktop/Tabs */
    font-family: "Funnel Sans", sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 26.4px */
    letter-spacing: 0.11px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tabs-content__tab:hover {
    background: rgba(115, 54, 227, 0.1);
}

.tabs-content__tab.is-active {
    border-radius: 6px 6px 0 0;
    background: var(--primary-colors-7336-e-3, #7336E3);
    color: var(--brand-ffffff, #FFF);
}

.tabs-content__panels {
    width: 100%;
}

.tabs-content__panel {
    display: none;
}

.tabs-content__panel.is-active {
    display: block;
}

.tabs-content__panel-inner {
    display: flex;
    height: 610px;
    padding: 60px 40px;
    justify-content: center;
    align-items: center;
    gap: 160px;
    align-self: stretch;
    border-radius: 0 0 8px 8px;
    border-top: 3px solid var(--primary-colors-7336-e-3, #7336E3);
    background: var(--brand-ffffff, #FFF);
}

.tabs-content__content-col {
    display: flex;
    width: 600px;
    flex-direction: column;
    align-items: flex-start;
    gap: 41px;
    flex-shrink: 0;
}

.tabs-content__heading {
    color: var(--Primary-colors-Purple-Dark, #1D004B);
    /* Desktop/H2 */
    font-family: "Funnel Sans", sans-serif;
    font-size: 38px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%; /* 45.6px */
    letter-spacing: 0.19px;
    margin: 0;
}

.tabs-content__body {
    width: 100%;
}

.tabs-content__body ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    align-self: stretch;
    list-style: none;
    padding: 0;
    margin: 0;
}

.tabs-content__body li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    align-self: stretch;
    /* Desktop/Body L */
    font-family: "Funnel Sans", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%; /* 30px */
    color: var(--Primary-colors-Text, #000);
}

.tabs-content__body li::before {
    content: '';
    display: flex;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    border-radius: 100px;
    background: var(--Purple-Tints-2, #EBE2FB);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='13' viewBox='0 0 16 13' fill='none'%3E%3Cpath d='M1 4.98095L7.36952 10.9524L14.9997 1' stroke='%237336E3' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-size: 14px 10px;
    background-position: center;
    background-repeat: no-repeat;
}

.tabs-content__image-col {
    display: flex;
    width: 460px;
    height: 460px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.tabs-content__image {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tabs-content__image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Responsive */
@media (max-width: 1440px) {
    .tabs-content__container {
        width: 100%;
    }
    
    .tabs-content__panel-inner {
        gap: 60px;
    }
    
    .tabs-content__content-col {
        width: auto;
        flex: 1;
    }
    
    .tabs-content__image-col {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 1024px) {
    .tabs-content__panel-inner {
        flex-direction: column;
        height: auto;
        gap: 40px;
        padding: 40px 30px;
    }
    
    .tabs-content__content-col {
        width: 100%;
    }
    
    .tabs-content__image-col {
        width: 100%;
        height: auto;
        max-width: 460px;
    }
    
    .tabs-content__nav {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .tabs-content__tab {
        padding: 16px 24px;
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    /* Mobile/H1 */
    .tabs-content__title {
        font-family: "Funnel Sans", sans-serif;
        font-size: 42px;
        padding-top: 80px;
        padding-bottom: 40px;
    }

    /* Tabs nav - stacked vertically, pill-like container */
    .tabs-content__nav {
        flex-direction: column;
        gap: 0;
        width: 100%;
        border-radius: 6px 6px 0 0;
        overflow: hidden;
        background: #FFF;
    }

    /* Tab buttons - full width, stacked */
    .tabs-content__tab {
        display: flex;
        padding: 24px 32px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        align-self: stretch;
        width: 100%;
        margin: 0;
        border-radius: 0;
        background: #FFF;
        color: var(--primary-colors-7336-e-3, #7336E3);
        border-bottom: 1px solid rgba(115, 54, 227, 0.2);
        font-size: 18px;
    }

    .tabs-content__tab:last-child {
        border-bottom: none;
    }

    .tabs-content__tab:hover {
        background: rgba(115, 54, 227, 0.05);
    }

    /* Active tab - purple background */
    .tabs-content__tab.is-active {
        background: var(--primary-colors-7336-e-3, #7336E3);
        color: #FFF;
        border-radius: 0;
        border-bottom: none;
    }

    /* Last tab active - no bottom radius */
    .tabs-content__tab:last-child.is-active {
        border-radius: 0;
    }

    .tabs-content__panel-inner {
        padding: 30px 24px;
        gap: 30px;
        border-radius: 0 0 8px 8px;
    }

    .tabs-content__content-col {
        gap: 30px;
    }

    /* Desktop/H3 */
    .tabs-content__heading {
        font-family: "Funnel Sans", sans-serif;
        font-size: 28px;
    }

    .tabs-content__body ul {
        gap: 20px;
    }

    /* Desktop/Body Regular */
    .tabs-content__body li {
        font-family: "Funnel Sans", sans-serif;
        font-size: 18px;
    }

    /* Panel inner - stack content then image */
    .tabs-content__panel-inner {
        flex-direction: column;
    }

    /* Image below content */
    .tabs-content__image-col {
        width: 100%;
        height: auto;
        order: 2;
    }

    .tabs-content__content-col {
        order: 1;
    }
}

@media (max-width: 480px) {
    .tabs-content__title {
        padding-top: 60px;
        padding-bottom: 30px;
    }

    .tabs-content__panel-inner {
        padding: 24px 16px;
        gap: 24px;
    }

    .tabs-content__body li {
        gap: 12px;
    }

    .tabs-content__body li::before {
        width: 24px;
        height: 24px;
    }

    .tabs-content__tab {
        padding: 16px 20px;
    }

    .tabs-content__content-col {
        gap: 20px;
    }

    .tabs-content__body ul {
        gap: 16px;
    }
}

