/* Section Text USPs Left Image Right Styles */
.section-text-usps-left-image-right {
    position: relative;
}

.section-text-usps-left-image-right .content-wrapper {
    padding-right: 2rem;
}

.section-text-usps-left-image-right .section-title {
    font-family: Impact, Arial, sans-serif;
    font-weight: 400;
    font-size: 2.25rem;
    line-height: 1.22;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.section-text-usps-left-image-right .title-line-1 {
    color: var(--paperwise-accent);
    display: block;
}

.section-text-usps-left-image-right .title-line-2 {
    color: var(--paperwise-dark-green);
    display: block;
}

.section-text-usps-left-image-right .section-description {
    margin-bottom: 2rem;
}

.section-text-usps-left-image-right .section-description p {
    font-family: Outfit, Arial, sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.57;
    letter-spacing: 0.029em;
    color: var(--paperwise-dark-green);
    margin: 0;
}

.section-text-usps-left-image-right .usps-list {
    margin-bottom: 2.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 40px;
    margin-bottom: 32px;
}

.section-text-usps-left-image-right .usp-item {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
}

.section-text-usps-left-image-right .usp-icon {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-text-usps-left-image-right .usp-icon img {
    width: 100%;
    height: auto;
}

.section-text-usps-left-image-right .usp-text {
    font-family: Outfit, Arial, sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.57;
    letter-spacing: 0.029em;
    color: var(--paperwise-dark-green);
}

.section-text-usps-left-image-right .buttons-wrapper {
    display: flex;
    gap: 0.625rem;
    flex-wrap: wrap;
}

.section-text-usps-left-image-right .image-wrapper {
    border-radius: 20px;
    overflow: hidden;
}

.section-text-usps-left-image-right .section-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
}

/* Video Container Styles */
.section-text-usps-left-image-right .video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 20px;
}

.section-text-usps-left-image-right .background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140%;
    height: 140%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    border: none;
    pointer-events: none; /* Voorkom interactie met video */
}

/* Dark mode variant */
[data-bs-theme="dark"] .section-text-usps-left-image-right .title-line-1 {
    color: var(--paperwise-accent);
}

[data-bs-theme="dark"] .section-text-usps-left-image-right .title-line-2 {
    color: var(--white);
}

[data-bs-theme="dark"] .section-text-usps-left-image-right .section-description p,
[data-bs-theme="dark"] .section-text-usps-left-image-right .usp-text {
    color: rgba(255, 255, 255, 0.8);
}
@media (min-width: 1200px) {
    .section-text-usps-left-image-right .section-description p {
        padding-right: 10rem;
    }

}
@media (max-width: 1440px) {
    .section-text-usps-left-image-right .container{
        max-width: 1240px;
    }}
/* Responsive */
@media (max-width: 991px) {
    .section-text-usps-left-image-right .content-wrapper {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .section-text-usps-left-image-right .section-title {
        font-size: 1.875rem;
    }
}

@media (max-width: 768px) {
    .section-text-usps-left-image-right .section-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .section-text-usps-left-image-right .section-description {
        margin-bottom: 1.5rem;
    }

    .section-text-usps-left-image-right .usps-list {
        margin-bottom: 2rem;
    }

    .section-text-usps-left-image-right .section-image {
        height: 280px;
    }

    .section-text-usps-left-image-right .video-container {
        padding-bottom: 56.25%; /* Behoud 16:9 aspect ratio */
    }

    .section-text-usps-left-image-right .buttons-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
}