.block--insight-cards {
  background-color: #f6f6f9;
  padding: 40px 0;
  width: 100%
}

@media screen and (min-width: 920px) {
  .block--insight-cards {
    padding: 80px 0 100px
  }
}

@media screen and (min-width: 1250px) {
  .block--insight-cards {
    padding: 0 0 140px
  }
}

.insight-cards__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  margin-bottom: 40px
}

.insight-cards__heading {
  font-family: "Axiforma", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  color: #50565b;
  margin: 0;
  max-width: 1066px
}

@media screen and (min-width: 782px) {
  .insight-cards__heading {
    font-size: 48px;
    line-height: 54px
  }
}

@media screen and (min-width: 1250px) {
  .insight-cards__heading {
    font-size: 60px;
    line-height: 65px
  }
}

.insight-cards__description {
  font-family: "TT Norms Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #1b1b1b;
  margin: 0;
}

@media screen and (min-width: 782px) {
  .insight-cards__description {
    font-size: 18px;
    line-height: 28px
  }
}

@media screen and (min-width: 1250px) {
  .insight-cards__description {
    font-size: 20px;
    line-height: 30px
  }
}

.insight-cards__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  width: 100%;
  align-items: stretch
}

.insight-cards__grid--has-open {
  align-items: start
}

@media screen and (min-width: 1024px) {
  .insight-cards__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px
  }
}

.insight-card {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
  transition: box-shadow .3s ease
}

.insight-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, .08)
}

.insight-card__top {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.insight-card__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #f6f6f9;
  border-radius: 39px;
  padding: 0 10px;
  width: fit-content
}

a.insight-card__label {
  text-decoration: none;
  color: inherit;
  transition: background-color 0.2s ease;
}

a.insight-card__label:hover,
a.insight-card__label:focus {
  background-color: #e0e0e6;
}

.insight-card__label-primary {
  font-family: "Axiforma", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #000;
  white-space: nowrap
}

.insight-card__label-divider {
  width: 1px;
  height: 16px;
  background-color: #1b1b1b;
  flex-shrink: 0
}

.insight-card__label-secondary {
  font-family: "Axiforma", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #1b1b1b;
  white-space: nowrap
}

.insight-card__text {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.insight-card__title {
  font-family: "Axiforma", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  color: #50565b;
  margin: 0
}

@media screen and (min-width: 1250px) {
  .insight-card__title {
    font-size: 24px;
    line-height: 34px
  }
}

.insight-card__desc {
  font-family: "TT Norms Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #1b1b1b;
  margin: 0
}

@media screen and (min-width: 1250px) {
  .insight-card__desc {
    font-size: 18px;
    line-height: 26px
  }
}

.insight-card__footer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px
}

.insight-card__rule {
  flex: 1 0 0;
  height: 1px;
  background-color: #d8dce0
}

.insight-card svg {
  flex-shrink: 0
}

.insight-card__toggle-icon {
  transition: transform .3s ease
}

@media(prefers-reduced-motion: reduce) {
  .insight-card__toggle-icon {
    transition: none
  }
}

.insight-card--open .insight-card__toggle-icon {
  transform: rotate(180deg)
}

.insight-card__expanded {
  width: 100%;
  margin-top: 0
}

.insight-card__expanded-inner {
  background-color: #f6f6f9;
  border-radius: 4px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px
}

.insight-card__long-text {
  font-family: "TT Norms Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #1b1b1b
}

@media screen and (min-width: 1250px) {
  .insight-card__long-text {
    font-size: 18px;
    line-height: 26px
  }
}

.insight-card__long-text p {
  margin: 0 0 16px
}

.insight-card__long-text p:last-child {
  margin-bottom: 0
}

.insight-card__long-text ul,
.insight-card__long-text ol {
  margin: 0 0 16px;
  padding-left: 20px
}

.insight-card__long-text ul li,
.insight-card__long-text ol li {
  margin-bottom: 4px
}

.insight-card__long-text ul li:last-child,
.insight-card__long-text ol li:last-child {
  margin-bottom: 0
}

.insight-card__figure {
  display: flex;
  flex-direction: column;
  gap: 2px
}

.insight-card__figure-image {
  border-radius: 8px;
  overflow: hidden;
  background-color: #fff;
  padding: 10px;
  aspect-ratio: 16/9
}

.insight-card__figure-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center
}

.insight-card__figure-caption {
  font-family: "Axiforma", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #1b1b1b;
  margin: 0
}

.insight-card__expanded-ctas {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap
}

.insight-card__btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Axiforma", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  color: #2154d7;
  background-color: rgba(0, 0, 0, 0);
  border: 1.5px solid #2154d7;
  border-radius: 17px;
  padding: 6px 15px;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease
}

.insight-card__btn-outline:hover,
.insight-card__btn-outline:focus {
  background-color: #2154d7;
  color: #fff
}

.insight-card__btn-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Axiforma", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  color: #2154d7;
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s ease
}

.insight-card__btn-link:hover,
.insight-card__btn-link:focus {
  color: #0b2662
}

.insight-card__btn-link svg {
  flex-shrink: 0
}

.block--insight-cards .insight-card__toggle,
.block--insight-cards .insight-card__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Axiforma", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: #2154d7;
  text-decoration: none;
  white-space: nowrap;
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  border: 0;
  border-radius: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  box-shadow: none;
  transition: color .2s ease
}

@media screen and (min-width: 1250px) {

  .block--insight-cards .insight-card__toggle,
  .block--insight-cards .insight-card__link {
    font-size: 18px;
    line-height: 26px;
    font-weight: 400
  }
}

.block--insight-cards .insight-card__toggle:hover,
.block--insight-cards .insight-card__toggle:focus,
.block--insight-cards .insight-card__link:hover,
.block--insight-cards .insight-card__link:focus {
  color: #0b2662;
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  border: 0
}

.block--insight-cards .insight-card__toggle:focus-visible,
.block--insight-cards .insight-card__link:focus-visible {
  outline: 2px solid #2154d7;
  outline-offset: 2px
}

.block--insight-cards .insight-card__toggle:focus:not(:focus-visible),
.block--insight-cards .insight-card__link:focus:not(:focus-visible) {
  outline: none
}

.block--insight-cards .insight-card__toggle svg,
.block--insight-cards .insight-card__link svg {
  flex-shrink: 0
}

.block--insight-cards .insight-card__btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Axiforma", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  color: #2154d7;
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  border: 1.5px solid #2154d7;
  border-radius: 17px;
  padding: 6px 15px;
  margin: 0;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  box-shadow: none;
  transition: background-color .2s ease, color .2s ease
}

.block--insight-cards .insight-card__btn-outline:hover,
.block--insight-cards .insight-card__btn-outline:focus {
  background-color: #2154d7;
  color: #fff;
  border-color: #2154d7
}

/* SVG watermark centered on block when any card is open */
.block--insight-cards:has(.insight-card--open) {
  background-image: url('./card-bg.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 918px 884px;
}

@media (max-width: 767px) {
  .block--insight-cards .insight-card__toggle,
  .block--insight-cards .insight-card__link {
    font-size: 14px;
    line-height: 24px;
  }

  .insight-card__label-primary {
    font-size: 12px;
    line-height: 22px;
  }

  .insight-card__label-secondary {
    font-size: 11px;
    line-height: 22px;
  }
}