.news-details-page {
  background: linear-gradient(180deg, #f8f8f6 0%, #f3f4f1 100%);
}

.news-details-wrap {
  padding-top: 130px;
  padding-bottom: 70px;
}

.news-article-shell {
  width: min(980px, 100%);
  margin: 0 auto;
}

.article-card {
  background: #fff;
  border: 1px solid rgba(31, 42, 55, 0.08);
  border-radius: 28px;
  box-shadow: 0 14px 35px rgba(37, 78, 114, 0.08);
  padding: 28px;
}

.article-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(37, 78, 114, 0.18);
  background: #fff;
  color: #254e72;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.article-meta {
  margin-top: 18px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.article-tag {
  background: #eef4f7;
  color: #254e72;
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 700;
}

.article-date {
  color: #6b7280;
  font-size: 13px;
  font-weight: 600;
}

.article-title {
  margin: 14px 0 10px;
  color: #254e72;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.4;
  font-weight: 900;
}

.article-summary {
  margin: 0 0 20px;
  color: #3f4a58;
  font-size: 16px;
  line-height: 2;
  font-weight: 500;
}

.article-main-image {
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
  max-height: 460px;
  margin-bottom: 22px;
  border: 1px solid rgba(31, 42, 55, 0.08);
}

.article-content {
  color: #1f2a37;
  font-size: 16px;
  line-height: 2.15;
}

.article-content p {
  margin: 0 0 16px;
}

.article-gallery {
  margin-top: 24px;
}

.article-gallery h3 {
  margin: 0 0 12px;
  color: #254e72;
  font-size: 20px;
  font-weight: 800;
}

.article-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.article-gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(31, 42, 55, 0.08);
}

.article-empty {
  text-align: center;
  padding: 60px 24px;
}

.article-empty h2 {
  margin: 0 0 10px;
  color: #254e72;
  font-size: 28px;
  font-weight: 900;
}

.article-empty p {
  margin: 0 0 20px;
  color: #6b7280;
  line-height: 1.9;
}

@media (max-width: 900px) {
  .news-details-wrap {
    padding-top: 116px;
  }

  .article-card {
    border-radius: 22px;
    padding: 22px;
  }

  .article-gallery-grid {
    grid-template-columns: 1fr;
  }

  .article-gallery-grid img {
    height: 200px;
  }
}

@media (max-width: 600px) {
  .article-card {
    border-radius: 18px;
    padding: 16px;
  }

  .article-summary,
  .article-content {
    font-size: 15px;
  }

  .article-main-image {
    max-height: 280px;
    border-radius: 14px;
  }
}
