.news-single {
  max-width: 750px;
  margin: 50px auto;
  padding: 0 20px;
} /* ========================= Gallery ========================= */
.news-gallery {
  margin-bottom: 40px;
}
.news-gallery-main {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 12px;
  background: #f3f3f3;
}
.news-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.news-gallery-thumbnails {
  display: flex;
  gap: 12px;
  margin-top: 15px;
  overflow-x: auto;
  padding-bottom: 5px;
}
.news-gallery-thumbnail {
  flex: 0 0 100px;
  height: 70px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  background: none;
}
.news-gallery-thumbnail.active {
  border-color: #2271b1;
}
.news-gallery-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
} /* ========================= News Header ========================= */
.news-title {
  margin: 0 0 10px;
  font-size: 40px;
  line-height: 1.2;
}
.news-date {
  color: #666;
  font-size: 15px;
  margin-bottom: 30px;
} /* ========================= Content ========================= */
.news-content {
  font-size: 17px;
  line-height: 1.8;
}
.news-content img {
  max-width: 100%;
  height: auto;
} /* ========================= Responsive ========================= */
@media (max-width: 768px) {
  .news-single {
    margin: 30px auto;
  }
  .news-title {
    font-size: 30px;
  }
  .news-gallery-thumbnail {
    flex-basis: 80px;
    height: 60px;
  }
}
