/* ============================================================
   NUTRIESSENCIA — ESTILOS DE IMAGENS NOS POSTS
   Imagens do Unsplash (Licença Unsplash — uso livre, sem direitos autorais)
   ============================================================ */

/* Imagem destacada no post */
.post-featured-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.post-featured-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.post-featured-image:hover img {
    transform: scale(1.02);
}

/* Imagens inline no conteúdo do post */
.nutri-post-image,
.wp-block-image.nutri-post-image {
    margin: 2rem 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.1);
}

.nutri-post-image img,
.wp-block-image.nutri-post-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.nutri-post-image figcaption,
.wp-block-image.nutri-post-image figcaption {
    font-size: 0.82rem;
    color: #6b7280;
    text-align: center;
    padding: 0.6rem 1rem;
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    font-style: italic;
}

/* Imagens nos cards da listagem */
.card-imagem {
    position: relative;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.card-imagem img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.card-imagem:hover img {
    transform: scale(1.05);
}

/* Imagem no card de destaque */
.destaque-principal .destaque-imagem img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}

/* Thumbnails nos posts relacionados */
.post-relacionado-img img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

/* Imagens na sidebar */
.sidebar-post-img img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
}

/* Imagem no hero da categoria */
.categoria-hero-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* Placeholder quando não há imagem */
.sem-imagem-placeholder {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px 10px 0 0;
    font-size: 3rem;
    color: #4caf50;
}

/* Crédito de imagem (Unsplash) */
.nutri-image-credit {
    font-size: 0.72rem;
    color: #9ca3af;
    text-align: right;
    margin-top: 0.25rem;
    font-style: italic;
}

.nutri-image-credit a {
    color: #9ca3af;
    text-decoration: none;
}

.nutri-image-credit a:hover {
    color: #1F5E3B;
}

/* Responsivo */
@media (max-width: 768px) {
    .post-featured-image img {
        height: 260px;
    }

    .destaque-principal .destaque-imagem img {
        height: 240px;
    }

    .nutri-post-image img {
        max-height: 300px;
    }
}

@media (max-width: 480px) {
    .post-featured-image img {
        height: 200px;
    }
}
