.ptcb-course-content{
    margin:30px 0;
}

.ptcb-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
    font-family: 'Nunito';
}

.ptcb-meta{
    color:#666;
    margin-bottom:25px;
    font-size:15px;
}

.ptcb-section{
    border:1px solid #e5e7eb;
    border-radius:10px;
    margin-bottom:15px;
    overflow:hidden;
    background:#fff;
}

.ptcb-section-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 22px;
    cursor:pointer;
    transition:.25s;
}

.ptcb-section-header:hover{
    background:#f8f9fc;
}

.ptcb-section-left{
    display:flex;
    align-items:center;
}

.ptcb-section-title{
    margin-left:12px;
    font-size:20px;
    font-weight:600;
}

.ptcb-lesson-count{
    color:#666;
    font-size:15px;
}

.ptcb-section-body{
    display:none;
    border-top:1px solid #eee;
    padding:0 22px;
}

.ptcb-section.active .ptcb-section-body{
    display:block;
}
.ptcb-chevron{
    width:18px;
    height:18px;
    transition:transform .25s ease;
}

.ptcb-section.active .ptcb-chevron{
    transform:rotate(90deg);
}
.ptcb-lessons{
    list-style:none;
    margin:0;
    padding:0;
}

.ptcb-lesson{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:14px 0;
    border-bottom:1px solid #ececec;
}

.ptcb-lesson:last-child{
    border-bottom:none;
}

.ptcb-lesson-left{
    display:flex;
    align-items:center;
    gap:14px;
}

.ptcb-lesson-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    color:#6d28d9;
    font-size:22px;
    flex-shrink:0;
}

.ptcb-lesson-title{
    font-size:16px;
    color:#222;
}

.ptcb-quiz-badge{
    background:#6d28d9;
    color:#fff;
    padding:5px 12px;
    border-radius:30px;
    font-size:11px;
    font-weight:700;
    letter-spacing:.4px;
    text-transform:uppercase;
}
/* ========================================
   Skills & Knowledge
======================================== */

.ptcb-skills{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.ptcb-skill{
    display:inline-flex;
    align-items:center;
    padding:8px 16px;
    border-radius:6px;
    background:#1f2937;
    color:#fff;
    font-size:14px;
    font-weight:500;
    transition:.25s;
}

.ptcb-skill:hover{
    background:#6d28d9;
    transform:translateY(-2px);
}

/* ========================================
        Duration 
======================================== */

.ptcb-duration{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:#334155;
    font-size:15px;
    font-weight:500;
}

.ptcb-duration-icon{
    width:18px;
    height:18px;
    color:#8b5cf6;
    flex-shrink:0;
}

.ptcb-duration-text{
    line-height:1;
    font-family: 'nunito';
    font-weight: 600;
}