/* =========================================================
   4-PACK ASSORTIMENT
   ========================================================= */

.order-fourpack {
    display: grid;
    grid-template-columns: minmax(320px, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 70px;
    margin-top: 80px;
    padding: 55px;
    background: #111;
    color: #fff;
}

.order-fourpack-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 470px;
    padding: 30px;
    background: #f1eee8;
}

.order-fourpack-image img {
    display: block;
    width: 100%;
    max-width: 560px;
    height: auto;
    max-height: 470px;
    object-fit: contain;
}

.order-fourpack-content {
    max-width: 540px;
}

.order-fourpack-content .eyebrow {
    margin-bottom: 12px;
    color: rgba(255,255,255,.55);
}

.order-fourpack-content h2 {
    margin: 0 0 12px;
    color: #fff;
    font-family: var(--heading);
    font-size: clamp(58px, 6vw, 82px);
    font-weight: 500;
    line-height: .9;
}

.order-fourpack-subtitle {
    margin: 0 0 22px;
    color: rgba(255,255,255,.88);
    font-family: var(--heading);
    font-size: 28px;
    line-height: 1.2;
}

.order-fourpack-content > p:not(.eyebrow):not(.order-fourpack-subtitle) {
    margin: 0 0 28px;
    color: rgba(255,255,255,.68);
    font-size: 15px;
    line-height: 1.85;
}

.order-fourpack-price {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 25px;
}

.order-fourpack-price span {
    display: inline-flex;
    align-items: center;
    min-height: 31px;
    padding: 0 11px;
    background: #fff;
    color: #111;
    border-radius: 999px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .12em;
}

.order-fourpack-price strong {
    color: #fff;
    font-family: var(--heading);
    font-size: 34px;
    font-weight: 600;
}

.order-fourpack .button {
    background: #fff;
    color: #111;
}

.order-fourpack .button:hover {
    background: #eae8e3;
}

@media (max-width: 950px) {

    .order-fourpack {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
    }

    .order-fourpack-image {
        min-height: 400px;
    }

    .order-fourpack-image img {
        max-height: 400px;
    }

    .order-fourpack-content {
        max-width: none;
    }
}

@media (max-width: 650px) {

    .order-fourpack {
        gap: 30px;
        margin-top: 55px;
        padding: 25px;
    }

    .order-fourpack-image {
        min-height: 290px;
        padding: 15px;
    }

    .order-fourpack-image img {
        max-height: 290px;
    }

    .order-fourpack-content h2 {
        font-size: 54px;
    }

    .order-fourpack-subtitle {
        font-size: 24px;
    }

    .order-fourpack-price strong {
        font-size: 30px;
    }
}