/* ==========================================================================
   Page Content (汎用ページ・固定ページ)
   ========================================================================== */
.page-content {
  padding-block: 64px;
}

.content-body h2 {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-top: 48px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-bg-light);
}

.content-body h3 {
  font-size: 1.125rem;
  margin-top: 32px;
  margin-bottom: 12px;
}

.content-body p {
  font-size: .9375rem;
  line-height: 1.9;
  color: var(--color-text-mid);
  margin-bottom: 20px;
}

.content-body ul {
  list-style: disc;
  padding-left: 1.5em;
  margin-bottom: 20px;
}

.content-body li {
  font-size: .9375rem;
  color: var(--color-text-mid);
  line-height: 1.8;
  margin-bottom: 6px;
}

/* ==========================================================================
   Single Post（投稿詳細）
   ========================================================================== */
.post-header {
  margin-bottom: 40px;
}

.post-title {
  font-size: clamp(1.375rem, 4vw, 2rem);
  font-weight: var(--fw-bold);
  line-height: 1.35;
  margin-bottom: 20px;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: .8125rem;
  color: var(--color-text-light);
  margin-bottom: 24px;
}

.post-thumbnail {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 40px;
  aspect-ratio: 16/9;
  background: var(--color-bg-light);
}

.post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-body {
  font-size: .9375rem;
  line-height: 1.9;
  color: var(--color-text-mid);
}

.post-body h2 {
  font-size: 1.375rem;
  color: var(--color-text);
  margin: 40px 0 16px;
  padding-left: 16px;
  border-left: 4px solid var(--color-primary);
}

.post-body h3 {
  font-size: 1.125rem;
  margin: 28px 0 12px;
  color: var(--color-text);
}

.post-body p { margin-bottom: 1.6em; }

.post-body img {
  border-radius: var(--radius-md);
  margin: 24px 0;
}

.post-body a { text-decoration: underline; }
