/* Estilos para o Widget de Últimas Notícias - Layout Compacto */

.latest-news-widget {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    text-align: left;
}

.latest-news-title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 15px;
    gap: 8px;
    width: 100%;
}

.latest-news-indicator {
    width: 3px;
    height: 18px;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    border-radius: 2px;
    flex-shrink: 0;
}

.latest-news-text {
    color: #dc2626;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.latest-news-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.latest-news-item {
    display: flex;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    align-items: flex-start;
}

.latest-news-item:last-child {
    border-bottom: none;
}

.latest-news-thumb-1 {
    width: 105px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.latest-news-thumb {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
    display: block;
    transition: transform 0.2s ease;
}

.latest-news-thumb:hover {
    transform: scale(1.02);
}

.latest-news-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.latest-news-category {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    width: fit-content;
    margin-bottom: 2px;
}

.latest-news-category.politics {
    background: #fef2f2;
    color: #dc2626;
}

.latest-news-category.international {
    background: #eff6ff;
    color: #2563eb;
}

.latest-news-category.general {
    background: #f0fdf4;
    color: #16a34a;
}

.latest-news-headline {
    color: #1f2937;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    margin: 0;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.latest-news-headline:hover {
    color: #dc2626;
    text-decoration: none;
}

.latest-news-meta {
    color: #999;
    font-size: 11px;
    font-weight: 400;
    margin-top: 2px;
}

/* Responsivo */
@media (max-width: 768px) {
    .latest-news-widget {
        padding: 0 10px;
    }
    
    .latest-news-thumb,
    .latest-news-thumb-1 {
        width: 100px;
        height: 70px;
    }
    
    .latest-news-headline {
        font-size: 14px;
    }
    
    .latest-news-text {
        font-size: 16px;
    }
    
    .latest-news-item {
        justify-content: center;
        align-items: flex-start;
        gap: 8px;
    }
}

@media (max-width: 576px) {
    .latest-news-widget {
        padding: 0 5px;
        text-align: center;
    }
    
    .latest-news-title {
        justify-content: center;
    }
    
    .latest-news-item {
        flex-direction: column;
        gap: 12px;
        align-items: center;
        text-align: center;
    }
    
    .latest-news-thumb,
    .latest-news-thumb-1 {
        width: 100%;
        max-width: 280px;
        height: 180px;
        margin: 0 auto;
    }
    
    .latest-news-content {
        text-align: center;
        align-items: center;
    }
    
    .latest-news-category {
        margin: 0 auto 8px;
    }
}