/* ============================================
   Image Content Section Styles
   ============================================ */

/* Section Container */
.section-image-content {
    position: relative;
}
.page-id-476 .section-image-content .btn-primary-paperwise{
    background-color: var(--paperwise-accent);
    color: var(--paperwise-dark-green);
}
/* Image Wrapper */
.section-image-content .image-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.section-image-content .section-image {
    width: 100%;
    height: 100%;
    max-height: 450px;
    display: block;
    border-radius: 20px;
    object-fit: cover;
}
/* btn styling - toepassingen pagina werd dit niet meegenomen */
.section-image-content .btn-primary-paperwise {
    color: var(--paperwise-accent);
    background-color: var(--paperwise-dark-green);
    gap: 8px;
}
/* Content Wrapper */
.section-image-content .content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-left: 60px;
}

/* Content wrapper for image-right layout */
.section-image-content.image-right .content-wrapper {
    padding-left: 0;
    padding-right: 60px;
}

/* Section Title */
.section-image-content .section-title {
    font-family: 'Impact', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 36px;
    font-weight: 400;
    line-height: 1.2197265625em;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.section-image-content .section-title .title-line-1 {
    color: var(--paperwise-dark-green);
    display: block;
}

.section-image-content .section-title .title-line-2 {
    color: var(--paperwise-accent);
    display: block;
}

/* Section Description */
.section-image-content .section-description {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5714285714285714em;
    letter-spacing: 0.028571428571428571em;
    color: var(--paperwise-dark-green);
}

/* Button Wrapper */
.section-image-content .button-wrapper {
    display: flex;
    margin-top: 8px;
}
/* Pijl op keuzehulp-pagina */
.section-image-content .arrow-5{
    position: absolute;
    top: 79%;
    left: 50%;
    rotate: 270deg;
    z-index: 99;
}
.section-image-content  .arrow-5 img{
    width: 240px;
    height: 190px;
    object-fit: fill;
}
.section-image-content .arrow-5{
    display: none;
}
.page-id-753 .section-image-content .arrow-5{
    display: block;
}
/* Responsive - Laptop */
@media (max-width: 1440px) {
    .section-image-content .container {
		max-width: 1240px
	}
}
/* Responsive - Tablet */
@media (max-width: 991px) {
    .section-image-content .section-title {
        font-size: 30px;
    }


    .section-image-content .content-wrapper {
        gap: 20px;
        padding-left: 40px;
    }

    .section-image-content.image-right .content-wrapper {
        padding-left: 0;
        padding-right: 40px;
    }

    .section-image-content .image-wrapper {
        max-height: 350px;
    }

    .section-image-content .section-image {
        max-height: 350px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .section-image-content .section-title {
        font-size: 26px;
    }

    .section-image-content .content-wrapper {
        gap: 16px;
        margin-top: 24px;
        padding-left: 0;
    }

    .section-image-content.image-right .content-wrapper {
        padding-right: 0;
    }

    .section-image-content .image-wrapper {
        max-height: 300px;
    }

    .section-image-content .section-image {
        max-height: 300px;
    }

    /* Stack content vertically on mobile - image always on top */
    .section-image-content.image-right .row {
        flex-direction: column-reverse;
    }
    .section-image-content .arrow-5{
        top: 85%;
    }
    .section-image-content  .arrow-5 img{
        width: 200px;
        height: 140px;
    }
}

@media (max-width: 576px) {
    .section-image-content .arrow-5{
        top: 82%;
    }
    .section-image-content .section-title {
        font-size: 22px;
        letter-spacing: 0.12em;
    }

    .section-image-content .image-wrapper {
        max-height: 250px;
    }

    .section-image-content .section-image {
        max-height: 250px;
        border-radius: 16px;
    }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .section-image-content * {
        transition: none;
    }
}
/* Print Styles */
@media print {
    .section-image-content {
        page-break-inside: avoid;
    }
}
