*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  color: #303030;
  background: #fff;
  font-family: Raleway, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: #699b06;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

em,
i {
  font-style: italic;
  font-family: Raleway, Helvetica, Arial, sans-serif;
}

strong {
  font-weight: 700;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.6em;
  color: #699b06;
  font-family: Raleway, Helvetica, Arial, sans-serif;
  font-weight: 500;
  line-height: 1.3;
}

h1 { font-size: 28px; }
h2 { font-size: 24px; }
h3 { font-size: 20px; }
h4 { font-size: 16px; }

p {
  margin: 0 0 1em;
}

ul {
  margin: 0 0 1em;
  padding-left: 1.4em;
}

blockquote {
  margin: 0 0 1.2em;
  padding: 0 0 0 18px;
  border-left: 5px solid #699b06;
}

blockquote h2 {
  margin: 0;
}

.wrap {
  width: 80%;
  max-width: 1080px;
  margin: 0 auto;
}

.skip {
  position: absolute;
  left: -999px;
}

.skip:focus {
  left: 12px;
  top: 12px;
  z-index: 100000;
  background: #fff;
  padding: 8px 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #fff;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  min-height: 90px;
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 8px 0 0;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 100%;
  padding: 8px 12px 4px;
  color: #699b06;
  text-decoration: none;
}

.logo:hover {
  text-decoration: none;
}

.logo img {
  display: block;
  height: 66px;
  width: auto;
  max-width: 280px;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0 0 8px;
}

.primary-nav > li {
  position: relative;
  list-style: none;
  display: flex;
  align-items: center;
}

.primary-nav > li + li::before {
  content: "|";
  color: #b5b5b5;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  padding: 0 8px;
}

.primary-nav > li > a {
  display: block;
  padding: 14px 4px 18px;
  color: #666;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}

.primary-nav > li > a:hover,
.primary-nav > li.is-current > a,
.primary-nav > li:hover > a {
  color: #648d01;
  text-decoration: none;
}

.primary-nav .has-sub > a::after,
.mobile-nav .has-sub > a::after {
  content: "";
  display: inline-block;
  margin-left: 6px;
  border: 4px solid transparent;
  border-top-color: currentColor;
  transform: translateY(2px);
}

.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 280px;
  margin: 0;
  padding: 10px 0 12px;
  list-style: none;
  background: #fff;
  border-top: 3px solid #699b06;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 20;
}

.has-sub:hover > .sub-menu,
.has-sub:focus-within > .sub-menu,
.has-sub.open > .sub-menu {
  display: block;
}

.sub-menu a {
  display: block;
  padding: 8px 22px;
  color: #303030;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
}

.sub-menu a:hover,
.sub-menu .is-current > a {
  background: #f4f7ea;
  color: #648d01;
}

