									/*  		Новости	баннер		  */
.news-banner-section {
  width: 100%;
  background: linear-gradient(145deg, #e5e9f0, #cdd3dc);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 0;
}

.news-banner-container {
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  padding: 40px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
  flex-direction: row;
}

.news-banner-container:hover {
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.15);
}

/* Контент */
.news-banner-content {
  max-width: 600px;
}

.news-banner-title {
  font-size: 34px;
  margin-bottom: 20px;
  color: #333;
  animation: fadeIn 0.8s ease-out;
}

.news-banner-description {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
  animation: fadeIn 1.2s ease-out;
}

/* Картинка */
.news-banner-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  animation: slideIn 1s ease-out;
}

/* Анимации */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Адаптив */
@media (max-width: 768px) {
  .news-banner-container {
    flex-direction: column;
    text-align: center;
  }

  .news-banner-image img {
    max-width: 100%;
  }

  .news-banner-content {
    max-width: 100%;
  }
}

								/*  		Новости	блоки		  */
 .news-magazine-wrapper {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
  position: relative;
}

.news-magazine-title {
  font-size: 2.2rem;
  margin-bottom: 30px;
  text-align: center;
  color: #1a1a1a;
}

/* Фильтр по году */
.news-magazine-filter {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 1rem;
  color: #333;
}

.news-magazine-filter label {
  font-weight: bold;
}

.news-magazine-filter select {
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  background-color: #fff;
  transition: border-color 0.2s ease;
}

.news-magazine-filter select:focus {
  border-color: #0056b3;
  outline: none;
}

/* Сетка и карточки */
.news-magazine-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.news-magazine-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 24px;
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: hidden;
  max-height: 240px;
  position: relative;
}

.news-magazine-card.expanded {
  max-height: none;
}

.news-magazine-card:not(.expanded)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 60px;
  width: 100%;
  background: linear-gradient(to top, white, transparent);
  pointer-events: none;
}

.news-magazine-meta {
  font-size: 0.85rem;
  color: #777;
  margin-bottom: 10px;
}

.news-magazine-heading {
  font-size: 1.4rem;
  color: #222;
  margin-bottom: 12px;
}

/* Текст новости */
.news-magazine-body {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  padding: 0 1rem 1rem;
}

.news-magazine-body p,
.news-magazine-body ul,
.news-magazine-body ol {
  margin-bottom: 1em;
}

.news-magazine-body ul {
  padding-left: 1.2rem;
}

.news-magazine-body a {
  color: #0077cc;
  text-decoration: underline;
}

/* Кнопка Загрузить ещё */
.news-magazine-load-more-wrapper {
  text-align: center;
  margin-top: 30px;
}

.news-magazine-load-more {
  background: #0056b3;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.news-magazine-load-more:hover {
  background: #003f87;
}
