.alternating-items-block {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.alternating-item .item-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.item-image img {
  width: auto;
  height: auto;
  max-height: 444px;
}

.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff; 
}

.item-title {
  margin-bottom: 20px;
  color: #fff;
}

.item-description {
  color: #fff;
}

.alternating-item.odd .item-content {
  flex-direction: row;
}

.alternating-item.even .item-content {
  flex-direction: row-reverse;
}

.editor-styles-wrapper h2 {
    color: white;
}

@media (max-width: 768px) {
  .alternating-item .item-content {
    flex-direction: column !important;
    text-align: center;
  }

  .content {
    order: 1;
  }

  .item-description {
    order: 2;
  }

  .item-image {
    order: 3;
    width: 100% !important;
  }
}
