/* =====================================================
   SK Tabs Content – Frontend Styles
   ===================================================== */

.sktc-wrapper {
    width: 100%;
    font-family: Poppins, sans-serif;
    border: none !important;
    outline: none !important;
}

.sktc-wrapper *,
.sktc-wrapper *::before,
.sktc-wrapper *::after {
    box-sizing: border-box;
}

/* =====================================================
   Tab Navigation
   ===================================================== */
.sktc-tab-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: end;
    width: 100%;
    background: #F7F7F7;
    border-bottom: none !important;
    padding: 0 6.75%;
    margin: 0;
}

.sktc-tab {
    position: relative;
    background: transparent !important;
    border: none !important;
    padding: 78px 12px 30px;
    cursor: pointer;
    font-family: Poppins, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0;
    color: #6F6F6F;
    white-space: nowrap;
    text-align: center;
    box-shadow: none !important;
    outline: none !important;
    transition: color 0.2s ease;
}

/* Desktop aktive Linie */
.sktc-tab::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 8px;
    height: 2px;
    border-radius: 999px;
    background: transparent;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.sktc-tab.sktc-tab--active {
    color: #000000 !important;
    font-weight: 700 !important;
}

.sktc-tab.sktc-tab--active::before {
    opacity: 1;
    background: linear-gradient(
        90deg,
        #AFAFAF 0%,
        #B5B0A2 38%,
        #BCB097 46%,
        #C1A968 50%,
        #BE9A44 57%,
        #BB8925 100%
    );
}

.sktc-tab::after {
    display: none !important;
}

.sktc-tab:hover,
.sktc-tab:focus,
.sktc-tab:active {
    color: #000000;
    font-weight: 600 !important;
    text-shadow: none !important;
    box-shadow: none !important;
    transform: none !important;
}

/* =====================================================
   Content Area
   ===================================================== */
