/* Estilos para página de post - Tipografia melhorada */

#post-content .post-content {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: 'Inter Tight', sans-serif;
}

#post-content .post-content p {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    line-height: 1.9;
    color: #2c3e50;
    text-align: justify;
    font-family: 'Inter Tight', sans-serif;
}

#post-content .post-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a252f;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid;
    border-image: linear-gradient(135deg, #03A9F4, #E91E63) 1;
}

#post-content .post-content h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #34495e;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

#post-content .post-content ul {
    margin-bottom: 1.8rem;
    padding-left: 2rem;
}

#post-content .post-content ul li {
    margin-bottom: 0.8rem;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #34495e;
    position: relative;
    padding-left: 0.5rem;
}

#post-content .post-content ul li::marker {
    color: #03A9F4;
    font-size: 1.2rem;
}

#post-content .post-content ol {
    margin-bottom: 1.8rem;
    padding-left: 2rem;
    counter-reset: item;
}

#post-content .post-content ol li {
    margin-bottom: 0.8rem;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #34495e;
    position: relative;
    padding-left: 0.5rem;
}

#post-content .post-content ol li::marker {
    color: #E91E63;
    font-weight: 700;
}

#post-content .post-content strong {
    font-weight: 700;
    color: #1a252f;
    background: linear-gradient(135deg, #03A9F4 0%, #E91E63 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#post-content .post-content blockquote {
    border-left: 4px solid;
    border-image: linear-gradient(135deg, #03A9F4, #E91E63) 1;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    background: linear-gradient(135deg, rgba(3, 169, 244, 0.05), rgba(233, 30, 99, 0.05));
    font-style: italic;
    font-size: 1.25rem;
    color: #34495e;
}

#post-content .post-content a {
    color: #03A9F4;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

#post-content .post-content a:hover {
    color: #E91E63;
    border-bottom-color: #E91E63;
}

/* Responsivo */
@media (max-width: 768px) {
    #post-content .post-content p {
        font-size: 1.1rem;
        line-height: 1.8;
        text-align: left;
    }
    
    #post-content .post-content h3 {
        font-size: 1.5rem;
        margin-top: 2rem;
    }
    
    #post-content .post-content h4 {
        font-size: 1.3rem;
    }
    
    #post-content .post-content ul li,
    #post-content .post-content ol li {
        font-size: 1.05rem;
    }
    
    #post-content .post-content blockquote {
        padding: 1rem 1.5rem;
        font-size: 1.15rem;
    }
}
