
/* Fuente base y tipografía uniforme */
article {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    font-family: 'Inter', 'Segoe UI', Roboto, sans-serif !important;
    font-size: 19px;
    background-color: #ffffff;
    color: #585858;
    line-height: 1.7;
    /*box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);*/
    border-radius: 12px;
}

    article h1 {
        font-size: 2.2rem;
        margin-bottom: 1.2rem;
        color: #111111;
        border-bottom: 2px solid #0066cc;
        padding-bottom: 0.4rem;
        font-weight: 700;
        line-height: 1.4;
        letter-spacing: 0.3px;
    }

    article h2 {
        font-size: 2.5rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
        color: #0066cc;
        font-weight: 600;
        line-height: 1.5;
        letter-spacing: 0.3px;
    }

article ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

    article ul li {
        margin-bottom: 0.6rem;
        list-style-type: disc;
        line-height: 1.75;
        letter-spacing: 0.3px;
    }

    article pre {
        background-color: #f5f5f5;
        padding: 1rem;
        font-size: 19px;
        border-left: 4px solid #0066cc;
        font-family: monospace;
        overflow-x: auto;
        border-radius: 6px;
        line-height: 1.6;
        letter-spacing: 0.2px;
    }

    article p {
        margin-bottom: 1rem;
        font-family: 'Inter', 'Segoe UI', Roboto, sans-serif !important;
        font-size: 19px;
        line-height: 1.75;
        letter-spacing: 0.3px;
    }

.post-content p {
    margin-bottom: 1rem;
    font-family: 'Inter', 'Segoe UI', Roboto, sans-serif !important;
    font-size: 19px;
    line-height: 1.75;
    letter-spacing: 0.3px;
}

article a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 200;
}

    article a:hover {
        text-decoration: underline;
    }

/* Responsive para móviles */
@media (max-width: 600px) {
    article {
        padding: 1.2rem;
    }

        article h1 {
            font-size: 1.8rem;
        }

        article h2 {
            font-size: 1.3rem;
        }
}

