/* ========================================
   NEWS DETAIL Page Styles
   ======================================== */

/* News Detail Content */
.news-detail {
  padding: 0 0 80px;
  background: #fff;
}

.news-detail-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
}

/* News Date & Category */
.news-date {
  display: block;
  font-size: 14px;
  color: #888;
  text-align: left;
  margin-bottom: 12px;
  font-family: 'Roboto', sans-serif;
}

.news-detail .news-category {
  display: inline-block;
  padding: 4px 12px;
  background: #3B4043;
  color: #fff;
  font-size: 12px;
  border-radius: 4px;
  margin-bottom: 16px;
}

/* News Title */
.news-detail-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
  color: #3B4043;
  text-align: left;
  margin-bottom: 40px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e0e0e0;
}

/* News Body */
.news-body {
  font-size: 15px;
  line-height: 2;
  color: #3B4043;
}

.news-body p {
  margin-bottom: 24px;
}

.news-body p:last-child {
  margin-bottom: 0;
}

/* News Divider */
.news-divider {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 48px 0 0 0;
  padding-bottom: 40px;
}

/* Back Button */
.news-detail .news-button {
  margin-top: 60px;
  text-align: center;
}

.btn-news {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  background: #fff;
  color: #3B4043;
  text-decoration: none;
  border: none;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-news:hover {
  opacity: 0.7;
}

.btn-news .btn-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.btn-news:hover .btn-icon {
  transform: translateX(-4px);
}

/* Responsive */
@media (max-width: 768px) {
  .news-detail {
    padding: 0 0 60px;
  }

  .news-detail-title {
    font-size: 20px;
    margin-bottom: 32px;
  }

  .news-body {
    font-size: 14px;
  }

  .news-body p {
    margin-bottom: 20px;
  }

  .news-detail .news-button {
    margin-top: 48px;
  }
}
