.glass {
    padding-top: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #e6e6e6;
}
.glass__title {
    margin-bottom: 30px;
}
.glass__list {
    grid: none/repeat(4, 1fr);
    gap: 30px;
}
.glass__item {
    display: flex;
    flex-direction: column;
}
.glass__img {
	width: 100%;
	height: 200px;
    border-radius: 4px;
    margin-bottom: 20px;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	image-rendering: -moz-crisp-edges;
	image-rendering: -o-crisp-edges;
	image-rendering: -webkit-optimize-contrast;
	image-rendering: crisp-edges;
	-ms-interpolation-mode: nearest-neighbor;
}
.glass__name {
    font-size: 20px;
    font-weight: 500;
    padding-bottom: 10px;
}
.glass__price {
    font-weight: 500;
    padding-bottom: 10px;
}
.glass__wrap {
    padding-bottom: 20px;
}
.glass__desc {
    font-size: 14px;
    line-height: 24px;
    color: #4d4d4d;
    padding-left: 20px;
    position: relative;
}
.glass__desc:before {
    position: absolute;
    content: "";
    top: 8px;
    left: 0;
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    border-radius: 50%;
}
.glass__desc a {
	color: var(--primary-color);
	border-color: var(--primary-color);
}
.glass__desc a:hover {
	color: var(--primary-color-active);
	border-color: transparent;
}
.glass__btn {
    width: 170px;
    margin-top: auto;
}
@media screen and (min-width: 1576px) {
    .glass__list {
        gap: 31px;
    }
}
@media screen and (max-width: 1220px) {
    .glass__list {
        gap: 20px;
    }
	.glass__img {
		height: 180px;
	}
}
@media screen and (max-width: 992px) {
    .glass {
        padding-top: 40px;
        padding-bottom: 45px;
    }
    .glass__list {
		grid: none/repeat(3, 1fr);
        gap: 25px 20px;
    }
	.glass__img {
		margin-bottom: 16px;
	}
    .glass__wrap {
        padding-bottom: 12px;
    }
}
@media screen and (max-width: 767px) {
    .glass__list {
        grid: none/repeat(2, 1fr);
    }
    .glass__item {
		max-width: 313px;
    }
}
@media screen and (max-width: 480px) {
    .glass__list {
        grid: none/repeat(1, 1fr);
    }
}