.webinar--title {
    font-weight: 600;
    font-size: clamp(28px, 3vw, 32px);
    line-height: clamp(38px, 3vw, 42px);
    text-align: center;
    margin-bottom: clamp(2rem, 3vw, 3rem);
}

.webinar__list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.webinar__item {
    padding: clamp(2rem, 3vw, 2.5rem);
    border: 1px solid #E6E9F2;
    border-radius: 20px;
    display: flex;
    flex-direction: row;
}

.webinar__item-body {
    flex: 1 1 831px;
    border-right: 1px solid #E6E9F2;
    padding-right: clamp(2rem, 4vw, 3rem);
}

.webinar__item-expert {
    flex: 1 1 300px;
    padding-left: clamp(2rem, 4vw, 3rem);
}

.webinar__expert:not(:first-of-type) {
    margin-top: 0.75rem;
}

.webinar__time {
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
    color: #767682;
    margin-bottom: 0.375rem;
}

.webinar__name {
    font-weight: 600;
    font-size: clamp(18px, 2vw, 20px);
    line-height: clamp(26px, 2vw, 30px);
}

.webinar__body {
    margin-top: clamp(1rem, 2vw, 1.25rem);
}

.webinar__body div.preview{
    font-weight: 400;
    font-size: clamp(14px, 2vw, 15px);
    line-height: clamp(22px, 2vw, 23px);
    color: #555558;
}

.webinar__body--list li {
    position: relative;
}

.webinar__body--list li:not(:last-of-type) {
    margin: 0 0 0.5rem 0;
}

.webinar__body--list li::before {
    content: "";
    position: absolute;
    background-color: #333338;
    height: 4px;
    top: calc(50% - 2.5px);
    width: 4px;
    border-radius: 50%
}

.webinar__body--list li div {
    padding: 0 0 0 1rem;
    font-weight: 400;
    font-size: clamp(14px, 2vw, 15px);
    line-height: clamp(22px, 2vw, 23px);
    color: #555558;
}

.webinar__expert {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.webinar__photo img {
    border-radius: 50%;
}

.webinar__expert--name {
    font-weight: 600;
    font-size: 15px;
    line-height: 23px;
    color: #333338;
}

.webinar__expert--job {
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
    color: #969AA5;
}

@media (max-width: 767px) {
    .webinar__item {
        flex-direction: column;
    }

    .webinar__item-body {
        flex: 1 1 212px;
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid #E6E9F2;
        padding-bottom: clamp(2rem, 4vw, 3rem);
    }

    .webinar__item-expert {
        flex: 1 1 64px;
        padding-left: 0;
        padding-top: clamp(2rem, 4vw, 3rem);
    }

}