@charset "UTF-8";
/* interior pages in the first-run language — Modernist: flush left, 2px rules, 0 radius */
.fr-page {
  --pad: max(40px, calc((100% - 1200px) / 2));
  text-align: left;
  font-family: var(--body);
}

.fr-page [hidden],
.citation.fr-pub[hidden] {
  display: none !important;
}

.fr-page a {
  color: var(--primary);
}

.fr-page a:hover {
  color: var(--text);
}

/* full-bleed row, page measure inside */
.fr-strip {
  padding: 36px var(--pad);
  border-bottom: 2px solid var(--divider);
}

.fr-strip-last {
  border-bottom: none;
}

.fr-eyebrow {
  margin: 0;
  font-family: var(--heading);
  font-weight: var(--bold);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: left;
  color: var(--primary);
}

.fr-title {
  margin: 14px 0 16px;
  max-width: 22ch;
  font-family: var(--heading);
  font-weight: var(--bold);
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  text-align: left;
  text-transform: none;
}

.fr-intro {
  margin: 0;
  max-width: 72ch;
  font-size: 1.05rem;
  line-height: 1.55;
  text-align: left;
}

/* head with an aside panel to its right */
.fr-head-split {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: end;
}

/* the block panel used for calls to action */
.fr-ink {
  display: flex;
  flex-direction: column;
  padding: 22px 24px;
  background: var(--panel);
  color: var(--panel-ink);
}
.fr-ink a:not(.fr-btn) {
  color: var(--panel-ink);
}
.fr-ink .fr-eyebrow {
  color: var(--panel-ink);
}
.fr-ink h3 {
  color: var(--panel-ink);
}

.fr-ink-text {
  margin: 8px 0 14px;
  font-size: 13px;
  line-height: 1.6;
  text-align: left;
}

/* — research project rows — */
.fr-proj {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 40px;
  padding: 32px var(--pad);
  border-bottom: 2px solid var(--divider);
}

.fr-proj-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.fr-proj-title {
  margin: 8px 0 10px;
  font-family: var(--heading);
  font-weight: var(--bold);
  font-size: 1.5rem;
  line-height: 1.15;
  text-align: left;
}

.fr-proj-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 10px;
  border-top: 1px solid var(--divider);
}

/* the +/– disclosure */
.fr-plus {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 1px solid var(--divider);
  border-radius: 0;
  background: none;
  font-family: var(--heading);
  font-weight: var(--bold);
  font-size: 17px;
  line-height: 1;
  color: var(--text);
  text-decoration: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.fr-plus:hover {
  background: rgba(32, 30, 29, 0.07);
}
.fr-plus[aria-expanded=true] {
  background: var(--text);
  color: var(--background);
}

.fr-more {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--divider);
  /* the long text sits a step below the summary above it */
  font-size: 13px;
  line-height: 1.65;
  color: var(--dark-gray);
}
.fr-more p {
  margin: 0 0 10px;
  text-align: left;
}

.fr-more-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
}

/* — two/three column divided blocks — */
.fr-cols {
  display: grid;
  border-bottom: 2px solid var(--divider);
}
.fr-cols > * {
  padding: 28px var(--pad);
}

.fr-cols-2 {
  grid-template-columns: 1fr 1fr;
}
.fr-cols-2 > *:first-child {
  border-right: 2px solid var(--divider);
}

.fr-cols-2-1 {
  grid-template-columns: 2fr 1fr;
}
.fr-cols-2-1 > *:first-child {
  padding-right: 40px;
  border-right: 2px solid var(--divider);
}

.fr-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
.fr-cols-3 > * {
  padding: 26px 28px;
  border-right: 2px solid var(--divider);
}
.fr-cols-3 > *:first-child {
  padding-left: var(--pad);
}
.fr-cols-3 > *:last-child {
  padding-right: var(--pad);
  border-right: none;
}

.fr-cols p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  text-align: left;
}

/* the consortium panels: a half of the page each, side by side */
.fr-networks > * {
  padding-top: 24px;
  padding-bottom: 28px;
}

.fr-network-mark {
  display: block;
  margin-bottom: 16px;
}
.fr-network-mark img {
  height: 64px;
  width: auto;
  max-width: 100%;
}

.fr-network-title {
  margin: 0 0 8px;
  font-family: var(--heading);
  font-weight: var(--bold);
  font-size: 1.3rem;
  text-align: left;
}

