:root {
  --green: #073c33;
  --deep: #032b25;
  --ink: #213e36;
  --gold: #d7bb7c;
  --muted: #64716a;
  --paper: #fbf9f3;
  --line: #deded1;
  --serif: Georgia, 'Times New Roman', serif
}

* {
  box-sizing: border-box
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 15px/1.75 Arial, Helvetica, sans-serif
}

a {
  color: inherit;
  text-decoration: none
}

button,
input,
select {
  font: inherit
}

button,
a,
input,
select {
  -webkit-tap-highlight-color: transparent
}

button {
  cursor: pointer
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid #a87a28;
  outline-offset: 5px
}

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

h1,
h2,
h3,
p {
  margin: 0
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -.035em
}

h1 {
  font-size: clamp(44px, 5.6vw, 78px)
}

h2 {
  font-size: clamp(35px, 3.8vw, 52px)
}

h3 {
  font-size: 27px
}

em {
  font-weight: 400
}

p+p {
  margin-top: 18px
}

.container {
  width: min(1180px, calc(100% - 96px));
  margin: auto
}

.header {
  background: var(--deep);
  color: #f7f1dc;
  border-bottom: 1px solid #ffffff20
}

.nav-wrap {
  min-height: 98px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px
}

.brand {
  display: flex;
  gap: 13px;
  align-items: center;
  line-height: 1.45;
  font: 17px var(--serif);
  letter-spacing: .035em
}

.brand small {
  display: block;
  font: 9px Arial, sans-serif;
  letter-spacing: .24em;
  margin-top: 8px;
  color: var(--gold)
}

nav {
  display: flex;
  gap: 33px;
  font-size: 13px
}

nav a {
  padding: 35px 0;
  position: relative;
  color: #eee9d7
}

nav a[aria-current]:after {
  content: '';
  height: 2px;
  position: absolute;
  bottom: 25px;
  left: 0;
  right: 0;
  background: var(--gold)
}

nav a:hover {
  color: var(--gold)
}

.menu-toggle {
  display: none
}

.skip {
  position: fixed;
  top: -80px;
  left: 20px;
  padding: 8px 20px;
  background: white;
  z-index: 99
}

.skip:focus {
  top: 10px
}

.hero {
  background: radial-gradient(ellipse at 65% 20%, #0a5646 0, transparent 50%), var(--deep);
  color: #f5ecd1;
  overflow: hidden
}

.hero-grid {
  min-height: 674px;
  display: grid;
  grid-template-columns: 1.18fr 1fr;
  gap: 34px;
  align-items: center
}

.hero-copy {
  padding: 58px 0
}

.eyebrow {
  font: 10px/1.8 Arial, Helvetica, sans-serif;
  letter-spacing: .21em;
  font-weight: 600;
  color: #8b733c;
  text-transform: uppercase;
  margin-bottom: 23px
}

.hero .eyebrow,
.footer .eyebrow,
.dark-heading .eyebrow,
.feature-band .eyebrow {
  color: var(--gold)
}

.hero .eyebrow span {
  letter-spacing: .14em
}

.hero h1 {
  font-size: clamp(46px, 5.15vw, 72px);
  line-height: 1.07;
  letter-spacing: -.046em
}

.hero h1 em {
  color: var(--gold)
}

.hero-intro {
  font: 19px/1.7 var(--serif);
  margin-top: 26px;
  color: #e7e9de
}

.actions {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  margin-top: 33px
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 49px;
  padding: 12px 21px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .015em;
  border-radius: 2px
}

.gold {
  background: var(--gold);
  color: #17392b
}

.outline {
  border-color: #b6ae7777;
  color: #f3eacb
}

.green {
  background: var(--green);
  color: white
}

.button:hover {
  filter: brightness(1.1);
  transform: translateY(-1px)
}

.hero-portrait {
  align-self: end;
  position: relative;
  padding: 35px 18px 0 10px
}

.portrait-frame {
  position: relative;
  border: 1px solid #d7bb7c88;
  border-radius: 210px 210px 0 0;
  padding: 10px 10px 0;
  overflow: hidden;
  max-width: 425px;
  margin-left: auto;
  background: #113e32
}

.portrait-frame:before {
  content: '';
  position: absolute;
  inset: 18px 18px 0;
  border: 1px solid #d7bb7c80;
  border-radius: 200px 200px 0 0;
  z-index: 1;
  pointer-events: none
}

.portrait-frame img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 200px 200px 0 0;
  filter: saturate(.8)
}

.portrait-caption {
  position: absolute;
  bottom: 0;
  right: 18px;
  left: 10px;
  padding: 40px 32px 23px;
  background: linear-gradient(transparent, #062f29 85%);
  color: #f5ecd1;
  text-align: center
}

.portrait-caption span {
  font-size: 10px;
  letter-spacing: .14em
}

.portrait-caption small {
  display: block;
  color: var(--gold);
  font: 17px/1.8 var(--serif)
}

.topic-strip {
  border-top: 1px solid #d7bb7c33;
  background: #00241f70
}

.topic-strip .container {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding-top: 19px;
  padding-bottom: 19px
}

.topic-strip a {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .11em;
  color: #e7e9de
}

.topic-strip a:hover {
  color: var(--gold)
}

.section {
  padding: 90px 0
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 100px
}

.introduction {
  background: var(--paper) url('midsec.webp') center/cover
}

.intro-copy {
  padding-top: 6px
}

.kicker {
  font-size: 9px;
  color: var(--muted);
  letter-spacing: .17em;
  margin-bottom: 15px
}

.affiliation {
  font-size: 13px;
  color: #59665e;
  margin: 20px 0
}

.intro-copy>p:not(.kicker) {
  max-width: 450px
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  font-size: 12px;
  font-weight: 600;
  padding: 11px 0;
  border-bottom: 1px solid #ac956355;
  margin-top: 15px
}

.text-link:hover {
  color: #9a762b
}

.text-link span {
  font-size: 20px;
  font-weight: 400
}

.research-home {
  background: #f0f1e8;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line)
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 44px
}

.section-heading>p {
  font-size: 14px;
  color: var(--muted)
}

.research-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.research-card {
  padding: 26px 28px 28px;
  border: 1px solid #d7dcd0;
  background: #fbfcf5;
  transition: background .18s, transform .18s
}

.research-card:hover {
  background: #fff;
  transform: translateY(-3px);
  border-color: #a49c77
}

.area-number {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #967c3e;
  font: 12px var(--serif);
  margin-bottom: 30px
}

.area-number>span {
  font: 22px Arial
}

.research-card h3 {
  font-size: 27px;
  max-width: 260px;
  min-height: 62px
}

.research-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
  margin-top: 15px
}

.book-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px
}

.book-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ecece2;
  min-height: 330px;
  padding: 30px
}

.book-image img {
  width: auto;
  height: 274px;
  max-width: 100%;
  box-shadow: 8px 13px 18px #243c2c30;
  transition: transform .2s
}

.book-image:hover img {
  transform: translateY(-5px) rotate(-1deg)
}

.book-meta {
  display: flex;
  justify-content: space-between;
  margin: 22px 0 12px;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #687464
}

.book-card h3 {
  font-size: 27px
}

.book-card>p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 9px;
  min-height: 46px
}

.book-card .text-link {
  display: flex;
  justify-content: space-between
}

.feature-band {
  padding: 75px 0;
  background: linear-gradient(90deg, #05382def, #05382d99), url('bggreen.webp') center/cover;
  color: var(--paper)
}

.feature-band h2 {
  font-size: 55px
}

.feature-band h2 em {
  color: var(--gold)
}

.feature-band p:not(.eyebrow) {
  margin: 25px 0;
  color: #d9e2d7
}

.footer {
  background: var(--deep);
  color: #e4e8db;
  padding-top: 65px
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  padding-bottom: 55px
}

.footer h2 {
  font-size: 38px
}

.footer-links {
  padding-right: 85px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 12px
}

.footer-links p {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: .07em;
  margin: 0 0 10px
}

.light {
  color: #e4e8db
}

.footer-bottom {
  border-top: 1px solid #ffffff20;
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  padding-bottom: 22px;
  font-size: 10px;
  color: #bbc9bc
}

.page-heading {
  padding: 69px 0 65px;
  background: #f0f0e6 url('midsec.webp') center/cover;
  border-bottom: 1px solid var(--line)
}

.page-heading h1 {
  max-width: 1000px
}

.page-heading p:not(.eyebrow) {
  font: 20px/1.6 var(--serif);
  max-width: 650px;
  margin-top: 25px
}

.dark-heading {
  background: linear-gradient(90deg, #073c33f5, #073c3399), url('bggreen.webp') center/cover;
  color: #f8f2df
}

.about-grid {
  display: grid;
  grid-template-columns: .85fr 1.3fr;
  gap: 80px
}

.about-portrait {
  width: 100%;
  border-radius: 180px 180px 0 0;
  max-width: 390px
}

.prose p {
  color: #5a695f;
  line-height: 1.9;
  margin-top: 22px
}

.prose h3 {
  margin-top: 35px
}

.note {
  padding: 24px 28px;
  border-left: 2px solid var(--gold);
  background: #f0f1e8;
  margin-top: 32px
}

.note .eyebrow {
  margin: 0
}

.note p {
  margin-top: 12px
}

.simple-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px
}

.simple-links a {
  border-bottom: 1px solid #b8bfae;
  padding-bottom: 20px;
  display: flex;
  justify-content: space-between
}

.detail-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 95px
}

.breadcrumb {
  display: block;
  font-size: 12px;
  margin-bottom: 30px;
  color: #687462
}

.related {
  padding: 35px;
  background: #eff1e8
}

.related img {
  max-height: 230px;
  width: auto;
  margin: 20px 0 28px;
  box-shadow: 5px 5px 14px #0002
}

.related p {
  font-size: 13px;
  color: #647064;
  margin-top: 14px
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 25px 0
}

.tags span {
  padding: 8px 14px;
  font-size: 12px;
  background: #e8eddf;
  border-radius: 3px
}

.filters {
  display: flex;
  align-items: end;
  gap: 20px;
  padding: 25px;
  background: #eff1e7;
  border: 1px solid var(--line);
  margin-bottom: 30px
}

.filters>div:first-child {
  flex: 1
}

.filters label {
  display: block;
  font-size: 11px;
  margin-bottom: 7px;
  color: #526253
}