.sub-label {
  padding: 12px 22px 2px;
  color: #699b06;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-toggle,
.mobile-nav {
  display: none;
}

.banner {
  background-image: linear-gradient(90deg, #699b06 0%, #a9c267 74%, #a9c267 100%);
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 8px 0;
}

.banner blockquote {
  border-color: #fff;
  border-width: 2px;
  margin: 4px 0;
}

.banner h1,
.banner h2 {
  margin: 0;
  color: #fff !important;
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 500;
}

.banner p {
  margin: 0.2em 0 0;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}

.tagline {
  background: #ededed;
  padding: 17px 0;
}

.tagline p {
  margin: 0;
}

.section {
  padding: 36px 0;
}

.section-muted {
  background: #eeeeee;
}

.section-tight {
  padding: 18px 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.caption {
  font-size: 14px;
  margin-top: 8px;
}

.btn {
  display: inline-block;
  margin: 0.4em 0 1em;
  padding: 0.3em 1em;
  border: 2px solid #648d01;
  color: #648d01 !important;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none !important;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
}

.btn:hover {
  background: rgba(0, 0, 0, 0.05);
}

.cite {
  font-size: 15px;
  color: #333;
  font-style: italic;
}

.page-thumb {
  margin: 0;
}

.page-thumb img {
  display: block;
  width: 100%;
  border: 2px solid #699b06;
  box-shadow: 4px 4px 0 #a9c267;
}

.readmore-wrap.is-collapsed .readmore-body {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.readmore-toggle {
  display: inline-block;
  margin-top: 8px;
  color: #699b06;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
}

.site-widgets {
  padding: 48px 0 36px;
  background: #fff;
  border-top: 4px solid #699b06;
}

.widgets-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 40px 48px;
  align-items: start;
}

.site-widgets .wrap:not(.widgets-grid) > .widgets-primary {
  max-width: 560px;
}

.widgets-primary .widget-email,
.widgets-primary .widget-substack {
  margin-bottom: 18px;
}

.widget-email,
.widget-substack,
.widget-prod-head {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #699b06;
  text-decoration: none;
}

.widget-email:hover,
.widget-substack:hover {
  text-decoration: none;
}

.widget-email h4,
.widget-substack h4,
.widget-prod-head h4 {
  margin: 0;
  font-size: 16px;
  text-transform: lowercase;
  color: #699b06;
}

.icon-circle {
  width: 42px;
  height: 42px;
  border: 2px solid #699b06;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: transparent;
}

.icon-circle svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: #699b06;
}

.icon-circle path {
  fill: #699b06;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}

.socials a {
  text-decoration: none;
}

.socials a:hover {
  background: #699b06;
  text-decoration: none;
}

.socials a:hover svg,
.socials a:hover path {
  fill: #fff;
}

.link-list {
  list-style: square;
  margin: 12px 0 0;
  padding-left: 18px;
  color: #699b06;
}

.link-list li {
  margin: 0 0 0.35em;
}

.link-list a {
  color: #699b06;
  font-size: 14px;
  text-decoration: none;
}

.link-list a:hover {
  text-decoration: underline;
}

.site-footer {
  background: #222;
  color: #fff;
}

.footer-brand {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 40%),
    linear-gradient(180deg, #8fb33a 0%, #699b06 52%, #5a8605 100%);
  text-align: center;
  padding: 28px 16px;
}

.footer-tagline {
  margin: 0;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
}

.footer-bottom {
  padding: 14px 0 18px;
  color: #ccc;
  font-size: 12px;
  text-align: center;
}

.footer-bottom a {
  color: #ccc;
}

.footer-bottom a:hover {
  color: #fff;
}

.contact-note {
  font-size: 18px;
}

#contact-form {
  max-width: 640px;
  display: grid;
  gap: 16px;
}

#contact-form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  color: #303030;
}

#contact-form input,
#contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  color: #303030;
}

#contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

#contact-form input:focus,
#contact-form textarea:focus {
  outline: 2px solid #699b06;
  border-color: #699b06;
}

#contact-form button[type="submit"] {
  justify-self: start;
}

[data-cwd-contact-status] {
  margin: 0;
  min-height: 1.4em;
}

.bio-article {
  overflow: hidden;
}

.bio-article figure {
  float: left;
  width: 220px;
  margin: 0 32px 18px 0;
}

.bio-article img {
  display: block;
  width: 100%;
  height: auto;
}

.podcast-player {
  margin: 1em 0 1.2em;
}

.podcast-player iframe {
  display: block;
  width: 100%;
  max-width: 760px;
  height: 152px;
  border: 0;
}


.home-intro {
  padding: 40px 0 52px;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(120px, 200px) minmax(0, 1fr);
  gap: 28px 40px;
  align-items: start;
}

.intro-grid img {
  display: block;
  width: 100%;
  max-width: 200px;
}

.news-title {
  margin: 0 0 1.2em;
  font-size: 28px;
}

.lea-grid {
  align-items: start;
}

.lea-poster {
  display: block;
  width: auto;
  max-width: 260px;
  max-height: 380px;
  height: auto;
}

.lea-action {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 20px 28px;
  margin-top: 0.4em;
}

.lea-action .btn {
  margin: 0.2em 0 0;
}

.book-cover {
  display: block;
  max-width: 160px;
  height: auto;
  margin: 0;
  border: 1px solid #d0d0d0;
}

.page-thumb img.book-cover {
  max-width: 100%;
  border: 1px solid #d0d0d0;
  box-shadow: none;
}

.doc-callout {
  margin: 36px 0 0;
  padding: 22px 0 26px;
  border-top: 1px solid #e4e4e4;
  border-bottom: 1px solid #e4e4e4;
}

.doc-callout > p:last-child {
  margin-bottom: 0;
}

.link-here {
  color: #699b06;
  font-weight: 600;
  text-decoration: underline;
}

.link-here:hover,
.link-here:focus {
  color: #557a05;
}

.media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #111;
  margin: 0 0 1em;
}

.media iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.news-stories {
  margin-top: 36px;
  align-items: start;
}

.story-block {
  min-width: 0;
}

.story-block h3 {
  margin: 0 0 0.4em;
  font-size: 20px;
}

.story-block p {
  margin: 0 0 0.75em;
}

.story-block .cite {
  margin: 0;
}

.credit {
  margin: 8px 0 0;
  text-align: left;
  font-size: 15px;
}

.widget-art img {
  display: block;
  width: 100%;
  max-width: 380px;
  height: auto;
}

