section.specials {
    position: relative;
}

section.specials::before,
section.specials::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

section.specials::before {
    background-image: var(--url);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -2;
}

section.specials::after {
    background-color: var(--c3);
    z-index: -1;
    opacity: 0.5;
}

.specials h2 {
    font-family: "Charm", cursive;
    font-weight: bold;
    font-size: 2rem;
    text-decoration: underline double var(--c2);
    text-underline-offset: 16px;
}

#specials-carousel .splide__track {
    --p: 4vw;
    padding: 0 var(--p) !important;
}

@media screen and (min-width: 768px) {
    #specials-carousel .splide__track {
        --p: 8vw;
    }
}

@media screen and (min-width: 992px) {
    #specials-carousel .splide__track {
        --p: 10vw;
    }
}