/* Resources → Latest Insights cards use the same responsive 16:9 frame as Blog. */
.resources-insight-card-image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
}

.resources-insight-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (prefers-reduced-motion: reduce) {
    .resources-insight-card-image img {
        transition: none !important;
    }
}
