/* Default styling for whatever an admin types into the WP editor on a
   plain page (page.php) — no manual classes required. Mirrors the type
   scale/spacing already established for hand-authored content elsewhere
   in the theme (.content-section/.body-copy/.sub-head, .article), so a
   fresh page looks consistent with the rest of the site by default. */

.entry-content { max-width: 68ch; }

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4 {
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.02em; line-height: 1.08;
}
.entry-content h1 { font-size: clamp(2.1rem, 4vw, 3rem); margin: 0 0 1.25rem; }
.entry-content h2 { font-size: clamp(1.9rem, 3.5vw, 2.75rem); margin: 2.5rem 0 1.25rem; }
.entry-content h3 { font-size: clamp(1.3rem, 2.2vw, 1.65rem); margin: 2.25rem 0 0.65rem; }
.entry-content h4 { font-size: clamp(1.1rem, 1.6vw, 1.3rem); margin: 1.75rem 0 0.6rem; }
.entry-content h5,
.entry-content h6 {
  font-family: var(--body); font-weight: 600; line-height: 1.3;
  margin: 1.5rem 0 0.5rem;
}
.entry-content h5 { font-size: 1.05rem; }
.entry-content h6 { font-size: 0.92rem; }
.entry-content > :first-child { margin-top: 0; }

.entry-content p { font-size: 1.05rem; line-height: 1.65; margin-top: 1.1rem; }
.entry-content p:first-child { margin-top: 0; }

.entry-content strong,
.entry-content b { font-weight: 600; }
.entry-content u { text-underline-offset: 2px; }

.entry-content ul,
.entry-content ol {
  margin: 1.1rem 0 1.1rem 1.35rem;
}
.entry-content ul { list-style: disc outside; }
.entry-content ol { list-style: decimal outside; }
.entry-content li { font-size: 1.05rem; line-height: 1.55; margin-bottom: 0.6rem; }
.entry-content li:last-child { margin-bottom: 0; }
.entry-content ul ul, .entry-content ul ol,
.entry-content ol ul, .entry-content ol ol { margin: 0.5rem 0 0.5rem 1.35rem; }

.entry-content blockquote {
  margin: 1.75rem 0; padding-left: 1.25rem;
  border-left: 3px solid var(--accent); font-style: italic; color: var(--asphalt);
}
.entry-content blockquote p { margin-top: 0.5rem; }
.entry-content blockquote p:first-child { margin-top: 0; }

.entry-content img { border-radius: 10px; margin-block: 1.5rem; }
.entry-content figure { margin: 2rem 0; }
.entry-content figure img { margin-block: 0; }
.entry-content figcaption {
  font-family: var(--mono); font-size: 0.78rem; color: var(--asphalt);
  margin-top: 0.5rem; text-align: center;
}
