/* ========================================
   Images Styles - OCTAPICK
   ======================================== */

/* Article figures */
article figure {
    margin: 2rem 0;
    text-align: center;
}

article figure img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

article figcaption {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: #737373;
    text-align: center;
    line-height: 1.5;
}

/* Hero image specific */
.hero-image {
    width: 100%;
    max-width: 1200px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

[data-content="hero"] figure {
    margin: 1.5rem auto 2rem;
    max-width: 800px;
}

/* Content images */
[data-content] figure img:not(.hero-image):not(.hero-logo) {
    max-width: 800px;
    width: 100%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    article figure {
        margin: 1.5rem -1rem;
    }
    
    article figure img {
        border-radius: 0;
    }
    
    .hero-image {
        border-radius: 0;
    }
    
    [data-content="hero"] figure {
        margin: 1rem -1rem 1.5rem;
    }
    
    article figcaption {
        padding: 0 1rem;
        font-size: 0.8125rem;
    }
}

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