.cnct-academy-app{
    display:flex;
    flex-direction:column;
    gap:24px;
}

.cnct-academy-hero{
    display:grid;
    grid-template-columns:minmax(0,1.55fr) minmax(300px,.9fr);
    align-items:start;
    gap:18px;
    padding:22px 24px;
    border-radius:24px;
    background:
        radial-gradient(circle at top left, rgba(195,60,106,.08), transparent 28%),
        linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(249,250,251,.98) 100%);
    box-shadow:0 24px 60px rgba(15,23,42,.08);
}

.cnct-academy-intro{
    font-size:13px;
    font-weight:600;
    color:rgba(15,23,42,.54);
    margin-bottom:8px;
    letter-spacing:.02em;
}

.cnct-academy-title{
    margin:0 0 6px;
    font-size:clamp(24px,2.6vw,34px);
    line-height:1.08;
    color:#111827;
}

.cnct-academy-subtitle{
    margin:0;
    max-width:64ch;
    color:#4b5563;
    font-size:14px;
    line-height:1.65;
}

.cnct-academy-mode-switch{
    display:inline-flex;
    gap:10px;
    margin-top:14px;
    padding:6px;
    border:1px solid rgba(148,163,184,.22);
    border-radius:999px;
    background:rgba(255,255,255,.76);
}

.cnct-academy-mode{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 16px;
    border-radius:999px;
    text-decoration:none;
    color:#334155;
    font-weight:600;
}

.cnct-academy-mode.is-active{
    background:#ffffff;
    box-shadow:0 8px 22px rgba(15,23,42,.08);
    color:#111827;
}

.cnct-academy-hero-rail{
    display:flex;
    align-items:stretch;
}

.cnct-academy-kpis{
    display:grid;
    grid-template-columns:repeat(2, minmax(0,1fr));
    gap:12px;
    margin-top:0;
    width:100%;
    align-content:start;
}

.cnct-academy-kpi{
    display:flex;
    flex-direction:column;
    gap:6px;
    min-height:96px;
    padding:14px 16px;
    border-radius:18px;
    border:1px solid rgba(226,232,240,.86);
    background:rgba(255,255,255,.88);
}

.cnct-academy-kpi-value{
    font-size:22px;
    font-weight:800;
    line-height:1;
    color:#111827;
}

.cnct-academy-kpi-label{
    font-size:13px;
    color:#64748b;
}

.cnct-academy-fallback-link{
    display:inline-block;
    margin-top:12px;
    font-size:13px;
    color:#4b5563;
    text-decoration:none;
}

.cnct-academy-content{
    padding:24px;
    border-radius:24px;
}

.cnct-academy-section-head{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:16px;
    margin-bottom:18px;
}

.cnct-academy-section-head--catalog{
    margin-bottom:16px;
}

.cnct-academy-results-count{
    display:inline-flex;
    align-items:center;
    min-height:38px;
    padding:8px 14px;
    border-radius:999px;
    background:#f8fafc;
    border:1px solid rgba(226,232,240,.9);
    color:#334155;
    font-size:13px;
    font-weight:600;
}

.cnct-academy-section-eyebrow{
    text-transform:uppercase;
    letter-spacing:.08em;
    font-size:11px;
    color:#64748b;
    margin-bottom:6px;
}

.cnct-academy-section-head h2{
    margin:0;
    font-size:26px;
    color:#111827;
}

.cnct-academy-section-text{
    margin:8px 0 0;
    color:#6b7280;
    font-size:14px;
    line-height:1.6;
}

.cnct-academy-filters{
    display:grid;
    grid-template-columns:minmax(0,1.35fr) repeat(2,minmax(200px,.7fr)) auto;
    gap:14px;
    margin-bottom:18px;
    padding:16px;
    border-radius:20px;
    border:1px solid rgba(226,232,240,.95);
    background:linear-gradient(180deg, rgba(248,250,252,.9) 0%, rgba(255,255,255,.95) 100%);
}

.cnct-academy-filter{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.cnct-academy-filter span{
    font-size:12px;
    font-weight:600;
    color:#64748b;
}

.cnct-academy-filter input,
.cnct-academy-filter select{
    width:100%;
    min-height:48px;
    padding:0 14px;
    border-radius:14px;
    border:1px solid rgba(203,213,225,.95);
    background:#ffffff;
    color:#111827;
    outline:none;
    box-shadow:0 1px 2px rgba(15,23,42,.02);
}

.cnct-academy-filter input:focus,
.cnct-academy-filter select:focus{
    border-color:rgba(195,60,106,.45);
    box-shadow:0 0 0 4px rgba(195,60,106,.08);
}

.cnct-academy-filter-reset{
    align-self:end;
    min-height:48px;
    padding:0 16px;
    border-radius:14px;
    border:1px solid rgba(203,213,225,.95);
    background:#fff;
    color:#111827;
    font-weight:600;
    cursor:pointer;
}

.cnct-academy-feedback{
    min-height:20px;
    margin-bottom:12px;
    color:#64748b;
    font-size:13px;
}

.cnct-academy-results{
    position:relative;
}

[data-cnct-academy-app].is-loading .cnct-academy-results{
    opacity:.55;
    transition:opacity .2s ease;
}

.cnct-academy-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:18px;
}

.cnct-academy-course-card{
    overflow:hidden;
    border:1px solid rgba(226,232,240,.92);
    border-radius:22px;
    background:#ffffff;
    box-shadow:0 16px 40px rgba(15,23,42,.06);
}

.cnct-academy-course-image-wrap{
    position:relative;
    display:block;
    aspect-ratio:16 / 9;
    background:#f3f4f6;
    overflow:hidden;
    text-decoration:none;
}

.cnct-academy-course-image{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .35s ease;
}

.cnct-academy-course-card:hover .cnct-academy-course-image{
    transform:scale(1.03);
}

.cnct-academy-course-image-placeholder{
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg, rgba(195,60,106,.12), rgba(17,24,39,.06));
    color:#111827;
    font-size:42px;
    font-weight:800;
}

.cnct-academy-course-body{
    padding:18px 18px 20px;
}

.cnct-academy-course-meta{
    display:flex;
    justify-content:space-between;
    gap:12px;
    align-items:center;
    font-size:12px;
    color:#6b7280;
    margin-bottom:12px;
}

.cnct-academy-term-pills,
.cnct-academy-author-badges{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-bottom:12px;
}

.cnct-academy-term-pill,
.cnct-academy-author-badge{
    display:inline-flex;
    align-items:center;
    min-height:28px;
    padding:5px 10px;
    border-radius:999px;
    font-size:12px;
    font-weight:600;
}

.cnct-academy-term-pill{
    background:#f8fafc;
    border:1px solid rgba(226,232,240,.9);
    color:#475569;
}

.cnct-academy-author-badge.is-certified{
    background:rgba(195,60,106,.10);
    color:#9f1d47;
}

.cnct-academy-author-badge.is-expert{
    background:rgba(17,24,39,.07);
    color:#111827;
}