.filters input,
.filters select {
  width: 100%;
  background: #fffdf7;
  border: 1px solid #c9cdbf;
  padding: 12px;
  border-radius: 2px;
  height: 49px;
  color: var(--ink)
}

.filters>a {
  font-size: 12px;
  padding: 12px
}

.results {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 25px
}

.collection-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 45px;
  padding-top: 20px;
  border-top: 1px solid var(--line)
}

.empty {
  padding: 45px 0
}

.large-cover {
  display: flex;
  justify-content: center;
  background: #e9ece1;
  padding: 45px
}

.large-cover img {
  width: 290px;
  object-fit: contain;
  box-shadow: 12px 18px 23px #0002
}

.book-detail h1 {
  font-size: 53px
}

.subtitle {
  font: 24px/1.4 var(--serif);
  margin: 20px 0 30px
}

.book-detail dl {
  font-size: 12px;
  margin: 25px 0 30px
}

.book-detail dl div {
  display: flex;
  gap: 20px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line)
}

dt {
  width: 90px;
  flex-shrink: 0;
  color: var(--muted)
}

dd {
  margin: 0;
  overflow-wrap: anywhere
}

.book-overview {
  max-width: 720px;
  padding-top: 75px
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 90px
}

.contact-intro {
  max-width: 440px;
  margin: 25px 0
}

.contact-aside {
  padding: 35px;
  background: #eff1e7
}

.contact-aside p {
  margin-top: 20px
}

.contact-aside hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 30px 0
}

.contact-aside ul {
  padding-left: 20px;
  font-size: 14px
}

.narrow {
  max-width: 800px
}

@media(min-width:1500px) {
  .hero-grid {
    min-height: 710px
  }
}

@media(max-width:1000px) {
  .container {
    width: calc(100% - 56px)
  }

  nav {
    gap: 22px
  }

  .brand {
    font-size: 14px
  }

  .hero-grid {
    min-height: 605px;
    gap: 16px
  }

  .portrait-frame img {
    height: 470px
  }

  .hero-intro {
    font-size: 17px
  }

  .intro-grid {
    gap: 50px
  }

  .research-card {
    padding: 23px
  }

  .research-card h3 {
    font-size: 24px
  }

  .book-grid {
    gap: 22px
  }

  .book-image {
    padding: 23px;
    min-height: 280px
  }

  .book-image img {
    height: 230px
  }

  .about-grid,
  .detail-grid,
  .contact-grid {
    gap: 45px
  }

  .footer-links {
    padding-right: 15px
  }

  .book-detail h1 {
    font-size: 44px
  }
}

@media(max-width:720px) {
  .container {
    width: calc(100% - 40px)
  }

  .nav-wrap {
    min-height: 82px;
    flex-wrap: wrap;
    gap: 0
  }

  .brand {
    font-size: 13px
  }

  .brand img {
    width: 32px
  }

  .brand small {
    font-size: 8px;
    letter-spacing: .14em
  }

  .menu-toggle {
    display: block;
    color: var(--gold);
    background: transparent;
    border: 1px solid #d7bb7c66;
    padding: 7px 11px;
    font-size: 11px
  }

  .menu-toggle span {
    margin-left: 8px
  }

  nav {
    display: none;
    width: 100%;
    gap: 0;
    padding-bottom: 18px
  }

  nav.is-open {
    display: flex;
    flex-direction: column
  }

  nav a {
    padding: 10px 4px
  }

  nav a[aria-current]:after {
    bottom: 6px;
    width: 28px;
    right: auto
  }

  .hero-grid {
    display: block
  }

  .hero-copy {
    padding: 43px 0 34px
  }

  .hero h1 {
    font-size: clamp(44px, 10.5vw, 64px)
  }

  .hero .eyebrow {
    font-size: 9px;
    margin-bottom: 24px
  }

  .hero-intro {
    font-size: 18px
  }

  .hero-portrait {
    width: min(360px, 90%);
    margin: 0 auto;
    padding-top: 5px
  }

  .portrait-frame img {
    height: 370px;
    object-position: 50% 21%
  }

  .portrait-caption {
    padding-bottom: 14px
  }

  .portrait-caption span {
    font-size: 8px
  }

  .topic-strip .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 13px;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px
  }

  .topic-strip a {
    font-size: 8px;
    line-height: 1.7
  }

  .section {
    padding: 55px 0
  }

  .intro-grid,
  .about-grid,
  .detail-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 38px
  }

  .intro-grid h2 {
    font-size: 40px
  }

  .section-heading {
    display: block;
    margin-bottom: 30px
  }

  .section-heading>p,
  .section-heading>.text-link {
    margin-top: 20px
  }

  .research-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px
  }

  .research-card {
    padding: 20px 17px
  }

  .research-card h3 {
    font-size: 23px;
    min-height: 72px
  }

  .research-card p {
    font-size: 12px
  }

  .area-number {
    margin-bottom: 21px
  }

  .book-grid {
    grid-template-columns: 1fr;
    gap: 38px
  }

  .book-image {
    min-height: 335px
  }

  .book-image img {
    height: 285px
  }

  .book-card>p {
    min-height: 0
  }

  .book-meta {
    margin-top: 19px
  }

  .book-card h3 {
    font-size: 29px
  }

  .feature-band {
    padding: 52px 0
  }

  .feature-band h2 {
    font-size: 43px
  }

  .feature-band p:not(.eyebrow) {
    font-size: 13px
  }

  .footer-top {
    display: block
  }

  .footer-links {
    margin-top: 35px
  }

  .footer h2 {
    font-size: 35px
  }

  .footer-bottom {
    gap: 15px;
    flex-wrap: wrap
  }

  .page-heading {
    padding: 45px 0
  }

  .page-heading h1 {
    font-size: 44px
  }

  .page-heading p:not(.eyebrow) {
    font-size: 18px
  }

  .about-portrait {
    max-width: 300px;
    margin: auto
  }

  .simple-links {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .filters {
    flex-wrap: wrap;
    padding: 20px;
    gap: 15px
  }

  .filters>div:first-child {
    flex-basis: 100%
  }

  .filters>div:nth-child(2) {
    flex: 1
  }

  .filters .button {
    gap: 12px
  }

  .book-detail h1 {
    font-size: 43px
  }

  .large-cover {
    padding: 30px
  }

  .large-cover img {
    width: 240px
  }

  .book-overview {
    padding-top: 45px
  }

  .desktop {
    display: none
  }
}

/* Supplied launch artwork: preserve decorative detail while protecting text contrast. */
.hero {
  background: linear-gradient(90deg, rgba(0, 30, 25, .74), rgba(0, 30, 25, .38) 55%, rgba(0, 30, 25, .15)), url('bggreen.webp') center/cover no-repeat
}

.hero h1 {
  color: #f4dfa7;
  font-style: normal
}

.hero h1 em {
  color: inherit;
  font-style: normal
}

.footer {
  background: linear-gradient(90deg, rgba(0, 30, 25, .65), rgba(0, 30, 25, .75)), url('bgfooter.webp') center/cover no-repeat
}

.research-home {
  background: #f6f0df url('midsec.webp') center/cover no-repeat
}

.hero-description {
  max-width: 540px;
  margin-top: 22px;
  color: #e0e8dd;
  font-size: 14px;
  line-height: 1.75
}

.hero-grid {
  min-height: 720px
}

.hero-copy {
  padding: 55px 0
}

@media(max-width:720px) {
  .hero {
    background-position: 60% top
  }

  .hero-grid {
    min-height: 0
  }

  .hero-copy {
    padding: 42px 0 32px
  }

  .hero-description {
    font-size: 13px
  }

  .footer {
    background-position: 65% center
  }

  .research-home {
    background-size: auto 100%
  }
}

@media(prefers-reduced-motion:reduce) {
  * {
    transition: none !important;
    transform: none !important
  }
}

/* Coming-soon scholarship section beneath the homepage hero. */
.scholarship-values {
  padding: 52px 0 44px;
  background: #faf2e1 url('midsec.webp') center/100% 100% no-repeat;
  border-bottom: 1px solid #decda850;
  color: var(--ink)
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 900px;
  margin: auto
}

.value-item {
  text-align: center;
  padding: 0 25px;
  border-right: 1px solid #c89b4566
}

.value-item:last-child {
  border-right: 0
}

.value-item img {
  width: 80px;
  height: 76px;
  object-fit: contain;
  margin: 0 auto 18px
}

.value-item h2 {
  font-size: 25px;
  letter-spacing: -.02em;
  line-height: 1.25;
  margin-bottom: 10px
}

.value-item p {
  font-size: 12px;
  line-height: 1.6
}

.value-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  color: #b88631;
  margin: 40px auto 12px
}

.value-ornament:before,
.value-ornament:after {
  content: '';
  width: 108px;
  height: 1px;
  background: #b88631
}

.value-ornament span {
  font-size: 20px;
  line-height: 1
}

.knowledge-quote {
  text-align: center;
  margin: 0
}

.knowledge-quote blockquote {
  font: italic 25px/1.5 var(--serif);
  margin: 0
}

.knowledge-quote figcaption {
  font-size: 12px;
  margin-top: 5px
}

@media(max-width:720px) {
  .scholarship-values {
    padding: 35px 0;
    background-size: auto 100%
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px
  }

  .value-item {
    padding: 0 12px
  }

  .value-item:nth-child(2) {
    border-right: 0
  }

  .value-item img {
    width: 66px;
    height: 66px
  }

  .value-item h2 {
    font-size: 23px
  }

  .knowledge-quote blockquote {
    font-size: 23px
  }

  .value-ornament {
    margin-top: 32px
  }
}

@media(max-width:360px) {
  .values-grid {
    grid-template-columns: 1fr
  }

  .value-item {
    border-right: 0;
    border-bottom: 1px solid #c89b4533;
    padding-bottom: 23px
  }

  .value-item:last-child {
    border-bottom: 0
  }
}

/* Editorial homepage composition, following the full-page reference. */
.homepage-editorial .hero-grid {
  grid-template-columns: 1.4fr 1fr;
  min-height: 465px;
  gap: 20px
}

.homepage-editorial .hero-copy {
  padding: 35px 0
}

.homepage-editorial .hero h1 {
  font-size: clamp(36px, 4.2vw, 58px);
  line-height: 1.03
}

