/**
 * QAE Enlaces como Botones
 * Estilo inspirado en las etiquetas nativas de QAEngine (.q-tag).
 */
.question-content a.qae-link-button,
.question-excerpt a.qae-link-button,
.cm-wrap a.qae-link-button,
.comment-content a.qae-link-button,
a.qae-link-button {
    border: 1px solid #d9dfe9;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background-color: #f3f5f9;
    color: #6f7d95 !important;
    text-decoration: none !important;
    line-height: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    margin: 3px 5px 3px 0;
    max-width: 100%;
    font-size: 13px;
    font-weight: 700 !important;
    /* Texto con más peso para que el botón se vea más firme. */
    vertical-align: baseline;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
    box-shadow: none;
}

.question-content a.qae-link-button::before,
.question-excerpt a.qae-link-button::before,
.cm-wrap a.qae-link-button::before,
.comment-content a.qae-link-button::before,
a.qae-link-button::before {
    content: "\f0c1";
    font-family: FontAwesome, "FontAwesome", Arial, sans-serif;
    font-size: 12px;
    line-height: 1;
    opacity: 0.85;
    font-weight: normal;
    flex: 0 0 auto;
}

.question-content a.qae-link-button-internal::before,
.question-excerpt a.qae-link-button-internal::before,
.cm-wrap a.qae-link-button-internal::before,
.comment-content a.qae-link-button-internal::before,
a.qae-link-button-internal::before {
    content: "\f0c1";
}

.question-content a.qae-link-button-whatsapp::before,
.question-excerpt a.qae-link-button-whatsapp::before,
.cm-wrap a.qae-link-button-whatsapp::before,
.comment-content a.qae-link-button-whatsapp::before,
a.qae-link-button-whatsapp::before {
    content: "\f232";
}

.question-content a.qae-link-button-email::before,
.question-excerpt a.qae-link-button-email::before,
.cm-wrap a.qae-link-button-email::before,
.comment-content a.qae-link-button-email::before,
a.qae-link-button-email::before {
    content: "\f0e0";
}

.question-content a.qae-link-button:hover,
.question-content a.qae-link-button:focus,
.question-excerpt a.qae-link-button:hover,
.question-excerpt a.qae-link-button:focus,
.cm-wrap a.qae-link-button:hover,
.cm-wrap a.qae-link-button:focus,
.comment-content a.qae-link-button:hover,
.comment-content a.qae-link-button:focus,
a.qae-link-button:hover,
a.qae-link-button:focus {
    border-color: #c8d3e3;
    background-color: #eef3fa;
    color: #3498db !important;
    text-decoration: none !important;
    outline: none;
}

@media (max-width: 767px) {
    .question-content a.qae-link-button,
    .question-excerpt a.qae-link-button,
    .cm-wrap a.qae-link-button,
    .comment-content a.qae-link-button,
    a.qae-link-button {
        line-height: 19px;
        padding: 4px 9px;
        margin-top: 4px;
        margin-bottom: 4px;
        font-size: 12px;
    }
}
