/* Standard project detail page (layout: project). */
.project-hero {
  margin: 0 0 22px;
}

.project-hero img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: var(--rounded);
  box-shadow: var(--shadow);
}

.project-hero figcaption {
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--gray);
  text-align: center;
}

.project-page-title .icon {
  color: var(--primary);
}

.project-lead {
  max-width: 780px;
  margin: 0 auto 6px;
  text-align: center;
  font-size: var(--large);
  line-height: 1.5;
  font-weight: var(--thin);
}

/* figure grid inside a project page */
.figure-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 16px 0;
}

.figure-grid .fig {
  margin: 0;
}

.figure-grid .fig img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: var(--rounded);
  box-shadow: var(--shadow);
}

.figure-grid .fig figcaption {
  margin-top: 7px;
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--gray);
  text-align: left;
}

.project-back {
  margin-top: 26px;
}

.project-back a {
  color: var(--primary);
  text-decoration: none;
  font-weight: var(--semi-bold);
}

.project-back a:hover {
  text-decoration: underline;
}

.project-back .icon {
  margin-right: 0.5em;
  color: var(--primary);
}

/* linked callout titles on the Research index */
.project-title a {
  color: var(--primary);
  text-decoration: none;
}

.project-title a:hover {
  text-decoration: underline;
}

@media (max-width: 760px) {
  .figure-grid {
    grid-template-columns: 1fr;
  }
  .figure-grid .fig img {
    height: 220px;
  }
  .project-hero img {
    height: 240px;
  }
}

/*# sourceMappingURL=project-page.css.map */