/* Content section block — H2/H3 + text + full (uncropped) image */
.content-section { margin-bottom: var(--space-section); }
.content-section > h2 { margin-bottom: var(--space-h2-text); }
.content-section > h3 { margin-bottom: var(--space-h3-text); }
.content-section h3 { color: var(--color-white); margin-top: var(--space-para); margin-bottom: var(--space-h3-text); }
.content-section p { margin-bottom: var(--space-para); }
.content-section p:last-child { margin-bottom: 0; }

/* Images after H2 must display fully, never cropped */
.content-figure {
  margin-bottom: var(--space-para);
  display: flex;
  justify-content: center;
  background: var(--color-bg-dark);
  border-radius: var(--radius-card);
  overflow: hidden;
}
.content-figure img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}
