/* Detail news.css */

.news-detail-container {
  max-width: 1100px;
  margin: 2rem auto;
  padding: 0 1rem;
}
.detail-image {
  width: 100%;
  height: 450px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}
.btn-back {
  display: inline-block;
  margin-bottom: 1rem;
  color: #000;
  text-decoration: none;
  font-weight: bold;
}
.btn-back:hover {
  color: #850808;
  text-decoration: underline;
}
.detail-title {
  font-size: 2rem;
  color: #850808;
  margin: 0 0 0.5rem;
}
.detail-meta {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1.5rem;
}
.detail-fieldset,
.comments-fieldset {
  border: 0.1px solid #850808;
  padding: 1rem;
  margin-bottom: 2rem;
  border-radius: 4px;
}
.detail-fieldset legend,
.comments-fieldset legend {
  font-weight: bold;
  color: #850808;
  padding: 0 0.5rem;
}
.detail-text {
  margin-top: 0.5rem;
  line-height: 1.6;
  color: #333;
}
.comments-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.comment-item {
  margin-bottom: 1.5rem;
}
.comment-text {
  margin-bottom: 0.5rem;
}
.comment-meta {
  font-size: 0.8rem;
  color: #888;
  text-align: left;
}
.comment-form {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
}
.comment-textarea {
  width: 100%;
  min-height: 100px;
  padding: 0.75em;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
  margin-bottom: 0.5rem;
}
.comment-btn-wrapper {
  display: flex;
  justify-content: flex-end;
}
.btn-comment {
  background-color: #850808;
  color: #fff;
  padding: 0.6em 1.2em;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}
.btn-comment:hover {
  background-color: #5e0606;
}
