
article figure{
  margin:2rem auto;
  max-width:var(--content-width, 760px);
}

article figure img,
.article-image{
  width:100%;
  height:auto;
  display:block;
  margin:0 auto;
  border-radius:var(--radius, 10px);
  border:1px solid var(--muted, #3a3835);
  box-shadow:var(--shadow, 0 2px 14px rgba(0,0,0,0.35));
  object-fit:cover;
}

article figure figcaption{
  text-align:center;

  font-size:0.85rem;
  line-height:1.5;
  color:var(--text-secondary, #b3aea7);
  margin-top:0.7rem;
  padding:0 0.5rem;
}

/* Hero изображение — без рамка, по-силен акцент */
.hero figure{
  margin-top:2.4rem;
}

.hero figure img,
.hero .hero-image{
  width:100%;
  height:auto;
  display:block;
  border-radius:var(--radius, 10px);
  border:none;
  box-shadow:0 6px 28px rgba(0,0,0,0.45);
}

/* Адаптивност */
@media (max-width:768px){
  article figure{
    margin:1.5rem auto;
  }
  article figure figcaption{
    font-size:0.8rem;
  }
}

@media (max-width:480px){
  article figure img,
  .article-image{
    border-radius:8px;
  }
}
