/* Base */
.ic-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.ic-container__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.ic-container__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.ic-container__inner {
  position: relative;
  z-index: 2;
  padding-left: 16px;
  padding-right: 16px;
  box-sizing: border-box;
}

/* When full background is enabled (default): background spans the section edges */
.ic-container--fullbg .ic-container__bg,
.ic-container--fullbg .ic-container__overlay {
  /* already full bleed because parent is width:100% and position:absolute inset:0; */
}

/* Optional helpers */
.alignwide.ic-container .ic-container__inner { max-width: 1200px; }
.alignfull.ic-container .ic-container__inner { max-width: none; }

/* You can add your theme’s breakpoints here if you want larger horizontal padding on de*
