/**
 * AI Content Rewriter Pro - Frontend Styles
 * Estilos para a seção "LEIA TAMBÉM" e links internos
 */

/* Estilo para a seção "LEIA TAMBÉM" */
.aicrw-read-also {
    background-color: #f8f9fa;
    border-left: 4px solid #0073aa;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.aicrw-read-also h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.2em;
    color: #23282d;
}

.aicrw-read-also-list {
    margin: 0;
    padding-left: 20px;
}

.aicrw-read-also-list li {
    margin-bottom: 8px;
}

.aicrw-read-also-list li:last-child {
    margin-bottom: 0;
}

.aicrw-read-also-list a {
    color: #0073aa;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.aicrw-read-also-list a:hover {
    color: #00a0d2;
    text-decoration: underline;
}

/* Estilo para links internos adicionados automaticamente */
.aicrw-internal-link {
    color: #0073aa;
    text-decoration: none;
    border-bottom: 1px dotted #0073aa;
    transition: all 0.2s ease;
}

.aicrw-internal-link:hover {
    color: #00a0d2;
    border-bottom-color: #00a0d2;
}