/* ========================================
   Images Styles - EUROAPUESTA
   ======================================== */

/* Article Images */
article figure {
    margin: 2rem 0;
    padding: 0;
}

article figure img {
    display: block;
    width: 100%;
    max-width: 760px;
    height: auto;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

article figure figcaption {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 0.75rem;
    padding: 0 1rem;
    line-height: 1.5;
}

/* Hero Image - Special Treatment */
[data-content="hero"] figure {
    margin: 2rem auto 0;
    max-width: var(--content-width);
}

[data-content="hero"] figure img {
    width: 100%;
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* Responsive Images */
@media (max-width: 768px) {
    article figure {
        margin: 1.5rem 0;
    }

    article figure img {
        border-radius: 6px;
    }

    article figure figcaption {
        font-size: 0.8125rem;
        padding: 0 0.5rem;
    }
}

@media (max-width: 480px) {
    article figure {
        margin: 1.25rem 0;
    }

    article figure img {
        border-radius: 4px;
    }

    [data-content="hero"] figure img {
        border-radius: 6px;
    }
}