.homepage-editorial .hero .eyebrow {
  margin-bottom: 15px
}

.homepage-editorial .hero-intro {
  margin-top: 16px;
  font-size: 20px
}

.homepage-editorial .hero-description {
  margin-top: 13px;
  font-size: 12px;
  max-width: 520px
}

.homepage-editorial .actions {
  margin-top: 20px
}

.homepage-editorial .portrait-frame img {
  height: 420px
}

.homepage-editorial .hero-portrait {
  padding-top: 15px
}

.homepage-editorial .topic-strip .container {
  padding-top: 12px;
  padding-bottom: 12px
}

.homepage-editorial .scholarship-values {
  padding: 32px 0 28px
}

.homepage-editorial .value-item img {
  height: 55px;
  width: 60px;
  margin-bottom: 10px
}

.homepage-editorial .value-item h2 {
  font-size: 23px
}

.homepage-editorial .value-ornament {
  margin-top: 25px
}

.homepage-editorial .knowledge-quote blockquote {
  font-size: 23px
}

.homepage-editorial .introduction {
  padding: 42px 0;
  background: #fbf9f3
}

.homepage-editorial .intro-grid {
  gap: 55px
}

.homepage-editorial .intro-grid h2 {
  font-size: 38px
}

.homepage-editorial .intro-copy {
  font-size: 13px
}

.homepage-editorial .affiliation {
  margin: 12px 0
}

.homepage-editorial .introduction .eyebrow {
  margin-bottom: 12px
}

.research-orbit-section {
  background: #f8f3e8 url('midsec.webp') center/cover;
  padding: 30px 0
}

.research-orbit-section h2 {
  text-align: center;
  font-size: 34px
}

.orbit-layout {
  display: grid;
  grid-template-columns: 1fr 600px 1fr;
  align-items: center;
  gap: 10px
}

.side-motto {
  font-size: 10px;
  letter-spacing: .16em;
  line-height: 1.8;
  color: #778176;
  border-left: 1px solid #b99550;
  padding-left: 18px
}

.research-orbit {
  position: relative;
  height: 365px
}

.research-orbit:before {
  content: '';
  position: absolute;
  border: 1px solid #b3ba9d;
  border-radius: 50%;
  width: 250px;
  height: 250px;
  left: 175px;
  top: 56px
}

.orbit-centre {
  position: absolute;
  left: 220px;
  top: 100px;
  width: 160px;
  height: 160px;
  border: 6px double #d7bb7c;
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  background: var(--green);
  color: var(--paper);
  font: 24px/1.05 var(--serif);
  box-shadow: 0 8px 18px #173b2520
}

.orbit-node {
  position: absolute;
  display: flex;
  gap: 10px;
  align-items: center;
  width: 195px;
  font: 15px/1.2 var(--serif)
}

.orbit-icon {
  display: grid;
  place-items: center;
  flex: none;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #006052;
  color: var(--gold);
  border: 2px solid #ded3b5;
  font-size: 27px;
  box-shadow: 0 4px 9px #13382930
}

.orbit-node:hover .orbit-icon {
  background: #164536
}

.orbit-0 {
  left: 15px;
  top: 160px
}

.orbit-1 {
  left: 55px;
  top: 55px
}

.orbit-2 {
  left: 245px;
  top: 8px
}

.orbit-3 {
  left: 397px;
  top: 70px
}

.orbit-4 {
  left: 400px;
  top: 210px
}

.orbit-5 {
  left: 135px;
  top: 285px
}

.orbit-aside .button {
  margin-top: 25px;
  border-color: #b99550;
  padding: 10px;
  font-size: 10px
}

.editorial-publications {
  background: #03372f;
  color: #fff7df;
  padding: 34px 0
}

.editorial-publications h2 {
  font-size: 33px;
  margin-bottom: 25px
}

.publication-spread {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 30px
}

.spread-book {
  border-right: 1px solid #ffffff30;
  padding-right: 25px
}

.spread-book:last-child {
  border: 0;
  padding: 0
}

.spread-book img {
  height: 200px;
  width: auto;
  margin-bottom: 14px;
  box-shadow: 5px 7px 15px #0003
}

.spread-book:first-child {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 22px
}

.spread-book:first-child img {
  height: auto;
  width: 150px
}

.spread-book h3 {
  font-size: 25px
}

.spread-book p:not(.eyebrow) {
  font-size: 11px;
  line-height: 1.65;
  margin-top: 12px;
  color: #dae4d4
}

.spread-book .eyebrow {
  font-size: 9px;
  margin-bottom: 9px;
  color: var(--gold)
}

.spread-book .text-link {
  font-size: 11px
}

.publication-journey,
.reading-pathways {
  padding: 30px 0;
  border-bottom: 1px solid var(--line)
}

.publication-journey h2,
.reading-pathways h2,
.learning-band h2 {
  font-size: 30px
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  border-top: 1px solid #c1a461;
  margin-top: 25px
}

.journey-grid a {
  position: relative;
  padding-top: 17px
}

.journey-grid a:before {
  content: '';
  position: absolute;
  top: -6px;
  left: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #c1a461
}

.journey-grid span {
  font-size: 12px;
  color: #9c762c
}

.journey-grid h3 {
  font-size: 20px;
  margin: 4px 0
}

.journey-grid p {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.5
}

.reading-pathways .section-heading {
  margin-bottom: 20px
}

.reading-pathways .text-link {
  margin: 0
}

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.pathway-grid>a {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 15px;
  padding: 10px;
  border: 1px solid var(--line)
}

.pathway-art {
  background: #064f40 url('research/govern.webp') 80% center/cover
}

.pathway-grid h3 {
  font-size: 20px
}

.pathway-grid .eyebrow {
  font-size: 8px;
  margin-bottom: 7px
}

.pathway-grid p:not(.eyebrow) {
  font-size: 10px;
  line-height: 1.6;
  margin-top: 9px
}

.pathway-grid .text-link {
  font-size: 10px;
  padding-bottom: 0;
  color: #997028
}

.learning-band {
  background: #f4eee0 url('midsec.webp') center/cover;
  padding: 35px 0
}

.learning-band>.container {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 90px
}

.learning-band p:not(.eyebrow) {
  font-size: 13px;
  max-width: 500px;
  margin: 15px 0
}

.learning-band .eyebrow {
  margin-bottom: 10px
}

.learning-links {
  display: flex;
  flex-direction: column;
  justify-content: center
}

.learning-links a {
  padding: 12px;
  border-bottom: 1px solid #bbaa7a55;
  font: 17px var(--serif)
}

.homepage-editorial .feature-band {
  padding: 35px 0
}

.homepage-editorial .feature-band h2 {
  font-size: 35px
}

.homepage-editorial .feature-band p:not(.eyebrow) {
  font-size: 13px;
  margin: 15px 0
}

@media(max-width:1050px) {
  .orbit-layout {
    grid-template-columns: 1fr
  }

  .orbit-layout>.side-motto {
    display: none
  }

  .research-orbit {
    width: 600px;
    margin: auto
  }

  .orbit-aside {
    text-align: center
  }

  .orbit-aside .side-motto {
    display: none
  }

  .publication-spread {
    gap: 20px
  }

  .spread-book:first-child {
    display: block
  }

  .spread-book:first-child img {
    height: 200px;
    width: auto
  }

  .pathway-grid>a {
    grid-template-columns: 55px 1fr
  }
}

@media(max-width:720px) {
  .homepage-editorial .hero-grid {
    display: block;
    min-height: 0
  }

  .homepage-editorial .hero h1 {
    font-size: 42px
  }

  .homepage-editorial .portrait-frame img {
    height: 340px
  }

  .homepage-editorial .hero-intro {
    font-size: 18px
  }

  .homepage-editorial .intro-grid h2 {
    font-size: 34px
  }

  .research-orbit-section h2 {
    font-size: 28px
  }

  .research-orbit {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding-top: 20px
  }

  .research-orbit:before {
    display: none
  }

  .orbit-centre {
    position: static;
    grid-column: 1/-1;
    margin: 0 auto 10px;
    width: 135px;
    height: 135px;
    font-size: 22px
  }

  .orbit-node {
    position: static;
    width: auto;
    display: flex;
    flex-direction: column;
    text-align: center;
    font-size: 16px
  }

  .orbit-aside .button {
    font-size: 12px
  }

  .publication-spread {
    grid-template-columns: 1fr
  }

  .spread-book,
  .spread-book:first-child {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 20px;
    border-right: 0;
    border-bottom: 1px solid #fff3;
    padding: 0 0 22px
  }

  .spread-book img,
  .spread-book:first-child img {
    width: 110px;
    height: auto
  }

  .journey-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px
  }

  .journey-grid a:before {
    top: 0
  }

  .journey-grid {
    border-top: 0
  }

  .pathway-grid {
    grid-template-columns: 1fr
  }

  .pathway-grid>a {
    grid-template-columns: 75px 1fr
  }

  .learning-band>.container {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .reading-pathways .section-heading {
    display: block
  }

  .homepage-editorial .feature-band h2 {
    font-size: 32px
  }
}

/* Supplied transparent hero portrait. */
.homepage-editorial .hero-portrait {
  padding: 12px 0 0;
  align-self: end
}

.homepage-editorial .portrait-frame {
  border: 0;
  border-radius: 0;
  background: none;
  padding: 0;
  max-width: 440px;
  overflow: visible
}

.homepage-editorial .portrait-frame:before {
  display: none
}

.homepage-editorial .portrait-frame img {
  width: 100%;
  height: 455px;
  object-fit: contain;
  object-position: center bottom;
  border-radius: 0;
  filter: none
}

.homepage-editorial .portrait-caption {
  display: none
}

@media(max-width:720px) {
  .homepage-editorial .hero-portrait {
    width: min(360px, 100%);
    padding-top: 0
  }

  .homepage-editorial .portrait-frame img {
    height: 390px
  }
}

/* About page reference: ivory portrait hero and real section navigation. */
.about-banner {
  background: #fcfaf4 url('midsec.webp') center/cover;
  border-bottom: 1px solid var(--line);
  overflow: hidden
}

.about-banner>.container {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  align-items: center;
  min-height: 445px;
  gap: 20px
}

.about-banner h1 {
  font-size: clamp(78px, 9vw, 128px);
  line-height: 1.05;
  color: #032d26
}

