section.speakers{
    padding:2.5rem 0;
}
.speaker-card{
    display: grid;
    grid-template-columns: 90px 1fr;
    grid-gap:1rem;
    grid-template-areas:
            "face name"
            "description description";
    margin:2rem 0;
}
.speaker-card a{
    text-decoration: none;
}
.speaker-card .description{
    grid-area: description;
    font-size: 0.9rem;
}
.speaker-card .face{
    grid-area: face;
}
.speaker-card .name{
    grid-area: name;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 1.2rem;
    line-height: 1.5;
    color:var(--link-color);
}
.speaker-card .name h4{
    width:100%;
    font-weight: 900;
    margin:0;
}
.speaker-card .face figure{
    width:90px;
    height:90px;
    overflow: hidden;
    border-radius: 45px;
    margin:0;
}
.speaker-card:hover .face figure img{
    transform: scale(1.1);
}
.speaker-card .face figure img{
    width:100%;
    height:100%;
    object-fit: cover;
    transition: 0.5s;
}
#speakers-slider{
    margin:2rem 0;
}