/*Новости*/
.news-page {
    padding: 50px 0;
    min-height: 65vh;
}
.news-page .section__title {
    margin-bottom: 20px;
}
.news-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
}
.news-item {
    background: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    border-radius: 18px;
}
.news-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.news-item h2 {
  font-size: 24px;
  margin: 0 0 10px;
  color: #e34b36;
}
.news-image {
    margin: 10px 0;
    height: 150px;
}
.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news-date {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.news-content {
  font-size: 16px;
  line-height: 1.6;
}
.read-more {
  display: inline-block;
  font-size: 14px;
  color: #e34b36;
  text-decoration: none;
  border: 1px solid #e34b36;
  padding: 8px 16px;
  border-radius: 4px;
  transition: background 0.3s ease, color 0.3s ease;
}
.read-more:hover {
  background: #e34b36;
  color: #fff;
}

@media (max-width: 991px) {
    .news-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}
@media (max-width: 575px) {
    .news-list {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
}
/*новости конец*/

.header1 {
    height: auto;
}