.about-banner p {
  font-size: clamp(20px, 2.25vw, 30px);
  line-height: 1.45;
  color: #53605a;
  margin-top: 28px
}

.about-banner img {
  height: 440px;
  width: 100%;
  object-fit: contain;
  object-position: bottom;
  align-self: end
}

.about-sections {
  display: block;
  background: #f2f1e8;
  border-bottom: 1px solid var(--line)
}

.about-sections>.container {
  display: flex;
  gap: 0;
  overflow-x: auto
}

.about-sections a {
  padding: 22px 28px;
  font-size: 16px;
  color: var(--ink);
  white-space: nowrap;
  border-right: 1px solid #deded180
}

.about-sections a:first-child {
  background: #fffdf7;
  border-bottom: 4px solid var(--green)
}

.about-sections a:hover {
  background: #fffdf7;
  color: #8a682c
}

.about-panel {
  padding: 55px 0;
  scroll-margin-top: 20px
}

.about-panel h2 {
  font-size: clamp(32px, 4vw, 49px)
}

.profile-lead {
  max-width: 1000px;
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.65;
  color: #58645d;
  margin-top: 25px
}

.full-biography {
  margin-top: 28px;
  max-width: 1000px
}

.full-biography summary {
  display: flex;
  width: fit-content;
  gap: 40px;
  align-items: center;
  cursor: pointer;
  list-style: none;
  background: var(--green);
  color: white;
  padding: 15px 28px;
  border-radius: 5px;
  font-size: 18px
}

.full-biography summary::-webkit-details-marker {
  display: none
}

.full-biography summary:focus-visible {
  outline: 3px solid #b18b3d;
  outline-offset: 4px
}

.full-biography[open] summary span {
  transform: rotate(90deg)
}

.about-panel.alternate {
  background: #f3f2e8
}

.about-panel .panel-copy {
  margin: 20px 0 30px;
  color: var(--muted)
}

.about-panel .button {
  margin-top: 25px
}

.about-panel .eyebrow {
  margin-bottom: 15px
}

@media(max-width:720px) {
  .about-banner>.container {
    grid-template-columns: 1fr 1fr;
    min-height: 280px;
    gap: 5px
  }

  .about-banner h1 {
    font-size: 65px
  }

  .about-banner p {
    font-size: 18px;
    margin-top: 15px
  }

  .about-banner img {
    height: 280px;
    object-fit: cover;
    object-position: 55% bottom
  }

  .about-sections {
    display: block;
    padding: 0
  }

  .about-sections a {
    font-size: 14px;
    padding: 17px 18px
  }

  .about-panel {
    padding: 35px 0
  }

  .full-biography summary {
    font-size: 16px;
    padding: 14px 20px
  }

  .about-panel .journey-grid h3 {
    font-size: 19px
  }
}

.profile-intro {
  background: #fbf9f3;
  padding: 34px 0 30px;
  border-bottom: 1px solid #e6e1d5
}

.profile-layout {
  display: grid;
  grid-template-columns: 2.1fr 1fr;
  gap: 38px
}

.profile-main .eyebrow {
  margin-bottom: 7px;
  font-size: 10px;
  color: #7a7c70
}

.profile-main h2 {
  font-size: clamp(29px, 3.1vw, 42px);
  line-height: 1.08;
  letter-spacing: -.035em
}

.profile-details {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 28px;
  margin-top: 24px
}

.profile-details h3 {
  font-size: 23px;
  margin-bottom: 8px
}

.profile-details p {
  font-size: 12px;
  line-height: 1.55;
  color: #667069
}

.profile-details .button {
  margin-top: 12px;
  min-height: 42px;
  padding: 9px 18px
}

.profile-details .profile-description {
  padding-top: 30px;
  margin: 0
}

.profile-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-left: 1px solid #e8e2d5;
  padding-left: 16px;
  margin: 14px 0 0
}

.profile-facts>a,
.profile-facts>div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px 8px;
  color: #243b3a;
  font: 16px/1.15 var(--serif)
}

.profile-facts>:nth-child(odd) {
  border-right: 1px solid #e8e2d5
}

.profile-facts>:nth-child(-n+2) {
  border-bottom: 1px solid #e8e2d5
}

.profile-facts img,
.profile-facts svg {
  height: 53px;
  width: 60px;
  object-fit: contain;
  margin-bottom: 8px;
  color: #b18b39
}

.profile-facts strong {
  color: #ae8733;
  font: 30px/1 var(--serif)
}

.profile-facts a:hover {
  background: #f3efdf
}

.profile-facts span {
  margin-top: 3px
}

@media(max-width:900px) {
  .profile-layout {
    grid-template-columns: 1.7fr 1fr;
    gap: 20px
  }

  .profile-details {
    grid-template-columns: 1fr;
    gap: 12px
  }

  .profile-details .profile-description {
    padding-top: 0
  }

  .profile-main h2 br {
    display: none
  }
}

@media(max-width:600px) {
  .profile-layout {
    grid-template-columns: 1fr
  }

  .profile-details {
    grid-template-columns: 1fr
  }

  .profile-facts {
    border-left: 0;
    padding-left: 0;
    min-height: 265px
  }

  .profile-main h2 {
    font-size: 32px
  }

  .profile-details h3 {
    font-size: 23px
  }

  .profile-intro {
    padding: 28px 0
  }
}

/* Feature-led publication arrangement. */
.editorial-publications {
  background: radial-gradient(ellipse at 35% 40%, #0a493d, transparent 65%), #032d27;
  padding: 25px 0
}

.publication-layout {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 28px
}

.lead-publication h2 {
  font-size: 32px;
  margin-bottom: 16px
}

.lead-book {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 28px
}

.lead-book img {
  width: 210px;
  height: 300px;
  object-fit: contain;
  object-position: top;
  filter: drop-shadow(6px 7px 5px #001a1680)
}

.lead-book h3 {
  font-size: 29px;
  line-height: 1.12;
  margin: 4px 0 12px
}

.lead-book p,
.secondary-book p {
  font-size: 12px;
  line-height: 1.55;
  color: #d7e1d4
}

.publication-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 17px
}

.publication-tags span {
  border: 1px solid #83a28d;
  border-radius: 4px;
  padding: 3px 7px;
  color: #d5e6d9;
  font-size: 9px;
  line-height: 1.4
}

.publication-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 29px
}

.publication-actions .button {
  font-size: 11px;
  padding: 10px 13px;
  min-height: 42px;
  gap: 8px
}

.secondary-publications {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-left: 1px solid #7c94715c
}

.secondary-book {
  padding: 6px 22px 0;
  border-right: 1px solid #7c94715c
}

.secondary-book:last-child {
  border-right: 0;
  padding-right: 0
}

