.contentz-row {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 4rem;
}

.spaced .contentz-row:not(:last-child) {
  margin-bottom: 6rem;
}
.contentz-row:not(:last-child) {
  margin-bottom: var(--space-xl);
}

.contentz-row.left .contentz--item {
  order: 3;
}
.contentz--item img {
  width: 100%;
  border-radius: var(--br-30);
}
/* .mobile .contentz__title {
  text-align: center;
} */
.mobile .contentz--item {
  width: 100%;
  /* margin: auto; */
  padding-top: 2rem;
  padding-bottom: 2rem;
  flex: none;
}
.desktop .contentz--item {
  width: 100%;
}
.contentz--text {
  flex: 1;
}
.wrapper--contentz .contentz__title {
  font-size: var(--fs-32);
  line-height: 1.6;
  margin-bottom: 1.4rem;
}
.contentz__title-img {
  margin-bottom: 3rem;
}
/* .editor__contentz {
  margin-top: 1.4rem;
} */
.contentz__btn {
  margin-top: 2rem;
}
.contentz__video {
  margin-bottom: 4rem;
  width: 14.9rem;
  height: 14.9rem;
  position: relative;
}
.contentz__video video {
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  -o-object-fit: cover;
  object-fit: cover;
}
.contentz__videobtn {
  width: 4.8rem;
  height: 4.8rem;
  position: absolute;
  background-color: var(--c-primary);
  border-radius: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
.contentz__videobtn svg {
  stroke: #fff;
  width: 50%;
  height: 50%;
  stroke-width: 2px;
  margin-left: 0.5rem;
  transition: var(--t-ease) var(--ease3);
}
.contentz__videobtn.playing svg {
  transform: scale(0.8);
  margin: 0;
}
.video-btn-js svg path {
  transition: var(--t-ease) var(--ease3);
}
.video-btn-js.playing .path-triangle {
  d: path("M 11 2 L 11 10 L 11 18");
}
/**************************/
/* BELOW 360px */
/**************************/
@media (min-width: 22.5em) {
}
/**************************/
/* BELOW 576px */
/**************************/
@media (min-width: 36em) {
}

/**************************/
/* ABOVE 800px */
/**************************/
@media (min-width: 50em) {
  /* .section-wrapper.contentz {
    padding: 8rem 0;
  } */
  .spaced .contentz-row {
    gap: 5rem;
    --p-section-md: 7rem;
  }
  .contentz-row {
    flex-direction: row;
    gap: 10rem;
    padding: 0 calc(var(--padding-section-base) * 8);
  }
  .desktop .contentz--item {
    flex: none;
    width: 50%;
  }
  .spaced .contentz-row:not(.left) {
    padding-left: 20rem;
  }
  .spaced .contentz-row.left {
    padding-right: 20rem;
  }
}
/**************************/
/* ABOVE 1024px */
/**************************/
@media (min-width: 64em) {
}
/**************************/
/* ABOVE 1200px */
/**************************/
@media (min-width: 75em) {
}
