.custom-tabs-wrapper {
    display: flex;
    gap: 24px;
}
.custom-tabs-nav {
    display: flex;
    flex-direction: column;
    flex: 0 0 300px;
    gap: 1rem;
}
.custom-tab-btn {
    flex: 1;
    text-align: center;
    padding: 15px;
    cursor: pointer;
    background: #EAEAEA;
    border: 1px solid #D7D7D7;
    font-size: clamp(14px, 2vw, 18px);
    min-height: 74px;
    border-radius: 1rem;
    font-family: var(--bold);
    transition: 0.4s;
}
.custom-tab-btn.is-active {
    background: var(--color1);
    font-weight: bold;
}
.custom-tab-panel {
    display: none;
    padding: 1rem;
    background: rgb(251 186 0 / 10%);
    width: 100%;
    border: 1px solid #D7D7D7;
    border-radius: 1rem;
    flex-direction: column;
    gap: 1rem;
}
.custom-tab-panel.is-active {
    display: flex;
}
.custom-tab-desc {
    color: #727272;
    & .custom-tab--title {
        color: black;
        margin-bottom: 24px;
        font-family: var(--Medium);
    }
}
@media (max-width: 768px) {
    .custom-tabs-wrapper {
        flex-direction: column;
    }
    .custom-tabs-nav {
        display: none;
    }
    .custom-tab-panel {
        display: flex;
        padding: 8px;
    }
    .custom-tab-title {
        margin: 0;
        padding: 9px;
        background: var(--color1);
        cursor: pointer;
        border-radius: 1rem;
        text-align: center;
        font-size: 14px;
    }
    .custom-tab-desc {
        display: none;
        padding-inline: 8px;
        font-size: 14px;
    }
    .custom-tab-panel.is-active .custom-tab-desc {
        display: block;
    }
}