/* Stili per immagini articolo tennis scommesse */

.hero-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0 0 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    aspect-ratio: 21 / 9;
    object-fit: cover;
}

.article-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 2rem 0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.article-image:hover {
    transform: scale(1.01);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

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