.speakers {
    font-family: "Roboto", sans-serif;
}

.speakers .webinar_text-blue--title {
    margin: 0;
    margin-bottom: 13px;
    margin-left: 14px;
}

.speakers .container {
    padding: 18px 15px;
}

.speakers__title {
    font-size: 40px;
    color: #00b9ff;
    margin-bottom: 32px;
}

.speakers__grid {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.speaker-card {
    border: 1px solid #0B5582;
    border-radius: 6px;
    padding: 8px 15px 11px 21px;
    background: #fff;
    width: 48%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

.speaker-card__header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    gap: 12px;
    justify-content: space-between;
}

.speaker-card__header img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.speaker-card__name {
    display: inline-block;
    padding: 0 25px;
    font-weight: 500;
    font-size: 24px;
    color: #333;
    margin-bottom: 29px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.speaker-card__name::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    width: 100%;
    height: 8px;
    background: #a8d3e5;
}

.speaker-card__position {
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    color: #333;
    margin-bottom: 29px;
}

.speaker-card__list {
    position: relative;
    padding: 16px 20px 16px 24px;
    list-style: none;
    margin: 0;

    font-weight: 400;
    font-size: 18px;
    color: #333;
}

.speaker-card__list::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 58%;
    height: 100%;
    border: 1px solid transparent;
    border-left: none;
    border-radius: 0 12px 12px 0;
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(270deg, #0B5582 -24%, #0B5582 -10%, rgba(127, 199, 240, 0) 100%) border-box;
    pointer-events: none;
}

.speaker-card__list {
    margin-left: -21px; /* ровно padding speaker-card */
}


.speaker-card__list li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 8px;
    font-size: 15px;
    color: #333;
}

.speaker-card__list li::before {
    content: "–";
    position: absolute;
    left: 0;
    top: 0;
}

.speaker-desc {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

