/* ==========================================================================
   Single Content Editor Styles (for the_content)
   ========================================================================== */

/* The main content wrapper */
.news-detail__section {
  margin-bottom: 36px;
}

/* Headings */
.news-detail__section h2 {
  font-size: 18px;
  font-weight: 900;
  color: var(--color-text);
  letter-spacing: 0.04em;
  line-height: 1.4;
  padding: 14px 18px;
  border-left: 4px solid var(--color-lime);
  background: var(--color-white);
  border-radius: 0 6px 6px 0;
  margin-bottom: 16px;
  margin-top: 32px;
}

.news-detail__section h2:first-child {
  margin-top: 0;
}

.news-detail__section h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-green);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  margin-top: 24px;
}

/* Paragraphs */
.news-detail__section p {
  font-size: 14px;
  line-height: 2;
  color: var(--color-text);
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}

.news-detail__section p:last-child {
  margin-bottom: 0;
}

.news-detail__section strong,
.news-detail__section b {
  font-weight: 700;
}

/* Links */
.news-detail__section a {
  color: var(--color-green);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.news-detail__section a:hover {
  text-decoration: none;
}

/* Lists */
.news-detail__section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
  padding-left: 0;
}

.news-detail__section ul li {
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.8;
  letter-spacing: 0.03em;
  padding-left: 18px;
  position: relative;
}

.news-detail__section ul li::before {
  content: '・';
  position: absolute;
  left: 0;
  color: var(--color-green);
  font-weight: 700;
}

.news-detail__section ol {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
  padding-left: 24px;
}

.news-detail__section ol li {
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.8;
  letter-spacing: 0.03em;
}

/* Blockquote (Mapped to Note Style) */
.news-detail__section blockquote {
  background: #f5f5f5;
  border-radius: 6px;
  padding: 14px 18px;
  margin-top: 14px;
  margin-bottom: 16px;
}

.news-detail__section blockquote p {
  font-size: 12px;
  color: var(--color-glay);
  line-height: 1.9;
  letter-spacing: 0.02em;
  margin-bottom: 0;
}

/* Images */
.news-detail__section img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 16px;
}
