/* ===========================================
   IMAGES STYLES - Better Scommesse Calcio
   =========================================== */

/* Hero Image - Prima immagine dopo H1 */
.hero-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0 0 2.5rem 0;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(26, 71, 42, 0.15);
    display: block;
}

/* Article Images - Immagini nel corpo dell'articolo */
.article-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 2rem 0;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(26, 71, 42, 0.12);
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(26, 71, 42, 0.18);
}

/* ===========================================
   FOOTER STYLES
   =========================================== */

footer[role="contentinfo"] {
    background: linear-gradient(135deg, #0d2818 0%, #1a472a 100%);
    border-top: 3px solid #c9a227;
    padding: 2rem 1.5rem;
    margin-top: auto;
}

.footer-content {
    max-width: 75ch;
    margin: 0 auto;
}

.footer-disclaimer {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #a8b0ac;
    text-align: center;
    margin: 0;
}

.footer-disclaimer a {
    color: #e6c65c;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s ease;
}

.footer-disclaimer a:hover {
    color: #f0d98a;
}

/* ===========================================
   RESPONSIVE ADJUSTMENTS
   =========================================== */

@media (max-width: 767px) {
    .hero-image {
        margin: 0 0 1.5rem 0;
        border-radius: 12px;
    }
    
    .article-image {
        margin: 1.5rem 0;
        border-radius: 8px;
    }
    
    footer[role="contentinfo"] {
        padding: 1.5rem 1rem;
    }
    
    .footer-disclaimer {
        font-size: 0.8125rem;
        text-align: left;
    }
}

/* ===========================================
   DARK MODE SUPPORT
   =========================================== */

@media (prefers-color-scheme: dark) {
    .hero-image,
    .article-image {
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    }
    
    .article-image:hover {
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    }
    
    footer[role="contentinfo"] {
        background: linear-gradient(135deg, #0a1a10 0%, #152920 100%);
    }
    
    .footer-disclaimer {
        color: #8a928e;
    }
}

/* ===========================================
   PRINT STYLES
   =========================================== */

@media print {
    .hero-image,
    .article-image {
        box-shadow: none;
        border: 1px solid #ccc;
        page-break-inside: avoid;
    }
    
    footer[role="contentinfo"] {
        background: #f5f5f5;
        border-top: 1px solid #ccc;
        color: #333;
    }
    
    .footer-disclaimer {
        color: #333;
    }
    
    .footer-disclaimer a {
        color: #333;
    }
}