.page-stub {
  max-width: 40rem;
}

.book-intro {
  margin-bottom: 1em;
}

.book-intro blockquote {
  margin-bottom: 0.35em;
}

.book-media {
  margin: 0 0 1.25em;
  max-width: 200px;
}

.book-layout-wide .book-media {
  max-width: 280px;
}

.book-media .book-cover {
  display: block;
  width: 100%;
  height: auto;
}

.book-kicker {
  margin: 0 0 0.7em;
  color: #555;
}

.book-award {
  margin: 0 0 0.35em;
  font-weight: 600;
  color: #557a05;
}

.book-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 0;
}

.book-actions .btn {
  margin: 0;
  font-size: 13px;
  padding: 0.25em 0.85em;
}

.book-review {
  margin: 1.2em 0 0;
  padding-left: 0;
  border-left: 0;
}

.book-review footer {
  margin-top: 0.45em;
  font-style: italic;
  color: #555;
}

.book-videos {
  clear: both;
  margin-top: 32px;
}

.book-seasons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 32px;
  margin-top: 1.2em;
}

.book-seasons h3 {
  margin: 0 0 0.4em;
  font-size: 18px;
  color: #699b06;
}

.book-seasons ul {
  margin: 0;
}

.theatre-lead {
  padding: 22px 0 8px;
}

.theatre-lead p {
  margin: 0;
  color: #545454;
}

.theatre-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 28px 32px;
  align-items: start;
}

.theatre-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.theatre-photos img {
  display: block;
  width: 100%;
  height: auto;
}

.theatre-copy .credit {
  margin: 0 0 1.1em;
  color: #699b06;
  font-size: 15px;
}

.theatre-copy .btn {
  margin: 0.2em 0 0;
}

.audio-feature {
  display: grid;
  grid-template-columns: minmax(140px, 220px) minmax(0, 1fr);
  gap: 24px 28px;
  align-items: start;
  margin-bottom: 1.4em;
}

.audio-feature-media img {
  display: block;
  width: 100%;
  height: auto;
}

.audio-feature-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.audio-feature-body > p:last-child {
  margin-bottom: 0;
}

.embed-player {
  margin: 1em 0 1.4em;
}

.embed-player iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  border: 0;
}

.embed-player-large iframe {
  min-height: 375px;
}

.credit-block p {
  margin: 0 0 1em;
}

.content-tabs {
  margin: 0 0 1.4em;
}

.content-tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 0 0 1em;
  border-bottom: 2px solid #d8d8d8;
}

.content-tabs-nav button {
  appearance: none;
  border: 0;
  background: transparent;
  color: #666;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 10px 16px;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
}

.content-tabs-nav button.is-active,
.content-tabs-nav button[aria-selected="true"] {
  color: #648d01;
  border-bottom-color: #699b06;
}

.content-tab-panel[hidden] {
  display: none;
}

.song-block {
  margin: 2em 0 0;
  padding-top: 1.4em;
  border-top: 1px solid #e0e0e0;
}

.song-block:first-of-type {
  border-top: 0;
  padding-top: 0.4em;
}

.song-layout {
  display: grid;
  grid-template-columns: minmax(160px, 280px) minmax(0, 1fr);
  gap: 20px 28px;
  align-items: start;
  margin: 0 0 1em;
}

.song-art {
  display: block;
  width: 100%;
  height: auto;
}

.song-media {
  margin: 0;
}

.song-media .credit {
  margin-top: 8px;
}

.song-credits {
  margin: 0;
}

.song-by {
  margin: 0 0 0.6em;
}

.audio-native {
  display: block;
  width: 100%;
  max-width: 560px;
  margin: 0 0 1.2em;
}

.bio-toggles {
  margin-top: 1.2em;
}

.bio-toggle {
  border-top: 1px solid #d8d8d8;
  padding: 0;
}

.bio-toggle summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  color: #699b06;
  font-size: 20px;
  font-weight: 500;
}

.bio-toggle summary::-webkit-details-marker {
  display: none;
}

.bio-toggle summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #699b06;
  color: #fff;
  font-size: 22px;
  font-weight: 400;
  line-height: 30px;
  text-align: center;
}

.bio-toggle[open] summary::after {
  content: "–";
  line-height: 28px;
}

.bio-toggle > p,
.bio-toggle > .bio-land {
  margin: 0 0 1em;
}

.bio-land {
  border-left-color: #a9c267;
  color: #555;
  font-style: italic;
}

.podcast-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 28px 36px;
  align-items: start;
}

.podcast-intro-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.podcast-intro-photos img {
  display: block;
  width: 100%;
  height: auto;
}

