/* ==========================================================================
   Image Styles for J-Duelos
   ========================================================================== */

/* Hero Image */
[data-content="hero"] figure {
    margin: 2rem 0 0 0;
    padding: 0;
}

[data-content="hero"] .hero-image {
    width: 100%;
    height: auto;
    max-height: 630px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

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

article figure img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s ease;
}

article figure img:hover {
    box-shadow: var(--shadow-md);
}

article figcaption {
    margin-top: 0.75rem;
    font-size: var(--font-small);
    color: var(--text-muted);
    text-align: center;
    font-style: italic;
    line-height: 1.5;
}

/* Responsive Images */
@media (max-width: 768px) {
    [data-content="hero"] .hero-image {
        border-radius: 0;
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        width: calc(100% + 3rem);
        max-width: none;
    }
    
    article figure {
        margin: 1.5rem 0;
    }
    
    article figure img {
        border-radius: var(--radius-sm);
    }
    
    article figcaption {
        padding: 0 0.5rem;
        font-size: 0.8125rem;
    }
}

@media (max-width: 480px) {
    [data-content="hero"] figure {
        margin: 1.5rem 0 0 0;
    }
    
    article figure {
        margin: 1.25rem 0;
    }
}
