.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media only screen and (min-width: 768px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 1200px) {
  .cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
.cards__preview-notice {
  grid-column: 1/-1;
  padding: 1rem;
  background: #f0f0f0;
  border: 1px dashed #ccc;
  text-align: center;
}

.card {
  position: relative;
  display: flex;
  overflow: hidden;
  isolation: isolate;
  color: #FFFFFF;
  padding-left: clamp(28px, 7vw, 40px);
  padding-right: clamp(28px, 7vw, 40px);
  font-family: "din-2014", sans-serif;
}
@media only screen and (min-width: 1200px) {
  .card {
    min-height: 725px;
  }
}
.card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  z-index: -2;
  transform: scale(1.2);
  transform-origin: center center;
  transition: transform 1.1s ease-out;
}
.card:hover .card__bg, .card:focus-within .card__bg {
  transform: scale(1);
}
.card__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(144.566deg, rgba(0, 47, 63, 0.4) 5.255%, rgba(233, 14, 139, 0.4) 79.418%), linear-gradient(90deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.35) 100%);
}
.card__overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(144.531deg, rgba(0, 47, 63, 0.6) 5.128%, rgba(233, 14, 139, 0.6) 79.237%), linear-gradient(90deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.65) 100%);
  opacity: 0;
  transition: opacity 0.4s ease-out;
}
.card:hover .card__overlay::after, .card:focus-within .card__overlay::after {
  opacity: 1;
}
.card__inner {
  display: flex;
  flex-direction: column;
  gap: 60px;
  width: 100%;
  padding-top: 115px;
  padding-bottom: 60px;
}
.card__icon {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  transition: width 0.3s ease-out, height 0.3s ease-out;
}
.card:hover .card__icon, .card:focus-within .card__icon {
  width: 85px;
  height: 85px;
}
.card__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: auto;
}
.card__title {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}
.card__byline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin: 0;
  font-size: 18px;
  line-height: 24px;
  color: #FFFFFF;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}
.card__byline * {
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}
.card__byline strong {
  font-weight: 700;
}
.card__byline-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.card__byline-sep {
  color: #F7941D;
  font-weight: 700;
  font-size: 18px;
}
.card__tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 4px;
  background: #F7941D;
  color: #002F3F;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 24px;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}
.card__date {
  margin: 0;
  font-size: 18px;
  line-height: 24px;
  color: #FFFFFF;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}
.card__copy {
  margin: 0;
  font-size: 18px;
  line-height: 36px;
  color: #FFFFFF;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}
.card__cta {
  align-self: flex-start;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}
@media only screen and (min-width: 768px) {
  .card--state-survey {
    padding-right: 100px;
  }
}
.card--state-survey .card__inner {
  padding-top: 40px;
}
@media only screen and (min-width: 768px) {
  .card--state-survey .card__inner {
    gap: 115px;
  }
}
.card--state-survey .card__content {
  margin-top: 0;
}
@media only screen and (min-width: 768px) {
  .card--state-survey .card__content {
    gap: 50px;
  }
}
@media only screen and (min-width: 768px) {
  .card--state-survey .card__actions {
    gap: 30px;
  }
}
.card__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
@media only screen and (max-width: 767px) {
  .card {
    padding-left: 20px;
    padding-right: 20px;
  }
  .card__overlay {
    background-image: linear-gradient(146.166deg, rgba(0, 47, 63, 0.8) 0%, rgba(233, 14, 139, 0.8) 100%), linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
  }
  .card__inner {
    gap: 20px;
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .card__icon {
    width: 53px;
    height: 53px;
  }
  .card__content {
    gap: 20px;
  }
  .card__byline {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
    font-size: 16px;
    line-height: 24px;
  }
  .card__byline-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    white-space: normal;
  }
  .card__byline-sep {
    display: none;
  }
  .card__copy {
    font-size: 16px;
    line-height: 24px;
  }
}

/*# sourceMappingURL=feature-cards.css.map */
