/* Hero 1+2 - 1 grande + 2 lateral */
.hero-1plus2 {
    margin-top:32px;
    margin-bottom: 48px;
}

.hero-layout-1plus2 {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 16px;
    height: 450px;
}

.hero-layout-1plus2 .hero-main {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
}

.hero-layout-1plus2 .hero-main .hero-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: var(--border);
}

.hero-layout-1plus2 .hero-main .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-layout-1plus2 .hero-main .hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
}

.hero-layout-1plus2 .hero-main .hero-category {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: white;
}

.hero-layout-1plus2 .hero-main .hero-title {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
    color: white;
}

.hero-layout-1plus2 .hero-main .hero-meta {
    font-size: 13px;
    color: var(--muted);
    margin: 0;
}

.hero-layout-1plus2 .hero-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-layout-1plus2 .hero-small {
    flex: 1;
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
}

.hero-layout-1plus2 .hero-small .hero-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: var(--border);
}

.hero-layout-1plus2 .hero-small .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%);
}

.hero-layout-1plus2 .hero-small .hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 18px;
}

.hero-layout-1plus2 .hero-small .hero-category {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: white;
}

.hero-layout-1plus2 .hero-small .hero-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 6px;
    color: white;
}

.hero-layout-1plus2 .hero-small .hero-meta {
    font-size: 11px;
    color: var(--muted);
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-layout-1plus2 {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .hero-layout-1plus2 .hero-main {
        height: 350px;
    }
    
    .hero-layout-1plus2 .hero-sidebar {
        flex-direction: row;
    }
    
    .hero-layout-1plus2 .hero-small {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .hero-layout-1plus2 .hero-main {
        height: 300px;
    }
    
    .hero-layout-1plus2 .hero-main .hero-title {
        font-size: 26px;
    }
    
    .hero-layout-1plus2 .hero-sidebar {
        flex-direction: column;
    }
    
    .hero-layout-1plus2 .hero-small {
        height: 180px;
    }
}