/*
 * AIRES NUEVOS NQN — Integridad de imágenes editoriales
 * Conserva la proporción original de las fotografías y evita recortes
 * en noticias individuales y tarjetas principales de sección.
 */

html body .post-image-container,
html body .anqn-story-header .post-image-container {
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  aspect-ratio: auto !important;
  overflow: visible !important;
  background: transparent !important;
}

html body .post-featured-image,
html body .anqn-story-header .post-featured-image {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  object-position: center !important;
}

html body .category-page .latest-news-card .image-wrapper {
  width: 100% !important;
  aspect-ratio: auto !important;
  height: auto !important;
  overflow: visible !important;
  background: transparent !important;
}

html body .category-page .latest-news-card .image-wrapper img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  object-position: center !important;
}

/*
 * IMPORTANTE:
 * La corrección de imágenes editoriales NO debe imponer una proporción 16:9
 * ni crear un lienzo artificial. Esto mantiene las horizontales completas y
 * evita que la solución aplicada a las verticales genere márgenes en otras
 * fotografías.
 */

@media (max-width: 768px) {
  html body .post-image-container,
  html body .anqn-story-header .post-image-container,
  html body .category-page .news-and-ads-grid .latest-news-card .image-wrapper,
  html body .category-page .news-and-ads-grid .latest-news-card:first-of-type .image-wrapper {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    aspect-ratio: auto !important;
    overflow: visible !important;
  }

  html body .post-featured-image,
  html body .anqn-story-header .post-featured-image,
  html body .category-page .news-and-ads-grid .latest-news-card .image-wrapper img,
  html body .category-page .news-and-ads-grid .latest-news-card:first-of-type .image-wrapper img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    aspect-ratio: auto !important;
    object-fit: contain !important;
    object-position: center !important;
  }
}
