/* ===================== Images Styles ===================== */

/* Article figures (non-hero) */
article figure {
    margin: 2rem 0;
    border-radius: var(--radius);
    overflow: hidden;
}

article figure img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    transition: opacity 0.3s ease;
}

article figcaption {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.75em;
    padding: 0 0.5rem;
    line-height: 1.5;
}

/* Hero figure overrides — already styled in main CSS */

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

    article figcaption {
        font-size: 0.8rem;
        padding: 0 0.25rem;
    }
}
