/**
 * New Products Banner with SEO Text Stylesheet
 * Evolux Cards - Styling voor nieuwe producten banner met SEO tekst
 */

/* ===== NEW PRODUCTS BANNER SEO SECTION ===== */
.new-products-banner-seo-section {
    padding: 60px 0;
    background: var(--primary-color);
}

.new-products-banner-seo-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

.new-products-banner-image-wrapper {
    position: sticky;
    top: 100px;
}

.new-products-banner-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: contain;
    box-shadow: var(--shadow-lg);
}

.new-products-seo-text-wrapper {
    display: flex;
    align-items: flex-start;
}

.new-products-seo-content {
    width: 100%;
}

.new-products-seo-title {
    font-size: 32px;
    font-weight: 800;
    color: white;
    margin-bottom: 30px;
    line-height: 1.3;
    letter-spacing: -0.5px;
    padding-bottom: 20px;
    border-bottom: 3px solid white;
}

.new-products-seo-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    line-height: 1.8;
}

.new-products-seo-text p {
    margin-bottom: 20px;
    text-align: left;
}

.new-products-seo-text p:last-child {
    margin-bottom: 0;
}

.new-products-seo-text p:first-of-type {
    font-size: 18px;
    color: white;
    font-weight: 500;
    margin-bottom: 24px;
}

@media (max-width: 1200px) {
    .new-products-banner-seo-wrapper {
        gap: 40px;
    }
    
    .new-products-seo-title {
        font-size: 28px;
        margin-bottom: 25px;
        padding-bottom: 18px;
    }
    
    .new-products-seo-text {
        font-size: 15px;
    }
    
    .new-products-seo-text p:first-of-type {
        font-size: 17px;
    }
}

@media (max-width: 992px) {
    .new-products-banner-seo-section {
        padding: 50px 0;
    }
    
    .new-products-banner-seo-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .new-products-banner-image-wrapper {
        position: static;
    }
    
    .new-products-banner-image {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .new-products-seo-title {
        text-align: center;
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .new-products-banner-seo-section {
        padding: 40px 0;
    }
    
    .new-products-banner-seo-wrapper {
        gap: 30px;
    }
    
    .new-products-seo-title {
        font-size: 24px;
        margin-bottom: 20px;
        padding-bottom: 15px;
        border-bottom-width: 2px;
    }
    
    .new-products-seo-text {
        font-size: 14px;
        line-height: 1.75;
    }
    
    .new-products-seo-text p {
        margin-bottom: 18px;
    }
    
    .new-products-seo-text p:first-of-type {
        font-size: 16px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .new-products-banner-seo-section {
        padding: 30px 0;
    }
    
    .new-products-banner-seo-wrapper {
        gap: 24px;
    }
    
    .new-products-seo-title {
        font-size: 20px;
        margin-bottom: 18px;
        padding-bottom: 12px;
    }
    
    .new-products-seo-text {
        font-size: 13px;
    }
    
    .new-products-seo-text p:first-of-type {
        font-size: 15px;
    }
}

