/* Images Styles - PICKWISE Premier League Picks */

/* Hero Image */
[data-content="hero"] figure {
    max-width: 900px;
    margin: 2rem auto 0;
}

[data-content="hero"] figure img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

/* Content Images */
article figure {
    margin: 2rem 0;
    max-width: 100%;
}

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

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

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

/* Responsive Images */
@media (max-width: 768px) {
    [data-content="hero"] figure {
        margin: 1.5rem auto 0;
    }
    
    [data-content="hero"] figure img {
        border-radius: var(--radius-md);
    }
    
    article figure {
        margin: 1.5rem 0;
    }
    
    article figure img {
        border-radius: var(--radius-sm);
    }
    
    article figcaption {
        font-size: 0.8125rem;
        padding: 0 0.5rem;
    }
}

@media (max-width: 480px) {
    [data-content="hero"] figure img {
        border-radius: var(--radius-sm);
    }
    
    article figcaption {
        font-size: 0.75rem;
    }
}
