/* Images Styles for Voetbalwedden Article */

.hero-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    border-radius: 16px;
    margin: 0 0 2rem 0;
    box-shadow: 0 8px 30px rgba(26, 71, 42, 0.15);
    display: block;
}

.article-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 1.5rem 0 2rem 0;
    box-shadow: 0 4px 16px rgba(26, 71, 42, 0.1);
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-image:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 71, 42, 0.15);
}

/* Dark mode adjustments */
@media (prefers-color-scheme: dark) {
    .hero-image {
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    }
    
    .article-image {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    }
    
    .article-image:hover {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    }
}

/* Mobile responsive */
@media (max-width: 640px) {
    .hero-image {
        border-radius: 12px;
        margin-bottom: 1.5rem;
        max-height: 300px;
    }
    
    .article-image {
        border-radius: 10px;
        margin: 1rem 0 1.5rem 0;
    }
}

/* Print styles */
@media print {
    .hero-image,
    .article-image {
        box-shadow: none;
        border: 1px solid #ccc;
        page-break-inside: avoid;
    }
}
