/* =============================================
   LINKS INTERNOS - ESTILOS SIMPLES
   ============================================= */

/* Links dentro do blog post */
.blog-post a {
    color: #2563eb !important;
    text-decoration: none !important;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    font-weight: 500;
    padding: 2px 0;
}

/* Hover effect */
.blog-post a:hover {
    color: #1d4ed8 !important;
    border-bottom-color: #2563eb;
    text-decoration: none !important;
    transform: translateY(-1px);
}

/* Focus para acessibilidade */
.blog-post a:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
    border-radius: 3px;
}

