/* Shop – Fanzines (Kategorie) */
.ff-shop-fanzines {
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.ff-shop-fanzines__inner {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.ff-shop-fanzines__intro {
    width: 100%;
    max-width: 1000px;
    margin: 0 0 80px;
    padding: 0;
    text-align: left;
    box-sizing: border-box;
}

body.ff-shop-shell .ff-shop-fanzines__heading {
    margin: 0 0 24px;
    padding: 0;
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 30px;
    line-height: 1;
    letter-spacing: 0;
    color: #fff;
}

body.ff-shop-shell .ff-shop-fanzines__subheading {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 1000px;
    min-height: 60px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 25px;
    line-height: 1;
    letter-spacing: 0;
    color: #fff;
}

.ff-shop-fanzines__grid {
    --ff-fanzines-cover-w: 203.58px;
    --ff-fanzines-cover-h: 293px;
    --ff-fanzines-grid-max: 1000px;
    display: grid;
    grid-template-columns: repeat(4, var(--ff-fanzines-cover-w));
    grid-template-rows: auto;
    column-gap: max(28px, calc((100% - (4 * var(--ff-fanzines-cover-w))) / 3));
    row-gap: 48px;
    width: 100%;
    max-width: var(--ff-fanzines-grid-max);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    align-items: start;
    justify-content: start;
}

.ff-shop-fanzines__cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: var(--ff-fanzines-cover-w);
    min-width: 0;
}

.ff-shop-fanzines__media {
    position: relative;
    width: var(--ff-fanzines-cover-w);
    height: var(--ff-fanzines-cover-h);
    flex: 0 0 auto;
    overflow: hidden;
    display: block;
    margin: 0;
}

.ff-shop-fanzines__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    display: block;
}

body.ff-shop-shell .ff-shop-fanzines__product-title {
    margin: 12px 0 0;
    padding: 0;
    width: 100%;
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 19px;
    line-height: 1.15;
    letter-spacing: 0;
    color: #fff;
    text-align: center;
}

body.ff-shop-shell .ff-shop-fanzines__product-price {
    margin: 8px 0 0;
    padding: 0;
    width: 100%;
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 19px;
    line-height: 1;
    letter-spacing: 0;
    color: #fff;
    text-align: center;
}

.ff-shop-fanzines .ff-shop-ef-more {
    margin-top: 220px;
}

@media (max-width: 1040px) {
    .ff-shop-fanzines__inner,
    .ff-shop-fanzines__intro,
    .ff-shop-fanzines__grid {
        max-width: min(1000px, calc(100% - 2 * var(--ff-layout-gutter, 20px)));
    }
}

@media (max-width: 960px) {
    .ff-shop-fanzines__grid {
        grid-template-columns: repeat(2, var(--ff-fanzines-cover-w, 203.58px));
        column-gap: 16px;
        row-gap: 40px;
    }
}

@media (max-width: 640px) {
    .ff-shop-fanzines__intro {
        margin-bottom: 56px;
    }

    body.ff-shop-shell .ff-shop-fanzines__heading {
        font-size: clamp(22px, 6vw, 30px);
    }

    body.ff-shop-shell .ff-shop-fanzines__subheading {
        font-size: clamp(18px, 4.5vw, 25px);
    }

    .ff-shop-fanzines__grid {
        grid-template-columns: minmax(0, 1fr);
    }

    body.ff-shop-shell .ff-shop-fanzines__product-title,
    body.ff-shop-shell .ff-shop-fanzines__product-price {
        font-size: 17px;
    }
}
