/* news-detail.css - Additional styles for News Detail page */

.news-detail {
  padding: 60px 0;
}

.article-header {
  border-bottom: 1px solid #eee;
  margin-bottom: 30px;
  padding-bottom: 20px;
}

.article-header h1 {
  color: #2c3e50;
  margin: 0 0 10px;
  font-size: 32px;
}

.article-meta {
  color: #7f8c8d;
  font-size: 14px;
}

.article-meta .date {
  margin-right: 20px;
}

.article-body {
  line-height: 1.8;
  color: #333;
}

.article-body h2 {
  color: #2c3e50;
  margin-top: 40px;
  margin-bottom: 15px;
  font-size: 22px;
}

.article-body ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.article-body blockquote {
  border-left: 4px solid #e74c3c;
  padding-left: 20px;
  margin: 25px 0;
  color: #555;
  font-style: italic;
}

.article-body blockquote cite {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  color: #7f8c8d;
}

.article-image {
  margin: 30px 0;
  text-align: center;
}

.article-image img {
  max-width: 100%;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  display: block;
    margin-left: auto;
    margin-right: auto;
}

.article-image figcaption {
  margin-top: 10px;
  font-size: 14px;
  color: #7f8c8d;
}

.article-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #eee;
  flex-wrap: wrap;
  gap: 15px;
}

.share a {
  margin-left: 12px;
  color: #e74c3c;
  font-weight: 600;
}

.share a:hover {
  text-decoration: underline;
}

.back a {
  color: #2c3e50;
  font-weight: 600;
}

.back a:hover {
  color: #e74c3c;
}

@media (max-width: 600px) {
  .article-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}