/* ===================================
   SINGLE POST - ESTILO MAGAZINE
   CSS carregado apenas nos single posts
   =================================== */

   /* Padding do single post - mobile */
   @media (max-width: 768px) {
    .separate-containers .inside-article, .separate-containers .comments-area, .separate-containers .page-header, .separate-containers .paging-navigation, .one-container .site-content, .inside-page-header {
        padding: 10px 20px 30px 20px !important;
    }
}

   /* Link da categoria com cor destacada */
.gp-custom-category-section a {
    color: #6b46c1 !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    font-size: 14px !important;
}

/* Widgets estilo magazine */
.widget {
    background: white !important;
    padding: 25px !important;
    border-radius: 12px !important;
    border-left: 4px solid #6b46c1 !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1) !important;
    margin-bottom: 30px !important;
}

/* Títulos dos widgets */
.widget-title {
    color: #000000 !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    margin-bottom: 20px !important;
}

/* Widget de posts recentes */
.recent-post-widget li {
    padding: 12px 0 !important;
    border-bottom: 1px solid #f0f0f0 !important;
    margin-bottom: 0 !important;
}

.recent-post-widget li:last-child,
.widget ul.wp-block-categories li:last-child {
    border-bottom: none !important;
    padding-bottom: 0 !important;
}

.recent-post-widget a,
.widget ul.wp-block-categories li a {
    color: #333 !important;
    text-decoration: none !important;
    font-size: 14px !important;
}

.recent-post-widget a {
    font-weight: 500 !important;
    line-height: 1.3 !important;
}

.recent-post-widget a:hover,
.widget ul.wp-block-categories li a:hover {
    color: #6b46c1 !important;
}

/* Widget de categorias */
.widget ul.wp-block-categories li {
    padding: 8px 0 !important;
    border-bottom: 1px solid #f0f0f0 !important;
    margin-bottom: 0 !important;
}

/* Widget de categorias - border diferente */
.widget:nth-child(2) {
    border-left-color: #e7a900 !important;
}

/* Responsivo */
@media only screen and (max-width: 768px) {
    .widget {
        padding: 20px !important;
        border-radius: 10px !important;
        margin-bottom: 25px !important;
    }
    
    .widget-title {
        font-size: 16px !important;
        margin-bottom: 15px !important;
    }
    
    .recent-post-widget a,
    .widget ul.wp-block-categories li a {
        font-size: 13px !important;
    }
} 