section.block.block-cards-content-and-images .container .title {
  margin: auto;
  max-width: var(--col-10);
}
section.block.block-cards-content-and-images .container .title h2 {
  text-align: center;
  margin-bottom: 20px;
}
section.block.block-cards-content-and-images .container > .text {
  text-align: center;
  max-width: var(--col-10);
  margin: auto;
}
section.block.block-cards-content-and-images .container .cards {
  margin-top: var(--spacing-3-xl);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-l);
}
section.block.block-cards-content-and-images .container .cards .card {
  display: flex;
  justify-content: space-between;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  section.block.block-cards-content-and-images .container .cards .card {
    flex-direction: column;
  }
}
section.block.block-cards-content-and-images .container .cards .card:nth-child(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  section.block.block-cards-content-and-images .container .cards .card:nth-child(even) {
    flex-direction: column;
  }
}
section.block.block-cards-content-and-images .container .cards .card .content {
  width: var(--col-5);
}
@media screen and (max-width: 768px) {
  section.block.block-cards-content-and-images .container .cards .card .content {
    width: 100%;
  }
  section.block.block-cards-content-and-images .container .cards .card .content .mobile {
    display: block !important;
  }
}
@media screen and (min-width: 768px) {
  section.block.block-cards-content-and-images .container .cards .card .content .desktop {
    display: block !important;
  }
}
section.block.block-cards-content-and-images .container .cards .card .content h3 {
  margin-bottom: var(--spacing-xl);
  margin-top: 0px;
}
section.block.block-cards-content-and-images .container .cards .card .content .cta-container {
  display: none;
  margin-top: var(--spacing-m);
}
section.block.block-cards-content-and-images .container .cards .card .image {
  width: var(--col-6);
  height: 100%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  section.block.block-cards-content-and-images .container .cards .card .image {
    width: 100%;
  }
}
section.block.block-cards-content-and-images .container .cards .card .image img {
  width: 100%;
  height: auto;
}
section.block.block-cards-content-and-images .container .cards .card .storylane-demo {
  width: var(--col-6);
}
@media screen and (max-width: 768px) {
  section.block.block-cards-content-and-images .container .cards .card .storylane-demo {
    display: none;
  }
}