@font-face {
  font-family: "avenir-lt-w01_35-light1475496";
  font-style: normal;
  font-weight: 400;
  src: url("https://static.parastorage.com/fonts/v2/af36905f-3c92-4ef9-b0c1-f91432f16ac1/v1/avenir-lt-w05_35-light.woff2") format("woff2");
  unicode-range: U+0100-012B, U+012E-0130, U+0132-0137, U+0139-0149, U+014C-0151, U+0154-015F, U+0162-0177, U+0179-017C, U+0218-021B, U+02C9, U+02D8-02D9, U+02DB, U+02DD, U+0394, U+03A9, U+03BC, U+03C0, U+1E9E, U+20B9-20BA, U+20BC-20BD, U+2113, U+2126, U+212E, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+2219-221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+F8FF, U+FB01-FB02;
  font-display: swap;
}

@font-face {
  font-family: "avenir-lt-w01_35-light1475496";
  font-style: normal;
  font-weight: 400;
  src: url("https://static.parastorage.com/fonts/v2/af36905f-3c92-4ef9-b0c1-f91432f16ac1/v1/avenir-lt-w01_35-light1475496.woff2") format("woff2");
  unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0131, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02C6-02C7, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+20AC, U+2122;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #111111;
  --muted: #383838;
  --line: rgba(0, 0, 0, 0.18);
  --paper: #ffffff;
  --green: #9bc56b;
  --green-dark: #23511f;
  --purple: #6651a8;
  --link: #163e87;
  --note: rgba(255, 247, 214, 0.82);
  --site-width: 1532px;
  --content-width: 1080px;
  --font-body: "avenir-lt-w01_35-light1475496", sans-serif;
}

body {
  margin: 0;
  font-family: var(--font-body);
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  opacity: 0;
  animation: page-fade-in 240ms ease forwards;
  transition: opacity 180ms ease;
}

a {
  color: var(--link);
}

body.is-leaving {
  opacity: 0;
}

@keyframes page-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e6e6e6;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  width: min(1572px, calc(100% - 108px));
  min-height: 114px;
  margin: 0 auto;
  padding: 12px 0;
}

.logo-link {
  display: block;
  flex: 0 0 auto;
}

.logo-link img {
  display: block;
  width: 95px;
  height: auto;
}

.header-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex: 1;
  min-width: 0;
}

.mock-search {
  width: 305px;
  height: 46px;
  border: 1px solid #777777;
  color: #222222;
  font: normal normal normal 16px/1.75em var(--font-body);
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 0 16px 0 14px;
  position: relative;
}

.mock-search i {
  color: #555555;
  font-size: 0.9rem;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 25px;
  justify-content: flex-end;
  align-items: center;
}

.main-nav a,
.section-nav a,
.button-link {
  text-decoration: none;
}

.main-nav a {
  color: var(--ink);
  font: normal normal normal 14px/1.79em var(--font-body);
  text-transform: none;
  padding-bottom: 5px;
  border-bottom: 2px solid transparent;
}

.main-nav a.active,
.main-nav a:hover {
  border-color: var(--green-dark);
}

.page-stage {
  min-height: calc(100vh - 114px);
  padding: 80px 0 0;
  background-image: url("leaf-background.jpg");
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
}

.green-panel {
  width: min(var(--site-width), calc(100% - 146px));
  margin: 0 auto;
  background: var(--green);
  padding: 30px clamp(28px, 7vw, 96px) 70px;
}

.hero {
  width: min(100%, var(--content-width));
  margin: 0 auto;
  padding: 0 0 16px;
  text-align: center;
  border-bottom: 0;
}

.hero h1 {
  max-width: 100%;
  margin: 0;
  color: var(--purple);
  font-size: clamp(2.4rem, 3.4vw, 3.15rem);
  line-height: 1.28;
  font-weight: 300;
  text-transform: uppercase;
}

.source-link {
  display: none;
}

.no-generic-hero .hero {
  display: none;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(190px, 260px) minmax(0, 860px);
  gap: clamp(22px, 4vw, 46px);
  align-items: start;
  width: min(100%, var(--content-width));
  margin: 0 auto;
  padding: 14px 0 0;
}

.content-grid.single {
  grid-template-columns: minmax(0, 900px);
  justify-content: center;
}

.section-nav {
  width: min(100%, var(--content-width));
  margin: 6px auto 22px;
  padding: 14px 0 13px;
  border-top: 1px solid rgba(0, 0, 0, 0.32);
  border-bottom: 1px solid rgba(0, 0, 0, 0.32);
}

