.resources-carousel-container{
    border-bottom: 1px solid #E0E0E0;
    max-width: 1250px;
    margin-bottom: 80px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px 90px;
}
.resources-carousel{
    position: relative;
}
.resources-carousel .glide__track{
    position: relative;
    overflow: hidden;
}
.resources-carousel .glide__slides{
    position: relative;
    width: 100%;
    list-style: none;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    flex-wrap: nowrap;
    will-change: transform;
    margin: 0;
    padding: 0;
}
.resources-carousel .glide__slide{
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    white-space: initial;
}

.resources-carousel .resources-glide-slide{
    display: flex;
    justify-content: space-between;
    color: var(--black);
    font-weight: 700;
}

.resources-carousel .resources-glide-left-section{
    border-radius: 8px;
    flex-basis: 442px;
    height: 270px;
    overflow: hidden;
}

.resources-carousel .resources-glide-left-section img{
    border-radius: 8px;
    display: block;
    object-fit: cover;
    object-position: top;
}

.resources-carousel .resources-glide-right-section{
    flex-basis: calc(100% - 482px);
    padding: 20px 0;
}

.resources-carousel .resources-carousel-title{
    font-size: 2.2rem;
    font-family: var(--global-font-family);
    line-height: 34px;
    margin: 8px 0 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.resources-carousel .resources-carousel-title a,
.resources-carousel .resources-carousel-title .plus{
    color: var(--black);
}

.resources-carousel .resources-page-type{
    font-size: 1.2rem;
    line-height: 1.6rem;
    color: #757575;
    margin: 0;
    text-transform: uppercase;
}

.resources-carousel .resources-carousel-author{
    font-size: 1.4rem;
    line-height: 2rem;
    margin: 16px 0 0;
}

.resources-carousel .resources-carousel-date{
    font-size: 1.2rem;
    line-height: 1.6rem;
    color: #757575;
    margin: 8px 0 0;
}

.resources-carousel .glide__arrows{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.resources-carousel .glide__arrow--left,
.resources-carousel .glide__arrow--right{
    background: var(--black);
    color: var(--white);
    height: 40px;
    width: 40px;
    margin: 0;
    padding: 10px;
    border: 0;
    cursor: pointer;
    outline: none;
    text-indent: -500px;
    overflow: hidden;
}
.resources-carousel .glide__arrow--left span::before,
.resources-carousel .glide__arrow--right span::before{
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' %3F%3E%3Csvg viewBox='0 0 448 512' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M438.6 278.6l-160 160C272.4 444.9 264.2 448 256 448s-16.38-3.125-22.62-9.375c-12.5-12.5-12.5-32.75 0-45.25L338.8 288H32C14.33 288 .0016 273.7 .0016 256S14.33 224 32 224h306.8l-105.4-105.4c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0l160 160C451.1 245.9 451.1 266.1 438.6 278.6z'/%3E%3C/svg%3E");
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
}
.resources-carousel .glide__arrow--left span::before{
    transform: translate(-50%, -50%) rotate(180deg);
}
.resources-carousel .glide__arrow--left{
    transform: translateX(calc(-100% - 24px));
}
.resources-carousel .glide__arrow--right{
    transform: translateX(calc(100% + 24px));
}
.resources-carousel .glide__bullets{
    position: absolute;
    left: 482px;
    bottom: 20px;
    display: flex;
}
.resources-carousel .glide__bullet{
    background: rgba(0, 0, 0, .4);
    border: 0;
    cursor: pointer;
    height: 13px;
    margin: 0 24px 0 0;
    width: 13px;
}
.resources-carousel .glide__bullet--active{
    background: var(--orange-1);
}

@media (max-width: 1536px){
    .resources-carousel-container h2{
        text-align: left;
    }
}

@media (max-width: 1140px){
    .resources-carousel .glide__arrows{
        display: none;
    }
}

@media (max-width: 767px){
    .resources-carousel-container{
        padding: 0 30px 15px;
        margin-bottom: 0;
        border: none;
    }
    .resources-carousel .resources-glide-slide{
        display: block;
    }
    .resources-carousel .resources-glide-left-section{
        height: 183px;
    }
    .resources-carousel .resources-glide-right-section{
        padding: 32px 0;;
    }
    .resources-carousel .glide__bullets{
        position: static;
    }
}