.cnct-academy-course-card h3{
    margin:0 0 10px;
    font-size:19px;
    line-height:1.35;
}

.cnct-academy-course-card h3 a{
    text-decoration:none;
    color:#111827;
}

.cnct-academy-course-excerpt{
    margin:0 0 16px;
    color:#4b5563;
    font-size:14px;
    line-height:1.65;
    min-height:68px;
}

.cnct-academy-progress-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    margin-bottom:8px;
    font-size:13px;
    color:#6b7280;
}

.cnct-academy-progress-head strong{
    color:#111827;
    font-size:13px;
}

.cnct-academy-progress{
    height:10px;
    border-radius:999px;
    background:#e5e7eb;
    overflow:hidden;
}

.cnct-academy-progress span{
    display:block;
    height:100%;
    border-radius:999px;
    background:linear-gradient(90deg, #c33c6a 0%, #e388a7 100%);
}

.cnct-academy-course-footer{
    margin-top:14px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
}

.cnct-academy-course-cta{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:40px;
    padding:10px 14px;
    border-radius:12px;
    background:#111827;
    color:#ffffff;
    font-weight:600;
    font-size:14px;
    text-decoration:none;
}

.cnct-academy-badge{
    position:absolute;
    top:14px;
    left:14px;
    display:inline-flex;
    align-items:center;
    min-height:32px;
    padding:6px 12px;
    border-radius:999px;
    font-size:12px;
    font-weight:600;
    backdrop-filter:blur(10px);
    background:rgba(255,255,255,.88);
    color:#111827;
    border:1px solid rgba(255,255,255,.75);
    box-shadow:0 10px 24px rgba(15,23,42,.12);
}

.cnct-academy-badge.is-active,
.cnct-academy-badge.is-live{
    background:rgba(255,255,255,.9);
    color:#0f5132;
}

.cnct-academy-badge.is-done{
    color:#0f5132;
}

.cnct-academy-badge.is-new,
.cnct-academy-badge.is-draft{
    color:#6b7280;
}

.cnct-academy-badge.is-review{
    color:#7c2d12;
}

.cnct-academy-badge.is-internal{
    color:#4338ca;
}

.cnct-academy-empty{
    grid-column:1 / -1;
    padding:24px;
    border:1px dashed rgba(148,163,184,.45);
    border-radius:18px;
    color:#475569;
    background:#ffffff;
}

@media (max-width: 1180px){
    .cnct-academy-filters{
        grid-template-columns:1fr 1fr;
    }

    .cnct-academy-filter-reset{
        width:100%;
    }
}

@media (max-width: 1100px){
    .cnct-academy-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}

@media (max-width: 980px){
    .cnct-academy-hero{
        grid-template-columns:1fr;
        padding:20px;
    }

    .cnct-academy-hero-rail{
        width:100%;
    }
}

@media (max-width: 640px){
    .cnct-academy-kpis,
    .cnct-academy-grid,
    .cnct-academy-filters{
        grid-template-columns:1fr;
    }

    .cnct-academy-section-head{
        align-items:flex-start;
        flex-direction:column;
    }

    .cnct-academy-course-meta{
        flex-direction:column;
        align-items:flex-start;
    }
}


.cnct-academy-showcase{
    padding:24px;
    border-radius:24px;
}

.cnct-academy-continue-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:18px;
}

.cnct-academy-continue-card{
    overflow:hidden;
    border-radius:22px;
    border:1px solid rgba(226,232,240,.92);
    background:#fff;
    box-shadow:0 16px 40px rgba(15,23,42,.06);
    font-size:14px;
}

.cnct-academy-continue-image-wrap{
    display:block;
    aspect-ratio:16/9;
    overflow:hidden;
    background:#f3f4f6;
}

