.voucher-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: var(--section-padding-x);
}

.voucher-card {
    background-color: var(--color-grey-1);
    overflow: hidden;
}

.voucher-content {
    padding: var(--section-padding-x);
    display: flex;
    flex-direction: column;
    gap: var(--section-padding-x);
}

.voucher-details h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.voucher-header {
    display: flex;
    flex-direction: column;
    gap: var(--section-padding-x);
}
.voucher-header>div{
    flex: 1;
}
.voucher-price{
    font-size: 2.25rem;
    font-weight: bold;
    color: var(--color-brown);
}

.voucher-title{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--section-padding-x);
}

@media (min-width:62em) {
    .voucher-container{
        grid-template-columns: repeat(2, 1fr);
    }
    .voucher-header{
        flex-direction: row;
    }
}