.podcast-intro-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px 24px;
  align-items: start;
}

.podcast-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #699b06;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.season-years {
  margin: 0.15em 0 0;
  color: #699b06;
  font-size: 22px;
  font-weight: 500;
}

.season-readmore {
  margin: 0 0 1.2em;
}

.season-readmore > summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #699b06;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.8em;
}

.season-readmore > summary::-webkit-details-marker {
  display: none;
}

.season-readmore > summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #699b06;
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  text-align: center;
}

.season-readmore[open] > summary::after {
  content: "–";
  line-height: 24px;
}

.season-episodes .episode {
  margin: 0 0 1.1em;
}

.season-episodes .episode p {
  margin: 0 0 0.45em;
}

.transcript-list {
  margin-top: 0.4em;
}

.page-white,
.page-white .section,
.page-white .section-muted,
.page-white .site-widgets {
  background: #fff;
}

.audiobook-story {
  display: grid;
  grid-template-columns: minmax(160px, 280px) minmax(0, 1fr);
  gap: 24px 32px;
  align-items: start;
}

.audiobook-cover .book-cover {
  width: 100%;
  max-width: 280px;
}

.biblio-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.biblio-list li {
  margin: 0 0 0.85em;
  padding-left: 0;
}

.research-stack {
  display: grid;
  gap: 1.2em;
}

.research-feature {
  display: grid;
  grid-template-columns: minmax(160px, 280px) minmax(0, 1fr);
  gap: 24px 32px;
  align-items: start;
}

.research-figure {
  margin: 0;
}

.research-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.research-figure-wide {
  margin: 1.2em 0;
  max-width: 720px;
}

.research-figure-poster {
  max-width: 480px;
}

.research-body > :last-child {
  margin-bottom: 0;
}

.banner.research-banner {
  min-height: 56px;
}

.banner.research-banner h2 {
  font-size: 22px;
  line-height: 1.35;
  text-transform: none;
}

@media (max-width: 980px) {
  .wrap {
    width: calc(100% - 32px);
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 64px;
    width: calc(100% - 24px);
  }

  html {
    scroll-padding-top: 80px;
  }

  .primary-nav {
    display: none;
  }

  .header-inner {
    justify-content: space-between;
    flex-wrap: nowrap;
    padding: 0;
  }

  .logo {
    flex: 0 1 auto;
    padding: 6px 0;
  }

  .logo img {
    height: 52px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 64px;
    min-height: 40px;
    border: 2px solid #699b06;
    background: #fff;
    color: #699b06;
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    padding: 8px 14px;
    line-height: 1;
  }

  .nav-toggle[aria-expanded="true"] {
    background: #699b06;
    color: #fff;
  }

  .nav-toggle-label {
    display: block;
    font-size: inherit;
    line-height: 1;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-label {
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
  }

  .mobile-nav {
    display: none;
    background: #fff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
    padding: 8px 0 16px;
  }

  .mobile-nav.is-open {
    display: block;
  }

  .mobile-nav > ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .mobile-nav > ul > li > a {
    display: block;
    padding: 12px 20px;
    color: #666;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
  }

  .mobile-nav > ul > li.is-current > a {
    color: #648d01;
  }

  .mobile-nav .sub-menu {
    position: static;
    display: none;
    min-width: 0;
    width: 100%;
    transform: none;
    box-shadow: none;
    border-top: 0;
    padding: 0 0 8px 12px;
  }

  .mobile-nav .sub-menu a {
    white-space: normal;
  }

  .mobile-nav .sub-label {
    padding: 10px 20px 0;
  }

  .mobile-nav .has-sub.open > .sub-menu {
    display: block;
  }

  .grid-2,
  .intro-grid,
  .lea-grid,
  .theatre-grid,
  .audio-feature,
  .song-layout,
  .podcast-intro-grid,
  .audiobook-story,
  .research-feature {
    grid-template-columns: 1fr;
  }

  .research-feature .research-figure {
    max-width: 280px;
  }

  .podcast-intro-photos {
    max-width: 360px;
  }

  .audiobook-cover .book-cover {
    max-width: 240px;
  }

  .podcast-intro-copy {
    grid-template-columns: 1fr;
  }

  .audio-feature-media {
    max-width: 280px;
  }

  .audio-feature-pair {
    max-width: 420px;
  }

  .intro-grid img {
    max-width: 180px;
  }

  .bio-article figure {
    float: none;
    width: 180px;
    margin: 0 0 18px;
  }

  .book-seasons {
    grid-template-columns: 1fr;
  }
}

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

  .banner h1,
  .banner h2 {
    font-size: 22px;
  }

  .bio-article figure {
    width: 160px;
  }
}
