/* Images Styles for TOTO Voetbal Wedden Article */

.hero-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 2rem 0 2.5rem 0;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(26, 107, 71, 0.15);
    aspect-ratio: 21 / 9;
    object-fit: cover;
    display: block;
}

.article-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 2rem 0;
    border-radius: 8px;
    box-shadow: 0 6px 24px rgba(26, 107, 71, 0.1);
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .hero-image {
        aspect-ratio: 16 / 9;
        margin: 1.5rem 0 2rem 0;
        border-radius: 8px;
    }
    
    .article-image {
        margin: 1.5rem 0;
        border-radius: 6px;
    }
}

@media (prefers-color-scheme: dark) {
    .hero-image,
    .article-image {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    }
}

@media (prefers-reduced-motion: no-preference) {
    .hero-image,
    .article-image {
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
    }
    
    .hero-image:hover,
    .article-image:hover {
        transform: scale(1.01);
        box-shadow: 0 16px 48px rgba(26, 107, 71, 0.2);
    }
}