/*
 * SOLE — 03 Components
 * 再利用できるUIパーツ（全ページ共通）
 * WordPress: 追加CSS [3] Components に対応
 */

/* ── Divider ── */
.divider {
  width: 1px;
  height: 4rem;
  background-color: var(--sage-light);
  margin: 3.5rem auto;
}

.divider--light {
  background-color: rgba(250, 247, 242, 0.2);
}

/* ── Typography: Copy ── */
.copy {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.6vw, 1.75rem);
  font-weight: 200;
  line-height: 2.4;
  letter-spacing: 0.06em;
  color: var(--text);
}

.copy--light { color: var(--bg); }

/* ── Typography: Sub ── */
.sub {
  font-family: var(--font-serif);
  font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  font-weight: 200;
  line-height: 2.6;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

/* ── Table (About / Contact ページ) ── */
.wp-block-table td,
.wp-block-table th {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  line-height: 2;
  border-color: var(--sage-light);
  padding: 0.75rem 1rem;
  vertical-align: top;
}

.wp-block-table th {
  color: var(--text-muted);
  font-weight: 300;
  white-space: nowrap;
  width: 10em;
}

.wp-block-table {
  border-collapse: collapse;
  width: 100%;
}
