/* Estilos do Cabeçalho de Entidade */
.leh-entity-header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    margin-bottom: 2em;
    border: 1px solid #e0e0e0;
    background-color: #fdfdfd;
    border-radius: 4px;
}

.leh-entity-header__image {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
}

.leh-entity-header__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 3px;
    border: 1px solid #eee;
}

.leh-entity-header__content {
    flex-grow: 1;
    min-width: 250px;
}

.leh-entity-header__content p {
    margin-top: 0;
    color: #555;
}

.leh-entity-header__links {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.leh-entity-header__link {
    display: inline-block;
    padding: 8px 15px;
    background-color: #f0f0f0;
    color: #333;
    text-decoration: none;
    font-size: 0.9em;
    border-radius: 3px;
    transition: background-color 0.2s;
}

.leh-entity-header__link:hover {
    background-color: #e0e0e0;
    color: #111;
}

@media (max-width: 600px) {
    .leh-entity-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .leh-entity-header__image {
        margin-bottom: 10px;
    }
    .leh-entity-header__links {
        justify-content: center;
    }
}