.shopify-development-services {
    background-color: #fafaf7;
}

.shopify-development-services .wrapper {
    display: grid;
    grid-template-columns: 1.2fr .8fr .8fr;
    grid-auto-rows: minmax(210px, auto);
    gap: 15px;
}

.shopify-development-services .wrapper .item:nth-child(1) {
    grid-row: span 2;
    background: #f7f4ea;
    min-height: 440px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.shopify-development-services .wrapper .item {
    border: 1px solid rgba(40, 40, 40, .11);
    border-radius: 22px;
    background: #fff;
    padding: 27px;
    position: relative;
    overflow: hidden;
}

.shopify-development-services .wrapper .item:nth-child(4),
.shopify-development-services .wrapper .item:nth-child(8) {
    grid-column: span 2;
    background: rgba(239, 244, 239, 1);
}

/* Only when exactly 5 items exist */
.shopify-development-services .wrapper:has(> .item:nth-child(5):last-child)>.item:nth-child(4) {
    grid-column: 2;
}

.shopify-development-services .wrapper:has(> .item:nth-child(5):last-child)>.item:nth-child(5) {
    grid-column: 3;
}

.shopify-development-services.last-col-100 .wrapper .item:last-child {
    grid-column: 2 / -1;
    width: 100%;
}

.shopify-development-services .wrapper .item span {
    color: var(--theme-red);
    margin-top: 0;
    display: block;
    font-size: 10px;
    line-height: 1.4;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    font-family: var(--font-montserrat);
    margin-bottom: 15px;
}

.shopify-development-services .wrapper .item ul {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 18px;
}

.shopify-development-services .wrapper .item ul li {
    display: inline-flex;
    align-items: center;
    min-height: unset;
    padding: 7px 11px;
    border-radius: 50px;
    background: rgba(255, 255, 255, .75);
    border: 1px solid rgba(40, 40, 40, .08);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    color: #565656;
    line-height: normal;
}

.shopify-development-services .wrapper .item .bottom {
    margin-top: 20px;
}
@media only screen and (min-width: 1200px) {
    .shopify-development-services.six-cards .wrapper .item:nth-child(5) {
        grid-column: span 2;
    }
}
@media only screen and (max-width: 1399px) {
    .shopify-development-services .wrapper .item {
        padding: 20px;
    }
}

@media only screen and (max-width: 1199px) {
    .shopify-development-services .wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .shopify-development-services .wrapper .item:nth-child(7) {
        grid-row: span 2;
        background: #eef4ef;
    }

    .shopify-development-services .wrapper .item:nth-child(8) {
        grid-column: auto;
        background-color: transparent;
    }

    /* Only when there are exactly 5 items */
    .shopify-development-services .wrapper:has(> .item:nth-child(5):last-child)>.item:nth-child(4) {
        grid-column: 1;
    }

    .shopify-development-services .wrapper:has(> .item:nth-child(5):last-child)>.item:nth-child(5) {
        grid-column: 2;
    }
}

@media only screen and (max-width: 767px) {
    .shopify-development-services .wrapper .item {
        grid-row: auto !important;
        min-height: auto;
        border-radius: 16px;
        padding: 20px;
    }

    .shopify-development-services .wrapper {
        display: flex;
        flex-direction: column;
    }

    .shopify-development-services .wrapper .item:nth-child(1) {
        min-height: auto;
    }
}