/* Hero Single - 1 artículo grande full width */
.hero {
    margin-top:32px;
    margin-bottom: 48px;
}

.hero-article {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    display: block;
}

.hero-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
}

.hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
}

.hero-category {
    display: inline-block;
    padding: 6px 14px;
    background: var(--accent);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
    max-width: 800px;
}

.hero-meta {
    font-size: 14px;
    color: var(--muted);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-article {
        height: 400px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-content {
        padding: 24px;
    }
}