.cmp-ts-wrap {
        max-width: 1180px;
        margin: 0 auto;
        padding: 20px 20px 60px;
    }


    /* -----------------------------------------------------
       Hero
       ----------------------------------------------------- */

    .cmp-ts-hero {
        text-align: center;
        padding: 30px 20px 45px;
    }

    .cmp-ts-eyebrow {
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        opacity: .65;
        margin-bottom: 10px;
    }

    .cmp-ts-hero h1,
    .cmp-ts-detail-hero h1 {
        margin: 0;
        font-size: clamp(30px, 5vw, 46px);
        line-height: 1.1;
        font-weight: 800;
    }

    .cmp-ts-hero p {
        max-width: 650px;
        margin: 18px auto 0;
        font-size: 16px;
        line-height: 1.7;
        opacity: .72;
    }


    /* -----------------------------------------------------
       Catalogue Grid
       ----------------------------------------------------- */

    .cmp-ts-grid {
        display: grid;
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
        gap: 22px;
    }


    .cmp-ts-card {
        position: relative;
        display: flex;
        flex-direction: column;
        padding: 26px;
        border: 1px solid rgba(0,0,0,.08);
        border-radius: 18px;
        background: #fff;
        box-shadow:
            0 8px 30px rgba(0,0,0,.05);
        transition:
            transform .2s ease,
            box-shadow .2s ease;
    }


    .cmp-ts-card:hover {
        transform: translateY(-3px);
        box-shadow:
            0 14px 38px rgba(0,0,0,.08);
    }


    .cmp-ts-card-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 20px;
    }


    .cmp-ts-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        border-radius: 14px;
        background: #f3f6ff;
        font-size: 23px;
    }


    .cmp-ts-count {
        font-size: 13px;
        font-weight: 700;
        opacity: .65;
    }


    .cmp-ts-card h2 {
        margin: 0 0 12px;
        font-size: 22px;
        line-height: 1.25;
    }


    .cmp-ts-description {
        font-size: 14px;
        line-height: 1.65;
        opacity: .7;
        flex: 1;
    }


    .cmp-ts-description p {
        margin: 0 0 8px;
    }


    .cmp-ts-card-footer {
        margin-top: 22px;
    }


    .cmp-ts-button,
    .cmp-ts-start {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        text-decoration: none !important;
        font-weight: 700;
        border-radius: 10px;
        transition: .2s ease;
    }


    .cmp-ts-button {
        width: 100%;
        padding: 12px 16px;
        background: #111827;
        color: #fff !important;
    }


    .cmp-ts-button:hover {
        transform: translateY(-1px);
        opacity: .92;
    }


    /* -----------------------------------------------------
       Detail
       ----------------------------------------------------- */

    .cmp-ts-back {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 28px;
    padding: 9px 14px;
    border: 1px solid rgba(0,0,0,.09);
    border-radius: 9px;
    background: #fff;
    color: #334155 !important;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none !important;
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
    transition: all .2s ease;
}

