.portal-teasers > a {
  min-height: 330px;
  padding: 64px clamp(52px, 6.5vw, 110px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  transition: background-color 220ms ease, color 220ms ease;
}

.portal-teasers > a::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 72px;
  height: 5px;
  background: var(--coral);
  transition: width 320ms cubic-bezier(.2,.75,.2,1);
}

.portal-teasers > a:hover::after,
.portal-teasers > a:focus-visible::after {
  width: 100%;
}

.portal-teasers span {
  margin-bottom: 24px;
}

.portal-teasers h3 {
  max-width: 460px;
  margin: 0;
  font-size: clamp(34px, 2.7vw, 44px);
  line-height: 1.2;
  letter-spacing: -.035em;
  white-space: nowrap;
}

.portal-teasers p {
  max-width: 390px;
  margin: 22px 0 0;
  font-size: 14px;
  line-height: 1.8;
}

.portal-teasers i {
  right: clamp(38px, 4vw, 72px);
  bottom: 42px;
  font-size: 34px;
  line-height: 1;
  transition: transform 220ms ease;
}

.portal-teasers > a:hover i {
  transform: translate(5px, -5px);
}

footer {
  min-height: 210px;
  padding-top: 58px;
  padding-bottom: 58px;
  grid-template-columns: 1.15fr 1fr 1.15fr;
}

footer p {
  max-width: 340px;
  margin: 0;
  line-height: 1.8;
}

footer > div small {
  max-width: 330px;
  text-align: right;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .portal-teasers > a {
    min-height: 250px;
    padding: 48px 24px 58px;
  }

  .portal-teasers span {
    margin-bottom: 18px;
  }

  .portal-teasers h3 {
    font-size: 34px;
    white-space: normal;
  }

  .portal-teasers p {
    max-width: 320px;
    margin-top: 16px;
  }

  .portal-teasers i {
    right: 24px;
    bottom: 26px;
  }

  footer {
    min-height: 0;
    padding: 52px 20px;
    gap: 24px;
  }

  footer > div small {
    text-align: left;
  }
}
