/* ========================================
   Images — Content Figures
   ======================================== */
[data-content] figure {
  margin: 2em 0;
  border-radius: var(--radius);
  overflow: hidden;
}

[data-content] figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

[data-content] figure figcaption {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  margin-top: 0.625rem;
  line-height: 1.5;
  padding: 0 0.5rem;
}

[data-content="hero"] figure {
  margin: 0 auto;
  border-radius: var(--radius);
}

[data-content="hero"] figure img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  [data-content] figure {
    margin: 1.5em 0;
  }

  [data-content] figure figcaption {
    font-size: 0.75rem;
  }
}
