.news-grid_list {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 30px;
    }

@media (max-width: 1200px) {
      .news-grid_list {
        grid-template-columns: repeat(4, 1fr);
      }
    }

@media (max-width: 1020px) {
      .news-grid_list {
        grid-template-columns: repeat(3, 1fr);
      }
    }


@media (max-width: 768px) {
      .news-grid_list {
        grid-template-columns: repeat(2, 1fr);
      }
    }

@media (max-width: 560px) {
      .news-grid_list {
        grid-template-columns: repeat(1, 1fr);
      }
    }

.tags_container{
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    margin-bottom: 40px;
}

@media (max-width: 544px) {
      .tags_container{
flex-wrap: wrap;
		  justify-content: flex-start;
gap: 10px;
	   }
    }


.tag_button {
	 height: 38px;
    min-height: 38px;
    padding: 0 20px;
    font-size: 13px;
    font-weight: 500;
	border: 1px solid #2A6D7C;
    cursor: pointer;
    font-family: "PF BeauSans Pro", var(--font-sans);
    transition: background 0.2s;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    color: #262626;
    line-height: 2.6;
}

.tag_button:hover {
    background: linear-gradient(106.95deg, #358393 24.64%, #2A6D7C 77.55%);
    color: #fff;
    border: 1px solid #2A6D7C;
}

.tag_button:active {
    background: linear-gradient(106.95deg, #358393 24.64%, #2A6D7C 77.55%);
    color: #fff;
    border: 1px solid #2A6D7C;
}

 .active {
	background: linear-gradient(106.95deg, #358393 24.64%, #2A6D7C 77.55%);
    color: #fff;
    border: 1px solid #2A6D7C;
}

