/* ============================================
   Página do Artista — Estilos
   ============================================ */

.pa-artista-page,
.pa-artistas-archive {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
    color: #1a1a1a;
}

/* ===== CABEÇALHO DO ARTISTA ===== */
.pa-artista-cabecalho {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    border-bottom: 2px solid #2d6a4f;
    padding-bottom: 24px;
    margin-bottom: 32px;
}

.pa-artista-foto {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #2d6a4f;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.pa-artista-nome {
    font-size: 2.4rem;
    margin: 0;
    color: #14342a;
}

/* ===== BIOGRAFIA ===== */
.pa-artista-biografia {
    margin-bottom: 40px;
}

.pa-artista-biografia h2,
.pa-artista-obras h2 {
    color: #2d6a4f;
    font-size: 1.4rem;
    border-bottom: 1px solid #cfd8d1;
    padding-bottom: 8px;
    margin-bottom: 16px;
}

.pa-biografia-conteudo {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
}

.pa-biografia-conteudo p {
    margin: 0 0 14px;
}

/* ===== GRADE DE OBRAS ===== */
.pa-obras-grade {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.pa-obra-item {
    margin: 0;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pa-obra-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
}

.pa-obra-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.pa-obra-item figcaption {
    padding: 14px 16px;
    font-size: 0.92rem;
    line-height: 1.5;
    color: #444;
    background: #fafafa;
}

/* ===== LISTA DE ARTISTAS (archive / shortcode) ===== */
.pa-artistas-grade {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 28px;
}

.pa-artista-card {
    margin: 0;
}

.pa-artista-card-link {
    display: block;
    text-align: center;
    text-decoration: none;
    color: #14342a;
    padding: 18px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pa-artista-card-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
}

.pa-artista-card-foto {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #2d6a4f;
    margin-bottom: 12px;
}

.pa-artista-card-sem-foto {
    width: 140px;
    height: 140px;
    margin: 0 auto 12px;
    border-radius: 50%;
    border: 3px dashed #2d6a4f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    background: #f0f5f2;
}

.pa-artista-card-nome {
    margin: 0;
    font-size: 1.15rem;
}

.pa-vazio {
    text-align: center;
    color: #777;
    padding: 30px;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 600px) {
    .pa-artista-cabecalho {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .pa-artista-nome {
        font-size: 1.8rem;
    }

    .pa-obras-grade,
    .pa-artistas-grade {
        grid-template-columns: 1fr;
    }
}
