.slide-bg,
.slide-bg .content-slide,
.slide-bg .content-slide .wrapper-section {
    height: 100%;
}

.slide-bg .content-slide .wrapper-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.splide__arrow {
    transition: all .3s;
}

.splide__arrow:hover {
    background-color: var(--brand-transparent) !important;
}

.splide-arrows-bottom .splide__arrow {
    bottom: -3rem;
    top: auto;
}

.splide-arrows-bottom .splide__arrow--prev {
    left: calc(75% - 2.25em);
}

.splide-arrows-bottom .splide__arrow--next {
    right: calc(25% - 2.25em);
}

.band-release-item {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.band-release-item::after {
    content: '';
    position: absolute;
    width: 20%;
    height: 20%;
    top: 40%;
    left: 40%;
    background-image: url(../icons/open.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-color: rgba(255, 255, 255, .5);
    border-radius: var(--border-radius);
    opacity: 0;
    transform: scale(0);
    z-index: 1;
    transition: opacity .3s, transform .3s;
}

.band-release-item:hover::after {
    opacity: 1;
    transform: scale(1);
}

.band-release-title {
    position: absolute;
    bottom: -20rem;
    left: 0;
    width: 100%;
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 0.8rem;
    line-height: 1.1;
    text-align: center;
    text-wrap: balance;
    transition: bottom .3s;
}

.band-release-item:hover .band-release-title {
    bottom: 0;
}

.band-releases-title h2 {
    text-align: center;
    font-size: 4rem;
    line-height: 1.2;
    font-weight: 600;
    color: var(--highlight);
    margin: 0 0 1rem;
    word-break: break-word;
}