.wholesale-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 360px;
    padding: 2rem;
    background-image: url('https://kamilistorage.blob.core.windows.net/gallery/wholesale-beans.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

/* Scrim keeps the heading legible over the beans photo. */
.wholesale-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.45);
}

.wholesale-hero-content {
    position: relative;
    max-width: 720px;
}

.wholesale-hero h1 {
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.wholesale-hero p {
    color: #ffffff;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 0;
}

/* Same height ladder as the home page hero. */
@media screen and (min-width: 576px) {
    .wholesale-hero {
        height: 400px;
    }
}

@media screen and (min-width: 768px) {
    .wholesale-hero {
        height: 460px;
    }
}

@media screen and (min-width: 992px) {
    .wholesale-hero {
        height: 520px;
    }
}

@media screen and (min-width: 1200px) {
    .wholesale-hero {
        height: 600px;
    }
}
