/**
 * News Frontend CSS
 * Styling for news posts and category pages
 */

/* News Category Archive */
.category-noticias .post {
    margin-bottom: 30px;
    padding: 20px;
    background: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.category-noticias .post-header {
    margin-bottom: 15px;
}

.category-noticias .post-title {
    font-size: 24px;
    margin-bottom: 10px;
    color: #0073aa;
}

.category-noticias .post-title a {
    color: inherit;
    text-decoration: none;
}

.category-noticias .post-title a:hover {
    color: #005a87;
}

.category-noticias .post-meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.category-noticias .post-excerpt {
    line-height: 1.6;
    color: #333;
}

/* Single News Post */
.single-post.category-noticias .post-content {
    line-height: 1.7;
    font-size: 16px;
}

.single-post.category-noticias .post-categories {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.single-post.category-noticias .post-categories a {
    background: #f0f0f1;
    color: #50575e;
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 12px;
    text-decoration: none;
    margin-right: 5px;
}

.single-post.category-noticias .post-categories a:hover {
    background: #0073aa;
    color: #fff;
}

/* View counter (if displayed) */
.ai-post-views {
    font-size: 12px;
    color: #999;
    margin-left: 10px;
}

.ai-post-views::before {
    content: "👁 ";
}