:root {
    --primary-color: #d0021b;
}

.medposter-theme .wc-block-grid__products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 32px;
    margin: 0;
}

@media screen and (max-width: 1024px) {
    .medposter-theme .wc-block-grid__products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .medposter-theme .wc-block-grid__products {
        grid-template-columns: 1fr;
    }
}

.medposter-product {
    list-style: none;
    background: #efefef;
    display: flex;
    flex-direction: column;
}

.medposter-product h3 {
    background: var(--primary-color);
    margin: 0;
}

.medposter-product h3 a {
    display: block;
    padding: 0.5rem 1rem;
    color: white;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 1.25rem;
    text-align: center;
}

.medposter-product .medposter-product__image {
    display: block;
}

.medposter-product .medposter-product__image img {
    display: block;
    margin-bottom: 0;
    aspect-ratio: 5/4;
    object-fit: cover;
    border-radius: 0;
}

.medposter-product .medposter-product__description {
    margin: 1rem;
    margin-bottom: auto;
}

.medposter-product .medposter-product__cta {
    display: block;
    text-align: center;
    background: #fff;
    border: 1px solid #d1d1d1;
    padding: 0.35rem 0.5rem;
    color: black;
    text-decoration: none !important;
    border-radius: 4px;
    font-weight: 600;
    margin: 1rem;
}

.medposter-product .medposter-product__cta:hover {
    background: #fafafa;
}