.section-title {
    border-bottom: none;
    margin-bottom: 0;
}
.section-subtitle {
    border-bottom: 1px solid var(--bc-clr-secondary-400);
    margin-block: 0 1rem;
    font-weight: 300;
    font-size: var(--bc-fs-300);
    color: var(--bc-clr-secondary-200);
}

.lesson-item {
    background: var(--bc-clr-dark-400);
    border-radius: 1rem;
    padding: 1rem;
}
.lesson-title {
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: var(--bc-fs-700);
    font-family: var(--bc-ff-heading);
    font-weight: 800;
    color: var(--bc-clr-primary-400);
    overflow: hidden;
}
.lesson-title a {
    font: inherit;
    color: inherit;
}
.lesson-date {
    font-size: var(--bc-fs-300);
    color: var(--bc-clr-text-100);
}
.lesson-description {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    text-overflow: ellipsis;
    overflow: hidden;
}

.educator-item {
    background: var(--bc-clr-dark-400);
    border-radius: 1rem;
    padding: 1rem;
}
.educator-avatar {
    border-radius: 100%;
    height: 7rem;
    aspect-ratio: 1 / 1;
}
.educator-displayname {
    line-height: 1;
    font-size: var(--bc-fs-700);
    font-family: var(--bc-ff-heading);
    font-weight: 800;
    color: var(--bc-clr-primary-400);
}
.educator-username a {
    line-height: 1;
    font-size: var(--bc-fs-400);
    font-weight: 200;
    color: var(--bc-clr-text-100);
}
.educator-username a:hover {
    text-decoration: none;
    color: var(--bc-clr-secondary-400);
}