.fr-network-text {
  margin: 0 0 10px;
  max-width: 52ch;
  font-size: 15px;
  line-height: 1.6;
  text-align: left;
}

/* — people — */
.fr-team {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* inset to the page measure so it lines up with the other sections */
  padding: 0 var(--pad);
  border-bottom: 2px solid var(--divider);
}

.fr-member {
  padding: 22px 24px;
  border-right: 1px solid var(--divider);
}
.fr-member:last-child {
  border-right: none;
}

.fr-member-figure {
  display: block;
  overflow: hidden;
  aspect-ratio: 1/1;
  background: var(--background-alt);
}
.fr-member-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.fr-member-figure:hover img {
  transform: scale(1.03);
}

.fr-member-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-top: 14px;
}

.fr-member-name {
  margin: 0 0 4px;
  font-family: var(--heading);
  font-weight: var(--bold);
  font-size: 1.05rem;
  line-height: 1.2;
  text-align: left;
}

.fr-member-role {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary-deep);
}

.fr-alumni {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 32px;
  padding-top: 6px;
}

.fr-alumni-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 0;
  border-bottom: 1px solid var(--divider);
}

.fr-alumni-name {
  font-family: var(--heading);
  font-weight: var(--bold);
  font-size: 15px;
}

.fr-alumni-note {
  font-size: 12px;
  color: var(--dark-gray);
}

/* — publications — */
.fr-pub-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--divider);
}

.citation.fr-pub {
  display: grid;
  grid-template-columns: 120px 1fr 160px;
  gap: 24px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid var(--divider);
  box-shadow: none;
  background: none;
}

.fr-pub-figure {
  width: 120px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--background-alt);
}
.fr-pub-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fr-pub-title {
  display: block;
  font-family: var(--heading);
  font-weight: var(--bold);
  font-size: 1.1rem;
  line-height: 1.25;
  text-decoration: none;
  color: var(--text);
}
.fr-pub-title:hover {
  color: var(--primary);
}

.fr-pub-authors {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.5;
}

.fr-pub-id {
  margin-top: 6px;
  font-size: 12px;
  color: var(--dark-gray);
}

.fr-pub-metrics {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 12px;
  min-height: 34px;
}
.fr-pub-metrics:empty {
  display: none;
}

.fr-pub-journal {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary-deep);
}

.fr-pub-year {
  margin-top: 4px;
  font-family: var(--heading);
  font-weight: var(--bold);
  font-size: 1.25rem;
}

.fr-pub-type {
  display: inline-block;
  margin-top: 8px;
  padding: 3px 9px;
  border: 1px solid var(--divider);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dark-gray);
}

/* — teaching — */
.fr-with-media {
  display: grid;
  /* film first, at 60% of the third it used to take; the text fills the rest */
  grid-template-columns: 1fr 4fr;
  gap: 40px;
  align-items: center;
}

/* the schools block sits on the highlight colour, end to end */
.fr-schools {
  background: var(--secondary);
  color: var(--text);
}
.fr-schools a {
  color: var(--primary-deep);
}
.fr-schools .fr-h6,
.fr-schools .fr-intro,
.fr-schools .fr-member-name,
.fr-schools p {
  color: var(--text);
}
.fr-schools .fr-member-role {
  color: var(--primary-deep);
}
.fr-schools .fr-cols {
  border-bottom: none;
}

.fr-film {
  width: 100%;
  height: auto;
  display: block;
  background: var(--background-alt);
  border: 1px solid var(--divider);
}

.fr-course {
  display: grid;
  grid-template-columns: 1fr 160px;
  gap: 16px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--divider);
}

.fr-course-name {
  font-family: var(--heading);
  font-weight: var(--bold);
  font-size: 1.05rem;
  text-decoration: none;
  color: var(--text);
}
.fr-course-name:hover {
  color: var(--primary);
}

.fr-course-note {
  margin-top: 4px;
  font-size: 13px;
  color: var(--dark-gray);
}

.fr-course-link {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary-deep);
}

.fr-figure-split {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 40px;
  padding: 32px var(--pad) 40px;
}

/* a cover shows whole, at its own aspect ratio, at 70% of the column height */
.fr-cover {
  align-self: start;
  width: 70%;
  height: auto;
  border: 1px solid var(--divider);
}

