/* ===============================
   NEWS DETAIL PAGE
================================ */
.news-detail-page {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
  color: #222;
  font-family: "Segoe UI", system-ui, sans-serif;
}

/* ===============================
   BREADCRUMB
================================ */
.news-breadcrumb {
  font-size: 14px;
  color: #777;
  margin-bottom: 20px;
}
.news-breadcrumb a {
  color: #1977cc;
  text-decoration: none;
}
.news-breadcrumb span {
  margin: 0 6px;
}

/* ===============================
   TITLE & META
================================ */
.news-title {
  font-size: 34px;
  line-height: 1.3;
  margin-bottom: 15px;
}
.news-meta {
  font-size: 14px;
  color: #666;
  margin-bottom: 25px;
}
.news-meta i {
  margin-right: 6px;
  color: #1977cc;
}

/* ===============================
   MAIN IMAGE
================================ */
.news-main-image {
  margin: 30px 0;
}
.news-main-image img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  object-fit: cover;
}

/* ===============================
   CONTENT
================================ */
.news-content {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
}
.news-content p {
  margin-bottom: 18px;
}
.news-content h2,
.news-content h3 {
  margin: 28px 0 12px;
}
.news-content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 20px 0;
}

/* ===============================
   GALLERY
================================ */
.news-gallery {
  margin-top: 50px;
}
.news-gallery h3 {
  margin-bottom: 16px;
  font-size: 22px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform .25s ease;
}
.gallery-grid img:hover {
  transform: scale(1.03);
}

/* ===============================
   BACK BUTTON
================================ */
.news-back {
  margin-top: 50px;
}
.back-btn {
  display: inline-block;
  padding: 12px 20px;
  background: #1977cc;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: .2s ease;
}
.back-btn:hover {
  background: #145ea8;
}

/* ===============================
   MOBILE
================================ */
@media (max-width: 768px) {
  .news-title {
    font-size: 26px;
  }
  .news-content {
    font-size: 16px;
  }
}
