/* ── software-voor-schilders.css ── page-specific rules only ── */

/* Hero: subtle background image watermark */
.cw-section--hero-schilders {
  background-color: var(--cw-bg-light);
  background-image:
    linear-gradient(rgba(241, 249, 255, 0.94), rgba(241, 249, 255, 0.94)),
    url('/images/2018/07/02/cb_add_on_offertes.webp');
  background-size: contain;
  background-position: 100% 0;
  background-repeat: no-repeat;
}

/* Image-band section: tighter padding, centered figure */
.cw-section--image-band {
  padding-top: clamp(32px, 5vw, 60px);
  padding-bottom: clamp(32px, 5vw, 60px);
}

.cw-figure--centered {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

/* Module grid description text */
.cw-module__desc {
  font-size: 13px;
  color: var(--cw-text-light);
  margin: 4px 0 0;
  line-height: 1.4;
}

/* Module grid: 4-col → 2-col → 1-col already handled by site.css,
   but we expand to 4-col with desc text needing slightly more height */
.cw-module-grid {
  grid-template-columns: repeat(4, 1fr);
}

/* CTA split: stack image above button on the right column */
.cw-split__media--cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

/* Responsive overrides */
@media (max-width: 991.98px) {
  .cw-module-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767.98px) {
  .cw-module-grid {
    grid-template-columns: 1fr;
  }

  .cw-section--hero-schilders {
    background-image: none;
    background-color: var(--cw-bg-soft);
  }
}