.cmp-ts-back:hover {
    background: #f8fafc;
    border-color: rgba(0,0,0,.16);
    color: #111827 !important;
    transform: translateX(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,.06);
}


    .cmp-ts-detail-hero {
        padding: 10px 0 38px;
    }


    .cmp-ts-series-description {
        max-width: 750px;
        margin-top: 18px;
        font-size: 15px;
        line-height: 1.7;
        opacity: .7;
    }


    .cmp-ts-series-description p {
        margin: 0 0 8px;
    }


    /* -----------------------------------------------------
       Sections
       ----------------------------------------------------- */

    .cmp-ts-section {
        margin-top: 34px;
    }


    .cmp-ts-section-heading {
        display: flex;
        align-items: end;
        justify-content: space-between;
        gap: 20px;
        margin-bottom: 14px;
        padding-bottom: 12px;
        border-bottom: 1px solid rgba(0,0,0,.08);
    }


    .cmp-ts-section-label {
        display: block;
        margin-bottom: 4px;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 1.2px;
        opacity: .5;
    }


    .cmp-ts-section-heading h2 {
        margin: 0;
        font-size: 23px;
    }


    .cmp-ts-section-count {
        font-size: 13px;
        font-weight: 600;
        opacity: .55;
    }


    /* -----------------------------------------------------
       Exam List
       ----------------------------------------------------- */

    .cmp-ts-exam-list {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }


    .cmp-ts-exam-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 20px;
    border: 1px solid #e7ebf0;
    border-radius: 14px;
    background: #fff;
    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        transform .2s ease;
}


    .cmp-ts-exam-card:hover {
    border-color: #d9e0e8;
    box-shadow:
        0 8px 24px rgba(15,23,42,.07);
    transform: translateY(-1px);
}


    .cmp-ts-exam-main {
        min-width: 0;
        flex: 1;
    }


    .cmp-ts-exam-title-row {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 9px;
    }


    .cmp-ts-exam-title-row h3 {
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
    color: #172033;
}


    .cmp-ts-free,
.cmp-ts-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 20px;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .4px;
    line-height: 1;
}


    .cmp-ts-free {
    background: #eaf8ef;
    color: #16703a;
    border: 1px solid #ccebd6;
}


.cmp-ts-premium {
    background: #fff5df;
    color: #956200;
    border: 1px solid #f1dfb5;
}


    .cmp-ts-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 11px;
    font-size: 12px;
}

.cmp-ts-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    min-height: 26px;
    padding: 4px 9px;
    border-radius: 7px;
    background: #f6f8fb;
    border: 1px solid #e9edf3;
    color: #536174;
    font-weight: 600;
    line-height: 1;
}

.cmp-ts-meta span:first-child {
    color: #43556b;
}

.cmp-ts-meta span:nth-child(2) {
    color: #536174;
}

.cmp-ts-meta span:nth-child(3) {
    color: #536174;
}


    .cmp-ts-exam-action {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-shrink: 0;
    }


    .cmp-ts-lock {
        font-size: 13px;
    }


    .cmp-ts-start {
    min-width: 102px;
    padding: 10px 14px;
    background: #111827;
    color: #fff !important;
    font-size: 12px;
    font-weight: 700;
    border-radius: 9px;
    box-shadow: 0 3px 8px rgba(15,23,42,.12);
}


    .cmp-ts-start:hover {
    opacity: 1;
    background: #1d2738;
    transform: translateY(-1px);
    box-shadow: 0 5px 12px rgba(15,23,42,.16);
}


    /* -----------------------------------------------------
       Empty
       ----------------------------------------------------- */

    .cmp-ts-empty {
        padding: 55px 25px;
        text-align: center;
        border: 1px dashed rgba(0,0,0,.15);
        border-radius: 18px;
    }


    .cmp-ts-empty h2 {
        margin: 0 0 8px;
    }


    .cmp-ts-empty p {
        margin: 0 0 15px;
        opacity: .65;
    }


    /* -----------------------------------------------------
       Mobile
       ----------------------------------------------------- */

    @media (max-width: 900px) {

        .cmp-ts-grid {
            grid-template-columns:
                repeat(2, minmax(0, 1fr));
        }

    }


    @media (max-width: 640px) {

        .cmp-ts-wrap {
            padding-left: 14px;
            padding-right: 14px;
        }


        .cmp-ts-grid {
            grid-template-columns: 1fr;
        }


        .cmp-ts-exam-card {
            align-items: flex-start;
            flex-direction: column;
        }


        .cmp-ts-exam-action {
            width: 100%;
        }


        .cmp-ts-start {
            width: 100%;
        }


        .cmp-ts-section-heading {
            align-items: flex-start;
            flex-direction: column;
            gap: 5px;
        }


        .cmp-ts-meta {
            gap: 8px 14px;
        }

    }