/* News detail page styles (resources/views/haber-detayi.blade.php) */

.article-hero {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 24px;
  margin-bottom: 48px;
}

@media (max-width: 768px) {
  .article-hero {
    height: 250px;
    border-radius: 16px;
    margin-bottom: 32px;
  }
}

.article-header {
  margin-bottom: 40px;
}

.article-date {
  display: inline-block;
  font-size: 0.95rem;
  color: #6e7a8a;
  font-weight: 600;
  margin-bottom: 16px;
  padding: 6px 16px;
  background: rgba(21, 28, 36, 0.05);
  border-radius: 999px;
}

.article-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .article-title {
    font-size: 2rem;
  }
}

.article-body {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #333;
  max-width: 800px;
}

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

.article-body h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #111;
  margin: 48px 0 24px 0;
  letter-spacing: -0.01em;
}

.article-body img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 24px 0;
}