.secondary-book img {
  height: 205px;
  width: auto;
  max-width: 100%;
  margin: 0 0 14px;
  filter: drop-shadow(5px 5px 4px #001a1666)
}

.secondary-book h3 {
  font-size: 21px;
  margin-bottom: 9px
}

.secondary-book p {
  font-size: 11px
}

.secondary-book .publication-tags {
  margin-top: 10px
}

.publication-link {
  display: inline-block;
  font-size: 11px;
  color: #d7bb7c;
  text-decoration: underline;
  text-underline-offset: 4px;
  margin-top: 10px
}

@media(max-width:1100px) {
  .lead-book {
    grid-template-columns: 155px 1fr;
    gap: 20px
  }

  .lead-book img {
    width: 155px;
    height: auto
  }

  .publication-layout {
    grid-template-columns: 1.2fr 1fr;
    gap: 20px
  }

  .secondary-book {
    padding-left: 16px;
    padding-right: 16px
  }

  .lead-book h3 {
    font-size: 26px
  }

  .secondary-book img {
    height: 180px
  }
}

@media(max-width:760px) {
  .publication-layout {
    grid-template-columns: 1fr
  }

  .lead-book {
    grid-template-columns: 150px 1fr
  }

  .secondary-publications {
    border-left: 0;
    border-top: 1px solid #7c94715c;
    padding-top: 22px
  }

  .secondary-book:first-child {
    padding-left: 0
  }

  .publication-actions {
    margin-top: 18px
  }

  .secondary-book img {
    height: 190px
  }

  .lead-publication h2 {
    font-size: 29px
  }
}

@media(max-width:400px) {
  .lead-book {
    grid-template-columns: 115px 1fr;
    gap: 16px
  }

  .lead-book img {
    width: 115px
  }

  .lead-book h3 {
    font-size: 23px
  }

  .secondary-book img {
    height: 160px
  }

  .publication-actions .button {
    font-size: 10px
  }
}

/* Compact lower homepage sections from the supplied editorial reference. */
.publication-journey {
  padding: 22px 0 24px;
  background: #fbf9f3
}

.publication-journey h2,
.reading-pathways h2 {
  font-size: 28px
}

.journey-grid {
  gap: 30px;
  margin-top: 22px
}

.journey-grid h3 {
  font-size: 18px
}

.journey-grid a {
  padding-top: 13px
}

.journey-grid a:before {
  width: 13px;
  height: 13px;
  top: -7px
}

.reading-pathways {
  padding: 20px 0
}

.reading-pathways .section-heading {
  margin-bottom: 13px
}

.pathway-grid {
  gap: 13px
}

.pathway-grid>a {
  grid-template-columns: 105px 1fr;
  gap: 16px;
  padding: 9px;
  min-height: 158px
}

.pathway-grid h3 {
  font-size: 19px
}

.pathway-grid .eyebrow {
  font-size: 8px
}

.pathway-grid p:not(.eyebrow) {
  font-size: 11px
}

.pathway-art {
  min-height: 135px;
  background-position: 95% center
}

.pathway-grid>a:nth-child(2) .pathway-art {
  background-image: url('research/climate.webp') radial-gradient(ellipse at 20% 70%, #d6bf6b55, transparent), linear-gradient(135deg, #153c2d, #739472);
  position: relative;
  background: #064f40 url('research/climate.webp') 80% center/cover;
}

.pathway-grid>a:nth-child(2) .pathway-art:after {
  content: '';
  position: absolute;
  width: 65px;
  height: 105px;
  border: 1px solid #b2c88b;
  border-radius: 90% 0 90% 0;
  top: 15px;
  left: 17px;
  background: url('research/fintech.webp') linear-gradient(55deg, transparent 49%, #d1dbaa 50%, transparent 52%)
}

.pathway-grid>a:nth-child(3) .pathway-art {
  background-color: #053841;
  background-image: url('research/fintech.webp') repeating-linear-gradient(35deg, transparent 0 32px, #b9984a55 33px, transparent 34px), repeating-linear-gradient(130deg, transparent 0 40px, #72ad9b44 41px, transparent 42px)
  background: #064f40 url('research/fintech.webp') 80% center / cover;	
}

.learning-band {
  padding: 25px 0
}

.learning-band>.teaching-layout {
  display: grid;
  grid-template-columns: 1.5fr 1.1fr .8fr .35fr;
  gap: 25px;
  align-items: center
}

.learning-band h2 {
  font-size: 27px
}

.learning-band p:not(.eyebrow) {
  font-size: 12px
}

.teaching-screen {
  margin: 0;
  text-align: center
}

.screen-panel {
  padding: 12px 8px 18px;
  border: 5px solid #181d1b;
  border-radius: 7px 7px 0 0;
  background: #fcfdf8;
  box-shadow: 0 2px 5px #0003
}

.screen-panel h3 {
  font-size: 11px;
  letter-spacing: 0;
  margin-bottom: 17px
}

.teaching-circles {
  display: flex;
  align-items: center;
  justify-content: center
}

.teaching-circles span {
  display: grid;
  place-content: center;
  border: 1px solid #dae7d6;
  width: 69px;
  height: 69px;
  margin: 0 -2px;
  border-radius: 50%;
  background: #98c6b7;
  color: #204f47;
  font: 10px/1.25 var(--serif)
}

.teaching-circles span:nth-child(2) {
  width: 77px;
  height: 77px;
  background: #7eb5a5
}

.screen-base {
  height: 8px;
  background: linear-gradient(#d7d8d4, #6a6d67);
  border-radius: 0 0 50% 50%;
  margin: 0 -12px
}

.teaching-screen figcaption {
  font-size: 9px;
  color: #778177;
  margin-top: 8px
}

.teaching-menu {
  border-left: 1px solid var(--line);
  padding-left: 18px;
  display: flex;
  flex-direction: column
}

.teaching-menu a {
  padding: 10px 0;
  border-bottom: 1px solid #deded188;
  font-size: 11px
}

.learning-band .teaching-motto {
  border-left: 1px solid var(--line);
  padding-left: 18px;
  color: #889085;
  letter-spacing: .15em;
  line-height: 2;
  font-size: 10px
}

@media(max-width:1000px) {
  .learning-band>.teaching-layout {
    grid-template-columns: 1.4fr 1fr 1fr
  }

  .teaching-motto {
    display: none
  }

  .pathway-grid>a {
    grid-template-columns: 70px 1fr
  }

  .pathway-grid>a:nth-child(2) .pathway-art:after {
    width: 45px;
    left: 8px
  }
}

@media(max-width:720px) {
  .pathway-grid>a {
    grid-template-columns: 85px 1fr
  }

  .learning-band>.teaching-layout {
    grid-template-columns: 1fr
  }

  .teaching-screen {
    max-width: 300px;
    width: 100%;
    margin: 5px auto
  }

  .teaching-menu {
    padding-left: 0;
    border-left: 0
  }

  .journey-grid {
    gap: 24px
  }

  .journey-grid a:before {
    top: 0
  }

  .reading-pathways .section-heading h2 {
    font-size: 26px
  }
}

.site-footer-editorial {
  margin: 0
}

.footer-cta {
  background: linear-gradient(90deg, #03342ef2, #03342ed9), url('bgfooter.webp') center/cover;
  color: #f8f2df;
  border-top: 1px solid #e6dfc2;
  border-bottom: 1px solid #d5c598
}

.footer-cta>.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: 24px;
  padding-bottom: 24px
}

.footer-cta h2 {
  font-size: 28px;
  letter-spacing: -.025em
}

.footer-cta p {
  font-size: 12px;
  line-height: 1.55;
  color: #d5e1d5;
  margin-top: 8px
}

.footer-cta-actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0
}

.footer-cta-actions .button {
  min-width: 150px;
  justify-content: center;
  font-size: 11px;
  padding: 12px 17px
}

.footer-ivory {
  background: #fbf9f3;
  color: #334840
}

.footer-columns {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr .65fr .9fr 1.15fr;
  gap: 24px;
  padding-top: 25px;
  padding-bottom: 27px
}

.footer-identity {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font: 18px/1.15 var(--serif)
}

.footer-identity img {
  flex-shrink: 0
}

.footer-purpose {
  font-size: 11px;
  line-height: 1.6;
  color: #7c8379;
  border-left: 1px solid #e7e1d2;
  padding-left: 24px;
  margin: 0
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 3px;
  border-left: 1px solid #e7e1d2;
  padding-left: 22px
}

.footer-column h3 {
  font-size: 17px;
  letter-spacing: 0;
  margin-bottom: 5px
}

.footer-column a {
  font-size: 11px;
  color: #737d73
}

.footer-column a:hover,
.footer-legal a:hover {
  text-decoration: underline
}

.footer-principles {
  border-left: 3px double #c2a66a;
  padding-left: 24px;
  font-size: 10px;
  letter-spacing: .14em;
  line-height: 1.9;
  color: #83877b;
  margin: 0
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #e5dfd0;
  padding-top: 12px;
  padding-bottom: 18px;
  font-size: 10px;
  color: #7b837a
}

@media(max-width:1000px) {
  .footer-cta>.container {
    align-items: flex-start
  }

  .footer-cta-actions {
    flex-direction: column;
    gap: 8px
  }

  .footer-columns {
    grid-template-columns: 1.2fr 1.3fr 1fr;
    gap: 22px
  }

  .footer-principles {
    grid-column: 2/4
  }

  .footer-identity {
    font-size: 16px
  }
}

@media(max-width:600px) {
  .footer-cta>.container {
    display: block;
    padding-top: 25px;
    padding-bottom: 25px
  }

  .footer-cta h2 {
    font-size: 28px
  }

  .footer-cta-actions {
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 18px
  }

  .footer-cta-actions .button {
    min-width: 130px
  }

  .footer-columns {
    grid-template-columns: 1fr 1fr
  }

  .footer-identity,
  .footer-purpose {
    grid-column: 1/-1
  }

  .footer-purpose {
    border-left: 0;
    padding-left: 0
  }

  .footer-column {
    padding-left: 0;
    border: 0
  }

  .footer-principles {
    grid-column: 1/-1;
    padding-left: 15px
  }

  .footer-legal {
    font-size: 9px;
    flex-wrap: wrap
  }
}

/* Larger homepage portrait, anchored at the bottom of the hero. */
.homepage-editorial .hero-portrait {
  position: relative;
  height: 465px;
  width: 100%;
  padding: 0
}

.homepage-editorial .portrait-frame {
  position: absolute;
  right: -28px;
  bottom: 0;
  width: 500px;
  max-width: none
}

.homepage-editorial .portrait-frame img {
  width: 100%;
  height: 515px;
  object-fit: contain;
  object-position: center bottom
}

.homepage-editorial .hero-grid {
  min-height: 515px
}

@media(min-width:1200px) {
  .homepage-editorial .portrait-frame {
    width: 550px;
    right: -40px
  }

  .homepage-editorial .portrait-frame img {
    height: 555px
  }

  .homepage-editorial .hero-grid {
    min-height: 555px
  }
}

@media(max-width:720px) {
  .homepage-editorial .hero-portrait {
    height: 430px;
    width: 100%;
    margin: 0 auto
  }

  .homepage-editorial .portrait-frame {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 410px;
    margin: 0 auto
  }

  .homepage-editorial .portrait-frame img {
    height: 430px
  }

  .homepage-editorial .hero-grid {
    min-height: 0
  }
}

.header .nav-wrap {
  gap: 24px;
  min-height: 82px
}

.header #navigation {
  gap: 23px;
  align-items: center
}

.header #navigation>a {
  font-size: 12px;
  padding: 27px 0
}

.header #navigation>a[aria-current]:after {
  bottom: 17px
}

.header .brand {
  font-size: 14px
}

.header .brand img {
  width: 36px
}

.header-search {
  display: flex;
  align-items: center;
  gap: 7px;
  width: 156px;
  border: 1px solid #ac9d6888;
  border-radius: 4px;
  padding: 4px 8px;
  color: #d7bb7c
}

.header-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 11px;
  padding: 4px 0;
  outline-offset: 0
}

.header-search input::placeholder {
  color: #abbdb0
}

.header-search button {
  border: 0;
  background: transparent;
  color: #d7bb7c;
  padding: 0 2px
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap
}

.search-result {
  padding: 25px 0;
  border-bottom: 1px solid var(--line)
}

.search-result h2 {
  font-size: 28px
}

.search-result .eyebrow {
  margin-bottom: 8px
}

.search-result>p:last-child {
  margin-top: 10px;
  color: var(--muted)
}

@media(max-width:1150px) and (min-width:721px) {
  .header .nav-wrap {
    flex-wrap: wrap;
    justify-content: center;
    padding: 14px 0 0
  }

  .header #navigation {
    width: 100%;
    justify-content: center;
    gap: 20px
  }

  .header #navigation>a {
    padding: 12px 0 22px
  }

  .header #navigation>a[aria-current]:after {
    bottom: 13px
  }
}

@media(max-width:720px) {
  .header #navigation {
    align-items: stretch;
    gap: 0
  }

  .header #navigation>a {
    padding: 10px 4px
  }

  .header #navigation>a[aria-current]:after {
    bottom: 6px
  }

  .header-search {
    width: 100%;
    margin-top: 12px;
    padding: 8px 12px
  }

  .header .brand {
    font-size: 13px
  }
}

.home-media {
  padding: 20px 0 28px;
  background: #fbf9f3
}

.media-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 13px
}

.media-heading h2 {
  font-size: 28px
}

.media-heading p {
  font-size: 11px;
  color: var(--muted);
  margin-top: 5px
}

.media-heading .text-link {
  font-size: 11px;
  margin: 0;
  color: #95743b
}

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

.media-tile {
  height: 155px;
  position: relative;
  overflow: hidden;
  border: 1px solid #c5c1b4;
  border-radius: 2px;
  background: #35433b
}

