.noticias-rapidas-container {
    background: linear-gradient(180deg, #10131c 0%, #0b0e15 100%);
    border: 1px solid rgba(182, 107, 255, 0.18);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.noticias-rapidas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(182, 107, 255, 0.12);
}

.noticias-rapidas-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.02em;
}

.noticias-rapidas-badge {
    background: linear-gradient(135deg, #b66bff 0%, #8b5cf6 100%);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.noticias-rapidas-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.noticia-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(182, 107, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.noticia-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(182, 107, 255, 0.3);
    transform: translateX(4px);
}

.noticia-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.noticia-time {
    color: #b66bff;
    font-size: 0.875rem;
    font-weight: 500;
}

.noticia-dot {
    width: 6px;
    height: 6px;
    background: #b66bff;
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.noticia-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
}

.noticia-excerpt {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.noticia-thumbnail {
    border-radius: 6px;
    overflow: hidden;
    margin-top: 1rem;
}

.noticia-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.noticias-rapidas-empty {
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    padding: 2rem;
    font-style: italic;
}

.noticias-historial-container {
    background: #faf8f5;
    padding: 3rem 2rem;
    margin: 4rem 0;
    border-radius: 12px;
}

.noticias-historial-header {
    text-align: center;
    margin-bottom: 3rem;
}

.noticias-historial-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d2a26;
    margin: 0;
    letter-spacing: -0.02em;
}

.noticias-historial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.historial-item {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.historial-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.historial-thumbnail {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.historial-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.historial-item:hover .historial-thumbnail img {
    transform: scale(1.05);
}

.historial-content {
    padding: 1.5rem;
}

.historial-date {
    color: #b66bff;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.historial-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d2a26;
    margin: 0.5rem 0;
    line-height: 1.3;
}

.historial-excerpt {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 0.75rem;
}

.noticias-historial-empty {
    text-align: center;
    color: #999;
    padding: 3rem;
    font-style: italic;
    grid-column: 1 / -1;
}

.noticias-rapidas-error {
    background: #fee;
    border: 1px solid #fcc;
    color: #c33;
    padding: 1rem;
    border-radius: 6px;
    text-align: center;
}

@media (max-width: 768px) {
    .noticias-rapidas-container {
        padding: 1.5rem;
    }
    
    .noticias-rapidas-title {
        font-size: 1.5rem;
    }
    
    .noticias-historial-grid {
        grid-template-columns: 1fr;
    }
    
    .noticias-historial-title {
        font-size: 2rem;
    }
}