.fr-prose {
  font-size: 15px;
  line-height: 1.6;
}
.fr-prose p {
  margin: 0 0 12px;
  max-width: 70ch;
  text-align: left;
}

.fr-prose-alt {
  padding-top: 10px;
  border-top: 1px solid var(--divider);
  color: var(--dark-gray);
}

/* — member profile — */
.fr-profile {
  display: grid;
  /* 1/3 rail, 2/3 text */
  grid-template-columns: 1fr 2fr;
  gap: 44px;
}

.fr-profile-aside {
  display: flex;
  flex-direction: column;
  /* panels butt together, like the colour blocks elsewhere on the site */
  gap: 0;
  align-self: start;
}

/* the photo sits matted on the red panel, with a heavier bottom band */
.fr-profile-photo {
  padding: 14px 14px 34px;
  background: var(--primary);
}
.fr-profile-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  background: var(--background-alt);
}

/* links ride the light-blue panel, like the teaching schools block */
.fr-profile-links {
  padding: 18px 20px;
  background: var(--secondary);
  color: var(--text);
}
.fr-profile-links .fr-eyebrow {
  color: var(--text);
}
.fr-profile-links ul {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
}
.fr-profile-links li:last-child a {
  border-bottom: none;
}
.fr-profile-links a {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(32, 30, 29, 0.16);
  font-family: var(--heading);
  font-weight: var(--semi-bold);
  font-size: 14px;
  text-decoration: none;
  color: var(--primary-deep) !important;
}
.fr-profile-links a:hover {
  color: var(--text) !important;
}
.fr-profile-links .icon {
  width: 18px;
  text-align: center;
  font-size: 15px;
}

.fr-profile-name {
  margin-top: 6px;
  max-width: 20ch;
}

.fr-profile-role {
  margin: 0 0 20px;
  font-family: var(--heading);
  font-weight: var(--bold);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-deep);
}

.fr-profile-body .fr-prose p {
  max-width: 68ch;
}

/* — contact — */
.fr-contact {
  display: grid;
  grid-template-columns: 2fr 1fr;
  border-bottom: 2px solid var(--divider);
}

.fr-contact-main {
  padding: 40px var(--pad) 40px;
  border-right: 2px solid var(--divider);
}

.fr-contact-side {
  display: flex;
  flex-direction: column;
}

.fr-contact-figure {
  flex: 1;
  min-height: 240px;
  padding: 40px;
  overflow: hidden;
  /* a logo, not a photograph: show it whole rather than cropping to fill */
}
.fr-contact-figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.fr-contact-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 340px;
}

/* the river, under the way to find us */
.fr-contact-view {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 32px;
}

.fr-address {
  font-size: 15px;
  line-height: 1.8;
}

/* — responsive — */
@media (max-width: 900px) {
  .fr-head-split,
  .fr-proj,
  .fr-figure-split,
  .fr-contact {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .fr-profile {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .fr-profile-aside {
    max-width: 360px;
  }
  .fr-cols-2,
  .fr-cols-2-1,
  .fr-cols-3 {
    grid-template-columns: 1fr;
  }
  .fr-with-media {
    grid-template-columns: 1fr;
  }
  .fr-cover {
    width: 100%;
  }
  .fr-cols > * {
    border-right: none !important;
    border-bottom: 2px solid var(--divider);
    padding: 24px var(--pad) !important;
  }
  .fr-cols > *:last-child {
    border-bottom: none;
  }
  .fr-team {
    grid-template-columns: repeat(2, 1fr);
  }
  .fr-alumni {
    grid-template-columns: 1fr;
  }
  .citation.fr-pub {
    grid-template-columns: 100px 1fr;
  }
  .citation.fr-pub > *:last-child {
    grid-column: 2;
  }
  .fr-contact-main {
    border-right: none;
    border-bottom: 2px solid var(--divider);
  }
}
@media (max-width: 560px) {
  .fr-team {
    grid-template-columns: 1fr;
  }
  .fr-member {
    border-right: none;
    border-bottom: 1px solid var(--divider);
  }
  .citation.fr-pub {
    grid-template-columns: 1fr;
  }
  .citation.fr-pub > *:last-child {
    grid-column: 1;
  }
  .fr-pub-figure {
    width: 100%;
  }
}

/*# sourceMappingURL=fr-pages.css.map */