/* Images Styles for Champions League Betting Guide */

.hero-image {
    width: 100%;
    margin: 0 0 2rem;
    border-radius: 12px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.article-image {
    margin: 2rem 0;
    text-align: center;
}

.article-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-image img:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

@media (min-width: 768px) {
    .hero-image {
        margin: 0 0 3rem;
    }
    
    .article-image {
        margin: 2.5rem auto;
    }
}

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