/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 20 2026 | 17:41:37 */
/* ─── Featured image responsiva nos posts ─── */

/* Container da imagem: largura máxima igual ao conteúdo */
.fk-post-feat-wrap {
  max-width: 900px !important;
  width: 100% !important;
  margin: 0 auto !important;
  display: block !important;
  overflow: hidden !important;
  border-radius: 8px;
}

/* Imagem ocupa o container e mantém proporção 16:9 */
.fk-post-feat-wrap img {
  width: 100% !important;
  height: auto !important;
  max-width: 100% !important;
  aspect-ratio: 16 / 9 !important;
  object-fit: cover !important;
  display: block !important;
}

/* Mobile: padding lateral para não colar nas bordas */
@media (max-width: 960px) {
  .fk-post-feat-wrap {
    padding: 0 16px !important;
    border-radius: 0 !important;
    max-width: 100% !important;
  }
  .fk-post-feat-wrap img {
    border-radius: 6px;
  }
}