/* ============================================
   Centered CTA Section Styles
   ============================================ */

/* Section Container */
.section-centered-cta {
    position: relative;
}

/* Centered CTA Wrapper */
.section-centered-cta .centered-cta-wrapper {
    background-color: var(--paperwise-dark-green);
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* CTA Content */
.section-centered-cta .cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Section Title */
.section-centered-cta .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: row;
    gap: 0.5em;
    flex-wrap: wrap;
    justify-content: center;
}

.section-centered-cta .section-title .title-line-1 {
    color: #F4F3EA;
}

.section-centered-cta .section-title .title-line-2 {
    color: var(--paperwise-accent);
}

/* Section Description */
.section-centered-cta .section-description {
    /* font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.5; */
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5714285714285714em;
    letter-spacing: 0.028571428571428571em;
    color: #F4F3EA;
    margin: 0;
    max-width: 520px;
}

/* Button Wrapper */
.section-centered-cta .button-wrapper {
    display: flex;
    justify-content: center;
}

/* Button Accent Variant - Only override colors, keep all other btn-primary-paperwise styles */
.section-centered-cta .btn-accent {
    background-color: var(--paperwise-accent) !important;
    color: var(--paperwise-dark-green) !important;
}

.section-centered-cta .btn-accent svg path {
    fill: var(--paperwise-dark-green);
}

.section-centered-cta .btn-accent:hover {
    background-color: #B3C98D !important;
    color: var(--paperwise-dark-green) !important;
}

.section-centered-cta .btn-accent:hover svg path {
    fill: var(--paperwise-dark-green);
}

/* Lees meer functionaliteit styling */
#aw-leesmeer-txt {
  max-height: 175px;
  overflow: hidden;
  transition: max-height 0.4s ease;

  &.open {
    max-height: none; /* genoeg ruimte voor alles */
  }
}

.aw-toggle-leesmeer {
  cursor: pointer;
}

.aw-toggle-leesmeer:focus,
.aw-toggle-leesmeer:active {
  background-color: transparent !important;
  color: inherit !important;
  box-shadow: none !important;
  outline: none !important; /* verwijdert focus-ring */
}

/* Responsive - Tablet */
@media (max-width: 991px) {
    .section-centered-cta .section-title {
        font-size: 30px;
    }

    .section-centered-cta .centered-cta-wrapper {
        min-height: 180px;
    }

    .section-centered-cta .cta-content {
        gap: 28px;
    }
}

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

    .section-centered-cta .section-description {
        font-size: 14px;
    }

    .section-centered-cta .centered-cta-wrapper {
        min-height: 160px;
    }

    .section-centered-cta .cta-content {
        gap: 24px;
    }
}

@media (max-width: 576px) {
    .section-centered-cta .section-title {
        font-size: 22px;
        letter-spacing: 0.12em;
    }

    .section-centered-cta .centered-cta-wrapper {
        min-height: 140px;
    }

    .section-centered-cta .cta-content {
        gap: 20px;
        padding: 0 16px;
    }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .section-centered-cta * {
        transition: none;
    }
}

/* Print Styles */
@media print {
    .section-centered-cta {
        page-break-inside: avoid;
    }
}
