.shop-horizontal-scroller {
    /*grid-column-gap: 1em;Ü*/
    display: flex;
    padding-left: 2rem;
}

.shop-link {
    text-decoration: none;
    color: black;
}

.shop-article-box {
    border-radius: 15px;
    margin-bottom: 60px;
    position: relative;
    margin: 0;
    margin-right: 1rem;
}

.shop-article-box img {
    width: inherit;
    border-radius: 15px 15px 15px 15px;
}

.continue-reading {
    position: absolute;
    right: 1rem;
    bottom: 1rem;

}

.shop-category-text {
    background: white;
    color: black;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    padding-bottom: 0.25rem;
    padding-top: 0.25rem;
    border-radius: 15px;
    width: fit-content;
    font-size: 0.85rem;
    position: absolute;
    margin: 1rem;
}

.shop-category-text-grey {
    background-color: rgb(255, 255, 255);
    color: black;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    padding-bottom: 0.25rem;
    padding-top: 0.25rem;
    border-radius: 15px;
    width: fit-content;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.shop-date-text {
    margin-left: 1rem;
    margin-right: 1rem;

}

.shop-header-text {
    margin-left: 1rem;
    margin-right: 1rem;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: bold;

}

.shop-subheader-text {
    margin-left: 1rem;
    margin-right: 1rem;
    margin-top: 0;
    font-size: 1rem;
    font-weight: normal;
}

.shop-article-cropped {
    position: absolute;
    z-index: 100;
}

@media screen and (max-width: 45rem) {

    /* Mobile */
    .shop-article-box {
        width: 50lvw;
    }

    .shop-article-box img {

        width: 50lvw;
        height: 70lvw;
        object-fit: cover;
    }

    .shop-article-box-gradient {
        height: 50lvw;
        width: 100%;
        background-image: linear-gradient(to top, white, rgba(255, 255, 255, 0));
        position: absolute;
        bottom: 0;

    }

    .shop-category-text {
        top: 0;
        left: 0;
    }


}



@media screen and (min-width: 45rem) {

    /* Desktop */
    .shop-article-box {
        width: 15lvw;
    }



    .shop-article-box img {
        width: 15lvw;
        height: 20lvw;
        object-fit: cover;

    }

    .shop-article-box-gradient {
        height: 25lvw;
        width: 100%;
        background-image: linear-gradient(to top, white, rgba(255, 255, 255, 0));
        position: absolute;
        bottom: 0;

    }


    .shop-category-text {
        top: 0;
        left: 0;
    }

    .media-element-placeholder-shop {
        width: 0rem;
    }

}