#latest .swiper-slide {
    position: relative;
    display: flex; height: auto; overflow: hidden;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    
    border-radius: 40px;
    
    color: #FFF;
    
    isolation: isolate;
}
@media (min-width: 750px) {
    #latest .swiper-slide {
        min-height: 600px;
        padding: 50px 50px 130px;
    }
}
@media (max-width: 749.99px) {
    #latest .swiper-slide {
        min-height: 700px;
        padding: 30px 30px 130px;
    }
}

/*-------------------------------------------------------------------------------*/

#latest .swiper-slide > .background {
    position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: -1;
}
#latest .swiper-slide > .background > img,
#latest .swiper-slide > .background > video {
    position: relative; z-index: 1;
    display: block; height: 100%; width: 100%;
    
    object-fit: cover;
    object-position: center;
}
#latest .swiper-slide > .background:after {
    content: '';
    position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: 2;
    
    background-color: #000;
    
    opacity: .2;
}

/*-------------------------------------------------------------------------------*/

#latest .swiper-slide > .category {
    padding: 0 25px;
    margin-bottom: 20px;
    
    background-color: rgba(0,0,0,.3);
    border-radius: 25px;
    
    line-height: 50px;
    font-size: 16px;
    color: var(--main-color);
}
#latest .swiper-slide > .category:before { content: '#'; }
#latest .swiper-slide > .title {
    max-width: 700px;
    margin-bottom: 15px;
    
    font-size: 30px;
    font-weight: 700;
}
#latest .swiper-slide > .title > span { font-weight: 300; }
#latest .swiper-slide > .excerpt {
    max-width: 500px;
    
    line-height: 150%;
    font-size: 16px;
}
#latest .swiper-slide > .avatars {
    display: flex;
    flex-direction: row;
    margin-top: 50px;
}
#latest .swiper-slide > .avatars > .avatar {
    height: 75px; flex: 0 0 75px; overflow: hidden;
    border-radius: 50%;
}
#latest .swiper-slide > .avatars > .avatar:not(:last-child) { margin-right: -20px; }
#latest .swiper-slide > .avatars > .avatar > img {
    display: block; height: 100%; width: 100%;
    
    object-fit: cover;
    object-position: center;
}
#latest .swiper-slide > .cta-link { position: absolute; }
@media (min-width: 750px)    { #latest .swiper-slide > .cta-link { bottom: 75px; right: 50px; } }
@media (max-width: 749.99px) { #latest .swiper-slide > .cta-link { bottom: 60px; right: 30px; } }