/* ─── COURSE META BAR ─────────────────────────────────────── */

.td-course-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    margin: 28px 0;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.td-meta-item {
    flex: 1;
    min-width: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 24px;
    text-align: center;
    border-right: 1px solid #e2e8f0;
    transition: background 0.2s ease;
}

.td-meta-item:last-child {
    border-right: none;
}

.td-meta-item:hover {
    background: #f8fafc;
}

.td-meta-item strong {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1e293b;
    margin-bottom: 6px;
}

.td-meta-item span {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
}

/* ─── MOBILE ──────────────────────────────────────────────── */

@media ( max-width: 600px ) {
    .td-course-meta {
        flex-direction: column;
    }

    .td-meta-item {
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        padding: 14px 20px;
    }

    .td-meta-item:last-child {
        border-bottom: none;
    }

    .td-meta-item strong {
        margin-bottom: 0;
    }
}
/* ─── COURSE CURRICULUM ───────────────────────────────────── */

.td-curriculum {
    margin: 28px 0;
}

.td-module {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 16px;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.td-module-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.td-lesson-count {
    font-size: 12px;
    font-weight: 500;
    color: #94a3b8;
    background: #e2e8f0;
    padding: 3px 10px;
    border-radius: 20px;
}

.td-lesson-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.td-lesson-item {
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.2s ease;
}

.td-lesson-item:last-child {
    border-bottom: none;
}

.td-lesson-item:hover {
    background: #f8fafc;
}

.td-lesson-item a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #334155;
    text-decoration: none;
}

.td-lesson-item a::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #cbd5e1;
    flex-shrink: 0;
}

.td-lesson-item:hover a {
    color: #2563eb;
}

.td-lesson-item:hover a::before {
    background: #2563eb;
}

/* ─── MOBILE ──────────────────────────────────────────────── */

@media ( max-width: 600px ) {
    .td-module-title {
        font-size: 14px;
        padding: 14px 16px;
    }

    .td-lesson-item a {
        padding: 12px 16px;
        font-size: 13px;
    }
}
