.products-blog {
	margin-block: 4rem;
}

.title-blog_product {
    font-weight: 700;
    font-size: 18pt;
    line-height: 1em;
    margin-bottom: 2rem;
}

.products-blog__list {
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.products-blog__item {
    position: relative;
	overflow: hidden;
	font-family: "Plus Jakarta Sans", sans-serif;;
}

.products-blog__item::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: transparent;
	transition: background 300ms ease;
}

.products-blog__item:hover::after {
	background: rgb( 0 0 0 / .35);
}

.products-blog__thumb_link {
    position: absolute;
    inset: 0;
    z-index: 3;
}

.products-blog__thumb {
    display: block;
    width: 100%;
    aspect-ratio: 5/6;
    object-fit: cover;
    object-position: center;
}

.products-blog__name {
    position: absolute;
    z-index: 2;
    top: 15%;
    padding: 0 clamp(16px, 1dvw + 10px, 40px);
    color: white;
    font-weight: 600;
    font-size: 16pt;
    line-height: 1.25;
    min-height: 52px;
    text-shadow: 1px 1px 2px rgb(0 0 0);
}

.products-blog__price {
    display: block;
    position: absolute;
	z-index: 2;
    bottom: 10%;
    padding: 0 clamp(16px, 1dvw + 10px, 40px);
    color: #fff;
    font-weight: 600;
    font-size: 14pt;
	text-shadow: 1px 1px 2px rgb(0 0 0);
}