  .section-title {
      text-align: center;
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 50px;
      background: linear-gradient(90deg, #2c3e50, #3498db);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      position: relative;
  }

  .section-title::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: linear-gradient(90deg, #3498db, #2c3e50);
      border-radius: 2px;
  }

  .news-container {
      max-width: 1400px;
      margin: 150px auto;
      position: relative;
  }

  /* Swiper стили */
  .news-swiper {
      padding: 30px 10px 70px;
  }

  .swiper-slide {
      background: white;
      border-radius: 20px;
      overflow: hidden;
      box-shadow:
          0 10px 30px rgba(0, 0, 0, 0.08),
          0 1px 3px rgba(0, 0, 0, 0.05);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      opacity: 0.6;
      transform: scale(0.92);
      height: auto;
      display: flex;
      flex-direction: column;
  }

  .swiper-slide-active {
      opacity: 1;
      transform: scale(1);
      box-shadow:
          0 20px 50px rgba(0, 0, 0, 0.15),
          0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .news_updates__media {
      display: block;
      height: 280px;
      position: relative;
      overflow: hidden;
      background: linear-gradient(45deg, #3498db, #2c3e50);
  }

  .news_updates__media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .swiper-slide-active .news_updates__media img {
      transform: scale(1.08);
  }

  .news_updates__body {
      padding: 30px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      background: white;
  }

  .news_updates__date {
      font-size: 0.9rem;
      color: #7f8c8d;
      margin-bottom: 15px;
      font-weight: 500;
      display: block;
  }

  .news_updates__title {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 15px;
      line-height: 1.3;
  }

  .news_updates__title a {
      color: #2c3e50;
      text-decoration: none;
      transition: color 0.3s;
      background: linear-gradient(90deg, #2c3e50, #3498db);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
  }

  .news_updates__title a:hover {
      color: #3498db;
  }

  .news_updates__excerpt {
      color: #5d6d7e;
      line-height: 1.6;
      margin-bottom: 20px;
      flex-grow: 1;
      font-size: 1.05rem;
  }

  /* Кнопки навигации */
  .swiper-button-next,
  .swiper-button-prev {
      width: 60px;
      height: 60px;
      background: white;
      border-radius: 50%;
      box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
      transition: all 0.3s;
      top: 50%;
      transform: translateY(-50%);
  }

  .swiper-button-next:after,
  .swiper-button-prev:after {
      font-size: 1.2rem;
      color: #3498db;
      font-weight: bold;
  }

  .swiper-button-next:hover,
  .swiper-button-prev:hover {
      background: #3498db;
      transform: translateY(-50%) scale(1.1);
  }

  .swiper-button-next:hover:after,
  .swiper-button-prev:hover:after {
      color: white;
  }

  /* Пагинация */
  .swiper-pagination {
      bottom: 20px !important;
  }

  .swiper-pagination-bullet {
      width: 12px;
      height: 12px;
      background: rgba(52, 152, 219, 0.3);
      opacity: 1;
      transition: all 0.3s;
  }

  .swiper-pagination-bullet-active {
      background: #3498db;
      transform: scale(1.3);
  }



  /* Адаптивность */
  @media (max-width: 768px) {
      .section-title {
          font-size: 2rem;
      }

      .news_updates__body {
          padding: 20px;
      }

      .news_updates__title {
          font-size: 1.3rem;
      }

      .news_updates__media {
          height: 220px;
      }

      .swiper-button-next,
      .swiper-button-prev {
          width: 25px;
          height: 25px;
          display: none;
      }

      .swiper-slide {
          opacity: 0.8;
      }
  }

  @media (max-width: 480px) {
      body {
          padding: 20px 10px;
      }

      .section-title {
          font-size: 1.8rem;
      }

      .news_updates__media {
          height: 180px;
      }

      .news-swiper {
          padding: 20px 5px 60px;
      }
  }
.swiper-button-prev svg{
    width: 20px;
}

.swiper-button-next svg {
    width: 20px;
}

  /* Анимация появления */
  @keyframes fadeInUp {
      from {
          opacity: 0;
          transform: translateY(30px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  .news-container {
      animation: fadeInUp 0.8s ease-out;
  }