.section-nav nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
}

.section-nav a {
  color: var(--ink);
  font-size: 0.88rem;
  padding: 2px 0 5px;
  border-bottom: 2px solid transparent;
  border-radius: 0;
}

.section-nav a.active,
.section-nav a:hover {
  background: transparent;
  border-bottom-color: var(--green-dark);
}

.page-content {
  font-size: 1.28rem;
  line-height: 1.6;
}

.page-content h1 {
  display: none;
}

.page-content h2 {
  margin: 2.1rem 0 0.65rem;
  font-size: 1.42rem;
  line-height: 1.25;
  text-align: center;
  font-weight: 400;
}

.membership-page .page-content,
.publications-page .page-content {
  text-align: center;
}

.membership-page .page-content h2,
.publications-page .page-content h2 {
  color: var(--purple);
  font-size: clamp(2.1rem, 3.7vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  text-transform: uppercase;
}

.membership-page .page-content p,
.publications-page .page-content p {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.bibliography-list {
  margin-top: 36px;
  padding: 42px 28px 22px;
  background: var(--purple);
  color: #ffffff;
  text-align: left;
}

.bibliography-list h2 {
  color: #ffffff;
  font-size: clamp(2.7rem, 5.5vw, 4.6rem);
  text-align: left;
  text-transform: none;
}

.bibliography-list h3 {
  color: #ffffff;
  font-size: 1.02rem;
  margin-top: 1.4rem;
}

.bibliography-list p {
  max-width: none;
  font-size: 0.92rem;
  line-height: 1.5;
}

.bibliography-list a {
  color: #ffffff;
  text-decoration: underline;
}

.page-content h3 {
  margin: 1.45rem 0 0.5rem;
  font-size: 1.16rem;
}

.lead {
  font-size: 1.34rem;
  color: #101010;
  text-align: center;
}

.about-page .page-content {
  text-align: center;
}

.about-page .lead,
.about-page .page-content p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.about-board h2 {
  color: var(--ink);
  font-size: 1.36rem;
  text-decoration: underline;
}

.about-board h3 {
  margin-top: 2.4rem;
  font-size: 1.12rem;
  font-weight: 400;
  text-align: center;
}

.officer-list {
  width: min(100%, 660px);
  margin: 0.7rem auto 2.4rem;
}

.officer-list div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 1fr);
  gap: 28px;
  align-items: baseline;
  margin: 0 0 0.28rem;
}

.officer-list dt,
.officer-list dd {
  margin: 0;
  font-weight: 400;
}

.officer-list dt {
  text-align: left;
}

.officer-list dd {
  text-align: left;
}

.officer-list dd::before {
  content: "\2013  ";
}

.ijfab-landing-intro {
  display: grid;
  grid-template-columns: 178px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  margin: 6px 0 28px;
}

.ijfab-landing-intro img {
  width: 178px;
  border: 1px solid #222222;
}

.ijfab-landing-intro h2 {
  margin: 0;
  color: var(--purple);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-style: italic;
  font-weight: 700;
  text-align: center;
}

.ijfab-landing-intro .journal-title {
  margin: 0;
  color: var(--purple);
  font-size: 1.62rem;
  line-height: 1.35;
  text-align: center;
}

.ijfab-landing > h1:first-of-type,
.ijfab-landing > h2:first-of-type {
  display: none;
}

.editorial-staff {
  display: grid;
  grid-template-columns: 178px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  margin: 0 0 46px;
}

.editorial-staff > img {
  width: 178px;
  border: 1px solid #222222;
}

.staff-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.35;
}

.staff-columns h2 {
  margin: 0 0 0.35rem;
  color: #596a86;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.25;
}

.staff-columns p {
  margin: 0 0 0.85rem;
}

.callout,
.placeholder,
.draft-note,
blockquote {
  border-left: 0;
  border-top: 2px solid #1f1f1f;
  background: transparent;
  padding: 22px 0 0;
  margin: 28px 0 0;
}

.draft-note,
blockquote {
  display: none;
}

.button-link {
  display: inline-block;
  padding: 9px 13px;
  background: var(--green-dark);
  color: #ffffff;
  border-radius: 6px;
}

img {
  max-width: 100%;
  height: auto;
}

.home-intro {
  display: block;
  padding: 0;
  background: transparent;
}

