

.product-events {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.product-events > * {
    background: var(--color-branding-tertiary);
    padding: 2rem;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.spotlight-event .card {
    background: unset;
}

.spotlight-event.inline-img {
    display: flex;
    align-items: center;
}

.spotlight-item .block.widget .products-grid .product-item {
    margin-left: 2%;
    width: 100%;
}

.spotlight-event h2 {
    color: var(--color-branding-secondary);
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
}

.spotlight-event p.as-h2 {
    color: var(--color-branding-secondary);
}

.product-item-info > * {
    width: 100%;
}

.spotlight-item img.product-image-photo, 
.spotlight-event img {
    max-width: 27.5rem;
}

@media only screen and (min-width: 768px) {

    .spotlight-event .card {
        background: unset;
        display: flex;
        flex-direction: column-reverse;
    }

    .product-events {
        display: flex;
        flex-direction: row;
    }

}

@media only screen and (min-width: 1024px) {

    .product-events .block.widget .product-item-info {
        display: flex;
        gap: 2rem;
        align-items: center;
    }

    .spotlight-event .card {
        display: flex;
        flex-direction: row-reverse;
    }

}

