@media only screen and (min-width: 768px) {
	.filter-columns .filter-column select.input-text {
		min-width: 180px;
		max-width: 180px;
	}
}

@media only screen and (max-width: 1280px) {
	body {
		overflow-x: hidden;
	}
}
@media (max-width: 991px) {
    #loop-posts {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    .filter-columns .filter-column .filter-col.label {
        display: none;
    }
    .filter-columns .filter-column {
        gap: 10px;
    }
}
@media (max-width: 440px) {
    #loop-posts {
        grid-template-columns: repeat(1, 1fr);
    }
}