.cards {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
        margin: 0;
        padding: 0;
    }

    @media only screen and (max-width: 1200px) {
        .cards {
            grid-template-columns: repeat(3, 1fr);
            gap: 1.25rem;
        }
    }

    @media only screen and (max-width: 992px) {
        .cards {
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }
    }
    @media only screen and (max-width: 576px) {
        .cards {
            grid-template-columns: repeat(2, 1fr);
            gap: 0.75rem;
		}
	}
  

	.product_tag {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem;
    margin: 1.5rem 0;
    font-size: 1.3rem;
    color: #000000;
}

.product_tag::before {
    content: "Фильтры:";
    margin-right: 0.5rem;
    font-weight: 500;
}

.blog_tag_item {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 1rem;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    color: #000000;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.2s ease;
	font-weight: 600;
}

.blog_tag_item:hover {
    background-color: #e9ecef;
    color: #233D63;
}

.blog_tag_item.active {
    background-color: #233D63;
    color: #ffffff;
    border-color: #233D63;
}

@media (max-width: 768px) {
    .product_tag {
        gap: 0.5rem;
        margin: 1rem 0;
        font-size: 0.85rem;
    }

    .blog_tag_item {
        padding: 0.35rem 0.85rem;
        font-size: 0.8rem;
		margin: 0px;
    }
}

