.ftpromo--headline {
  border-bottom: 1px solid #e4e3e3;
  font-family: var(--font-primary);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  font-size: 20px;
  margin-bottom: 0.5em;
  padding-bottom: 0.2em;
  color: #595454;
}

.ftpromo--container {
  max-width: 960px;
  margin: 0 auto 3em;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}

.ftpromo--card {
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 7px 5px -5px rgba(0, 0, 0, 0.08);
  transition: box-shadow ease 0.25s, transform ease 0.25s;
  box-sizing: border-box;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  position: relative;
}

.ftpromo--card:hover {
  transform: translate(0, -0.125em);
  box-shadow: 0 0.25em 12px -4px rgba(0, 0, 0, 0.15);
  transition: box-shadow ease 0.25s, transform ease 0.25s;
}

.ftpromo--card img {
  min-height: 200px;
  max-height: 200px;
  width: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.ftpromo--copy {
  padding: 16px;
  color: #595454;
  font-family: var(--font-primary); 
  text-align: left;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  justify-content: center;
}

.ftpromo--copy p {
  display: -webkit-box;
  line-height: 1.2rem;
  -webkit-line-clamp: 7;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0 0 16px;
  flex: 1 1 auto;
}

.ftpromo-cta {
  color: #1379c8;
  font-family: var(--font-primary);
  font-weight: var(--font-weight-semibold);
}

@media (min-width: 480px) {
  .ftpromo--container {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  .ftpromo--headline {
    margin-bottom: 1em;
  }
  .ftpromo--card:only-child {
    flex-direction: row;
    width: 100%;
  }
  .ftpromo--card:only-child img {
    width: 35%;
    max-height: 100%;
  }
  .ftpromo--card:only-child .ftpromo--copy {
    width: 65%;
    padding: 16px 32px;
  }
  .ftpromo--card:only-child .ftpromo--copy p {
    font-size: 20px;
    line-height: 1.5rem;
    flex: none;
  }
}

@media (min-width: 768px) {
  .ftpromo--card:only-child {
    height: 200px;
  }
  .ft--colcard__three {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .ftpromo--container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .ftpromo--card {
    width: 100%;
    margin: 0 0 16px;
  }
  .ftpromo--card:last-child {
    margin: 0;
  }
  .ftpromo-cta {
    font-weight: 600;
  }
}

@media all and (-ms-high-contrast: none) and (min-width: 480px), (-ms-high-contrast: active) and (min-width: 480px) {
  .ftpromo--container {
    margin: 0 -8px;
  }
  .ftpromo--card {
    width: calc(50% - 32px);
    margin: 0 8px 16px;
  }
  .ftpromo--card:last-child {
    margin: 0 8px 16px;
  }
  .ftpromo--card:first-child:nth-last-child(2),
  .ftpromo--card:first-child:nth-last-child(2) ~ .ftpromo--card {
    width: calc(50% - 16px);
  }
  .ftpromo--card:first-child:nth-last-child(3),
  .ftpromo--card:first-child:nth-last-child(3) ~ .ftpromo--card {
    width: calc(33.33% - 32px);
  }
}

@media all and (-ms-high-contrast: none) and (min-width: 768px), (-ms-high-contrast: active) and (min-width: 768px) {
  .ftpromo--card {
    width: calc(25% - 32px);
  }
}
/*# sourceMappingURL=multi-card-promo.css.map */