/* Images Styles - SaqueWin */

/* Hero image styling (inherits from design.html) */
[data-content="hero"] figure {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

[data-content="hero"] figure img {
    width: 100%;
    height: auto;
    display: block;
}

/* Content images */
article figure {
    margin: 2rem 0;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--bg-card);
}

article figure img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px 8px 0 0;
}

article figure figcaption {
    padding: 1rem 1.25rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-align: center;
    background-color: var(--bg-card);
    border-top: 1px solid var(--border);
}

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

@media (max-width: 480px) {
    article figure {
        margin: 1.25rem 0;
        border-radius: 6px;
    }
    
    article figure img {
        border-radius: 6px 6px 0 0;
    }
    
    article figure figcaption {
        padding: 0.75rem;
        font-size: 0.75rem;
    }
}
