/* ========================================
   Article Images Styles
   Hufgold - Pferdewetten Deutschland
   ======================================== */

/* Article figure container */
article figure {
    margin: 2rem 0;
    padding: 0;
    background: transparent;
}

/* Article images */
article figure img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

/* Article image specific class */
.article-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Figcaption styling */
article figure figcaption {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted, #71717a);
    margin-top: 0.75rem;
    padding: 0 1rem;
    line-height: 1.5;
}

/* Hero image overrides - already in main CSS but ensure consistency */
[data-content="hero"] figure {
    max-width: var(--content-width, 760px);
    margin: 2rem auto 0;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    article figure {
        margin: 1.5rem 0;
    }
    
    article figure img {
        border-radius: 4px;
    }
    
    article figure figcaption {
        font-size: 0.8125rem;
        padding: 0 0.5rem;
    }
}

@media (max-width: 480px) {
    article figure {
        margin: 1rem 0;
    }
    
    article figure figcaption {
        font-size: 0.75rem;
    }
}
