/* ============================================================
   images-styles.css — стили для контентных изображений pillar
   Тема: tech-modern, warm palette (Tétkártya)
   ============================================================ */

article figure {
  margin: 2.4rem 0;
  padding: 0;
  border: 1px solid var(--border, #e7e0d6);
  border-radius: 6px;
  overflow: hidden;
  background: var(--page-bg, #fbfaf8);
}

article figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16 / 9;
  background: var(--code-bg, #f3eee6);
}

article figure figcaption {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--muted, #7a6e62);
  padding: 0.85rem 1.1rem 1rem 1.1rem;
  border-top: 1px solid var(--border, #e7e0d6);
  background: #fff;
  font-style: normal;
}

/* hero figure не имеет figcaption и собственный layout — переопределяем */
.hero figure {
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 8px;
  background: transparent;
  overflow: hidden;
}

.hero figure img,
.hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  aspect-ratio: 1200 / 630;
  object-fit: cover;
}

/* адаптив */
@media (max-width: 640px) {
  article figure {
    margin: 1.6rem 0;
    border-radius: 4px;
  }
  article figure figcaption {
    font-size: 0.82rem;
    padding: 0.7rem 0.85rem 0.85rem 0.85rem;
  }
}

/* печать */
@media print {
  article figure {
    border: 1px solid #ccc;
    page-break-inside: avoid;
  }
  article figure figcaption {
    color: #555;
  }
}
