.offers-grid {
    gap: var(--spacingHalf);
    grid-template-columns: 1fr;
    display: grid
}

.offers-grid .offer-box {
    text-decoration: none;
    text-align: left
}

.offers-grid .offer-card {
    min-width: 0
}

@media (min-width:48em) {
    .offers-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .container--flush .section--latest-offers {
        padding-left: var(--spacingDouble);
        padding-right: var(--spacingDouble)
    }
}

.section--latest-offers h2 {
    text-align: center;
    margin-top: 0;
    margin-bottom: var(--spacing)
}

.offer-box {
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
    transition: var(--hover-transition);
    will-change: transform, box-shadow;
    background: #fff;
    border: 0 solid #d1d1d5;
    display: block;
    position: relative;
    overflow: hidden
}

.offer-box:focus,
.offer-box:hover {
    box-shadow: var(--card-shadow-hover);
    transform: var(--hover-transform);
    color: var(--color-primary);
    text-decoration: none
}

.offerDetails {
    margin: var(--spacingHalf)
}

.offerPrice {
    font-size: larger;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    max-width: 100%
}

.offer-meta-line {
    margin-top: .15rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%
}

.offer-price-note {
    margin-top: .15rem;
    font-style: italic;
    max-width: 60ch;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    width: 100%
}

.offerDetails ul {
    margin: 0;
    padding: 0;
    list-style: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    max-width: 100%
}

.offerDetails li {
    display: inline
}

.offerDetails li:after {
    content: " | ";
    user-select: none
}

.offerDetails li:last-child:after {
    content: ""
}

.offer-box address {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    max-width: 100%
}

.offer-box img {
    aspect-ratio: 2;
    object-fit: cover;
    width: 100%;
    display: block
}
