section.block.block-cards-image-and-content .container h2 {
  text-align: center;
  margin: auto;
  max-width: var(--col-10);
}
section.block.block-cards-image-and-content .container > .content {
  max-width: var(--col-10);
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 768px) {
  section.block.block-cards-image-and-content .container > .content {
    max-width: 100%;
  }
}
section.block.block-cards-image-and-content .container .cards {
  margin-top: var(--spacing-3-xl);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-l);
}
@media screen and (max-width: 768px) {
  section.block.block-cards-image-and-content .container .cards {
    grid-template-columns: repeat(1, 1fr);
    margin-top: var(--spacing-xl);
  }
}
section.block.block-cards-image-and-content .container .cards .tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
section.block.block-cards-image-and-content .container .cards .tags .tag {
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--primary);
  padding: var(--spacing-s) var(--spacing-m);
  font-weight: 500;
  background-color: #00020C;
  display: block;
  width: fit-content;
  font-size: 14px;
  margin-bottom: 12px;
  padding: 8px 16px;
}
section.block.block-cards-image-and-content .container .cards .card {
  padding: 0px;
  overflow: hidden;
  display: block;
  align-items: inherit;
  transition: 0.25s ease-in-out;
}
section.block.block-cards-image-and-content .container .cards .card.width-3-columns {
  grid-column: span 3;
}
@media screen and (max-width: 768px) {
  section.block.block-cards-image-and-content .container .cards .card.width-3-columns {
    grid-column: span 1;
  }
}
@media screen and (min-width: 768px) {
  section.block.block-cards-image-and-content .container .cards .card.width-3-columns {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  section.block.block-cards-image-and-content .container .cards .card.width-3-columns .image-container {
    width: 50%;
    height: 100%;
  }
  section.block.block-cards-image-and-content .container .cards .card.width-3-columns .content {
    width: 49%;
  }
}
section.block.block-cards-image-and-content .container .cards .card:hover .content .title .arrow {
  transform: translateX(5px) translateY(-5px);
}
section.block.block-cards-image-and-content .container .cards .card:hover .image-container img {
  transform: scale(1.04);
}
section.block.block-cards-image-and-content .container .cards .card .image-container {
  aspect-ratio: 16/9;
  background-color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.block.block-cards-image-and-content .container .cards .card .image-container.cover img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.3s;
}
section.block.block-cards-image-and-content .container .cards .card .image-container img {
  max-width: 250px;
  max-height: 70px;
  object-fit: contain;
  object-position: center;
  transition: all 0.3s;
}
section.block.block-cards-image-and-content .container .cards .card .content {
  padding: var(--spacing-xl);
}
section.block.block-cards-image-and-content .container .cards .card .content .title {
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
}
section.block.block-cards-image-and-content .container .cards .card .content .title h4 {
  margin: 0;
}
section.block.block-cards-image-and-content .container .cards .card .content .title .arrow {
  transition: 0.25s ease-in-out;
  max-height: 30px;
}