/* Section Two Images Info USPs Styles */
.section-two-images-info-usps {
    position: relative;
    /* Background color and padding now handled via ACF and utility classes */
}

/* Images Wrapper - 50% of container, each image 50% of wrapper (25% total) */
.section-two-images-info-usps .images-wrapper {
    display: flex;
    gap: 33px;
}

.section-two-images-info-usps .image-left,
.section-two-images-info-usps .image-right {
    flex: 1;
    overflow: hidden;
    border-radius: 20px;
}

.section-two-images-info-usps .image-left img,
.section-two-images-info-usps .image-right img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
}

/* Info Wrapper - 50% of container */
.section-two-images-info-usps .info-wrapper {
    padding-left: 50px;
}

.section-two-images-info-usps .section-title {
    font-family: 'Impact', sans-serif;
    font-size: 36px;
    font-weight: 400;
    line-height: 1.22;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--paperwise-dark-green);
    margin-bottom: 24px;
}

/* Title highlight - first word in green color */
.section-two-images-info-usps .section-title .title-highlight {
    color: var(--paperwise-accent);
    display: block;
}

.section-two-images-info-usps .section-description {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.57;
    letter-spacing: 0.0286em;
    color: var(--paperwise-dark-green);
    margin-bottom: 32px;
}

/* USPs Grid */
.section-two-images-info-usps .usps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 40px;
    margin-bottom: 32px;
}

.section-two-images-info-usps .usp-item {
    display: flex;
    align-items: center;
    gap: 14px;
}
.usps-grid .usp-item:last-child {
    grid-column: 2; /* place it in the second column */
}

.section-two-images-info-usps .usp-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-two-images-info-usps .usp-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.section-two-images-info-usps .usp-text {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.57;
    letter-spacing: 0.0286em;
    color: var(--paperwise-dark-green);
    overflow-wrap: break-word;
    white-space: normal;
    word-break: break-word;
    min-width: 100px;
}

/* CTA Buttons */
.section-two-images-info-usps .cta-buttons {
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
}

@media (max-width: 1440px) {
    .section-two-images-info-usps .container{
        max-width: 1240px;
    }
/* Global button styles are used */

/* Responsive */
@media (max-width: 1199px) {
	.section-two-images-info-usps .image-left img,
	.section-two-images-info-usps .image-right img {
		height: 500px;
	}
}

/* Responsive */
@media (max-width: 991px) {
    /* Padding now handled via ACF and utility classes */
    .section-two-images-info-usps .images-wrapper {
        margin-bottom: 40px;
    }
    .section-two-images-info-usps .align-items-start{
        flex-direction: column-reverse;
            gap: 50px;
    }
    .section-two-images-info-usps .info-wrapper {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    /* Padding now handled via ACF and utility classes */

    .section-two-images-info-usps .images-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .section-two-images-info-usps .image-left img,
    .section-two-images-info-usps .image-right img {
        height: 300px;
    }

    .section-two-images-info-usps .section-title {
        font-size: 28px;
    }

    .section-two-images-info-usps .usps-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .section-two-images-info-usps .cta-buttons {
        flex-direction: column;
    }

    .section-two-images-info-usps .btn-primary-paperwise,
    .section-two-images-info-usps .btn-secondary-paperwise {
        width: 100%;
        justify-content: center;
    }
}

/* Dark mode variant */
[data-bs-theme="dark"] .section-two-images-info-usps {
    background-color: var(--dark-gray);
}

[data-bs-theme="dark"] .section-two-images-info-usps .section-title {
    color: var(--white);
}

[data-bs-theme="dark"] .section-two-images-info-usps .section-title .title-highlight {
    color: var(--paperwise-accent);
}

[data-bs-theme="dark"] .section-two-images-info-usps .section-description,
[data-bs-theme="dark"] .section-two-images-info-usps .usp-text {
    color: var(--light-gray);
}}