.media-tile:after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #061a17e8, transparent 85%);
  pointer-events: none
}

.media-tile img {
  position: absolute;
  width: 170px;
  height: 205px;
  object-fit: cover;
  object-position: top;
  left: 3px;
  top: 0
}

.media-tile>div {
  position: absolute;
  bottom: 17px;
  left: 17px;
  z-index: 1
}

.media-tile h3 {
  font: 17px/1.2 var(--serif);
  color: #fff8e9;
  letter-spacing: 0
}

.media-tile>div>span {
  display: block;
  font-size: 9px;
  color: #d7bb7c;
  margin-top: 6px
}

.media-lectures>div {
  left: 45%;
  right: 35px
}

.media-interviews img {
  left: auto;
  right: 10px
}

.media-interviews {
  background: linear-gradient(120deg, #18372b, #647063)
}

.media-engagement {
  background: linear-gradient(90deg, #073a30a8, #073a3033), url('bgfooter.webp') center/cover
}

.media-arrow {
  position: absolute;
  bottom: 18px;
  right: 12px;
  z-index: 2;
  border: 1px solid #fff9;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 16px
}

.media-tile:hover {
  border-color: #b9903d
}

.media-tile:hover .media-arrow {
  background: #d7bb7c;
  color: #123d30
}

@media(max-width:900px) {
  .media-grid {
    gap: 12px
  }

  .media-tile h3 {
    font-size: 15px
  }

  .media-lectures>div {
    left: 14px
  }

  .media-tile img {
    opacity: .75
  }
}

@media(max-width:600px) {
  .media-grid {
    grid-template-columns: 1fr
  }

  .media-tile {
    height: 170px
  }

  .media-lectures>div {
    left: 46%
  }

  .media-heading h2 {
    font-size: 25px
  }
}

.about-banner img {
  object-fit: cover;
  object-position: center bottom
}

.research-editorial {
  background: #faf8f1
}

.research-hero {
  background: #003d32 url('bggreen.webp') center/cover;
  color: #fff;
  overflow: hidden
}

.research-hero>.container {
  position: relative;
  min-height: 390px;
  display: flex;
  align-items: center
}

.research-hero-copy {
  position: relative;
  z-index: 1;
  width: 60%;
  padding: 45px 0 25px
}

.research-hero h1 {
  font-size: clamp(65px, 9vw, 110px);
  line-height: 1.1;
  color: #fff
}

.research-hero-copy>p {
  font: 26px/1.3 var(--serif);
  margin-top: 12px
}

.research-rule {
  display: block;
  width: 55px;
  height: 2px;
  background: #cda853;
  margin: 24px 0
}

.research-motto {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #e6c681
}

.research-library {
  position: absolute;
  right: 7%;
  bottom: 0;
  height: 100%;
  width: 34%;
}

.research-values {
  position: absolute;
  right: 0;
  top: 36px;
  font-size: 10px;
  letter-spacing: 2px;
  line-height: 2;
  border-left: 1px solid #bd9d57;
  padding-left: 10px
}

.research-catalog {
  padding-top: 25px;
  padding-bottom: 35px
}

.research-filters {
  display: flex;
  align-items: center;
  background: #ffffff80;
  border-radius: 8px;
  margin-bottom: 25px;
  overflow-x: auto
}

.research-filters a {
  padding: 14px 20px;
  font-size: 12px;
  white-space: nowrap;
  flex: 1;
  text-align: center
}

.research-filters a[aria-current] {
  background: #063c32;
  color: #fff;
  border-radius: 7px
}

.research-tiles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px
}

.research-tile {
  background: #fffdf8;
  border: 1px solid #e9e5db;
  border-radius: 9px;
  overflow: hidden;
  box-shadow: 0 3px 8px #172c1910;
  display: flex;
  flex-direction: column
}

.research-tile>svg {
  display: block;
  width: 100%;
  aspect-ratio: 1.76;
  flex-shrink: 0
}

.research-tile-copy {
  padding: 18px 20px 13px;
  display: flex;
  flex-direction: column;
  flex: 1
}

.research-tile h2 {
  font-size: 26px;
  line-height: 1.06
}

.research-tile p {
  font-size: 14px;
  line-height: 1.5;
  color: #52605a;
  margin: 10px 0 16px
}

.research-explore {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  font-size: 14px;
  font-weight: 600
}

.research-explore i {
  margin-left: auto;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f0eee6;
  font-style: normal
}

.research-tile:hover {
  border-color: #b99a54;
  transform: translateY(-2px)
}

.research-closing {
  grid-column: span 2;
  padding: 35px 50px;
  background: url('midsec.webp') right/cover;
  align-self: stretch
}

.research-closing>span {
  font: 100px/.7 var(--serif);
  color: #cfaa6d
}

.research-closing p {
  font: italic 27px/1.5 var(--serif);
  max-width: 560px
}

.research-closing .research-rule {
  width: 80px
}

@media(max-width:900px) {
  .research-filters a {
    padding: 13px
  }

  .research-hero-copy>p {
    font-size: 22px
  }

  .research-values {
    display: none
  }

  .research-library {
    right: 0;
    width: 40%
  }

  .research-tile h2 {
    font-size: 22px
  }

  .research-tile-copy {
    padding: 15px
  }

  .research-closing {
    padding: 30px
  }
}

@media(max-width:600px) {
  .research-hero>.container {
    min-height: 320px
  }

  .research-hero-copy {
    width: 76%
  }

  .research-hero h1 {
    font-size: 60px
  }

  .research-hero-copy>p {
    font-size: 20px
  }

  .research-library {
    opacity: .35;
    width: 55%
  }

  .research-motto {
    font-size: 9px;
    line-height: 1.8
  }

  .research-tiles {
    grid-template-columns: 1fr
  }

  .research-closing {
    grid-column: auto
  }

  .research-tile h2 {
    font-size: 26px
  }
}

.research-hero {
  background-image: url('research-header.png');
  background-position: center;
  background-size: cover
}

@media(max-width:600px) {
  .research-hero {
    background-image: linear-gradient(90deg, #00382dcc, #00382d55), url('research-header.png');
    background-position: 65% center
  }
}

.research-filters a {
  color: #123f33
}

.research-filters a:hover {
  color: #062e24;
  background: #e9eee7
}

.research-filters a[aria-current] {
  color: #fff;
  background: #063c32
}

.research-filters a:focus-visible {
  outline: 2px solid #987333;
  outline-offset: -3px
}

.fintech-page {
  background: #fbfaf5;
  color: #102f29
}

.fintech-hero {
  position: relative;
  background: #faf9f2;
  overflow: hidden
}

.fintech-art {
  position: absolute;
  right: 0;
  top: 0;
  width: 52%;
  height: 100%
}

.fintech-hero:after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #fbfaf5 35%, #fbfaf5e0 48%, transparent 72%);
  pointer-events: none
}

.fintech-hero>.container {
  position: relative;
  z-index: 1
}

.fintech-crumbs {
  display: flex;
  gap: 15px;
  padding: 25px 0;
  font-size: 14px
}

.fintech-crumbs a {
  color: #163a31
}

.fintech-hero-copy {
  max-width: 650px;
  padding: 25px 0 8px
}

.fintech-hero-copy .eyebrow {
  color: #946822;
  margin-bottom: 12px
}

.fintech-hero h1 {
  font-size: clamp(40px, 5.2vw, 68px);
  line-height: 1.04
}

.fintech-hero-copy>p:not(.eyebrow) {
  font-size: 18px;
  line-height: 1.6;
  max-width: 600px;
  margin-top: 23px
}

.fintech-tabs {
  display: flex;
  gap: 9px;
  overflow-x: auto;
  padding: 22px 0 0;
  border-bottom: 1px solid #e4e0d4
}

.fintech-tabs a {
  color: #183b31;
  background: #fffdf8;
  border: 1px solid #e6e3d8;
  border-radius: 10px 10px 0 0;
  padding: 12px 22px;
  white-space: nowrap
}

.fintech-tabs a:first-child {
  background: #003b31;
  color: white
}

.fintech-tabs a:hover {
  background: #e8ece0;
  color: #003b31
}

.fintech-columns {
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  gap: 25px;
  padding: 32px 0 55px
}

.fintech-columns h2 {
  font-size: 36px;
  margin-bottom: 18px
}

.fintech-columns section {
  scroll-margin-top: 25px
}

.fintech-field {
  padding: 0 15px 35px 0;
  border-bottom: 1px solid #e4e0d4
}

.fintech-field>p,
.fintech-field details p {
  font-size: 16px;
  line-height: 1.6;
  color: #40574f
}

.fintech-field summary {
  display: inline-flex;
  gap: 20px;
  cursor: pointer;
  background: #edf0e6;
  padding: 10px 17px;
  border-radius: 30px;
  margin-top: 20px
}

.fintech-field details p {
  margin-top: 15px
}

.fintech-framework {
  padding-top: 25px
}

.fintech-framework svg {
  width: 100%;
  height: auto
}

.fintech-caption {
  font-size: 11px;
  color: #64766b;
  text-align: center
}

.fintech-sidebar {
  border-left: 1px solid #e4e0d4;
  padding-left: 23px
}

.fintech-concepts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px
}

.fintech-concepts>span {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #edf0e6;
  padding: 11px 10px;
  border-radius: 30px;
  font-size: 12px
}

.fintech-concepts i {
  font-style: normal;
  color: #006353;
  font-size: 20px
}

.fintech-sidebar section+section {
  border-top: 1px solid #e4e0d4;
  margin-top: 28px;
  padding-top: 28px
}

.fintech-books {
  background: #fffdf8;
  border: 1px solid #eee9dd;
  border-radius: 10px;
  padding: 16px
}

.fintech-books>a {
  display: flex;
  gap: 17px;
  padding: 0 0 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #eee9dd;
  color: #14382e
}

.fintech-books img {
  width: 75px;
  height: 112px;
  object-fit: contain;
  box-shadow: 0 4px 7px #0002
}

.fintech-books h3 {
  font-size: 23px;
  line-height: 1.2
}

.fintech-books p {
  font-size: 13px;
  margin-top: 7px
}

.fintech-books div>span {
  display: block;
  font-size: 12px;
  margin-top: 10px;
  color: #617368
}

.fintech-books .fintech-all-books {
  border: 0;
  margin: 0;
  padding: 4px;
  font-size: 15px;
  justify-content: space-between
}