.home-intro img {
  display: none;
}

.feature-image {
  display: block;
  width: min(100%, 720px);
  margin: 22px auto 0;
}

.congress-on-home {
  margin-top: 0;
  margin-bottom: 10px;
}

.congress-page-image {
  margin-top: 0;
  margin-bottom: 20px;
}

.cover-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: flex-start;
  margin-top: 18px;
}

.cover-row img {
  width: 154px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.site-footer {
  background: #ffffff;
  border-top: 1px solid var(--line);
}

.site-footer p {
  width: min(var(--site-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0;
  color: #565656;
  font-size: 0.86rem;
  text-align: center;
}

.source-note {
  display: none;
}

@media (max-width: 1080px) {
  .header-inner {
    width: min(100% - 48px, 980px);
    gap: 24px;
  }

  .header-tools {
    gap: 24px;
  }

  .main-nav {
    gap: 8px 18px;
  }

  .green-panel {
    width: min(100% - 48px, var(--site-width));
    padding-left: clamp(24px, 5vw, 56px);
    padding-right: clamp(24px, 5vw, 56px);
  }

  .hero h1 {
    font-size: clamp(2.1rem, 5vw, 2.9rem);
  }

  .content-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .editorial-staff {
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .editorial-staff > img,
  .ijfab-landing-intro img {
    width: 150px;
  }
}

@media (max-width: 780px) {
  .header-inner {
    flex-direction: column;
    align-items: center;
    width: min(100% - 32px, 560px);
    min-height: auto;
    gap: 14px;
    padding: 12px 0 16px;
  }

  .logo-link img {
    width: 82px;
  }

  .header-tools {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .mock-search {
    width: 100%;
    max-width: 360px;
    height: 44px;
    margin: 0 auto;
  }

  .main-nav,
  .section-nav nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    width: 100%;
  }

  .main-nav a,
  .section-nav a {
    flex: 0 0 auto;
    padding: 6px 10px 7px;
    white-space: nowrap;
  }

  .page-stage {
    min-height: auto;
    padding-top: 28px;
    background-attachment: scroll;
  }

  .green-panel {
    width: min(100% - 28px, var(--site-width));
    padding: 24px 20px 48px;
  }

  .hero {
    padding-bottom: 10px;
  }

  .hero h1 {
    font-size: clamp(1.75rem, 9vw, 2.4rem);
    line-height: 1.16;
  }

  .content-grid {
    grid-template-columns: 1fr;
    padding-top: 10px;
  }

  .page-content {
    font-size: 1.08rem;
    line-height: 1.55;
  }

  .lead {
    font-size: 1.12rem;
  }

  .membership-page .page-content h2,
  .publications-page .page-content h2 {
    font-size: clamp(1.8rem, 9vw, 2.4rem);
  }

  .section-nav {
    position: static;
    margin: 10px auto 16px;
    padding: 9px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.32);
    border-bottom: 1px solid var(--line);
  }

  .ijfab-landing-intro,
  .editorial-staff {
    grid-template-columns: 1fr;
    gap: 16px;
    justify-items: center;
    text-align: center;
  }

  .ijfab-landing-intro img,
  .editorial-staff > img {
    width: min(178px, 70vw);
  }

  .staff-columns {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .officer-list {
    width: 100%;
  }

  .officer-list div {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 0.85rem;
  }

  .officer-list dt,
  .officer-list dd {
    text-align: center;
  }

  .cover-row {
    justify-content: center;
  }

  .bibliography-list {
    margin-left: -20px;
    margin-right: -20px;
    padding: 32px 20px 18px;
  }

  .bibliography-list h2 {
    font-size: clamp(2.1rem, 12vw, 3.2rem);
  }

  .feature-image {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .header-inner {
    width: min(100% - 20px, 420px);
  }

  .green-panel {
    width: min(100% - 16px, var(--site-width));
    padding: 20px 16px 42px;
  }

  .main-nav,
  .section-nav nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2px 4px;
  }

  .main-nav a,
  .section-nav a {
    min-width: 0;
    text-align: center;
    white-space: normal;
    line-height: 1.25;
  }

  .hero h1 {
    font-size: clamp(1.55rem, 10vw, 2.05rem);
  }

  .page-content {
    font-size: 1rem;
  }

  .page-content h2 {
    font-size: 1.24rem;
  }

  .bibliography-list {
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body {
    opacity: 1;
    animation: none;
    transition: none;
  }
}
