.lpf-team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.lpf-team-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--lpf-line);
  border-bottom: 4px solid var(--lpf-green);
  box-shadow: 0 10px 30px rgba(0, 50, 27, .07);
}

.lpf-team-photo {
  display: grid;
  place-items: center;
  height: 310px;
  overflow: hidden;
  background: #dce9df;
}

.lpf-team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lpf-team-photo.is-placeholder {
  background: linear-gradient(135deg, #128049, #003d22);
}

.lpf-team-photo.is-placeholder span {
  color: rgba(255, 255, 255, .82);
  font-family: Newsreader, Georgia, serif;
  font-size: 4rem;
  font-weight: 800;
}

.lpf-team-copy {
  padding: 24px;
}

.lpf-team-copy > span,
.lpf-form-heading > span,
.lpf-correspondent-intro > span {
  color: #a77d00;
  font-size: .64rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.lpf-team-copy h2 {
  margin: 7px 0 3px;
  font-family: Newsreader, Georgia, serif;
  font-size: 1.65rem;
  line-height: 1.08;
}

.lpf-team-copy small {
  color: var(--lpf-green);
  font-weight: 800;
}

.lpf-team-copy p {
  margin: 16px 0 0;
  color: var(--lpf-muted);
  font-size: .84rem;
}

.lpf-team-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
}

.lpf-team-contact a {
  padding: 7px 10px;
  background: #edf4ef;
  color: var(--lpf-green);
  font-size: .7rem;
  font-weight: 900;
}

.lpf-correspondent-layout {
  display: grid;
  grid-template-columns: minmax(260px, .75fr) minmax(0, 1.25fr);
  gap: 30px;
  align-items: start;
}

.lpf-correspondent-intro {
  position: sticky;
  top: 90px;
  padding: 36px;
  background: var(--lpf-dark);
  color: #fff;
}

.lpf-correspondent-intro > span {
  color: var(--lpf-yellow);
}

.lpf-correspondent-intro h2,
.lpf-form-heading h2 {
  margin: 9px 0 14px;
  font-family: Newsreader, Georgia, serif;
  font-size: 2.25rem;
  line-height: 1;
}

.lpf-correspondent-intro p,
.lpf-correspondent-intro li {
  color: #c7d9ce;
  font-size: .87rem;
}

.lpf-correspondent-intro ul {
  margin: 23px 0;
  padding-left: 18px;
}

.lpf-correspondent-intro li {
  margin: 9px 0;
}

.lpf-correspondent-note {
  margin: 25px -36px -36px;
  padding: 18px 36px;
  background: #002f1b;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.lpf-correspondent-form {
  scroll-margin-top: 90px;
  padding: 36px;
  background: #f5f7f4;
  border: 1px solid var(--lpf-line);
}

.lpf-form-heading {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--lpf-line);
}

.lpf-form-heading h2 {
  margin-bottom: 8px;
  color: var(--lpf-dark);
}

.lpf-form-heading p {
  margin: 0;
  color: var(--lpf-muted);
  font-size: .8rem;
}

.lpf-correspondent-form label {
  display: block;
  margin-bottom: 15px;
}

.lpf-correspondent-form label > span {
  display: block;
  margin-bottom: 6px;
  color: #536159;
  font-size: .67rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.lpf-correspondent-form input,
.lpf-correspondent-form select,
.lpf-correspondent-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid #b9c6bd;
  background: #fff;
  color: var(--lpf-ink);
  font: inherit;
}

.lpf-correspondent-form textarea {
  resize: vertical;
}

.lpf-correspondent-form .lpf-form-grid .is-wide {
  grid-column: 1 / -1;
}

.lpf-correspondent-form .lpf-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #536159;
  font-size: .76rem;
}

.lpf-correspondent-form .lpf-consent input {
  width: auto;
  min-height: 0;
  margin-top: 3px;
}

.lpf-correspondent-form button {
  min-height: 50px;
  padding: 0 24px;
  border: 0;
  background: var(--lpf-yellow);
  color: var(--lpf-dark);
  font-weight: 900;
  cursor: pointer;
}

.lpf-correspondent-form button:hover {
  background: #ffd500;
}

@media (max-width: 900px) {
  .lpf-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lpf-correspondent-layout {
    grid-template-columns: 1fr;
  }

  .lpf-correspondent-intro {
    position: static;
  }
}

@media (max-width: 620px) {
  .lpf-team-grid {
    grid-template-columns: 1fr;
  }

  .lpf-team-photo {
    height: 285px;
  }

  .lpf-correspondent-intro,
  .lpf-correspondent-form {
    padding: 25px 20px;
  }

  .lpf-correspondent-note {
    margin: 22px -20px -25px;
    padding: 17px 20px;
  }
}