@media(max-width:750px) {
  .fintech-columns {
    grid-template-columns: 1fr
  }

  .fintech-sidebar {
    border-left: 0;
    padding-left: 0
  }

  .fintech-art {
    width: 75%;
    opacity: .4
  }

  .fintech-hero-copy {
    max-width: 90%
  }

  .fintech-hero-copy>p:not(.eyebrow) {
    font-size: 16px
  }

  .fintech-tabs a {
    padding: 11px 16px
  }

  .fintech-columns h2 {
    font-size: 30px
  }

  .fintech-concepts>span {
    font-size: 14px
  }
}

.concepts-panel[hidden],
.fintech-columns[hidden],
.concept-card[hidden],
#concept-empty[hidden] {
  display: none !important
}

.concepts-panel {
  padding: 25px 0 45px
}

.concepts-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.7fr) minmax(220px, 1fr);
  gap: 24px
}

.concepts-panel h2 {
  font-size: 44px;
  margin-bottom: 8px
}

.concepts-intro {
  font-size: 15px;
  line-height: 1.5;
  color: #415b50
}

.concept-controls {
  display: flex;
  gap: 12px;
  margin: 19px 0 16px
}

.concept-controls input,
.concept-controls select {
  border: 1px solid #deddd3;
  border-radius: 7px;
  background: #fffdf8;
  color: #163c30;
  padding: 12px;
  font: inherit;
  min-width: 0
}

.concept-controls input {
  flex: 1;
  width: 60%
}

.concept-controls select {
  width: 165px
}

.concept-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px
}

.concept-card {
  border: 1px solid #e6e4da;
  border-radius: 6px;
  overflow: hidden;
  background: #fffdf8;
  scroll-margin-top: 20px
}

.concept-card>svg {
  width: 100%;
  aspect-ratio: 1.87;
  display: block
}

.concept-card-body {
  padding: 0 13px 13px
}

.concept-icon {
  position: relative;
  display: grid;
  place-items: center;
  background: #004637;
  color: #fff;
  border: 2px solid #fff8e7;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  margin-top: -23px;
  font-size: 25px
}

.concept-card h3 {
  font-size: 21px;
  margin: 10px 0 6px;
  line-height: 1.12
}

.concept-card p {
  font-size: 13px;
  line-height: 1.4;
  color: #496055
}

.concept-card summary {
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  color: #003b30;
  margin-top: 10px;
  list-style: none
}

.concept-card details p {
  padding-top: 10px
}

.concept-aside>div {
  padding: 20px;
  border: 1px solid #ebe7dc;
  border-radius: 7px;
  margin-bottom: 15px;
  background: #fffdf8
}

.concept-index h3 {
  font-size: 25px;
  margin-bottom: 12px
}

.concept-index a {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 11px 8px;
  color: #153d30;
  font-size: 13px;
  border-bottom: 1px solid #efeee7
}

.concept-index a span {
  font-size: 23px
}

.concept-index a:hover,
.concept-index a[aria-current] {
  background: #0b4b3b;
  color: #fff;
  border-radius: 4px
}

.concept-note>span {
  color: #bb9547;
  font: 65px/.8 Georgia
}

.concept-note p {
  font: italic 21px/1.4 Georgia;
  color: #153d30
}

.concept-aside .concept-cta {
  background: #003c31 url('bgfooter.webp') center/cover;
  color: white
}

.concept-cta h3 {
  font-size: 25px;
  color: white
}

.concept-cta p {
  font-size: 12px;
  margin: 15px 0
}

.concept-cta .button {
  font-size: 11px;
  padding: 11px 15px
}

.fintech-tabs a:first-child {
  background: #fffdf8;
  color: #183b31
}

.fintech-tabs a[aria-current="page"] {
  background: #003b31;
  color: #fff
}

@media(max-width:850px) {
  .concepts-layout {
    grid-template-columns: 1fr
  }

  .concept-aside {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px
  }

  .concept-index {
    grid-row: span 2
  }
}

@media(max-width:540px) {
  .concept-card-grid {
    grid-template-columns: 1fr 1fr
  }

  .concepts-panel h2 {
    font-size: 36px
  }

  .concept-controls {
    flex-direction: column
  }

  .concept-controls input,
  .concept-controls select {
    width: 100%
  }

  .concept-aside {
    display: block
  }
}

@media(max-width:370px) {
  .concept-card-grid {
    grid-template-columns: 1fr
  }
}

.books-editorial {
  background: #fbf9f2 url('midsec.webp') center bottom/100% auto no-repeat
}

.books-hero {
  background: linear-gradient(90deg, #002e28dd, transparent), url('research-header.png') center/cover;
  color: #fff;
  padding: 25px 0 35px
}

.books-hero nav {
  display: flex;
  gap: 15px;
  padding: 0;
  margin-bottom: 30px;
  font-size: 13px
}

.books-hero nav a {
  padding: 0;
  color: white
}

.books-hero h1 {
  font-size: 76px;
  color: #fff;
  line-height: 1.1
}

.books-subtitle {
  font-size: 21px;
  margin-top: 10px
}

.books-hero p:not(.books-subtitle) {
  font-size: 16px;
  line-height: 1.6
}

.books-catalog {
  padding-top: 25px;
  padding-bottom: 30px
}

.books-controls {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap
}

.books-search {
  flex: 1;
  min-width: 210px
}

.books-controls input,
.books-controls select {
  width: 100%;
  border: 1px solid #dedcd1;
  border-radius: 8px;
  padding: 11px;
  background: #fffdf8;
  color: #143a30;
  font: inherit;
  font-size: 12px
}

.books-controls .button {
  padding: 11px 16px;
  font-size: 12px
}

.books-catalog .results {
  margin: 18px 0;
  font-size: 12px;
  color: #536c60
}

.books-catalog .results a {
  color: #0c4b37;
  text-decoration: underline
}

.catalog-book-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px
}

.catalog-book {
  border: 1px solid #e5e2d8;
  border-radius: 12px;
  overflow: hidden;
  background: #fffdf7;
  box-shadow: 0 3px 9px #173b2110;
  display: flex;
  flex-direction: column
}

.catalog-cover {
  display: flex;
  justify-content: center;
  background: #eeece1;
  height: 300px;
  padding: 10px 20px 0;
  overflow: hidden
}

