/**
 * Blog CSS - Estilos para blog y sidebar
 *
 * Estilos para páginas de blog:
 * - Variables de color para blog
 * - Widget titles en sidebar
 * - Recent posts styling
 * - Newsletter button
 *
 * @author One2Travel Development Team
 * @version 1.0
 */

/* ============================================
   BLOG VARIABLES - Colores del Blog
   ============================================ */

:root {
    --blog-primary-color: #2a5298;
}

/* ============================================
   BLOG SIDEBAR - Widgets y Enlaces
   ============================================ */

.widget-title {
    color: var(--blog-primary-color) !important;
}

.recent-post-item p {
    color: var(--blog-primary-color) !important;
}

.newsletter-btn {
    background-color: var(--blog-primary-color) !important;
    border-color: var(--blog-primary-color) !important;
}
