/* ===== Article Images ===== */

[data-content] figure {
  margin: 2.5rem 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-surface, #161616);
}

[data-content] figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px 8px 0 0;
}

[data-content] figure figcaption {
  font-family: var(--font-body, 'Lora', serif);
  font-size: 0.82rem;
  color: var(--text-secondary, #9a9a9a);
  line-height: 1.5;
  padding: 0.75rem 1rem;
  border-top: 1px solid var(--border-color, #2a2a2a);
}

[data-content] figure:has(figcaption) img {
  border-radius: 8px 8px 0 0;
}

[data-content] figure:not(:has(figcaption)) img {
  border-radius: 8px;
}

/* Hero image overrides */
[data-content="hero"] figure {
  margin: 0;
  background: none;
  border-radius: 12px;
  overflow: hidden;
}

[data-content="hero"] figure img {
  border-radius: 12px;
}

/* Responsive */
@media (max-width: 768px) {
  [data-content] figure {
    margin: 1.75rem 0;
    border-radius: 6px;
  }

  [data-content] figure img {
    border-radius: 6px 6px 0 0;
  }

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

  [data-content="hero"] figure,
  [data-content="hero"] figure img {
    border-radius: 8px;
  }
}
