/* Reset completo de estilos que podrían causar problemas */
[data-clickable-link] {
    cursor: pointer;
    /* Reset de estilos de tipografía que podrían heredarse incorrectamente */
    color: inherit;
    text-decoration: inherit;
    font-weight: inherit;
    font-size: inherit;
    font-family: inherit;
    line-height: inherit;
    /* Reset de estilos de layout que podrían afectar */
    background-color: transparent;
    border: none;
    padding: 0;
    margin: 0;
    text-align: inherit;
}

/* Específico para el editor visual (mayor especificidad como respaldo) */
.editor-visual-editor [data-clickable-link],
.editor-visual-editor__post-title-wrapper [data-clickable-link] {
    color: inherit;
    font-weight: inherit;
    font-size: inherit;
}

/* Funcionalidad del plugin */
[data-clickable-link].has-hover-animation {
    transition: transform 0.2s ease;
}

[data-clickable-link].has-hover-animation:hover {
    transform: translateY(-2px);
}

/* Elementos interactivos internos mantienen su z-index */
[data-clickable-link] a,
[data-clickable-link] button,
[data-clickable-link] input,
[data-clickable-link] select,
[data-clickable-link] textarea {
    position: relative;
    z-index: 1;
}

