.tab-content-section {
    display: flex;    
    gap: 2.5rem;    
    margin-bottom: 4.308rem;
    align-items: stretch;    
    flex-wrap: wrap;    
}

.tab-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    flex: 1;    
    min-width: 300px;    
    box-sizing: border-box;    
}


.tab-header {
    display: flex;
    align-items: center;
    margin-bottom: var(--mp16);
}

.tab-icon {
    width: 72px;
    height: 72px;
    margin-right: var(--mp32);
}

.tab-title {
    margin: 0;
    font-weight: var(--font-weight-600);
    font-size: var(--font-size-30);
    line-height: var(--line-height-36);
}

.tab-switcher {
    display: flex;
    margin-bottom: var(--mp16);
    list-style: none;
    justify-content: space-between;
    min-height: var(--mp164);
    row-gap: var(--mp8);
    flex-wrap: wrap;
}

/* Tab item */
.tab-switcher>li {
    flex: 1;
    text-align: center;
    align-items: center;
    justify-content: center;
}

/* Tab link */
.tab-switcher>li>a {
    display: block;
    padding: 8px 0;
    color: rgba(107, 114, 128, 1);
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
    text-decoration: none;
    width: 100%;

    font-weight: var(--font-weight-600);
    font-size: var(--font-size-16);
    line-height: var(--line-height-24);
}

/* Active tab */
.tab-switcher>.uk-active>a {
    font-weight: 700;
    color: rgba(31, 41, 55, 1);
    /* Gray-900 */
    border-bottom: 2px solid rgba(31, 41, 55, 1);
}

.uk-switcher {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

.uk-switcher>li {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

.custom-tab-card {
    padding: var(--mp24);
    border-radius: var(--border-radius-12);
    min-height: 260px;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

.tab-color-red {
    background: linear-gradient(252.65deg, #E5052C 8.18%, #250E45 91.82%), url('/site/assets/images/only_icon.png');
    background-blend-mode: overlay;
    background-size: cover, contain;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
}

.tab-color-purple {
    background: linear-gradient(255.62deg, rgba(37, 13, 70, 0.8) 5.53%, #250D46 90.9%), url('/site/assets/images/only_icon.png');
    background-blend-mode: overlay;
    background-size: cover, contain;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
}

.tab-subtitle {
    margin-bottom: var(--mp32);    
    font-weight: var(--font-weight-600);
    font-size: var(--font-size-24);
    line-height: var(--line-height-32);
    color: white;
}

.tab-text-html {
    color: white;    
    font-weight: var(--font-weight-500);
    font-size: var(--font-size-16);
    line-height: var(--line-height-24);
}

.tab-text-html ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1em;
}

.tab-text-html li {
    margin-bottom: 0.5em;
}

@media (max-width: 768px) {
    .tab-grid {
        flex-direction: column;
    }

    .tab-card {
        width: 100%;
        padding: var(--mp16);
    }

    .tab-title {
        font-size: 18px;
    }

    .custom-tab-card {
        padding: var(--mp16);
    }
}