/* fund page */
/* rhythm */
section {
  padding-block: clamp(43px, 5.2vw, 75px);
}

.hero {
  padding-block: 0;
}


/* opening statement */
.fnd-lede {
  max-width: 34ch;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.9rem, 3.6vw, 3.1rem);
  line-height: 1.16;
  letter-spacing: -.018em;
  color: var(--ink);
}

.fnd-lede+p {
  margin-top: clamp(1.6rem, 2.6vw, 2.2rem);
  max-width: 60ch;
  font-size: clamp(1.04rem, 1.2vw, 1.15rem);
  color: var(--body);
}


/* heading left, prose right */
.fnd-split {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(1.6rem, 6vw, 5.5rem);
  align-items: start;
}

.fnd-split h2 {
  font-weight: 400;
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
  line-height: 1.12;
  max-width: 15ch;
}

.fnd-split p {
  font-size: clamp(1.02rem, 1.15vw, 1.12rem);
  color: var(--body);
  max-width: 62ch;
}

.fnd-split p+p {
  margin-top: 1.1rem;
}


/* key terms */
.fnd-terms {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.6rem, 3vw, 2.8rem);
}

.fnd-term b {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  line-height: 1;
  color: var(--wine);
}

.fnd-term b i {
  font-style: normal;
  font-size: .48em;
  color: var(--rose);
}

.fnd-term span {
  display: block;
  margin-top: .9rem;
  font-size: 1.06rem;
  line-height: 1.4;
  color: var(--body);
}


/* term segments */
.fnd-time {
  display: flex;
  gap: 4px;
  margin-top: clamp(1.8rem, 3vw, 2.6rem);
}

.fnd-time>div {
  min-width: 0;
  padding: clamp(1.1rem, 1.8vw, 1.5rem) clamp(.9rem, 1.4vw, 1.3rem);
  border-radius: 2px;
}

.fnd-time .t-1 {
  background: var(--wine);
  color: #fff;
}

.fnd-time .t-2 {
  background: rgba(148, 50, 67, .13);
}

.fnd-time .t-3 {
  background: rgba(148, 50, 67, .06);
}

.fnd-time b {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.2rem, 2.1vw, 1.7rem);
  line-height: 1.1;
  color: var(--wine);
}

.fnd-time .t-1 b {
  color: #fff;
}

.fnd-time span {
  display: block;
  margin-top: .5rem;
  font-size: .92rem;
  line-height: 1.4;
  color: var(--body);
}

.fnd-time .t-1 span {
  color: rgba(255, 255, 255, .84);
}


/* closing */
.fnd-close {
  max-width: 30ch;
  font-weight: 400;
}

@media (max-width: 900px) {
  .fnd-split {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .fnd-split h2 {
    max-width: 22ch;
  }

  .fnd-terms {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 1.6rem;
  }

  .fnd-time {
    flex-direction: column;
  }

}

@media (max-width: 560px) {
  .fnd-terms {
    grid-template-columns: 1fr;
  }

}
