/* BREAKOUT CONTAINER */
.lfpnd-hero-breakout {
    display: flex;
    min-height: 80vh;
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%); /* Cleaner way to center 100vw */
    overflow: hidden;
    background: #020e1f; /* Fallback */
    margin-top: 110px;
}

.hero-label{
    color: #FFF;
}

/* LEFT PANEL: CONTENT */
.hero-left-panel {
    flex: 1;
    background: #020e1f; 
    display: flex;
    align-items: center;
    justify-content: flex-end; 
    padding: 80px 60px;
    z-index: 2;
    clip-path: polygon(0 0, 100% 0, 92% 100%, 0% 100%);
    margin-right: -4vw; 
}

.hero-content-inner {
    max-width: 550px;
}

.hero-content-inner h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
    margin: 0 0 25px 0;
}

.hero-content-inner .yellow-text {
    color: #fceb92;
    display: block; /* Makes 'Decorating' hit harder on its own line */
    margin-top: 0px;
}

/* RIGHT PANEL: IMAGE */
.hero-right-image {
    flex: 1.3;
    background-image: url('../../../../uploads/2026/03/heroStevenage-e1757852606381.webp');
    background-size: cover;
    background-position: center;
}

/* CTA BUTTON */
.lfpnd-hero-cta {
    display: inline-block;
    background: #fceb92;
    color: #020e1f;
    padding: 18px 40px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.lfpnd-hero-cta:hover {
    background: #fff;
    transform: translateY(-3px);
}

/* MOBILE FIXES */
@media (max-width: 768px) {
    .lfpnd-hero-breakout {
        margin-top: 160px;
        flex-direction: column;
        height: auto;
    }
    
    .hero-left-panel {
        clip-path: none; /* Remove angle on mobile */
        margin-right: 0;
        justify-content: center;
        text-align: center;
        padding: 60px 20px;
    }
    
    .hero-right-image {
        min-height: 300px;
        width: 100%;
    }
}