.zpr-wrap {
    box-sizing: border-box;
    width: 100%;
    font-family: inherit;
}
.zpr-heading {
    margin: 0 0 14px;
    font-size: 1.15rem;
}
.zpr-products {
    display: grid;
    gap: 14px;
}
.zpr-layout-sidebar .zpr-products {
    grid-template-columns: 1fr;
}
.zpr-layout-grid .zpr-products {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}
.zpr-product {
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.12);
    border-radius: 10px;
    background: #fff;
}
.zpr-link {
    display: block;
    color: inherit;
    text-decoration: none;
}
.zpr-image,
.zpr-placeholder {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
.zpr-placeholder {
    display: grid;
    place-items: center;
    background: #f2f2f2;
    font-size: 42px;
    font-weight: 700;
}
.zpr-title {
    display: block;
    padding: 10px 12px 12px;
    font-size: .95rem;
    line-height: 1.35;
    font-weight: 600;
}
.zpr-link:hover .zpr-title,
.zpr-link:focus .zpr-title {
    text-decoration: underline;
}
.zpr-disclosure {
    margin-top: 8px;
    font-size: .75rem;
    opacity: .72;
}
.zpr-empty {
    padding: 10px;
    border: 1px dashed #999;
}

.zpr-cta {
    display: inline-block;
    margin: 0 12px 12px;
    padding: 7px 10px;
    border: 1px solid currentColor;
    border-radius: 7px;
    font-size: .85rem;
    font-weight: 600;
}

.zpr-price {
    display: block;
    padding: 0 12px 8px;
    font-size: 1rem;
    font-weight: 700;
}
.zpr-description {
    display: block;
    padding: 0 12px 10px;
    font-size: .86rem;
    line-height: 1.45;
    opacity: .82;
}
