/* Mobile and Tablet Responsive Styles */
@media (max-width: 768px) {
    .post-title {
        font-size: 2rem;
    }
    
    .post-content {
        font-size: 1rem;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .share-buttons {
        flex-direction: column;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .comment-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .author-content {
        flex-direction: row;
        gap: 1rem;
    }
    
    .author-avatar {
        margin-top: 0rem;
    }

    .author-image {
        height: 80px;
        width: auto;
    }


}