.sktc-content-area {
    background: #E9E9E9;
    position: relative;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.sktc-content-panel {
    display: none;
    padding: 96px 50px 92px;
    box-sizing: border-box;
    border: none !important;
}

.sktc-content-panel--active {
    display: block;
}

/* =====================================================
   Inner Layout
   ===================================================== */
.sktc-inner {
    display: flex;
    gap: 88px;
    align-items: center;
    max-width: 1235px;
    margin: 0 auto;
}

/* ---------- Left Column ---------- */
.sktc-left {
    flex: 0 0 390px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
    justify-content: center;
    min-height: 330px;
}

.sktc-heading {
    font-family: Poppins, sans-serif;
    font-size: 45px;
    font-style: normal;
    font-weight: 300;
    line-height: 1.22;
    margin: 0 !important;
    padding: 0 !important;
    background: linear-gradient(90deg, #BABABA 0%, #BB8925 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ---------- Button ---------- */
.sktc-btn {
    display: inline-flex;
    padding: 12px 24px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 7px;
    border: 2px solid #2C2C2C;
    background: #000000;
    font-family: Poppins, sans-serif;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 600;
    color: #ffffff !important;
    text-decoration: none !important;
    letter-spacing: 0.01em;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    cursor: pointer;
    white-space: nowrap;
}

.sktc-btn:hover,
.sktc-btn:focus,
.sktc-btn:active,
.sktc-btn:visited {
    background: #2C2C2C;
    border-color: #000000;
    color: #ffffff !important;
    text-decoration: none !important;
}

.sktc-btn--disabled {
    opacity: 0.45;
    cursor: default;
}

.sktc-mobile-button-wrap {
    display: none;
}

/* ---------- Right Column ---------- */
.sktc-right {
    flex: 1;
    min-width: 0;
}

.sktc-right p {
    font-family: Poppins, sans-serif !important;
    font-size: 18px !important;
    font-style: normal !important;
    font-weight: 300 !important;
    line-height: 22px !important;
    letter-spacing: 0.36px !important;
    color: #4B4B4B !important;
    margin: 0 0 20px 0 !important;
    padding: 0 !important;
    text-decoration: none !important;
}

.sktc-right p a,
.sktc-right p span,
.sktc-right p strong {
    color: #4B4B4B !important;
    text-decoration: none !important;
    font-weight: 300 !important;
}

.sktc-right p:last-child {
    margin-bottom: 0 !important;
}

/* =====================================================
   Tablet
   ===================================================== */
@media (max-width: 1024px) {
    .sktc-tab-nav {
        padding: 0 32px;
    }

    .sktc-tab {
        font-size: 16px;
        padding: 54px 10px 26px;
    }

    .sktc-tab::before {
        bottom: 8px;
        height: 3px;
    }

    .sktc-content-panel {
        padding: 72px 32px;
    }

    .sktc-inner {
        gap: 48px;
        align-items: center;
    }

    .sktc-left {
        flex: 0 0 320px;
        min-height: 280px;
        justify-content: center;
    }

    .sktc-heading {
        font-size: 42px;
    }
}

/* =====================================================
   Mobile
   ===================================================== */
@media (max-width: 767px) {
    .sktc-wrapper {
        overflow: hidden;
    }

    .sktc-tab-nav {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        width: 100%;
        padding: 0 !important;
        margin: 0 !important;
        background: #F7F7F7;
        border-bottom: none !important;
        overflow: visible !important;
        white-space: normal !important;
    }

    .sktc-tab {
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        display: block !important;
        text-align: left !important;
        white-space: normal !important;
        padding: 18px 32px 18px !important;
        border: none !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.16) !important;
        background: transparent !important;
        font-size: 16px !important;
        font-weight: 500 !important;
        color: #6F6F6F !important;
        box-shadow: none !important;
    }

    .sktc-tab::before,
    .sktc-tab::after {
        display: none !important;
    }

    .sktc-tab.sktc-tab--active {
        font-weight: 700 !important;
        color: #000000 !important;
        border-bottom-color: #BB8925 !important;
    }

    .sktc-tab:hover,
    .sktc-tab:focus,
    .sktc-tab:active {
        color: #000000 !important;
        font-weight: 500 !important;
        text-shadow: none !important;
        box-shadow: none !important;
        transform: none !important;
    }

    .sktc-tab.sktc-tab--active:hover,
    .sktc-tab.sktc-tab--active:focus,
    .sktc-tab.sktc-tab--active:active {
        font-weight: 700 !important;
    }

    .sktc-content-area {
        background: #E9E9E9;
        border-top: none !important;
        margin-top: 0 !important;
    }

    .sktc-content-panel {
        padding: 44px 24px 52px;
        margin-top: 0 !important;
        border-top: none !important;
    }

    .sktc-inner {
        flex-direction: column;
        gap: 32px;
        align-items: stretch;
    }

    .sktc-left {
        flex: none;
        width: 100%;
        min-height: 0;
        gap: 0;
        justify-content: flex-start;
    }

    .sktc-heading {
        font-size: 38px;
        line-height: 1.18;
    }

    .sktc-btn--desktop {
        display: none !important;
    }

    .sktc-mobile-button-wrap {
        display: flex;
        justify-content: flex-start;
        margin-top: 28px;
    }

    .sktc-btn--mobile {
        display: inline-flex;
    }

    .sktc-right p {
        font-size: 16px !important;
        line-height: 22px !important;
        letter-spacing: 0.18px !important;
        margin-bottom: 18px !important;
    }
}

@media (max-width: 480px) {
    .sktc-tab {
        padding-left: 24px !important;
        padding-right: 24px !important;
    }

    .sktc-content-panel {
        padding: 40px 20px 48px;
    }

    .sktc-heading {
        font-size: 34px;
        line-height: 1.18;
    }

    .sktc-btn {
        width: 100%;
        white-space: normal;
        text-align: center;
    }
}