.no-select {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
             supported by Chrome and Opera */
}

.break-word {
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  word-break: break-word;
}

.hyphens {
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
}

.force-unlimited-full-width {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  max-width: 100vw;
}

.force-full-width {
  width: 100vw;
  margin-left: calc(50% - 720px);
  max-width: 1440px;
}
@media screen and (max-width: 1440px) {
  .force-full-width {
    margin-left: calc(50% - 50vw);
  }
}

.has-max-width {
  max-width: var(--maxWidth);
  margin: 0 auto;
}

.has-content-max-width {
  max-width: var(--contentMaxWidth);
  margin: 0 auto;
}

.image-text-list-container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 40px;
  margin: 40px 0 var(--spacing-64) 0;
}
.image-text-list-container .entry-fields {
  flex: 0 0 calc(50% - 20px);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 600px) {
  .image-text-list-container .entry-fields {
    flex: 0 0 100%;
  }
}
.image-text-list-container .image {
  max-width: 64px;
  max-height: 64px;
  overflow: hidden;
  position: relative;
  border-radius: 100%;
  width: 100%;
  height: 100%;
  flex-shrink: 0;
}
.image-text-list-container .image img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  display: block;
}
.image-text-list-container .title-primary {
  font-family: var(--s5-fontFamily), sans-serif;
  font-weight: var(--s5-fontWeight);
  font-size: var(--s5-fontSize);
  line-height: var(--s5-lineHeight);
  color: var(--green-80);
  margin-bottom: var(--spacing-8);
}
.image-text-list-container .entry-text > p {
  font-family: var(--paragraphSmall-FontFamily), sans-serif;
  font-weight: var(--paragraphSmall-FontWeight);
  font-size: var(--paragraphSmall-FontSize);
  line-height: var(--paragraphSmall-LineHeight);
}

/*# sourceMappingURL=image-text-list.css.map */
