.voucherlist {
    max-width: 100%;
}

.voucherlist__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,min(680px,100%));
    justify-content: center;
    column-gap: 4rem;
    row-gap: 6rem;
}

.voucherlist__voucher {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    text-align: left;
    box-sizing: border-box;
    border-radius: var(--template-border-radius--large);
}

.voucherlist__voucher__image {
    border-radius: var(--template-border-radius--large) 0 0 var(--template-border-radius--large);
    width: min(300px, 50%);
    min-width: min(300px, 50%);
    overflow: hidden;
}

.voucherlist__voucher__image__property {
    width: 100%;
}

.voucherlist__voucher__body {
    padding: 3rem 2rem;
}

p.voucherlist__voucher__name {
    margin-bottom: 0;
}

.voucherlist__voucher__fixed-price,
.voucherlist__voucher__price {
    margin-bottom: 2rem;
}

.bh-field input.voucherlist__voucher__price__input {
    padding: 1rem 1.5rem;
    max-width: 120px;
}

.voucherlist__voucher__button {
    cursor: pointer;
}

@media only screen and (max-width: 720px) {
    .voucherlist__voucher {
        flex-flow: column nowrap;
    }
    .voucherlist__voucher__image {
        width: 100%;
        border-radius: var(--template-border-radius--large) var(--template-border-radius--large) 0 0;
    }
    .voucherlist__voucher__image__property {
        max-width: 450px;
        margin: 0 auto;
    }
}
