/* Placeholder Images - Imagens genéricas temporárias para AME */

/* Placeholder para imagens de equipe */
.team-block .image img,
.team-block img {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
}

.team-block .image img::before,
.team-block img::before {
    content: "AME";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #d4af37;
    font-size: 24px;
    font-weight: bold;
    z-index: 1;
}

/* Placeholder para imagens de autores/testimonials */
.author-thumb img,
.testimonial-block .image img {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}

/* Placeholder para imagens de posts/blog */
.post-thumb img,
.blog-single .image img,
.news-block .image img {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

/* Placeholder genérico para imagens quebradas */
img[src=""],
img:not([src]),
img[src*="placeholder"] {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    position: relative;
}

img[src=""]:after,
img:not([src]):after {
    content: "AME";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #d4af37;
    font-size: 18px;
    font-weight: bold;
}

