.content-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 4px 4px 2.6px rgba(0, 0, 0, 0.1);
  color: #5e6167;
  display: flex;
  flex: 0 0 268px;
  flex-direction: column;
  font-family: 'Geist', Arial, sans-serif;
  min-height: 371px;
  min-width: 268px;
  overflow: hidden;
  vertical-align: top;
  width: 268px;
}

.content-card *,
.content-card *::before,
.content-card *::after {
  box-sizing: border-box;
}

.content-card__link,
.content-card__static {
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
}

.content-card__media {
  background: #d9d9d9;
  height: 171px;
  overflow: hidden;
}

.content-card__image {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.content-card__image-placeholder {
  align-items: center;
  color: #5e6167;
  display: flex;
  height: 100%;
  justify-content: center;
  padding: 20px;
}

.content-card__heading {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.content-card__accent {
  background: #b8b8b8;
  height: 8px;
  width: 100%;
}

.content-card--cyan .content-card__accent {
  background: #00aeef;
}

.content-card__title {
  color: #001844;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.072px;
  line-height: 1.2;
  margin: 0;
  padding: 10px 16px 9px;
}

.content-card__divider {
  background: #d0d1d3;
  height: 1px;
  width: 100%;
}

.content-card__content {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 10px;
  padding: 12px 16px 16px;
}

.content-card__description {
  color: #5e6167;
  display: -webkit-box;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.056px;
  line-height: 20px;
  margin: 0;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.content-card__cta {
  align-items: center;
  color: #5e6167;
  display: inline-flex;
  gap: 9px;
  margin-top: auto;
  text-transform: uppercase;
  width: fit-content;
}

.content-card__cta,
.content-card__link,
.content-card__static {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.048px;
  line-height: 1.3;
}

.content-card__arrow {
  display: block;
  height: 10px;
  stroke: currentColor;
  width: 27px;
}

.content-card__link:hover .content-card__title,
.content-card__link:focus-visible .content-card__title {
  color: #007eb8;
}

.content-card__link:focus-visible {
  outline: 2px solid #007eb8;
  outline-offset: 2px;
}

@media (max-width: 767px) {
  .content-card {
    flex-basis: 251px;
    min-height: auto;
    min-width: 251px;
    width: 251px;
  }

  .content-card__title {
    font-size: 16px;
    letter-spacing: 0.064px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .content-card__content {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.content-center {
  background: #daf0ff;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.content-center *,
.content-center *::before,
.content-center *::after {
  box-sizing: border-box;
}

.content-center__header {
  background: linear-gradient(101deg, #007eb8 12%, #00aeef 54%, #34c9ff 78%);
  min-height: 164px;
  overflow: hidden;
  padding: 99px 34px 24px;
  position: relative;
}

.content-center__header-art {
  background-image: repeating-linear-gradient(
    -12deg,
    rgba(255, 255, 255, 0.2) 0,
    rgba(255, 255, 255, 0.2) 1px,
    transparent 1px,
    transparent 9px
  );
  height: 305px;
  left: -4px;
  opacity: 0.8;
  position: absolute;
  top: -31px;
  width: 305px;
}

.content-center__header-mark {
  display: grid;
  gap: 7px;
  grid-template-columns: repeat(2, 6px);
  position: absolute;
  right: 22px;
  top: 22px;
}

.content-center__header-mark span {
  background: #ffffff;
  display: block;
  height: 6px;
  width: 6px;
}

.content-center__title {
  color: #ffffff;
  font-family: 'Geist', Arial, sans-serif;
  font-size: 38px;
  font-weight: 800;
  letter-spacing: 0.152px;
  line-height: 1.08;
  margin: 0;
  position: relative;
  z-index: 1;
}

.content-center__body {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 34px 25px 36px;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}

.content-center__body::-webkit-scrollbar {
  display: none;
}

.content-center__rail {
  display: inline-flex;
  flex-wrap: nowrap;
  gap: 24px;
  width: max-content;
}

.content-center__rail > * {
  flex: 0 0 auto;
}

/*
 * Same Webflow slot flattening issue as Trending Features:
 * slot children arrive wrapped in a single slotted node.
 */
.content-center__rail ::slotted(*) {
  display: contents;
}

@media (max-width: 767px) {
  .content-center {
    background: #e0f3ff;
    border-radius: 0;
  }

  .content-center__header {
    min-height: 93px;
    padding: 43px 38px 15px;
  }

  .content-center__header-art {
    height: 168px;
    left: 0;
    top: -10px;
    width: 150px;
  }

  .content-center__header-mark {
    gap: 6px;
    grid-template-columns: repeat(2, 5px);
    right: 30px;
    top: 18px;
  }

  .content-center__header-mark span {
    height: 5px;
    width: 5px;
  }

  .content-center__title {
    font-size: 22px;
    letter-spacing: 0.088px;
    line-height: 1.2;
    max-width: 220px;
  }

  .content-center__body {
    padding: 16px 0 20px 70px;
    scroll-padding-left: 70px;
    scroll-snap-type: x mandatory;
    touch-action: pan-x;
  }

  .content-center__rail {
    gap: 14px;
  }
}

