/* Hero Newspaper 1 - Clásico */
.hero-np1-section {
    margin-top: 32px;
    margin-bottom: 48px;
}

.hero-np1-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 20px;
    min-height: 500px;
}

/* Left cards */
.hero-np1-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-np1-card {
    flex: 1;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s;
}

.hero-np1-card:hover {
    border-color: var(--accent);
}

.hero-np1-card-img {
    height: 120px;
    background-size: cover;
    background-position: center;
    background-color: var(--border);
}

.hero-np1-card-content {
    padding: 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hero-np1-card-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text);
    margin: 0 0 auto 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Category badge */
.hero-np1-cat {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: white;
    width: fit-content;
}

.hero-np1-time {
    font-size: 12px;
    color: var(--muted);
    margin-top: 8px;
}

/* Main hero center */
.hero-np1-main {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    display: block;
}

.hero-np1-main-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: var(--border);
}

.hero-np1-main-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0) 100%);
}

.hero-np1-main-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
}

.hero-np1-main-title {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.25;
    color: white;
    margin: 0 0 10px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hero-np1-excerpt {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
    margin: 0 0 10px 0;
}

.hero-np1-main .hero-np1-time {
    color: rgba(255,255,255,0.6);
}

/* Right list */
.hero-np1-right {
    display: flex;
    flex-direction: column;
}

.hero-np1-right-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent);
    margin-bottom: 8px;
}

.hero-np1-list-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    transition: background 0.2s;
}

.hero-np1-list-item:hover {
    background: rgba(99, 102, 241, 0.05);
}

.hero-np1-list-item:last-child {
    border-bottom: none;
}

.hero-np1-list-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--border);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    flex-shrink: 0;
}

.hero-np1-list-content {
    flex: 1;
    min-width: 0;
}

.hero-np1-list-title {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-np1-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        min-height: auto;
    }
    
    .hero-np1-main {
        grid-column: 1 / 3;
        grid-row: 1;
        height: 350px;
    }
    
    .hero-np1-left {
        flex-direction: row;
        grid-column: 1 / 3;
    }
    
    .hero-np1-right {
        grid-column: 1 / 3;
    }
}

@media (max-width: 576px) {
    .hero-np1-left {
        flex-direction: column;
    }
    
    .hero-np1-main {
        height: 280px;
    }
    
    .hero-np1-main-title {
        font-size: 20px;
    }
}