.news-detail-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.news-detail-header {
  margin-bottom: 30px;
}

.news-detail-meta {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 15px;
}

.news-detail-category {
  display: inline-block;
  padding: 6px 12px;
  background: #e9ecef;
  color: #495057;
  font-size: 14px;
  border-radius: 3px;
  font-weight: 500;
}

.news-detail-date {
  color: #6c757d;
  font-size: 14px;
}

.news-detail-title {
  font-size: 36px;
  font-weight: 700;
  color: #2c3e50;
  line-height: 1.3;
  border: none;
  outline: none;
  margin-bottom: 0px;
  margin-top: 50px;
}

.news-detail-image {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 30px;
}

.news-detail-content {
  font-size: 18px;
  line-height: 1.8;
  color: #495057;
  white-space: pre-wrap;
}

.news-back-link {
  margin-top: 40px;
  display: inline-flex;
  padding: 0.9rem 1.5rem;
  background: #05d4e0;
  color: #ffffff;
  border: none;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.2s ease;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-decoration: none;
}

.news-back-link:hover {
  background: #04b5bf;
  transform: translateY(-2px);
}

.news-back-link svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.news-back-link:hover svg {
  transform: translateX(-3px);
}

.news-back-link:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .news-detail-title {
    font-size: 28px;
  }

  .news-detail-content {
    font-size: 16px;
  }
}
