/**
 * 投稿本文 (.entry-content) のスタイル
 * the_content() で出力されるHTMLはTailwindのPreflightでリセットされているため、
 * このクラス内だけ typography を指定する。
 */

.entry-content {
  color: #181818;
  line-height: 1.75;
}

.entry-content>*+* {
  margin-top: 1.25rem;
}

.entry-content h2 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e5e7eb;
  letter-spacing: 0.08em;
}

.entry-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.08em;
}

.entry-content h4,
.entry-content h5,
.entry-content h6 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.08em;
}

.entry-content p {
  margin-top: 0;
  margin-bottom: 1rem;
  letter-spacing: 0.08em;
  font-size: 1rem;
}

.entry-content ul,
.entry-content ol {
  margin-top: 0;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.entry-content ul {
  list-style-type: disc;
}

.entry-content ol {
  list-style-type: decimal;
}

.entry-content li {
  margin-bottom: 0.25rem;
}

.entry-content li>ul,
.entry-content li>ol {
  margin-top: 0.25rem;
  margin-bottom: 0;
}

.entry-content a {
  color: #1e1e1e;
  text-decoration: underline;
}

.entry-content a:hover {
  color: #868686;
}

.entry-content blockquote {
  margin: 1.5rem 0;
  padding: 0.75rem 0 0.75rem 1rem;
  border-left: 4px solid #868686;
  color: #3b3b3b;
  font-style: italic;
}

.entry-content img {
  max-width: 100%;
  height: auto;
  margin: 1rem 0;
  vertical-align: middle;
}

.entry-content figure {
  margin: 1.5rem 0;
}

.entry-content figcaption {
  font-size: 0.875rem;
  color: #868686;
  margin-top: 0.5rem;
}

.entry-content pre,
.entry-content code {
  font-family: ui-monospace, monospace;
  font-size: 0.875em;
}

.entry-content pre {
  margin: 1rem 0;
  padding: 1rem;
  overflow-x: auto;
  background: #f3f4f6;
  border-radius: 0.25rem;
}

.entry-content :first-child {
  margin-top: 0;
}

.entry-content :last-child {
  margin-bottom: 0;
}