.service-card h3 {
  min-height: 2.8em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-intro .project-method {
  margin-top: 14px;
  color: #475569;
  font-size: .9rem;
  line-height: 1.65;
}

.project-card {
  display: flex;
  flex-direction: column;
}

.project-card > div {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.project-card .project-focus {
  margin: 10px 0 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  color: #d7e2ec;
  font-size: .72rem;
  line-height: 1.55;
}

.project-card .project-location {
  margin-top: auto;
}

.service-faq {
  padding: 88px 0;
  background: #f5f8fa;
  color: #071a2d;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(240px, .72fr) minmax(0, 1.28fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 112px;
}

.faq-intro h2 {
  margin: 8px 0 18px;
  font-size: clamp(2rem, 3.6vw, 3.25rem);
  line-height: 1.08;
}

.faq-intro > p:last-of-type {
  max-width: 38rem;
  color: #526171;
  line-height: 1.7;
}

.faq-intro a {
  display: inline-flex;
  margin-top: 22px;
  color: #2f8f2f;
  font-weight: 700;
}

.faq-list {
  border-top: 1px solid #cfdae2;
}

.faq-list details {
  border-bottom: 1px solid #cfdae2;
}

.faq-list summary {
  position: relative;
  padding: 22px 52px 22px 0;
  cursor: pointer;
  list-style: none;
  color: #071a2d;
  font-size: 1.03rem;
  font-weight: 750;
  line-height: 1.45;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 17px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid #9bcf76;
  border-radius: 50%;
  color: #2f8f2f;
  font-size: 1.35rem;
  font-weight: 500;
  transition: transform .2s ease, background .2s ease;
}

.faq-list details[open] summary::after {
  content: "−";
  background: #8ccc4c;
  color: #061a2d;
}

.faq-list summary:focus-visible {
  outline: 3px solid rgba(93, 178, 65, .38);
  outline-offset: 5px;
}

.faq-list details p {
  max-width: 52rem;
  margin: -4px 52px 22px 0;
  color: #526171;
  line-height: 1.75;
}

@media (max-width: 800px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .faq-intro {
    position: static;
  }

  .service-faq {
    padding: 64px 0;
  }
}
