/* Banner de Categoría */
.category-banner {
    padding: 60px 0;
    color: white;
    text-align: center;
    margin-bottom: 30px;
}

.hardware-bg {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=1200');
    background-size: cover;
    background-position: center;
}

/* Estilo de Noticia Alargada */
.news-item-long {
    display: flex;
    background: #fff;
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.news-img {
    flex: 1;
    min-width: 250px;
    background-size: cover;
    background-position: center;
}

.news-text {
    flex: 2;
    padding: 25px;
}

.tag {
    background: #e67e22;
    color: white;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: bold;
}

.specs-mini {
    display: flex;
    gap: 15px;
    margin: 15px 0;
}

.specs-mini span {
    background: #f0f0f0;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.85rem;
    color: #666;
    border: 1px solid #ddd;
}

/* Sidebar Trend List */
.trend-list { list-style: none; }
.trend-list li { padding: 10px 0; border-bottom: 1px solid #eee; }
.trend-list li a { text-decoration: none; color: #3498db; font-size: 0.9rem; }

/* Responsive para Hardware */
@media (max-width: 768px) {
    .news-item-long { flex-direction: column; }
    .news-img { height: 200px; }
}