.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;
  }
}

.trending-features {
  background: #f3f3f4;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.trending-features *,
.trending-features *::before,
.trending-features *::after {
  box-sizing: border-box;
}

.trending-features__header {
  background: #001844;
  border-bottom-right-radius: 20px;
  border-top-left-radius: 20px;
  display: inline-flex;
  max-width: min(100%, 590px);
  padding: 20px 34px 16px;
}

.trending-features__title {
  color: #34c9ff;
  font-family: 'Geist', Arial, sans-serif;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 0.136px;
  line-height: 1.2;
  margin: 0;
  max-width: 560px;
}

.trending-features__items {
  overflow-y: hidden;
  overflow-x: auto;
  padding: 38px 26px 36px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}

.trending-features__items::-webkit-scrollbar {
  display: none;
}

.trending-features__rail {
  display: inline-flex;
  flex-wrap: nowrap;
  gap: 28px;
  width: max-content;
}

.trending-features__rail > * {
  flex: 0 0 auto;
}

/*
 * Webflow renders each code component as a <code-island> with display: contents
 * and wraps all slot children in a single <div slot="items">. That wrapper is the
 * only thing the rail sees, so cards stack vertically inside it.
 *
 * ::slotted() targets that wrapper from inside the shadow DOM. Setting it to
 * display: contents flattens it so the individual <code-island> card hosts
 * become the rail's direct flex children. Each host is also display: contents,
 * so its inner <article class="content-card"> (already flex: 0 0 268px) becomes
 * the actual flex item the rail lays out.
 */
.trending-features__rail ::slotted(*) {
  display: contents;
}

@media (max-width: 767px) {
  .trending-features {
    border-radius: 0;
    overflow: hidden;
  }

  .trending-features__header {
    border-bottom-right-radius: 0;
    border-top-left-radius: 0;
    display: block;
    max-width: none;
    padding: 18px 38px 12px;
  }

  .trending-features__title {
    font-size: 22px;
    letter-spacing: 0.088px;
    max-width: 220px;
  }

  .trending-features__items {
    padding: 16px 0 20px 23px;
    scroll-padding-left: 23px;
    scroll-snap-type: x mandatory;
    touch-action: pan-x;
  }

  .trending-features__rail {
    gap: 14px;
  }
}

