.bhip-product {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    column-gap: 20px;
}

.bhip-product-image {
    flex: 2;
}

.bhip-product-details {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 40px 30px;
}

.bhip-product img {
    width: 100%;
    display: block;
}

.bhip-product.odd .bhip-product-details {
    background-color: var(--e-global-color-accent);
}

.bhip-product.even .bhip-product-details {
    background-color: var(--e-global-color-primary);
}

.bhip-product.even .bhip-product-details,
.bhip-product.even .bhip-product-details h2 {
    color: #fff;
}

.bhip-product a {
    font-weight: 500 !important;
    fill: #fff;
    color: #fff !important;
    background-color: var(--e-global-color-secondary);
    margin-top: auto;
    align-self: start;
}

@media screen and (min-width: 962px) {
    .bhip-product {
        flex-direction: row;
    }

    .bhip-product.even .bhip-product-image {
        order: 1;
    }
}