/* Images Styles for CricketQuote */

/* Article figures */
article figure {
    margin: 2rem 0;
    border-radius: 8px;
    overflow: hidden;
}

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

article figcaption {
    text-align: center;
    font-size: 0.875rem;
    color: #6b6b6b;
    margin-top: 0.75rem;
    padding: 0 1rem;
    line-height: 1.5;
}

/* Hero image specific */
[data-content="hero"] figure {
    max-width: 760px;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

[data-content="hero"] figure img {
    border-radius: 8px;
}

/* Section images - ensure proper spacing */
section[data-content] figure {
    margin: 2rem 0;
}

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

@media (max-width: 480px) {
    article figure {
        margin: 1.25rem 0;
        border-radius: 4px;
    }
    
    article figure img {
        border-radius: 4px;
    }
}
