/* ==========================================================================
   GOOGLE DISCOVERY OPTIMIZATIONS - CORREGIDO
   ========================================================================== */

/* SOLO aplicar min-width a featured image en desktop */
@media (min-width: 1024px) {
    .featured-image img {
        min-width: 1200px;
    }
}

/* No aplicar a miniaturas */
.card-image img,
.post-card img,
.posts-grid img {
    min-width: unset !important;
    aspect-ratio: unset !important;
}

/* Prevenir CLS */
.site-header {
    min-height: 60px;
}

.featured-image {
    min-height: 200px;
    background: #f5f5f5;
}

/* Contenido de calidad */
.entry-content {
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Velocidad de carga */
.post-card {
    content-visibility: auto;
    contain-intent-size: 400px;
}

/* Reducir animaciones */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}