.cnct-academy-continue-image{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.cnct-academy-continue-body{
    padding:18px;
}

.cnct-academy-continue-topline{
    margin-bottom:10px;
}

.cnct-academy-continue-card h3,
.cnct-academy-featured-card h3{
    margin:0 0 10px;
    font-size:20px;
    line-height:1.3;
}

.cnct-academy-continue-card h3 a,
.cnct-academy-featured-card h3 a{
    text-decoration:none;
    color:#111827;
}

.cnct-academy-continue-card p{
    margin:0 0 12px;
    color:#4b5563;
    font-size:14px;
    line-height:1.6;
}

.cnct-academy-featured-grid{
    display:grid;
    grid-template-columns:1.35fr .9fr .9fr;
    gap:18px;
}

.cnct-academy-featured-card{
    overflow:hidden;
    border-radius:22px;
    border:1px solid rgba(226,232,240,.92);
    background:#fff;
    box-shadow:0 16px 40px rgba(15,23,42,.06);
}

.cnct-academy-featured-card.is-featured{
    grid-row:span 2;
}

.cnct-academy-featured-media{
    position:relative;
    display:block;
    aspect-ratio:16/9;
    overflow:hidden;
    background:#f3f4f6;
}

.cnct-academy-featured-card.is-featured .cnct-academy-featured-media{
    aspect-ratio:4/3;
}

.cnct-academy-featured-media img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.cnct-academy-featured-body{
    padding:18px;
}

.cnct-academy-course-provider{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    margin-bottom:12px;
}

.cnct-academy-course-provider-main{
    display:flex;
    align-items:center;
    gap:10px;
    min-width:0;
}

.cnct-academy-course-provider-avatar{
    width:36px;
    height:36px;
    min-width:36px;
    border-radius:999px;
    object-fit:cover;
    background:#e5e7eb;
}

.cnct-academy-course-provider-copy{
    display:flex;
    flex-direction:column;
    min-width:0;
}

.cnct-academy-course-provider-copy strong{
    font-size:13px;
    color:#111827;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

.cnct-academy-course-provider-copy span,
.cnct-academy-course-updated{
    font-size:12px;
    color:#6b7280;
}

.cnct-academy-author-badges{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin:0 0 14px;
}

.cnct-academy-author-badge{
    display:inline-flex;
    align-items:center;
    min-height:30px;
    padding:5px 10px;
    border-radius:999px;
    font-size:12px;
    font-weight:600;
    background:#f8fafc;
    border:1px solid rgba(226,232,240,.9);
    color:#334155;
}

.cnct-academy-author-badge.is-certified{
    background:rgba(195,60,106,.08);
    border-color:rgba(195,60,106,.16);
    color:#9f1239;
}

.cnct-academy-author-badge.is-expert{
    background:rgba(37,99,235,.08);
    border-color:rgba(37,99,235,.16);
    color:#1d4ed8;
}

@media (max-width: 1360px){
    .cnct-academy-grid,
    .cnct-academy-continue-grid{
        grid-template-columns:repeat(3,minmax(0,1fr));
    }
}

@media (max-width: 1200px){
    .cnct-academy-featured-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .cnct-academy-featured-card.is-featured{
        grid-row:auto;
        grid-column:1 / -1;
    }

    .cnct-academy-continue-grid,
    .cnct-academy-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .cnct-academy-filters{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}

@media (max-width: 640px){
    .cnct-academy-featured-grid,
    .cnct-academy-continue-grid{
        grid-template-columns:1fr;
    }

    .cnct-academy-course-provider{
        flex-direction:column;
        align-items:flex-start;
    }

    .cnct-academy-filters{
        grid-template-columns:1fr;
    }
}


.cnct-academy-mode-shell.is-hidden{
    display:none;
}


.cnct-academy-rating{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:8px;
    margin:0 0 14px;
    color:#475569;
}

.cnct-academy-rating.is-empty{
    color:#64748b;
}

.cnct-academy-rating-stars{
    position:relative;
    display:inline-flex;
    line-height:1;
    font-size:14px;
    letter-spacing:1px;
}

.cnct-academy-rating-stars-base{
    color:#d1d5db;
}

.cnct-academy-rating-stars-fill{
    position:absolute;
    top:0;
    left:0;
    overflow:hidden;
    white-space:nowrap;
    color:#f59e0b;
}

.cnct-academy-rating-value{
    font-size:13px;
    font-weight:800;
    color:#111827;
}

.cnct-academy-rating-count{
    font-size:12px;
    color:#64748b;
}


.cnct-academy-tabs-shell{
    margin-bottom:18px;
}

.cnct-academy-tabs-shell.is-hidden,
.cnct-academy-filters.is-hidden{
    display:none;
}

.cnct-academy-learn-tabs{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    padding:6px;
    border:1px solid rgba(226,232,240,.9);
    border-radius:18px;
    background:#f8fafc;
}

.cnct-academy-tab{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:44px;
    padding:10px 16px;
    border:0;
    border-radius:14px;
    background:transparent;
    color:#475569;
    font-weight:600;
    font-size:14px;
    cursor:pointer;
}

.cnct-academy-tab.is-active{
    background:#ffffff;
    color:#111827;
    box-shadow:0 10px 24px rgba(15,23,42,.08);
}

.cnct-academy-app .cnct-academy-tab:hover,
.cnct-academy-app .cnct-academy-tab:focus-visible{
    background:#f8fafc !important;
    color:#0f172a !important;
    box-shadow:none !important;
    text-decoration:none;
    outline:none;
}

.cnct-academy-app .cnct-academy-tab.is-active:hover,
.cnct-academy-app .cnct-academy-tab.is-active:focus-visible{
    background:#ffffff !important;
    color:#111827 !important;
    box-shadow:0 10px 24px rgba(15,23,42,.08) !important;
}


.cnct-academy-mode-switch-wrap{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:8px;
    margin-top:18px;
}

.cnct-academy-mode-switch-label{
    font-size:12px;
    font-weight:800;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:#64748b;
}

.cnct-academy-mode-switch{
    position:relative;
    display:inline-grid;
    grid-template-columns:repeat(2,minmax(120px,1fr));
    gap:6px;
    padding:6px;
    border:1px solid rgba(148,163,184,.22);
    border-radius:999px;
    background:linear-gradient(180deg, rgba(248,250,252,.96) 0%, rgba(241,245,249,.96) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.75),
        0 8px 22px rgba(15,23,42,.06);
}

.cnct-academy-mode{
    position:relative;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:46px;
    padding:10px 18px;
    border-radius:999px;
    text-decoration:none;
    color:#475569;
    font-weight:800;
    font-size:14px;
    letter-spacing:.01em;
    transition:
        background .2s ease,
        color .2s ease,
        box-shadow .2s ease,
        transform .2s ease;
}

.cnct-academy-mode:hover{
    color:#111827;
}

.cnct-academy-mode.is-active{
    background:#ffffff;
    box-shadow:
        0 10px 24px rgba(15,23,42,.10),
        inset 0 1px 0 rgba(255,255,255,.9);
    color:#111827;
}

.cnct-academy-mode.is-active::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:999px;
    border:1px solid rgba(255,255,255,.92);
    pointer-events:none;
}

.cnct-academy-mode[data-cnct-mode="learn"]::after,
.cnct-academy-mode[data-cnct-mode="teach"]::after{
    margin-left:8px;
    font-size:12px;
    line-height:1;
    opacity:.78;
}

.cnct-academy-mode[data-cnct-mode="learn"]::after{
    content:"●";
}

.cnct-academy-mode[data-cnct-mode="teach"]::after{
    content:"◆";
}

@media (max-width: 640px){
    .cnct-academy-mode-switch{
        width:100%;
        grid-template-columns:1fr 1fr;
    }

    .cnct-academy-mode{
        min-width:0;
        width:100%;
    }
}


.cnct-academy-mode-switch{
    overflow:hidden;
}

.cnct-academy-mode-switch-slider{
    position:absolute;
    top:6px;
    left:6px;
    bottom:6px;
    width:calc(50% - 3px);
    border-radius:999px;
    background:#ffffff;
    box-shadow:
        0 10px 24px rgba(15,23,42,.10),
        inset 0 1px 0 rgba(255,255,255,.9);
    border:1px solid rgba(255,255,255,.92);
    transition:
        transform .28s cubic-bezier(.2,.8,.2,1),
        width .28s cubic-bezier(.2,.8,.2,1),
        box-shadow .2s ease;
    z-index:0;
    pointer-events:none;
}

.cnct-academy-mode{
    z-index:1;
}

.cnct-academy-mode.is-active{
    background:transparent;
    box-shadow:none;
}

.cnct-academy-mode.is-active::before{
    display:none;
}


.cnct-academy-active-filters{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin:-2px 0 14px;
}

.cnct-academy-active-filters.is-hidden{
    display:none;
}

.cnct-academy-filter-chip{
    display:inline-flex;
    align-items:center;
    gap:8px;
    min-height:34px;
    padding:7px 12px;
    border-radius:999px;
    border:1px solid rgba(226,232,240,.95);
    background:#ffffff;
    color:#334155;
    font-size:12px;
    font-weight:600;
    cursor:pointer;
    box-shadow:0 8px 18px rgba(15,23,42,.05);
}

.cnct-academy-filter-chip span{
    opacity:.62;
}

.cnct-academy-results{
    position:relative;
    min-height:220px;
}

[data-cnct-academy-app].is-loading .cnct-academy-results::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:22px;
    background:
        linear-gradient(90deg, rgba(248,250,252,.0) 0%, rgba(255,255,255,.88) 50%, rgba(248,250,252,0) 100%),
        linear-gradient(180deg, rgba(248,250,252,.92) 0%, rgba(241,245,249,.92) 100%);
    background-size:220px 100%, 100% 100%;
    animation:cnctAcademyShimmer 1.15s linear infinite;
    pointer-events:none;
    z-index:2;
}

@keyframes cnctAcademyShimmer{
    0%{ background-position:-220px 0, 0 0; }
    100%{ background-position:calc(100% + 220px) 0, 0 0; }
}

.cnct-academy-course-topline{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    margin:0 0 12px;
    flex-wrap:wrap;
}

.cnct-academy-course-price{
    display:inline-flex;
    align-items:center;
    min-height:28px;
    padding:0;
    border-radius:0;
    background:transparent;
    color:#111827;
    font-size:14px;
    font-weight:800;
    white-space:nowrap;
}

.cnct-academy-course-facts{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
}

.cnct-academy-course-fact{
    display:inline-flex;
    align-items:center;
    min-height:28px;
    padding:4px 9px;
    border-radius:999px;
    background:#f8fafc;
    border:1px solid rgba(226,232,240,.9);
    color:#475569;
    font-size:12px;
    font-weight:600;
}

.cnct-academy-author-badge{
    gap:8px;
    padding:4px 10px 4px 6px;
}

.cnct-academy-author-badge-icon{
    width:18px;
    height:18px;
    min-width:18px;
    border-radius:999px;
    display:block;
    box-shadow:0 1px 4px rgba(15,23,42,.12);
}

.cnct-academy-empty{
    grid-column:1 / -1;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
    padding:28px;
    border:1px dashed rgba(148,163,184,.45);
    border-radius:22px;
    color:#475569;
    background:linear-gradient(180deg, rgba(255,255,255,.95) 0%, rgba(248,250,252,.95) 100%);
}

.cnct-academy-empty h3{
    margin:0;
    font-size:22px;
    color:#111827;
}

.cnct-academy-empty p{
    margin:0;
    max-width:64ch;
    line-height:1.7;
}

.cnct-academy-empty-icon{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:42px;
    height:42px;
    border-radius:14px;
    background:rgba(195,60,106,.10);
    color:#9f1239;
    font-size:20px;
    font-weight:800;
}

@media (max-width: 820px){
    .cnct-academy-course-topline{
        align-items:flex-start;
    }
}


.cnct-academy-tab{
    gap:10px;
}

.cnct-academy-tab-count-removed{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:24px;
    height:24px;
    padding:0 7px;
    border-radius:999px;
    background:rgba(15,23,42,.08);
    color:#334155;
    font-size:12px;
    font-weight:800;
    line-height:1;
}

.cnct-academy-tab.is-active .cnct-academy-tab-count-removed{
    background:rgba(195,60,106,.12);
    color:#9f1239;
}

.cnct-academy-author-badge-icon{
    background:#ffffff;
}


.cnct-academy-author-badge-visual{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:18px;
    height:18px;
    min-width:18px;
}

.cnct-academy-author-badge-visual img,
.cnct-academy-author-badge-visual .cnct-certification-badge-image{
    width:18px;
    height:18px;
    min-width:18px;
    object-fit:cover;
    border-radius:999px;
    display:block;
    box-shadow:0 1px 4px rgba(15,23,42,.12);
}

.cnct-academy-author-badge-visual .cnct-certification-badge-fallback{
    width:18px;
    height:18px;
    min-width:18px;
    border-radius:999px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#fff;
    font-size:10px;
    font-weight:800;
    box-shadow:0 1px 4px rgba(15,23,42,.12);
}


/* smaller badge visuals */
.cnct-academy-author-badge{
    padding:2px 8px 2px 4px;
    font-size:11px;
    gap:6px;
}

.cnct-academy-author-badge-visual,
.cnct-academy-author-badge-icon{
    width:14px !important;
    height:14px !important;
    min-width:14px !important;
}

.cnct-academy-author-badge-visual img,
.cnct-academy-author-badge-visual .cnct-certification-badge-image{
    width:14px !important;
    height:14px !important;
}

.cnct-academy-author-badge-visual .cnct-certification-badge-fallback{
    width:14px !important;
    height:14px !important;
    font-size:8px;
}


/* Premium inline verification UI */
.cnct-academy-inline-badges{
    display:inline-flex;
    align-items:center;
    gap:4px;
    margin-left:6px;
    vertical-align:middle;
}

.cnct-academy-inline-badge{
    position:relative;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:14px;
    height:14px;
    min-width:14px;
    border-radius:999px;
    background:#ffffff;
    box-shadow:0 1px 4px rgba(15,23,42,.12);
    overflow:hidden;
    vertical-align:middle;
}

.cnct-academy-inline-badge.is-certified{
    outline:1px solid rgba(190,24,93,.18);
    background:rgba(255,255,255,.96);
}

.cnct-academy-inline-badge.is-expert{
    outline:1px solid rgba(37,99,235,.18);
    background:rgba(255,255,255,.96);
}

.cnct-academy-inline-badge-visual,
.cnct-academy-inline-badge-icon,
.cnct-academy-inline-badge-fallback{
    width:100%;
    height:100%;
    min-width:100%;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.cnct-academy-inline-badge-visual *{
    width:100% !important;
    height:100% !important;
    max-width:14px !important;
    max-height:14px !important;
    object-fit:cover;
}

.cnct-academy-inline-badge-visual img,
.cnct-academy-inline-badge-visual .cnct-certification-badge-image,
.cnct-academy-inline-badge-icon{
    width:14px !important;
    height:14px !important;
    display:block;
    object-fit:cover;
    border-radius:999px;
}

.cnct-academy-inline-badge-visual svg{
    width:14px !important;
    height:14px !important;
    display:block;
}

.cnct-academy-inline-badge-fallback{
    font-size:9px;
    font-weight:800;
    color:#0f172a;
}

.cnct-academy-course-provider-copy strong{
    display:flex;
    align-items:center;
    gap:0;
    min-width:0;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

.cnct-academy-course-provider-copy strong > span:first-child{
    min-width:0;
    overflow:hidden;
    text-overflow:ellipsis;
}

/* old badge row hidden in premium layout */
.cnct-academy-author-badges{
    display:none !important;
}


/* continue cards provider spacing */
.cnct-academy-continue-card .cnct-academy-course-provider{
    margin:0 0 12px;
}

.cnct-academy-continue-card .cnct-academy-course-topline{
    margin:0 0 10px;
}


/* v2.7.2 premium switch */
.cnct-academy-mode-switch-wrap{
    gap:10px;
}

.cnct-academy-mode-switch-label{
    font-size:11px;
    font-weight:800;
    letter-spacing:.1em;
    text-transform:uppercase;
    color:#64748b;
}

.cnct-academy-mode-switch{
    position:relative;
    display:inline-flex;
    align-items:center;
    padding:4px;
    border-radius:999px;
    background:rgba(15,23,42,.06);
    border:1px solid rgba(226,232,240,.9);
    backdrop-filter:blur(6px);
    overflow:hidden;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.7),
        0 10px 24px rgba(15,23,42,.06);
}

.cnct-academy-mode-switch-slider{
    position:absolute;
    top:4px;
    bottom:4px;
    left:4px;
    border-radius:999px;
    background:#ffffff;
    box-shadow:
        0 6px 18px rgba(15,23,42,.12),
        0 1px 2px rgba(15,23,42,.08);
    transition:
        transform .28s cubic-bezier(.2,.8,.2,1),
        width .28s cubic-bezier(.2,.8,.2,1);
    z-index:0;
    pointer-events:none;
}

.cnct-academy-mode{
    position:relative;
    z-index:1;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    min-height:42px;
    min-width:132px;
    padding:8px 18px;
    border-radius:999px;
    font-size:13px;
    font-weight:800;
    color:#64748b;
    letter-spacing:.01em;
    text-decoration:none;
    transition:
        color .2s ease,
        transform .18s ease,
        opacity .2s ease;
    cursor:pointer;
}

.cnct-academy-mode:hover{
    color:#0f172a;
    opacity:1;
}

.cnct-academy-mode.is-active{
    color:#0f172a;
}

.cnct-academy-mode.is-active::after{
    content:"";
    position:absolute;
    inset:0;
    border-radius:999px;
    box-shadow:0 0 0 1px rgba(255,255,255,.6) inset;
    pointer-events:none;
}

.cnct-academy-mode-icon{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:18px;
    height:18px;
    font-size:14px;
    line-height:1;
    transform:translateY(-.5px);
}

.cnct-academy-mode-text{
    display:inline-block;
    white-space:nowrap;
}

@media (max-width: 640px){
    .cnct-academy-mode-switch{
        width:100%;
        display:grid;
        grid-template-columns:1fr 1fr;
    }

    .cnct-academy-mode{
        min-width:0;
        width:100%;
        padding:8px 12px;
    }
}


.cnct-academy-notice{
    margin:0 0 18px;
    padding:14px 16px;
    border-radius:16px;
    background:linear-gradient(180deg, rgba(16,185,129,.10) 0%, rgba(255,255,255,.95) 100%);
    border:1px solid rgba(16,185,129,.16);
    color:#065f46;
    font-weight:600;
}

.cnct-academy-teach-filters-shell.is-hidden{
    display:none;
}

.cnct-academy-teach-filters{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    margin:0 0 18px;
    padding:14px 16px;
    border:1px solid rgba(226,232,240,.92);
    border-radius:18px;
    background:rgba(248,250,252,.9);
}

.cnct-academy-teach-status-tabs{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.cnct-academy-teach-status{
    display:inline-flex;
    align-items:center;
    gap:6px;
    min-height:38px;
    padding:8px 12px;
    border-radius:12px;
    border:1px solid rgba(203,213,225,.95);
    background:#fff;
    color:#334155;
    font-size:13px;
    font-weight:600;
    box-shadow:0 8px 18px rgba(15,23,42,.04);
    cursor:pointer;
}

.cnct-academy-teach-status strong{
    color:#0f172a;
    font-weight:700;
}

.cnct-academy-teach-status.is-active{
    border-color:rgba(16,185,129,.28);
    background:rgba(16,185,129,.12);
    color:#065f46;
}

.cnct-academy-app .cnct-academy-teach-status:hover,
.cnct-academy-app .cnct-academy-teach-status:focus-visible{
    border-color:#e5e7eb !important;
    background:#f8fafc !important;
    color:#0f172a !important;
    box-shadow:none !important;
    text-decoration:none;
    outline:none;
}

.cnct-academy-app .cnct-academy-teach-status.is-active:hover,
.cnct-academy-app .cnct-academy-teach-status.is-active:focus-visible{
    border-color:rgba(16,185,129,.28) !important;
    background:rgba(16,185,129,.12) !important;
    color:#065f46 !important;
}

.cnct-academy-teach-cta,
.cnct-academy-payouts-fallback-links{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:10px;
    flex-wrap:wrap;
}

.cnct-academy-create-course,
.cnct-academy-open-payouts{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:40px;
    padding:10px 14px;
    border-radius:12px;
    font-size:13px;
    font-weight:700;
    text-decoration:none;
    white-space:nowrap;
}

.cnct-academy-create-course{
    background:#111827;
    border:1px solid #111827;
    color:#fff;
}

.cnct-academy-open-payouts{
    background:#fff;
    border:1px solid rgba(15,23,42,.12);
    color:#0f172a;
    box-shadow:0 8px 18px rgba(15,23,42,.04);
}

@media (max-width: 960px){
    .cnct-academy-teach-filters{
        align-items:flex-start;
        flex-direction:column;
    }

    .cnct-academy-teach-cta{
        width:100%;
    }

    .cnct-academy-create-course,
    .cnct-academy-open-payouts{
        width:100%;
    }
}

.cnct-academy-progress-head.is-teach{
    margin-top:4px;
    margin-bottom:12px;
}

.cnct-academy-teach-actions{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-top:8px;
}

.cnct-academy-teach-action{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:36px;
    padding:8px 12px;
    border-radius:12px;
    border:1px solid rgba(226,232,240,.95);
    background:#fff;
    color:#334155;
    font-size:13px;
    font-weight:600;
    text-decoration:none;
    box-shadow:0 8px 18px rgba(15,23,42,.04);
}

.cnct-academy-teach-action.is-primary{
    background:#111827;
    border-color:#111827;
    color:#fff;
}

.cnct-academy-teach-action.is-danger{
    color:#991b1b;
    border-color:rgba(239,68,68,.2);
    background:rgba(254,242,242,.8);
}

.cnct-academy-filter-search{position:relative;}
.cnct-academy-filter input:focus,
.cnct-academy-filter select:focus{
    border-color:rgba(34,197,94,.55);
    box-shadow:0 0 0 4px rgba(34,197,94,.12);
}
.cnct-academy-suggestions{
    position:absolute;
    left:0; right:0; top:100%;
    z-index:20;
    margin-top:8px;
    padding:8px;
    border:1px solid rgba(203,213,225,.95);
    border-radius:16px;
    background:#fff;
    box-shadow:0 18px 44px rgba(15,23,42,.12);
}
.cnct-academy-suggestion{
    width:100%; display:flex; align-items:center; gap:10px;
    padding:10px 12px; border:0; background:transparent; border-radius:12px;
    text-align:left; cursor:pointer; color:#111827;
}
.cnct-academy-suggestion:hover,.cnct-academy-suggestion.is-active{background:#f0fdf4; outline:none;}
.cnct-academy-suggestion-type{
    flex:0 0 auto; padding:4px 8px; border-radius:999px; font-size:11px; font-weight:600;
    color:#166534; background:rgba(34,197,94,.12);
}
.cnct-academy-load-more-wrap{
    display:flex; flex-direction:column; align-items:center; gap:12px; margin-top:20px;
}
.cnct-academy-load-more-wrap.is-empty-state{margin-top:0;}
.cnct-academy-load-more-status{
    font-size:13px; font-weight:600; color:#166534;
    padding:8px 12px; border-radius:999px;
    background:rgba(34,197,94,.08); border:1px solid rgba(34,197,94,.14);
}
.cnct-academy-load-more-wrap.is-complete .cnct-academy-load-more-status{
    color:#14532d; background:rgba(22,163,74,.1); border-color:rgba(22,163,74,.16);
}
.cnct-academy-load-more{
    min-height:46px; padding:0 18px; border-radius:14px; cursor:pointer;
    border:1px solid rgba(34,197,94,.22); background:#fff; color:#166534; font-weight:800;
    box-shadow:0 8px 22px rgba(15,23,42,.05);
    display:inline-flex; align-items:center; justify-content:center; gap:10px;
}
.cnct-academy-load-more:hover{transform:translateY(-1px);}
.cnct-academy-load-more:disabled{opacity:.85; cursor:wait;}
.cnct-academy-load-more-spinner{
    width:16px; height:16px; border-radius:999px;
    border:2px solid rgba(22,101,52,.18); border-top-color:#16a34a;
    display:none; animation:cnctAcademySpin .7s linear infinite;
}
.cnct-academy-load-more.is-loading .cnct-academy-load-more-spinner{display:inline-block;}
@keyframes cnctAcademySpin{to{transform:rotate(360deg);}}


/* v3.6.0 academy filter polish */
.cnct-academy-filters{
    grid-template-columns:minmax(0,1.45fr) repeat(3,minmax(170px,.72fr)) auto;
    align-items:end;
}

.cnct-academy-filter-search{
    position:relative;
}

.cnct-academy-suggestions.is-hidden{
    display:none;
}

.cnct-academy-empty--catalog{
    margin-bottom:18px;
}

.cnct-academy-empty-actions{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:4px;
}

.cnct-academy-empty-reset{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:42px;
    padding:0 14px;
    border-radius:14px;
    border:1px solid rgba(34,197,94,.2);
    background:#ffffff;
    color:#166534;
    font-weight:800;
    cursor:pointer;
    box-shadow:0 10px 20px rgba(15,23,42,.05);
}

.cnct-academy-similar{
    display:flex;
    flex-direction:column;
    gap:14px;
    margin-top:10px;
}

.cnct-academy-similar-head h3{
    margin:0;
    font-size:20px;
    color:#111827;
}

@media (max-width: 1180px){
    .cnct-academy-filters{
        grid-template-columns:minmax(0,1.2fr) repeat(2,minmax(170px,1fr));
    }
    .cnct-academy-filter-reset{
        grid-column:1 / -1;
        justify-self:flex-start;
    }
}

@media (max-width: 820px){
    .cnct-academy-filters{
        grid-template-columns:1fr;
    }
    .cnct-academy-filter-reset{
        width:100%;
    }
}


.cnct-academy-active-filters::before{
    content:"Aktive Filter:";
    align-self:center;
    font-size:12px;
    font-weight:800;
    letter-spacing:.01em;
    color:#64748b;
}

.cnct-academy-highlight{
    padding:0 .2em;
    border-radius:6px;
    background:rgba(34,197,94,.18);
    color:inherit;
    box-shadow:inset 0 -1px 0 rgba(34,197,94,.24);
}

.cnct-academy-course-excerpt .cnct-academy-highlight,
.cnct-academy-term-pill .cnct-academy-highlight,
.cnct-academy-course-provider-copy .cnct-academy-highlight{
    font-weight:600;
}


/* v3.56.7 academy switch + multi-category polish */
.cnct-academy-hero{
    gap:16px;
    padding:16px 24px;
}

.cnct-academy-title{
    margin:0 0 4px;
}

.cnct-academy-subtitle{
    font-size:13px;
    line-height:1.55;
}

.cnct-academy-kpis{
    gap:10px;
}

.cnct-academy-kpi{
    min-height:84px;
    padding:12px 14px;
}

.cnct-academy-mode-switch-wrap{
    align-items:center;
    gap:8px;
    margin-top:14px;
}

.cnct-academy-mode-switch-label{
    order:2;
    width:100%;
    text-align:center;
    font-size:10px;
    letter-spacing:.12em;
}

.cnct-academy-mode-switch{
    order:1;
}

.cnct-academy-mode{
    min-height:42px;
    padding:9px 16px;
    font-size:13px;
}

.cnct-academy-filters{
    align-items:start;
}

.cnct-academy-filter-multi select{
    min-height:132px;
    padding:10px 12px;
}

.cnct-academy-filter-multi option{
    padding:6px 0;
}

@media (max-width: 980px){
    .cnct-academy-hero{
        padding:14px 20px;
    }
    .cnct-academy-kpi{
        min-height:78px;
    }
}

/* v3.56.19 academy catalog category search cleanup */
.cnct-academy-filters{
    grid-template-columns:minmax(0,1.35fr) minmax(260px,1.05fr) minmax(200px,.72fr) minmax(190px,.68fr) auto;
    align-items:end;
}

.cnct-academy-filter-category{
    position:relative;
}

.cnct-academy-multi-select{
    position:relative;
    display:flex;
    flex-direction:column;
    gap:10px;
}

.cnct-academy-multi-native{
    position:absolute;
    width:1px;
    height:1px;
    opacity:0;
    pointer-events:none;
    inset:auto;
}

.cnct-academy-multi-trigger{
    width:100%;
    min-height:48px;
    padding:0 14px;
    border-radius:14px;
    border:1px solid rgba(203,213,225,.95);
    background:#ffffff;
    color:#111827;
    box-shadow:0 1px 2px rgba(15,23,42,.02);
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    cursor:pointer;
    text-align:left;
    transition:border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.cnct-academy-multi-trigger:hover{
    border-color:rgba(148,163,184,.85);
}

.cnct-academy-multi-trigger:focus{
    border-color:rgba(34,197,94,.35);
    box-shadow:0 0 0 4px rgba(34,197,94,.10);
    outline:none;
}

.cnct-academy-multi-trigger.has-selection{
    border-color:rgba(34,197,94,.26);
    background:linear-gradient(180deg,#ffffff 0%, #f8fff9 100%);
}

.cnct-academy-multi-trigger-label{
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
    font-size:14px;
    color:#0f172a;
}

.cnct-academy-multi-trigger-icon{
    flex:0 0 auto;
    color:#64748b;
    transition:transform .18s ease;
}

.cnct-academy-filter-category.is-open .cnct-academy-multi-trigger-icon{
    transform:rotate(180deg);
}

.cnct-academy-multi-panel{
    position:absolute;
    top:calc(100% + 8px);
    left:0;
    right:0;
    z-index:30;
    display:flex;
    flex-direction:column;
    gap:10px;
    max-height:320px;
    padding:12px;
    border-radius:18px;
    border:1px solid rgba(226,232,240,.96);
    background:#ffffff;
    box-shadow:0 20px 42px rgba(15,23,42,.14);
}

.cnct-academy-multi-panel.is-hidden{
    display:none;
}

.cnct-academy-multi-search-shell{
    position:sticky;
    top:0;
    z-index:2;
    padding-bottom:2px;
    background:#ffffff;
}

.cnct-academy-multi-search{
    width:100%;
    min-height:42px;
    padding:0 14px;
    border-radius:12px;
    border:1px solid rgba(203,213,225,.9);
    background:#f8fafc;
    color:#0f172a;
    font-size:14px;
    outline:none;
}

.cnct-academy-multi-search::placeholder{
    color:#94a3b8;
}

.cnct-academy-multi-search:focus{
    border-color:rgba(34,197,94,.32);
    box-shadow:0 0 0 4px rgba(34,197,94,.10);
    background:#ffffff;
}

.cnct-academy-multi-options{
    display:flex;
    flex-direction:column;
    gap:6px;
    overflow:auto;
    padding-right:2px;
}

.cnct-academy-multi-option{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    width:100%;
    min-height:44px;
    padding:10px 12px;
    border:1px solid transparent;
    border-radius:12px;
    background:#ffffff;
    color:#111827;
    cursor:pointer;
    text-align:left;
    transition:border-color .16s ease, background .16s ease, transform .16s ease;
}

.cnct-academy-multi-option:hover,
.cnct-academy-multi-option:focus{
    border-color:rgba(203,213,225,.95);
    background:#f8fafc;
    outline:none;
}

.cnct-academy-multi-option.is-selected{
    border-color:rgba(34,197,94,.20);
    background:rgba(34,197,94,.08);
    color:#166534;
}

.cnct-academy-multi-option.is-hidden{
    display:none;
}

.cnct-academy-multi-option-label{
    font-size:14px;
    font-weight:600;
    line-height:1.35;
}

.cnct-academy-multi-option-check{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:24px;
    height:24px;
    border-radius:999px;
    background:rgba(34,197,94,.12);
    color:#16a34a;
    font-size:13px;
    font-weight:800;
    opacity:0;
    transform:scale(.88);
    transition:opacity .14s ease, transform .14s ease;
}

.cnct-academy-multi-option.is-selected .cnct-academy-multi-option-check{
    opacity:1;
    transform:scale(1);
}

.cnct-academy-multi-empty{
    padding:12px 4px 6px;
    color:#64748b;
    font-size:13px;
}

.cnct-academy-multi-empty.is-hidden{
    display:none;
}


@media (max-width: 1180px){
    .cnct-academy-filters{
        grid-template-columns:minmax(0,1.15fr) repeat(3,minmax(180px,1fr));
    }

    .cnct-academy-filter-reset{
        grid-column:1 / -1;
        justify-self:flex-start;
    }
}

@media (max-width: 820px){
    .cnct-academy-multi-panel{
        position:static;
        margin-top:2px;
        box-shadow:none;
        max-height:none;
    }
}

.cnct-academy-teach-nav{
    display:flex;
    gap:10px;
    margin:0 0 18px;
    flex-wrap:wrap;
}
.cnct-academy-teach-nav__item{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 14px;
    border-radius:999px;
    border:1px solid rgba(15,23,42,.1);
    background:#fff;
    color:#0f172a;
    text-decoration:none;
    font-weight:600;
}
.cnct-academy-teach-nav__item.is-active{
    background:#0f172a;
    color:#fff;
    border-color:#0f172a;
}


.cnct-academy-payouts-app{
    gap:22px;
}

.cnct-academy-payouts-hero{
    align-items:stretch;
}

.cnct-academy-payouts-hero-actions{
    display:flex;
    align-items:center;
    gap:12px;
    margin-top:16px;
    flex-wrap:wrap;
}

.cnct-academy-payouts-back,
.cnct-academy-payouts-method-chip{
    display:inline-flex;
    align-items:center;
    min-height:42px;
    padding:0 16px;
    border-radius:999px;
    border:1px solid rgba(203,213,225,.95);
    background:#fff;
    color:#0f172a;
    text-decoration:none;
    font-weight:600;
}

.cnct-academy-payouts-method-chip{
    background:rgba(34,197,94,.08);
    border-color:rgba(34,197,94,.18);
    color:#166534;
}

.cnct-academy-payouts-grid{
    display:grid;
    grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);
    gap:18px;
    margin-top:6px;
}

.cnct-academy-payout-card{
    padding:22px;
    border-radius:24px;
    border:1px solid rgba(226,232,240,.9);
    background:linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(248,250,252,.96) 100%);
    box-shadow:0 18px 40px rgba(15,23,42,.05);
}

.cnct-academy-payout-card--history{
    margin-top:18px;
}

.cnct-academy-payout-card-head{
    display:flex;
    justify-content:space-between;
    gap:16px;
    margin-bottom:18px;
}

.cnct-academy-payout-card-head h2{
    margin:0;
    font-size:24px;
    color:#111827;
}

.cnct-academy-payout-card-head .cnct-academy-section-text{
    margin-top:8px;
}

.cnct-academy-payout-highlight-row{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:12px;
    margin-bottom:18px;
}

.cnct-academy-payout-highlight{
    padding:16px 18px;
    border-radius:18px;
    background:#fff;
    border:1px solid rgba(226,232,240,.9);
    display:flex;
    flex-direction:column;
    gap:6px;
}

.cnct-academy-payout-highlight-label{
    font-size:12px;
    font-weight:600;
    color:#64748b;
}

.cnct-academy-payout-highlight strong{
    font-size:22px;
    line-height:1.1;
    color:#111827;
}

.cnct-academy-payout-request-form,
.cnct-academy-payout-settings-form{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.cnct-academy-payout-field{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.cnct-academy-payout-field span{
    font-size:12px;
    font-weight:700;
    color:#64748b;
}

.cnct-academy-payout-field small{
    color:#64748b;
    font-size:12px;
    line-height:1.5;
}

.cnct-academy-payout-field input{
    width:100%;
    min-height:48px;
    padding:0 14px;
    border-radius:14px;
    border:1px solid rgba(203,213,225,.95);
    background:#fff;
    color:#111827;
    outline:none;
}

.cnct-academy-payout-field input:focus{
    border-color:rgba(34,197,94,.36);
    box-shadow:0 0 0 4px rgba(34,197,94,.08);
}

.cnct-academy-payout-inline-note{
    display:flex;
    justify-content:space-between;
    gap:12px;
    align-items:center;
    padding:14px 16px;
    border-radius:16px;
    background:rgba(15,23,42,.03);
    color:#334155;
    font-size:13px;
}

.cnct-academy-payout-inline-note strong{
    color:#111827;
}

.cnct-academy-payout-submit{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:50px;
    padding:0 18px;
    border:none;
    border-radius:16px;
    background:#111827;
    color:#fff;
    font-weight:700;
    cursor:pointer;
    box-shadow:0 14px 28px rgba(15,23,42,.14);
}

.cnct-academy-payout-submit:disabled{
    opacity:.55;
    cursor:not-allowed;
    box-shadow:none;
}

.cnct-academy-payout-submit--secondary{
    background:#166534;
}

.cnct-academy-payout-methods{
    display:grid;
    gap:14px;
}

.cnct-academy-payout-method{
    display:flex;
    flex-direction:column;
    gap:16px;
    padding:18px;
    border-radius:20px;
    border:1px solid rgba(226,232,240,.95);
    background:#fff;
    transition:border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.cnct-academy-payout-method.is-selected{
    border-color:rgba(34,197,94,.38);
    box-shadow:0 12px 30px rgba(34,197,94,.1);
    transform:translateY(-1px);
}

.cnct-academy-payout-method-head{
    display:flex;
    justify-content:space-between;
    gap:14px;
    align-items:flex-start;
}

.cnct-academy-payout-method-title-wrap{
    display:flex;
    gap:12px;
    align-items:flex-start;
}

.cnct-academy-payout-method-title-wrap input[type="radio"]{
    margin-top:5px;
}

.cnct-academy-payout-method-title-wrap strong{
    display:block;
    font-size:16px;
    color:#111827;
}

.cnct-academy-payout-method-title-wrap p{
    margin:6px 0 0;
    color:#64748b;
    font-size:13px;
    line-height:1.55;
}

.cnct-academy-payout-method-head img{
    width:44px;
    height:44px;
    object-fit:contain;
    border-radius:12px;
}

.cnct-academy-payout-method-fields{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:14px;
}

.cnct-academy-payout-settings-actions{
    display:flex;
    justify-content:flex-end;
}

.cnct-academy-payout-history{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.cnct-academy-payout-history-row{
    display:flex;
    justify-content:space-between;
    gap:16px;
    align-items:center;
    padding:16px 18px;
    border-radius:18px;
    border:1px solid rgba(226,232,240,.9);
    background:#fff;
}

.cnct-academy-payout-history-main,
.cnct-academy-payout-history-meta{
    display:flex;
    flex-direction:column;
    gap:6px;
}

.cnct-academy-payout-history-main strong{
    font-size:17px;
    color:#111827;
}

.cnct-academy-payout-history-main span,
.cnct-academy-payout-history-meta span{
    color:#64748b;
    font-size:13px;
}

.cnct-academy-payout-history-meta{
    align-items:flex-end;
    text-align:right;
}

.cnct-academy-payout-status{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:32px;
    padding:0 12px;
    border-radius:999px;
    font-size:12px;
    font-weight:700;
}

.cnct-academy-payout-status.is-pending{
    background:rgba(245,158,11,.12);
    color:#b45309;
}

.cnct-academy-payout-status.is-approved{
    background:rgba(34,197,94,.12);
    color:#166534;
}

.cnct-academy-payout-status.is-rejected{
    background:rgba(239,68,68,.12);
    color:#b91c1c;
}

.cnct-academy-payouts-empty{
    padding:34px 28px;
    border-radius:22px;
    border:1px dashed rgba(148,163,184,.38);
    background:rgba(248,250,252,.72);
}

.cnct-academy-payouts-empty h2{
    margin:0 0 10px;
    color:#111827;
}

.cnct-academy-payouts-empty p{
    margin:0;
    color:#64748b;
    line-height:1.65;
}

.cnct-academy-payouts-empty--compact{
    padding:18px;
}

.cnct-academy-feedback.is-success,
.cnct-academy-feedback.is-error{
    display:block;
    margin-bottom:18px;
    padding:14px 16px;
    border-radius:16px;
}

.cnct-academy-feedback.is-success{
    background:rgba(34,197,94,.1);
    color:#166534;
}

.cnct-academy-feedback.is-error{
    background:rgba(239,68,68,.1);
    color:#b91c1c;
}

@media (max-width: 1080px){
    .cnct-academy-payouts-grid{
        grid-template-columns:minmax(0,1fr);
    }
}

@media (max-width: 760px){
    .cnct-academy-payout-highlight-row,
    .cnct-academy-payout-method-fields{
        grid-template-columns:minmax(0,1fr);
    }

    .cnct-academy-payout-inline-note,
    .cnct-academy-payout-history-row,
    .cnct-academy-payout-card-head,
    .cnct-academy-payout-method-head{
        flex-direction:column;
        align-items:flex-start;
    }

    .cnct-academy-payout-history-meta{
        align-items:flex-start;
        text-align:left;
    }
}


.cnct-academy-results-meta--standalone {
  display: flex;
  justify-content: flex-end;
  margin: 0 0 18px;
}

.cnct-academy-app--catalog-shortcode .cnct-academy-content {
  overflow: visible;
}


/* v3.75.5 – harden standalone catalog shortcode against theme/builder link and badge overrides */
.cnct-academy-app--catalog-shortcode .cnct-academy-course-image-wrap{
  position:relative !important;
  overflow:hidden !important;
}

.cnct-academy-app--catalog-shortcode .cnct-academy-badge{
  position:absolute !important;
  top:14px !important;
  left:14px !important;
  z-index:3 !important;
  display:inline-flex !important;
  align-items:center !important;
  min-height:32px !important;
  padding:6px 12px !important;
  border-radius:999px !important;
  border:1px solid rgba(255,255,255,.75) !important;
  background:rgba(255,255,255,.88) !important;
  color:#111827 !important;
  font-size:12px !important;
  font-weight:600 !important;
  line-height:1.2 !important;
  text-decoration:none !important;
  box-shadow:0 10px 24px rgba(15,23,42,.12) !important;
  backdrop-filter:blur(10px) !important;
}

.cnct-academy-app--catalog-shortcode .cnct-academy-badge.is-active,
.cnct-academy-app--catalog-shortcode .cnct-academy-badge.is-live,
.cnct-academy-app--catalog-shortcode .cnct-academy-badge.is-done{
  color:#0f5132 !important;
}

.cnct-academy-app--catalog-shortcode .cnct-academy-badge.is-new,
.cnct-academy-app--catalog-shortcode .cnct-academy-badge.is-draft{
  color:#6b7280 !important;
}

.cnct-academy-app--catalog-shortcode .cnct-academy-badge.is-review{
  color:#7c2d12 !important;
}

.cnct-academy-app--catalog-shortcode .cnct-academy-badge.is-internal{
  color:#4338ca !important;
}

.cnct-academy-app--catalog-shortcode .cnct-academy-course-card h3 a,
.cnct-academy-app--catalog-shortcode .cnct-academy-course-card h3 a:visited,
.cnct-academy-app--catalog-shortcode .cnct-academy-course-provider-copy strong,
.cnct-academy-app--catalog-shortcode .cnct-academy-course-provider-copy strong span,
.cnct-academy-app--catalog-shortcode .cnct-academy-course-updated,
.cnct-academy-app--catalog-shortcode .cnct-academy-course-price{
  color:#111827 !important;
}

.cnct-academy-app--catalog-shortcode .cnct-academy-course-card h3 a{
  text-decoration:none !important;
}

.cnct-academy-app--catalog-shortcode .cnct-academy-course-cta,
.cnct-academy-app--catalog-shortcode .cnct-academy-course-cta:visited,
.cnct-academy-app--catalog-shortcode .cnct-academy-course-cta:hover,
.cnct-academy-app--catalog-shortcode .cnct-academy-course-cta:focus{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  min-height:40px !important;
  padding:10px 14px !important;
  border-radius:12px !important;
  background:#111827 !important;
  color:#ffffff !important;
  font-weight:600 !important;
  font-size:14px !important;
  line-height:1.2 !important;
  text-decoration:none !important;
  box-shadow:none !important;
}

.cnct-academy-teach-cta-note{
  margin:12px 0 0;
  font-size:13px;
  color:#5b6473;
}

.cnct-academy-teach-cta-note.is-danger{
  padding:10px 12px;
  border:1px solid #fecaca;
  border-radius:10px;
  background:#fef2f2;
  color:#991b1b;
}
