p.meta-headline {
  /*margin-bottom: 10px;*/
  color: var(--v3-secondary-color);
  display: block;
  margin-inline: auto;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;

  &+h2 {
    margin-top: 0;
  }
}

.hero p.meta-headline {
  text-align: left;
}


.image-text-cards {
  display: flex;
  flex-flow: row;
  gap: 20px;

  >div {
    border: 1px solid #E3E3E3;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 7px #00000008;
    overflow: hidden;

    .title {
      font-size: 24px;
      font-weight: 600;
    }

    .content>p:last-child {
      strong {
        font-weight: unset;
      }

      font-style: oblique;
    }

    .content {
      padding: 20px;
    }
  }

  @media (max-width: 768px) {
    & {
      flex-flow: column;

      >div {
        max-width: 360px;
        margin-inline: auto;
      }
    }
  }
}