.catalog-cover img {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(-8px 6px 8px #0004)
}

.catalog-book-copy {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1
}

.catalog-book h2 {
  font-size: 27px;
  line-height: 1.13
}

.catalog-role {
  align-self: flex-start;
  border-radius: 25px;
  background: #e6e9dc;
  padding: 4px 15px;
  font: 14px Georgia;
  margin: 12px 0
}

.catalog-year {
  margin-bottom: 8px
}

.catalog-book p {
  font-size: 14px;
  line-height: 1.45;
  color: #506356
}

.catalog-detail {
  display: flex;
  gap: 25px;
  align-items: center;
  margin-top: auto;
  padding-top: 20px;
  color: #103d2e;
  font-weight: 600;
  font-size: 13px
}

.catalog-detail span {
  background: #174e39;
  color: #fff;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center
}

.catalog-end {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px
}

.catalog-end>span {
  width: 85px;
  height: 1px;
  background: #b99a54
}

.catalog-end>a {
  font: 21px Georgia;
  color: #16452f
}

.catalog-end p {
  width: 100%;
  text-align: center;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px
}

.books-catalog .collection-note {
  text-align: center;
  margin-top: 20px
}

.fintech-tabs a[aria-current]:after,
.research-filters a[aria-current]:after {
  display: none
}

.fintech-crumbs {
  display: flex
}

.fintech-crumbs a {
  padding: 0
}

@media(max-width:800px) {
  .catalog-book-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .books-hero h1 {
    font-size: 60px
  }

  .books-controls>div {
    flex: 1;
    min-width: 130px
  }

  .books-controls .books-search {
    flex-basis: 100%
  }
}

@media(max-width:520px) {
  .catalog-book-grid {
    grid-template-columns: 1fr
  }

  .books-hero {
    background-position: 65% center
  }

  .books-subtitle {
    font-size: 19px
  }

  .books-hero h1 {
    font-size: 54px
  }

  .catalog-cover {
    height: 300px
  }

  .catalog-end {
    gap: 12px
  }

  .catalog-end>span {
    width: 40px
  }
}

@media(max-width:520px) {
  .books-hero {
    background-image: linear-gradient(90deg, #002e28ed, #002e2899), url('research-header.png')
  }
}

.insights-header {
  background: #003b31 url('insights-header.png') center/cover;
  min-height: 340px;
  display: flex;
  align-items: center
}

.insights-header h1 {
  color: #fffaf0
}

@media(max-width:600px) {
  .insights-header {
    min-height: 260px;
    background-image: linear-gradient(90deg, #00382daa, #00382d22), url('insights-header.png');
    background-position: 60% center
  }
}

.fintech-hero {
  background: #faf9f2 url('fintech-header.png') center/cover
}

.fintech-hero:after {
  display: none
}

@media(max-width:750px) {
  .fintech-hero {
    background-image: linear-gradient(90deg, #fbfaf5ee, #fbfaf5bb), url('fintech-header.png');
    background-position: 60% center
  }
}

.books-hero {
  background-image: url('books-header.png');
  background-position: center;
  background-size: cover
}

@media(max-width:520px) {
  .books-hero {
    background-image: linear-gradient(90deg, #002e28dd, #002e2866), url('books-header.png');
    background-position: 65% center
  }
}

.insights-editorial {
  background: #fbfaf5 url('midsec.webp') center bottom/100% auto no-repeat;
  color: #12372c
}

.insights-new-hero {
  position: relative;
  overflow: hidden;
  background: #faf9f1
}

.insights-new-hero>svg {
  position: absolute;
  right: 0;
  top: 0;
  width: 60%;
  height: 100%
}

.insights-new-hero:after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #fbfaf5 30%, #fbfaf5ee 41%, transparent 68%)
}

.insights-new-hero>.container {
  position: relative;
  z-index: 1;
  padding-top: 25px;
  padding-bottom: 32px
}

.insights-new-hero nav {
  display: flex;
  gap: 13px;
  margin-bottom: 38px;
  font-size: 12px
}

.insights-new-hero nav a {
  padding: 0;
  color: #14372e
}

.insights-new-hero h1 {
  font-size: 68px;
  line-height: 1.1
}

.insights-new-hero h2 {
  font-size: 32px;
  margin-top: 12px
}

.insights-new-hero p {
  font-size: 15px;
  line-height: 1.5;
  max-width: 550px
}

.insight-categories {
  display: flex;
  gap: 9px;
  overflow-x: auto;
  padding: 18px 0 26px
}

.insight-categories a {
  padding: 12px 16px;
  border: 1px solid #e9e5db;
  border-radius: 9px;
  color: #173c30;
  white-space: nowrap;
  font-size: 12px;
  background: #fffdf9
}

.insight-categories a[aria-current] {
  background: #003e32;
  color: white
}

.insight-categories a[aria-current]:after {
  display: none
}

.insight-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.7fr) minmax(230px, 1fr);
  gap: 20px;
  padding-bottom: 40px
}

.insight-search {
  display: flex;
  gap: 10px;
  margin-bottom: 16px
}

.insight-search input[type=search] {
  flex: 1;
  min-width: 0
}

.insight-search input,
.insight-search select,
.insight-search button {
  padding: 11px;
  border: 1px solid #dddcd2;
  border-radius: 8px;
  background: #fffdf9;
  color: #174032;
  font: inherit;
  font-size: 12px
}

.insight-search button {
  background: #064431;
  color: white
}

.insight-row {
  display: grid;
  grid-template-columns: 31% 1fr;
  gap: 22px;
  padding: 8px 0;
  border-bottom: 1px solid #e8e5dc;
  color: #12392d
}

.insight-row>svg {
  width: 100%;
  height: 100%;
  min-height: 145px;
  max-height: 180px;
  border-radius: 6px
}

.insight-row>div {
  padding: 7px 12px 4px 0
}

.insight-badge {
  display: inline-block;
  border-radius: 8px;
  background: #e5ebdd;
  padding: 4px 8px;
  font-size: 10px;
  text-transform: uppercase;
  margin-bottom: 8px
}

.insight-row h2 {
  font-size: 23px;
  line-height: 1.2
}

.insight-row p,
.insight-sidebar p {
  font-size: 14px;
  line-height: 1.45;
  color: #5c6b60;
  margin: 8px 0
}

.insight-row-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: #526e5c
}

.insight-row-foot i {
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e9eddf;
  width: 32px;
  height: 32px;
  font-size: 20px;
  font-style: normal;
  color: #153c2f
}

.insight-sidebar section {
  background: #fffdf9;
  border: 1px solid #e8e5dc;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 14px
}

.insight-sidebar h2 {
  font-size: 24px;
  margin-bottom: 14px
}

.insight-sidebar h3 {
  font-size: 23px;
  line-height: 1.2
}

.insight-sidebar svg {
  width: 100%;
  aspect-ratio: 1.5;
  border-radius: 7px;
  display: block;
  margin-bottom: 12px
}

.insight-sidebar a {
  font-size: 13px;
  color: #153e2f
}

.insight-topic {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #eeece4
}

.insight-topic span:last-child {
  margin-left: auto
}

.insight-sidebar .insight-stay {
  background: #003f32 url('bgfooter.webp') center/cover;
  color: #fff
}

.insight-stay h2,
.insight-stay p {
  color: white
}

.insight-stay .button {
  margin-top: 15px;
  color: #12372c
}

.insight-count {
  text-align: right;
  font-size: 12px;
  color: #597060;
  margin-top: 20px
}

@media(max-width:750px) {
  .insight-layout {
    grid-template-columns: 1fr
  }

  .insight-sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px
  }

  .insights-new-hero h1 {
    font-size: 54px
  }

  .insights-new-hero h2 {
    font-size: 26px
  }

  .insights-new-hero:after {
    background: linear-gradient(90deg, #fbfaf5f5, #fbfaf5b0)
  }

  .insight-row {
    gap: 15px
  }
}

@media(max-width:480px) {
  .insight-sidebar {
    display: block
  }

  .insight-row {
    grid-template-columns: 100px 1fr;
    gap: 12px
  }

  .insight-row h2 {
    font-size: 21px
  }

  .insight-row>svg {
    min-height: 120px;
    max-height: 160px
  }

  .insight-search {
    flex-wrap: wrap
  }

  .insight-search input[type=search] {
    flex-basis: 100%
  }

  .insights-new-hero h2 {
    font-size: 24px
  }
}

.books-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 28px
}

.books-pagination a {
  padding: 10px 15px;
  color: #fff;
  background: #084533;
  border-radius: 6px
}

.books-pagination>span {
  font-size: 13px;
  color: #526759
}

.insight-thumbnail {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 6px
}

.media-editorial {
  background: #fbfaf5 url('midsec.webp') center bottom/100% auto no-repeat;
  color: #123c30
}

.media-page-hero {
  position: relative;
  overflow: hidden;
  background: #003b30
}

.media-page-hero>svg {
  position: absolute;
  right: 0;
  top: 0;
  width: 58%;
  height: 100%
}

.media-page-hero:after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #00382f 28%, #00382fde 43%, transparent 70%)
}

.media-page-hero>.container {
  position: relative;
  z-index: 1;
  padding-top: 25px;
  padding-bottom: 30px;
  color: #fff
}

.media-page-hero nav {
  display: flex;
  gap: 12px;
  font-size: 12px;
  margin-bottom: 27px
}

.media-page-hero nav a {
  padding: 0;
  color: #fff
}

.media-page-hero h1 {
  font-size: 72px;
  line-height: 1.1;
  color: #fff
}

.media-page-hero h2 {
  font-size: 31px;
  color: #fff;
  margin-top: 7px
}

.media-page-hero p {
  font-size: 14px;
  line-height: 1.6;
  max-width: 570px
}

.media-category-tabs {
  display: flex;
  gap: 9px;
  overflow-x: auto;
  padding: 18px 0 24px
}

.media-category-tabs a {
  padding: 11px 18px;
  background: #fffdf9;
  border: 1px solid #e8e6de;
  border-radius: 8px;
  color: #163d30;
  font-size: 12px;
  white-space: nowrap
}

.media-category-tabs a[aria-current] {
  background: #003d31;
  color: #fff
}

.media-category-tabs a:after {
  display: none
}

.media-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.7fr) minmax(230px, 1fr);
  gap: 22px;
  padding-bottom: 35px
}

.media-search {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap
}

.media-search input {
  flex: 1;
  min-width: 180px
}

.media-search input,
.media-search select,
.media-search button {
  padding: 11px;
  border: 1px solid #deded4;
  border-radius: 7px;
  background: #fffdf9;
  color: #164032;
  font: inherit;
  font-size: 12px
}

.media-search button {
  background: #064534;
  color: white
}

.media-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px
}

.media-page-card {
  background: #fffdf8;
  border: 1px solid #e7e4da;
  border-radius: 7px;
  overflow: hidden;
  display: flex;
  flex-direction: column
}

.media-cover {
  position: relative;
  display: block;
  aspect-ratio: 1.65;
  background: #163f32;
  overflow: hidden
}

.media-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.media-open {
  position: absolute;
  bottom: 10px;
  left: 10px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: #073e33cc;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 50%
}

.media-duration {
  position: absolute;
  bottom: 10px;
  right: 8px;
  background: #002d27db;
  color: #fff;
  font-size: 10px;
  padding: 2px 5px;
  border-radius: 3px
}

.media-card-copy {
  padding: 12px;
  display: flex;
  flex-direction: column;
  flex: 1
}

.media-card-copy h2 {
  font-size: 20px;
  line-height: 1.2
}

.media-card-copy p,
.media-page-sidebar p {
  font-size: 13px;
  line-height: 1.5;
  color: #627363;
  margin-top: 8px
}

.media-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 17px;
  font-size: 11px;
  color: #738473
}

.media-card-bottom a {
  font-size: 20px
}

.media-page-sidebar section {
  border: 1px solid #e8e5dc;
  padding: 17px;
  background: #fffdf8;
  border-radius: 8px;
  margin-bottom: 15px
}

.media-page-sidebar h2 {
  font-size: 25px;
  margin-bottom: 13px
}

.media-page-sidebar h3 {
  font-size: 22px;
  line-height: 1.2
}

.featured-media-image {
  width: 100%;
  aspect-ratio: 1.6;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 12px
}

.media-category-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 12px;
  border-bottom: 1px solid #efede6
}

.media-category-row span:last-child {
  color: #8a9786
}

.media-page-sidebar .media-connect {
  background: #003f31 url('bgfooter.webp') center/cover;
  color: white
}

.media-connect h2,
.media-connect p {
  color: #fff
}

.media-connect .button {
  margin-top: 15px
}

.media-empty {
  grid-column: 1/-1;
  min-height: 370px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px dashed #d7dfcf;
  border-radius: 10px;
  padding: 35px;
  background: #f7f8f0
}

.media-empty>span {
  font-size: 44px;
  color: #74967a
}

.media-empty h2 {
  font-size: 28px;
  margin: 20px 0 12px
}

.media-empty p {
  font-size: 14px;
  max-width: 420px;
  color: #6b7c65
}

.media-feature-placeholder,
.media-cover-placeholder {
  display: grid;
  place-items: center;
  height: 145px;
  background: #e9eee0;
  color: #5b8169;
  font-size: 35px;
  border-radius: 5px
}

.media-total {
  text-align: right;
  color: #7e8d76;
  font-size: 12px;
  margin-top: 20px
}

.media-pagination {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 25px
}

.media-pagination a {
  color: #174b35;
  padding: 0
}

.media-page-sidebar>section>a {
  color: #164b35
}

@media(max-width:850px) {
  .media-page-layout {
    grid-template-columns: 1fr
  }

  .media-page-sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px
  }
}

@media(max-width:550px) {
  .media-page-grid {
    grid-template-columns: 1fr 1fr
  }

  .media-page-sidebar {
    display: block
  }

  .media-page-hero h1 {
    font-size: 55px
  }

  .media-page-hero h2 {
    font-size: 25px
  }

  .media-page-hero:after {
    background: linear-gradient(90deg, #00382ff5, #00382f99)
  }

  .media-page-hero>svg {
    width: 85%
  }

  .media-search input {
    flex-basis: 100%
  }

  .media-card-copy h2 {
    font-size: 19px
  }
}