/**
 * @file
 * Section styles
 */

.section {
  overflow-x: clip;
  position: relative;
}
.section--dark {
  background-color: var(--color-neutral--10);
  color: var(--color-neutral--0);
}
.section--dark p {
  color: var(--color-neutral--0);
}
@media all and (min-width: 1200px){
  .section.background-shape::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background-image: url("../../images/section/background-shape.svg");
    background-position: left;
    background-repeat: no-repeat;
    background-size: contain;
    width: 608px;
    height: 100%;
    z-index: 0;
  }
}

