.webinar-speakers {
    margin: 0 0 32px;
}

.webinar-speakers__heading {
    margin: 0 0 20px;
    font-size: 24px;
    font-weight: 700;
    color: var(--ast-global-color-7);
}

.webinar-speakers .webinar-speakers__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.webinar-speakers__card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px 14px 14px;
    background: var(--ast-global-color-8);
    border: 1px solid #c9bc97;
    border-radius: 1rem;
    min-width: 240px;
}

.webinar-speakers__headshot-wrap {
    flex-shrink: 0;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    overflow: hidden;
    background: #c9bc97;
}

.webinar-speakers__headshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.webinar-speakers__body {
    min-width: 0;
}

.webinar-speakers .webinar-speakers__list .webinar-speakers__name {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3em;
	margin-bottom: 0;
    color: var(--ast-global-color-7);
}

.webinar-speakers .webinar-speakers__list .webinar-speakers__role {
    margin: 5px 0 0;
    font-size: 14px;
    line-height: 1.4em;
    color: var(--ast-global-color-6);
}

@media (max-width: 780px) {
    .webinar-speakers__list {
        flex-direction: column;
        gap: 12px;
    }

    .webinar-speakers__card {
        width: 100%;
        min-width: 0;
    }

    .webinar-speakers__headshot-wrap {
        width: 60px;
        height: 60px;
    }

    .webinar-speakers__name {
        font-size: 14px;
    }

    .webinar-speakers__role {
        font-size: 12px;
    }
}