/* Content V2: dynamic backgrounds + decorative overlay */
/* Place alongside your existing pro-cam styles; enqueue after pro-cam-style.css */

.v2-content-main .row {
  position: relative;
  width: 100%;
  margin: 0 auto;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 30px 30px 0 0;
}

.v2-content-main .row .bg-overlay {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background-image: var(--overlay-url, none);
  background-position: var(--overlay-pos, right 20%);
  background-size: var(--overlay-size, 45% 100%);
  background-repeat: var(--overlay-repeat, no-repeat);
  mix-blend-mode: var(--overlay-blend, normal);
  opacity: var(--overlay-opacity, 1);
  z-index: 0;
}

.v2-content-main .row .column-wrapper { position: relative; z-index: 1; }
