.assortiment-grid {
    margin-top: 50px;
    padding-bottom: 50px;
}

.assortiment-grid .assortiment-head a {
    display: none;
}

.shop-link.mobile {
    margin-top: 5px;
    font-size: 12px;
}

.assortiment-grid .grid-wrapper {
    display: grid;
    gap: 16px;
}

.assortiment-grid .grid-wrapper .left {
    position: relative;
}

.assortiment-grid .grid-wrapper .left a {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 0.625rem;
    z-index: 2;
}

.assortiment-grid .grid-wrapper .left .single-block-big {
    min-height: 300px;
    height: 100%;
    border-radius: 0.625rem;
    padding: 16px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.assortiment-grid .grid-wrapper .left .single-block-big h3 {
    color: var(--white);
    margin-bottom: 0;
    z-index: 1
}

.assortiment-grid .grid-wrapper .left .single-block-big .dark-fade {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #000 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    border-bottom-left-radius: 0.625rem;
    border-bottom-right-radius: 0.625rem;
    opacity: 0.6;
    transition: all 0.2s ease;
}

.assortiment-grid .grid-wrapper .left:hover .single-block-big .dark-fade {
    opacity: 0.7;
}

.assortiment-grid .grid-wrapper .right {
    display: grid;
    gap: 16px 12px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
}

.assortiment-grid .grid-wrapper .right .single-cat {
    padding: 9px;
    position: relative;
    border-radius: 0.625rem;
    transition: all 0.2s ease;
}

.assortiment-grid .grid-wrapper .right .single-cat .single-block-small {
    text-align: center;
}

.assortiment-grid .grid-wrapper .right .single-cat:hover {
    margin-top: -5px;
    margin-bottom: 5px;
}

.assortiment-grid .grid-wrapper .right .top-left {
    background-color: var(--primary-accent-2-superlight);
}

.assortiment-grid .grid-wrapper .right .top-right,
.assortiment-grid .grid-wrapper .right .bottom-left {
    background-color: var(--primary-color-superlight);
}

.assortiment-grid .grid-wrapper .right .bottom-right {
    background-color: var(--primary-accent-1-superlight);
}

.assortiment-grid .grid-wrapper .right .single-cat a {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 0.625rem;
}

.assortiment-grid .grid-wrapper .right .single-cat h3 {
    font-size: 12px;
    line-height: normal;
    margin-bottom: 0;
    text-align: center;
}


@media screen and (max-width: 768px) {
    .assortiment-grid .assortiment-head h2 {
        font-size: 1.625rem;
        margin-bottom: 5px;
    }

    .assortiment-grid .grid-wrapper .left .single-block-big h3 {
        font-size: 1.125rem;
    }

}

@media screen and (min-width: 769px) { /* Gp mobile to tablet breakpoint */
    .assortiment-grid .grid-wrapper .right {
        gap: 1.5rem;
    }

    .assortiment-grid .assortiment-head {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
    }
    
    .assortiment-grid .assortiment-head h2 {
        margin-bottom: 6px;
    }
    
    .assortiment-grid .assortiment-head a {
        font-weight: 500;
        display: block;
    }
    
    .assortiment-grid .grid-wrapper {
        display: grid;
        gap: 1.5rem;
        grid-template-columns: 1fr 1fr;
    }
    .assortiment-grid .grid-wrapper .right .single-cat h3 {
        font-size: 20px;
    }
    .assortiment-grid .grid-wrapper .right .single-cat {
        padding: 16px 38px 10px 38px;
    }
    .shop-link.mobile {
        display: none;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .assortiment-grid .grid-wrapper .right .single-cat h3 {
        font-size: 16px;
    }
    .assortiment-grid .grid-wrapper .right .single-cat {
        padding: 8px 25px;
    }
}