.site-content .ast-container {
  display: unset !important;
}

.news-content-container {
  padding: 80px 0;
}
.news-content-container .news-title {
  font-weight: 600;
  font-size: 40px;
  color: #222;
  margin-bottom: 40px;
}
.news-content-container .navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.news-content-container .navigation .post-date {
  color: #888888;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.news-content-container .navigation .share-buttons {
  display: flex;
  align-items: center;
}
.news-content-container .navigation .share-buttons span {
  color: #7d7d7d;
  font-size: 14px;
  margin-right: 10px;
}
.news-content-container .navigation .share-buttons .social-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  color: white;
  transition: all 0.3s ease;
}
.news-content-container .navigation .share-buttons .social-icon:hover {
  transform: translateY(-2px);
}
.news-content-container .nav-bottom {
  padding: 20px 0;
  border-top: solid 1px #dddddd;
  border-bottom: solid 1px #dddddd;
  margin-bottom: 60px;
}
.news-content-container .news-body {
  color: #525252;
}
.news-content-container .news-body h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}
.news-content-container .news-body p {
  font-size: 17px;
}
.news-content-container .related-news .section-title {
  font-size: 24px;
  font-weight: 600;
  color: #222;
  margin-bottom: 40px;
}
.news-content-container .related-news .news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.news-content-container .related-news .news-grid .news-item {
  border-radius: 10px;
  overflow: hidden;
  background: white;
  transition: all 0.3s ease;
}
.news-content-container .related-news .news-grid .news-item:hover .image-wrapper img {
  transform: scale(1.05);
}
.news-content-container .related-news .news-grid .news-item a {
  text-decoration: none;
  color: inherit;
  display: block;
}
.news-content-container .related-news .news-grid .news-item .image-wrapper {
  height: 180px;
  overflow: hidden;
  position: relative;
}
.news-content-container .related-news .news-grid .news-item .image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.news-content-container .related-news .news-grid .news-item .news-date {
  font-size: 13px;
  color: #777;
  margin-bottom: 0px;
  display: block;
  padding: 15px 0;
}
.news-content-container .related-news .news-grid .news-item .news-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: #222;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 68px;
}

@media (max-width: 992px) {
  .related-news .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .news-content-container {
    padding: 40px 0;
  }
  .news-content-container .news-title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .news-content-container .navigation {
    flex-direction: column;
    margin-bottom: 20px;
  }
  .news-content-container .navigation .post-date {
    margin-bottom: 12px;
    font-size: 16px;
  }
  .news-content-container .nav-bottom {
    display: none;
  }
  .news-content-container .related-news .news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .news-content-container .related-news .section-title {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
@media (max-width: 576px) {
  .related-news .news-grid {
    grid-template-columns: 1fr;
  }
  .news-navigation {
    flex-direction: column;
    gap: 15px;
  }
  .news-navigation .back-button {
    margin-bottom: 10px;
  }
}/*# sourceMappingURL=news-detail.css.map */