/* =====================
   詳細ページ全体
   ===================== */
.news-detail {
  padding: var(--space-8) 0;
}

.news-detail-container {
  max-width: 800px;
  margin: 0 auto;
}

/* =====================
   ヘッダー
   ===================== */
.news-detail-header {
  margin-bottom: var(--space-4);
}

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

.news-date {
  font-size: 14px;
  color: var(--muted);
}

.news-title {
  font-size: var(--fs-2xl);
  line-height: 1.4;
}

/* =====================
   写真
   ===================== */
.news-image {
  margin: var(--space-5) 0;
}

.news-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  object-fit: cover;
}

/* =====================
   本文
   ===================== */
.news-content {
  font-size: var(--fs-base);
  line-height: 1.9;
}

.news-content p {
  margin-bottom: 1.5em;
}

/* =====================
   スマホ調整
   ===================== */
@media (max-width: 768px) {
  .news-detail-container {
    padding: 0 20px;
  }

  .news-title {
    font-size: var(--fs-xl);
  }

  .news-image {
    margin: var(--space-4) 0;
  }
}
