/* Images Styles for Gratis Wedden op Voetbal Article */

.hero-image {
    width: 100%;
    margin: 0 0 2rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 30px var(--color-shadow-strong);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16 / 9;
}

.article-image {
    margin: 2rem 0;
    text-align: center;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.article-image img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 20px var(--color-shadow);
    object-fit: cover;
    aspect-ratio: 16 / 9;
}

/* Footer Styles */
.footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--spacing-xl) var(--spacing-md);
}

.footer-content .disclaimer {
    font-size: 0.8125rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    margin: 0;
}

@media (min-width: 768px) {
    .footer-content {
        padding: var(--spacing-2xl) var(--spacing-lg);
    }
    
    .hero-image {
        margin: 0 0 2.5rem;
    }
    
    .article-image {
        margin: 2.5rem 0;
    }
}

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

@media print {
    .hero-image,
    .article-image {
        box-shadow: none;
        page-break-inside: avoid;
    }
    
    .hero-image img,
    .article-image img {
        max-width: 100%;
        box-shadow: none;
    }
}