.product-features{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30rem;
}
.product-features__image-wrapper{
    width: 335rem;
    height: 280rem;
    flex-shrink: 0;
}
.product-features__image{
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 40rem;
}
.product-features__description{
    margin-bottom: 0;
    line-height: 200%;
}
.product-features__note{
    margin-bottom: 0;
}

@media screen and (min-width: 768px) {
    .product-features{
        flex-direction: row-reverse;
        gap: 56rem;
    }
    .product-features__text{
        margin-top: 100rem;
    }
    .product-features__description--centered{
        text-align: center;
    }
}
@media screen and (min-width: 1024px) {
    .product-features{
        gap: 75rem;
    }
    .product-features__image-wrapper{
        width: 480rem;
        height: 380rem;
    }

}
@media screen and (min-width: 1280px) {
    .product-features{
        gap: 105rem;
    }
    .product-features__image-wrapper{
        width: 580rem;
        height: 480rem;
    }
}