/* Images Styles - JBETZONA */

/* Article figures */
article figure {
    margin: var(--space-xl) 0;
    max-width: 100%;
}

article figure img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

article figure figcaption {
    text-align: center;
    font-size: var(--font-small);
    color: var(--color-text-muted);
    margin-top: var(--space-sm);
    padding: 0 var(--space-md);
    line-height: 1.5;
}

/* Hero image - full width within content */
.hero figure {
    max-width: var(--content-width);
    margin: var(--space-xl) auto 0;
}

.hero figure img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Content images - constrained width */
[data-content] figure:not(.hero figure) {
    max-width: 100%;
}

[data-content] figure img {
    max-width: 100%;
    height: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    article figure {
        margin: var(--space-lg) 0;
    }
    
    article figure img {
        border-radius: var(--radius-sm);
    }
    
    article figure figcaption {
        font-size: 0.8125rem;
        padding: 0 var(--space-sm);
    }
    
    .hero figure img {
        border-radius: var(--radius-md);
    }
}

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