/* ============================================
   Image styles for ШАТЪЛКАСТ
============================================ */

figure.hero-figure,
figure.content-figure {
    margin: 2rem 0;
    padding: 0;
}

figure.hero-figure {
    margin: 1.5rem 0 2rem;
    max-width: 100%;
}

figure.hero-figure img {
    width: 100%;
    height: auto;
    aspect-ratio: 1200 / 630;
    object-fit: cover;
    border-radius: var(--radius-md, 10px);
    box-shadow: var(--shadow-md, 0 2px 4px rgba(15, 15, 15, 0.05), 0 6px 18px rgba(15, 15, 15, 0.06));
    display: block;
}

figure.content-figure {
    margin: 2.25rem auto;
    max-width: 100%;
}

figure.content-figure img {
    width: 100%;
    height: auto;
    aspect-ratio: 1200 / 675;
    object-fit: cover;
    border-radius: var(--radius-md, 10px);
    box-shadow: var(--shadow-sm, 0 1px 2px rgba(15, 15, 15, 0.04), 0 2px 8px rgba(15, 15, 15, 0.04));
    display: block;
}

figure.content-figure figcaption {
    margin-top: 0.75rem;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.9375rem;
    line-height: 1.55;
    color: var(--color-text-muted, #5a5d57);
    text-align: left;
    padding-left: 0.875rem;
    border-left: 2px solid var(--color-accent, #0a7e3a);
    font-style: normal;
}

/* Tablet and mobile */
@media (max-width: 768px) {
    figure.hero-figure,
    figure.content-figure {
        margin: 1.5rem 0;
    }

    figure.hero-figure img,
    figure.content-figure img {
        border-radius: var(--radius-sm, 6px);
    }

    figure.content-figure figcaption {
        font-size: 0.875rem;
        padding-left: 0.75rem;
    }
}

@media (max-width: 480px) {
    figure.hero-figure,
    figure.content-figure {
        margin: 1.25rem 0;
    }
}
