.custom-section {
  background-color: rgb(var(--color-background));
  display: flex;
  gap: 20px;
  box-sizing: border-box;
}

.custom-section .block-heading,
.custom-section .subheading {
  width: 100%;
}

.custom-section .subheading,
.custom-section .rte {
  word-break: break-word;
}

@media (max-width: 767px) {
  .custom-section--mobile-scroll {
    width: 100%;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .custom-section--mobile-scroll > * {
    flex: 0 0 88%;
    scroll-snap-align: start;
  }

  .custom-section--mobile-scroll::-webkit-scrollbar {
    display: none;
  }
}
