.products-verita-1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background-color: #e7e5e4;
    container-type: inline-size;
}
.products-verita-1 .content-wrapper {
    width: 100%;
    max-width: 120rem;
    padding: 13.5rem 3.25rem 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: 5.75rem;
    column-gap: 0.5rem;
}
.products-verita-1 .content-wrapper .card {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    width: 100%;
    gap: 1.5rem;
}
.products-verita-1 .content-wrapper .card .img-part {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: end;
    justify-content: center;
    transition: 0.4s;
    position: relative;
    background-size: cover;
    background-position: center;
}
.products-verita-1 .content-wrapper .card .img-part::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 1;
    transition: opacity 0.4s ease;
    z-index: 2;
    background-color: var(--bg-color, transparent);
}
.products-verita-1 .content-wrapper .card .img-part > img {
    transition: 0.4s;
    height: 100%;
    object-fit: contain;
    position: absolute;
    z-index: 3;
}
.products-verita-1 .content-wrapper .card .img-part:hover {
    z-index: 5;
}
.products-verita-1 .content-wrapper .card .img-part:hover::after {
    opacity: 0.9;
}
.products-verita-1 .content-wrapper .card .img-part:hover > img {
    height: 130%;
}
.products-verita-1 .content-wrapper .card > h1 {
    font-size: 2.25rem;
    line-height: 2.625rem;
    color: #161b1d;
    font-weight: 500;
}
.products-verita-1 .content-wrapper .card > p {
    font-size: 1.25rem;
    line-height: 1.5rem;
    color: #2d3438;
    font-weight: 500;
}
.products-verita-1 .content-wrapper .card > a {
    text-decoration: none;
}
.products-verita-1 .content-wrapper .card .bottom-link {
    border-bottom: solid 1px #fd2a00;
    padding: 1rem 0;
    margin-top: 1.5rem;
    color: #161b1d;
    font-size: 1rem;
    line-height: 1rem;
    font-weight: 500;
}

@container (width < 96.5rem) {
    .products-verita-1 .content-wrapper {
        width: 100%;
        max-width: unset;
        padding: 6rem;
        display: grid;
        grid-template-columns: 1fr;
        row-gap: 6rem;
    }
    .products-verita-1 .content-wrapper .card {
        gap: 1.5rem;
    }
    .products-verita-1 .content-wrapper .card .img-part:hover > img {
        height: 120%;
    }
    .products-verita-1 .content-wrapper .card > h1 {
        font-size: 2.25rem;
        line-height: 2.375rem;
        color: #161b1d;
        font-weight: 500;
    }
    .products-verita-1 .content-wrapper .card > p {
        font-size: 1.25rem;
        line-height: 1.5rem;
        color: #2d3438;
        font-weight: 500;
    }
    .products-verita-1 .content-wrapper .card .bottom-link {
        border-bottom: solid 1px #fd2a00;
        padding: 1rem 0;
        margin-top: 1.5rem;
        color: #161b1d;
        font-size: 1rem;
        line-height: 1rem;
        font-weight: 500;
    }
}
@container (width < 43.75rem) {
    .products-verita-1 .content-wrapper {
        padding: 4rem 1.25rem;
        row-gap: 4rem;
    }
    .products-verita-1 .content-wrapper .card {
        gap: 1rem;
    }
    .products-verita-1 .content-wrapper .card > h1 {
        font-size: 1.5rem;
        line-height: 1.375rem;
    }
    .products-verita-1 .content-wrapper .card > p {
        font-size: 1rem;
        line-height: 1.5rem;
    }
    .products-verita-1 .content-wrapper .card .bottom-link {
        padding: 0.75rem 0;
        margin-top: 0.75rem;
        color: #161b1d;
        font-size: 0.75rem;
        line-height: 0.75rem;
    }
}
