.products-hero {
    position: relative;
    display: flex;
    min-height: clamp(360px, 48vh, 430px);
    align-items: center;
    overflow: hidden;
    color: var(--white);
    background: #000;
}

.products-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.56)),
        url("../../images/products-hero.webp") center/cover no-repeat;
    z-index: 0;
}

.products-hero-content {
    position: relative;
    z-index: 1;
}

.products-hero h1 {
    max-width: 760px;
    color: var(--white);
    font-family: var(--font3);
    font-size: clamp(4rem, 5vw, 6.4rem);
    font-weight: 600;
    line-height: 1.1;
}

.products-hero p {
    max-width: 680px;
    margin-top: 34px;
    color: var(--white);
    font-size: 2rem;
    font-weight: 300;
    line-height: 3.4rem;
    letter-spacing: 1.8px;
}

.products-research {
    padding-block: 72px 84px;
}

.products-research-text {
    position: relative;
    z-index: 1;
}

.products-research-text p + p {
    margin-top: 30px;
}

.products-delivery {
    padding-block: 76px 96px;
}

.products-delivery-text {
    position: relative;
    z-index: 1;
}

.products-delivery-item + .products-delivery-item {
    margin-top: 34px;
}

.products-delivery-item h3 {
    margin-bottom: 22px;
    color: var(--dark);
    font-family: var(--font3);
    font-size: 3.8rem;
    font-weight: 600;
    line-height: 4.8rem;
}

.products-delivery-media {
    max-width: 502px;
}

.products-delivery-media img {
    aspect-ratio: 502 / 733;
}

.products-print {
    padding-block: 70px 96px;
}

.products-print-text {
    position: relative;
    z-index: 1;
}

.products-print-media {
    max-width: 547px;
}

.products-print-media img {
    aspect-ratio: 547 / 575;
}

.products-expertise-cta {
    position: relative;
    display: flex;
    min-height: clamp(220px, 28vw, 320px);
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--white);
    background: #000;
}

.products-expertise-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
    linear-gradient(rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.48)),
    url("../../images/expertise.webp");
    object-fit: contain;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center 62%;
    z-index: 0;
}

.products-expertise-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.products-expertise-content h2 {
    color: var(--white);
    text-align: center;
}

.products-cta {
    width: min(560px, 100%);
    padding: 11px 40px;
    border: 2px solid var(--white);
    border-radius: 999px;
    color: var(--white);
    font-family: var(--font2);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
}

@media (max-width: 860px) {
    .products-hero {
        min-height: 340px;
    }

    .products-hero p {
        font-size: 1.5rem;
        line-height: 2.6rem;
        letter-spacing: 0.6px;
    }

    .products-research {
        padding-block: 0px;
    }

    .products-delivery {
        padding-block: 0px;
    }

    .products-print {
        padding-block: 0px;
    }

    .products-expertise-cta {
        min-height: 220px;
    }

    .products-delivery-item + .products-delivery-item {
        margin-top: 28px;
    }

    .products-delivery-item h3 {
        font-size: 2.8rem;
        line-height: 3.8rem;
    }
}
