/* membership.css */

.membership-product-cards {
    /* minus 10px because product card title will take some spacing */
    padding: calc(var(--component-spacing-top-bottom) - 10px) var(--component-spacing-left-right) var(--component-spacing-top-bottom);
}


/* product card background color */

.membership-product-cards.background-color-grey .wp-block-mira-product-card-membership-block {
    background-color: #ffffff;
}

.membership-product-cards-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr var(--product-card-grid-column-gap) 1fr var(--product-card-grid-column-gap) 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    /* minus 10px because product card title will take some spacing */
    row-gap: calc(var(--product-card-grid-row-gap) - 10px);
    -webkit-column-gap: var(--product-card-grid-column-gap);
    -moz-column-gap: var(--product-card-grid-column-gap);
    column-gap: var(--product-card-grid-column-gap);
}


/* change background to grey color for heading block in product card membership */

.membership-product-cards.background-color-grey .mira-product-card-column .wp-block-mira-heading-block {
    background-color: #eeeeee;
}


/* add border to product detail hyperlink if background color is grey */

.membership-product-cards.background-color-grey .wp-block-mira-product-details-block {
    border: var(--product-detail-hyperlink-border);
}

@media (max-width: 1440px) {
    /* show 2 product cards in a row */
    .membership-product-cards .membership-product-cards-container {
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .membership-product-cards:not(.mobile-horizontal-display) .membership-product-cards-container {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
    /* horizontal display */
    .membership-product-cards.mobile-horizontal-display .membership-product-cards-container {
        overflow-x: scroll;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-column-gap: 0;
        -moz-column-gap: 0;
        column-gap: 0;
        /* auto scroll */
        -ms-scroll-snap-type: x mandatory;
        scroll-snap-type: x mandatory;
    }
    .membership-product-cards.mobile-horizontal-display .membership-product-cards-container>.wp-block-mira-product-card-membership-block {
        margin-right: var(--product-card-grid-column-gap);
        /* auto scroll */
        scroll-snap-align: center;
    }
    .membership-product-cards.mobile-horizontal-display .membership-product-cards-container::after {
        content: '';
        /* extremely small value */
        padding-right: 0.02px
    }
    .membership-product-cards.mobile-horizontal-display .membership-product-cards-container>:first-child {
        margin-left: var(--product-card-grid-column-gap);
    }
    .membership-product-cards.mobile-horizontal-display .wp-block-mira-product-card-membership-block img.lazy-hidden {
        width: 1px;
        height: 1px;
    }
    .membership-product-cards.mobile-horizontal-display {
        padding-left: 0;
        padding-right: 0;
    }
    /* set product card width */
    .membership-product-cards.mobile-horizontal-display .mira-product-card-column {
        width: 300px;
    }
    .membership-product-cards.mobile-horizontal-display .wp-block-mira-product-card-membership-block {
        min-width: 300px;
    }
}