/* =========================================================
   НОВОСТИ: СПИСОК (PRESS LIST)
   ========================================================= */

.news-card {
  border-radius: 24px;
  background: #ffffff;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.12) !important;
}

.news-card-img-wrapper {
  height: 220px;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
}

.news-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.news-card:hover .news-card-img-wrapper img {
  transform: scale(1.08);
}

/* =========================================================
   НОВОСТИ: СТРАНИЦА СТАТЬИ (PRESS ITEM)
   ========================================================= */

.article-hero img {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
}

.article-content {
  color: #2d3748;
  max-width: 800px; /* Ограничение ширины для удобства чтения */
  margin: 0 auto;
}

.article-content h2, .article-content h3 {
  margin-top: 2rem;
  font-weight: 700;
  color: #1a202c;
}

.article-content p {
  margin-bottom: 1.5rem;
}

/* Специфический стиль для изображений внутри текста статьи */
.article-content img {
  border-radius: 20px;
  margin: 2rem 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
  .press {
    padding-top: 65px;
  }
/* =========================================================
   КНОПКИ (УНИВЕРСАЛЬНЫЙ СТИЛЬ)
   ========================================================= */

.btn-modern-primary {
  background: transparent;
  border: 2px solid #067597;
  color: #067597;
  border-radius: 50px;
  font-weight: 700;
  padding: 12px 28px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-modern-primary:hover {
  background: #067597;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(6, 117, 151, 0.2);
}
.display-4{
  font-size: 2.5rem !important;
  font-weight: 300  !important;
  text-align: center;
}
/* =========================================================
   АДАПТИВНОСТЬ
   ========================================================= */

@media (max-width: 768px) {
  .news-card-img-wrapper { height: 180px; }
  .article-content { font-size: 1.1rem; }
  .display-4 { font-size: 2.2rem; }
  .press {
    padding-top: 65px;
  }
}