/* ===========================
   Images — CanastaPro
   =========================== */

figure {
    margin: 2rem auto;
    max-width: 100%;
}

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

figcaption {
    text-align: center;
    font-size: 0.85rem;
    color: #9a9a9a;
    margin-top: 0.6rem;
    line-height: 1.5;
    font-family: 'Lora', serif;
}

.hero-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.article-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 6px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.3s ease;
}

.article-image:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
}

@media (max-width: 768px) {
    figure {
        margin: 1.5rem auto;
    }

    figcaption {
        font-size: 0.8rem;
        padding: 0 0.5rem;
    }
}
