.glide {
    width: 100%;
    position: relative;
    margin-top: 20rem;
    cursor: default;
}
.glide__track{
    margin-bottom: 20rem;
}
.glide__slide{
    width: 100%;
    height: 208px;
    background-color: var(--gaBlack);
    display: flex;
    justify-content: center;
    align-items: center;
}
.post__slide-img{
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.glide__controllers{
    display: flex;
    align-items: center;
    margin: 0 auto;
    width: fit-content;
}
.glide__controllers--inactive {
    display: none;
}
.glide__arrows--left{
    margin-right: 12rem;
}
.glide__arrows--right{
    margin-left: 12rem;
}
.glide__arrow{
    top: auto;
    bottom: 0;
    box-shadow: none;
    border: none;
    top: auto;
    bottom: 0;
    position: static;
    transform: translateY(0);
}
.glide__arrow--left{
    left: -16rem;
}
.glide__arrow--right {
    right: -16rem;
}
.glide__arrow::after{
    content: "";
    display: block;
    width: 18rem;
    height: 18rem;
    border-top: 1rem solid rgba(0, 0, 0, 0.3);
    border-right: 1rem solid rgba(0, 0, 0, 0.3);
    position: relative;
    top: 0;
}
.glide__arrow--left::after{
    transform: rotate(-135deg);
    left: 8rem;
}
.glide__arrow--right::after{
    transform: rotate(45deg);
    right: 8rem;
}
.glide__bullets{
    display: flex;
    width: 100%;
    position: static;
    width: fit-content;
    transform: none;
    padding: 18rem;
}
.glide__bullet{
    flex-shrink: 0;
    background-color: var(--gaGray);
    opacity: .8;
    box-shadow: none;
    margin: 0;
    margin-right: 24rem;
}
.glide__bullet:last-of-type{
    margin: 0;
}
.glide__bullet--active{
    background-color: var(--gaPurple);
    opacity: 1;
    transform: scale(1.3);
}
.glide__bullet:hover, .glide__bullet:focus {
    border: 2px solid var(--gaPurple);
    background-color: var(--gaPurple);
}
@media screen and (min-width: 600px) {
    .glide {
        margin: 20rem 0 auto;
    }
    .glide__slide{
        height: 405rem;
    }
    .post__slide-img{
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }
    .glide__track{
        max-height: 405rem;
    }
    .glide__bullet{
        margin-right: 26rem;
    }
    .glide__arrows{
        position: absolute;
        top: calc(50% - 56rem);
    }
    .glide__arrows--left{
        left: -56rem;
    }
    .glide__arrows--right{
        right: -56rem;
    }
    .glide__arrow{
        transition: .3s all ease;
        padding: 16px;
        position: relative;
    }
    .glide__arrow::after{
        width: 36rem;
        height: 36rem;
    }
    .glide__arrow--left{
        left: -30rem;
    }
    .glide__arrow--right {
        right: -30rem;
    }
    .glide__arrow:hover{
        opacity: .6;
    }
    .glide__bullet:hover{
        border: 2px solid var(--gaPurple);
        background-color: var(--gaPurple);
    }
}