:root {
  --paper: #f2eee8;
  --ink: #17141d;
  --muted: #716d69;
  --line: #2d2932;
  --pink: #ec3f83;
  --orange: #f26b1d;
  --purple: #6847d9;
  --white: #fffdf8;
}

* {
  box-sizing: border-box;
  min-width: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.45;
  overflow-x: hidden;
}

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

.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.topbar,
.brand-row,
.menu-button,
.main-nav,
.hero-inner,
.quick-start,
.section-grid,
.library-about,
.help,
.footer-inner,
.legal {
  width: min(1550px, calc(100% - 48px));
  margin: 0 auto;
}

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid #b9b3aa;
  color: #4f4b59;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.topbar-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.topbar-actions a {
  color: inherit;
}

.topbar-actions a.active {
  color: var(--pink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.brand-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 110px;
}

.weather span,
.weather strong {
  display: block;
  font-size: 12px;
  line-height: 1.35;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.weather span {
  color: #4f4b59;
  font-weight: 400;
}

.weather strong {
  max-width: none;
  color: #16141a;
  font-weight: 600;
  white-space: nowrap;
}

.brand {
  display: grid;
  justify-items: center;
  gap: 2px;
  text-align: center;
}

.brand .brand-logo {
  display: block;
  width: auto;
  max-width: 220px;
  height: auto;
}

.brand span,
.footer-brand span {
  color: var(--orange);
  font-size: 38px;
  font-weight: 950;
  letter-spacing: .13em;
  line-height: 1;
  text-shadow: -10px 0 0 rgba(236, 63, 131, .18), 10px 0 0 rgba(104, 71, 217, .18);
}

.brand small,
.footer-brand small {
  max-width: 240px;
  color: #4c4945;
  font-size: 9px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
}

.search {
  justify-self: end;
  width: 210px;
  padding: 0 0 8px 28px;
  border-bottom: 1px solid #16141a;
  color: #4f4b59;
  font-size: 12px;
  font-weight: 400;
  position: relative;
}

.search::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 2px;
  width: 11px;
  height: 11px;
  border: 1px solid #8f8a86;
  border-radius: 50%;
}

.search::after {
  content: "";
  position: absolute;
  left: 15px;
  top: 14px;
  width: 8px;
  height: 1px;
  background: #8f8a86;
  transform: rotate(45deg);
}

.nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.menu-button {
  display: none;
}

.main-nav {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  border-top: 1px solid var(--line);
}

.main-nav a {
  padding: 14px 8px 13px;
  color: #16141a;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  text-align: center;
}

.main-nav .active {
  color: #ee3f85;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.hero {
  background: var(--ink);
  color: var(--white);
  min-height: 590px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 70px;
  padding: 78px 0 140px;
  position: relative;
}

.eyebrow {
  margin: 0 0 28px;
  color: var(--pink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero .eyebrow::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 14px;
  background: var(--pink);
  vertical-align: 1px;
}

.hero h1 {
  max-width: 1040px;
  margin: 0;
  font-size: clamp(58px, 7.1vw, 96px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
}

.hero h1 span {
  display: block;
}

.hero h1 span:last-child {
  white-space: nowrap;
}

em {
  color: var(--pink);
  font-style: italic;
}

.hero-copy > p:last-child {
  max-width: 390px;
  margin: 36px 0 0;
  color: #ddd8d0;
  font-size: 17px;
  font-weight: 250;
  line-height: 1.48;
}

.hero-aside {
  align-self: start;
  border-top: 1px solid #ddd8d0;
  border-bottom: 1px solid #6c6662;
  padding: 20px 0 18px;
}

.hero-aside div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 6px 0;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero-aside span {
  color: #a9a29b;
}

.hero-aside strong {
  color: var(--pink);
  font-weight: 400;
}

.hero-aside div:nth-child(2) strong {
  color: var(--orange);
}

.hero-aside div:nth-child(3) strong {
  color: #ddd8d0;
}

.hero-cta {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 122px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 224px;
  min-height: 50px;
  padding: 0 28px;
  background: var(--orange);
  color: white;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.hero-note {
  position: absolute;
  right: 58px;
  bottom: 123px;
  display: grid;
  grid-template-columns: 14px 1fr;
  column-gap: 6px;
  width: 255px;
  color: #9d9690;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.5;
}

.hero-note::before {
  content: "↓";
  color: #9d9690;
  line-height: 1.5;
}

.quick-start {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: -70px;
  border: 2px solid var(--line);
  background: var(--paper);
  position: relative;
  z-index: 2;
}

.quick-start article {
  display: grid;
  min-height: 240px;
  padding: 34px;
  border-right: 1px solid #d8d0c6;
}

.quick-start article:last-child {
  border-right: 0;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  color: var(--orange);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.card-meta span:last-child {
  color: #aaa49c;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.card-meta.purple {
  color: var(--purple);
}

.card-meta.pink {
  color: var(--pink);
}

.quick-start h2 {
  align-self: start;
  margin: 42px 0 10px;
  font-size: 31px;
  font-weight: 560;
  line-height: 1.08;
}

.quick-start p {
  width: 105%;
  margin: 0;
  color: #625d58;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.45;
}

.quick-start a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: end;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  font-weight: 650;
  text-transform: uppercase;
}

.quick-start a span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  background: var(--orange);
  color: white;
  border-radius: 7px;
}

.quick-start article:nth-child(2) a span {
  background: var(--purple);
}

.quick-start article:nth-child(3) a span {
  background: var(--pink);
}

.section-grid {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 70px;
  padding: 112px 0 0;
}

.section-kicker {
  padding-top: 0;
}

.section-kicker span {
  display: block;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--line);
  color: var(--orange);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.section-kicker.purple span {
  color: var(--purple);
}

.section-kicker.pink span {
  color: var(--pink);
}

.section-kicker p {
  color: #77716c;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.55;
}

.section-kicker a {
  display: inline-block;
  margin-top: 12px;
  color: var(--ink);
  border-bottom: 2px solid var(--pink);
  font-size: 13px;
  font-weight: 500;
  text-transform: none;
}

.section-content h2,
.library-about h2,
.help h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.03;
}

.opportunities .section-content h2 {
  max-width: 620px;
}

.section-content h2 em {
  color: var(--pink);
}

.table-list {
  grid-column: 1 / -1;
  margin-top: -40px;
  border-top: 2px solid var(--line);
}

.table-head,
.table-row {
  display: grid;
  grid-template-columns: 70px 120px minmax(320px, 1fr) 170px 175px 92px;
  align-items: center;
  column-gap: 20px;
}

.table-head {
  padding: 14px 0;
  color: #7d7770;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.table-row {
  min-height: 84px;
  border-top: 1px solid var(--line);
  font-size: 16px;
  font-weight: 500;
}

.table-row:last-child {
  border-bottom: 2px solid var(--line);
}

.table-row strong {
  font-size: 12px;
  font-weight: 600;
}

.table-row small {
  color: #8d877f;
  font-size: 11px;
  font-weight: 300;
}

.status {
  color: var(--purple);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.status::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  background: currentColor;
}

.status.closing {
  color: var(--pink);
}

.table-row b {
  font-size: 12px;
  font-weight: 500;
  border-bottom: 1px solid currentColor;
  justify-self: end;
}

.workshops {
  align-items: end;
}

.workshops .section-content h2 em {
  color: var(--orange);
}

.event-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 2px solid var(--line);
}

.event {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  min-height: 250px;
  padding: 36px 32px 30px;
  border-right: 1px solid var(--line);
}

.event:last-child {
  border-right: 0;
}

.event > strong {
  color: var(--orange);
  font-size: 68px;
  line-height: .8;
}

.event.purple > strong {
  color: var(--purple);
}

.event.pink > strong {
  color: var(--pink);
}

.event > span {
  align-self: start;
  padding-top: 42px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .08em;
  text-align: right;
  text-transform: uppercase;
}

.event > span b,
.event > span small {
  display: block;
  font-size: inherit;
  letter-spacing: inherit;
  text-transform: uppercase;
}

.event > span b {
  font-weight: 700;
}

.event > span small {
  font-weight: 500;
}

.event h3 {
  grid-column: 1 / -1;
  align-self: end;
  margin: 16px 0 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.15;
}

.event p {
  grid-column: 1 / -1;
  margin: 0;
  color: #4f4b59;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: .02em;
}

.event div {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-top: 6px;
}

.event small {
  color: #4f4b59;
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
}

.event div small::before {
  content: "• ";
}

.event.orange div small::before,
.event.pink div small::before {
  color: var(--pink);
}

.event.pink div small {
  color: var(--pink);
}

.event a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 18px;
  background: var(--ink);
  color: white;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.news {
  grid-template-columns: 280px 1fr 455px;
}

.news .section-content {
  grid-column: 2 / -1;
}

.featured-news {
  grid-column: 1 / 3;
}

.news-image {
  display: grid;
  place-items: center;
  height: 335px;
  margin-bottom: 24px;
  background:
    repeating-linear-gradient(-45deg, rgba(236, 63, 131, .14) 0 16px, rgba(236, 63, 131, .04) 16px 32px),
    #f9dbe6;
  color: #968b90;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.featured-news > p:first-of-type,
.side-news p {
  margin: 0 0 10px;
  color: var(--pink);
  font-size: 11px;
  font-weight: 550;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.featured-news h3,
.side-news h3 {
  margin: 0;
  font-size: 34px;
  line-height: 1.02;
}

.featured-news > p:last-child,
.side-news span {
  color: #675f59;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.45;
}

.side-news {
  padding-top: 6px;
  border-top: 2px solid var(--line);
}

.side-news article {
  padding: 25px 0 28px;
  border-bottom: 1px solid var(--line);
}

.side-news h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.side-news a {
  display: inline-block;
  margin-top: 20px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.library-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 130px;
  padding: 115px 0 105px;
}

.library,
.about {
  padding-top: 0;
}

.gjs-row.library-about,
.gjs-row:has(.library):has(.about) {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  gap: 130px !important;
  width: min(1550px, calc(100% - 48px)) !important;
  margin: 0 auto !important;
  padding: 115px 0 105px !important;
  clear: both;
  overflow: visible;
}

.gjs-row.library-about > .gjs-cell,
.gjs-row:has(.library):has(.about) > .gjs-cell {
  display: block !important;
  width: auto !important;
  max-width: 100%;
  height: auto !important;
  min-height: 0 !important;
  float: none !important;
}

.gjs-row:has(.library) .library,
.gjs-row:has(.about) .about {
  width: 100%;
  margin: 0;
  padding: 0;
}

.library-about .eyebrow,
.library .eyebrow,
.about .eyebrow {
  display: block;
  margin-bottom: 18px;
}

.eyebrow.orange {
  color: var(--orange);
}

.library .eyebrow.orange {
  color: #6847d9;
}

.library h2,
.about h2 {
  border-top: 2px solid var(--line);
  padding-top: 20px;
  margin-bottom: 44px;
  font-size: 42px;
  line-height: 1.08;
}

.about h2 em {
  color: var(--orange);
}

.library a {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr) 105px;
  gap: 18px;
  align-items: center;
  min-height: 55px;
  border-bottom: 1px solid var(--line);
  font-size: 20px;
}

.library a:first-of-type {
  border-top: 1px solid var(--line);
}

.library span {
  color: #6847d9;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.library a:nth-of-type(1) span {
  color: #f36a18;
}

.library a:nth-of-type(3) span {
  color: #ef3f86;
}

.library strong {
  font-weight: 600;
}

.library small {
  color: #706a64;
  font-size: 11px;
  font-weight: 400;
  text-align: right;
}

.library small::after {
  content: " ↓";
}

.about > p:not(.eyebrow) {
  max-width: none;
  width: 100%;
  margin: -18px 0 30px;
  color: #625c56;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.5;
}

dl {
  margin: 0;
}

dl div {
  display: grid;
  grid-template-columns: 170px 1fr;
  align-items: center;
  min-height: 82px;
  border-top: 1px solid #cfc7bd;
}

dl div:last-child {
  border-bottom: 1px solid var(--line);
}

dt {
  font-size: 38px;
  font-weight: 650;
}

dd {
  margin: 0;
  color: #777069;
  font-weight: 300;
}

.help {
  display: grid;
  grid-template-columns: 1fr 330px;
  align-items: center;
  gap: 60px;
  margin-bottom: 98px;
  padding: 70px 58px;
  background: var(--pink);
  color: white;
}

.help .eyebrow,
.help h2 em {
  color: white;
}

.help .eyebrow {
  font-weight: 500;
}

.help h2 {
  max-width: 660px;
}

.help p:last-child {
  max-width: 650px;
  font-weight: 300;
  line-height: 1.5;
}

.help-actions {
  display: grid;
  gap: 14px;
}

.help-actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 55px;
  padding: 0 18px;
  border: 1px solid white;
  color: white;
  font-size: 14px;
  font-weight: 650;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.help-actions a:first-child {
  min-height: 55px;
  background: var(--ink);
  border-color: var(--ink);
  font-size: 15px;
  font-weight: 650;
  line-height: 1;
}

.help-actions a:first-child span {
  display: inline-block;
  width: 18px;
  height: 8px;
  margin-left: 7px;
  font-size: 0;
  position: relative;
}

.help-actions a:first-child span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 14px;
  height: 1px;
  background: currentColor;
  transform: translateY(-50%);
}

.help-actions a:first-child span::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 0;
  height: 0;
  border-left: 5px solid currentColor;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  transform: translateY(-50%);
}

.site-content {
  display: flow-root;
  clear: both;
}

.site-footer {
  clear: both;
  border-top: 2px solid var(--line);
  padding-top: 72px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 58px;
  padding-bottom: 54px;
}

.footer-brand span {
  display: block;
  margin-bottom: 3px;
  font-size: 32px;
}

.footer-brand .footer-logo {
  display: block;
  width: auto;
  max-width: 150px;
  height: auto;
  margin-bottom: 8px;
}

.footer-brand small {
  display: block;
}

.footer-brand p,
.site-footer p,
.site-footer a {
  color: #736d66;
  font-size: 12px;
  font-weight: 400;
}

.site-footer h4 {
  margin: 0 0 18px;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  margin: 7px 0;
}

.legal {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid #d1c9be;
  color: #77716a;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
}

.legal .legal-links {
  display: inline-flex !important;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  white-space: nowrap;
}

.legal .legal-links a,
.legal .legal-links span {
  display: inline-flex !important;
  margin: 0 !important;
  color: inherit;
  text-decoration: none;
}

@media (min-width: 981px) {
  body {
    zoom: 1.20;
  }
}

@media (min-width: 981px) and (max-width: 1300px) {
  body {
    zoom: 1;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 46px;
  }

  .hero h1 {
    font-size: clamp(58px, 7vw, 82px);
  }

  .hero-cta {
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-note {
    right: 26px;
    width: 235px;
  }

  .table-head,
  .table-row {
    grid-template-columns: 48px 90px minmax(220px, 1fr) 128px 145px 70px;
    column-gap: 14px;
  }

  .table-row b {
    justify-self: start;
  }

  .event {
    padding: 32px 24px 28px;
  }

  .event a {
    padding: 0 14px;
  }
}

@media (max-width: 980px) {
  .topbar,
  .brand-row,
  .menu-button,
  .main-nav,
  .hero-inner,
  .quick-start,
  .section-grid,
  .library-about,
  .gjs-row:has(.library),
  .gjs-row:has(.about),
  .help,
  .footer-inner,
  .legal {
    width: min(100% - 28px, 720px);
  }

  .brand-row {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 28px 0;
    text-align: center;
  }

  .weather,
  .search {
    justify-self: center;
  }

  .menu-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    padding: 0;
    border-top: 1px solid var(--line);
    color: var(--ink);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    cursor: pointer;
  }

  .menu-button::after {
    content: "+";
    color: var(--pink);
    font-size: 20px;
    font-weight: 300;
    line-height: 1;
  }

  .nav-toggle:checked + .menu-button::after {
    content: "-";
  }

  .main-nav {
    display: none;
    border-top: 1px solid var(--line);
  }

  .nav-toggle:checked + .menu-button + .main-nav {
    display: grid;
    grid-template-columns: 1fr;
  }

  .main-nav a {
    padding: 14px 0;
    border-bottom: 1px solid #d1c9be;
    text-align: left;
  }

  .hero-inner,
  .section-grid,
  .news,
  .library-about,
  .help,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    gap: 34px;
    padding-bottom: 190px;
  }

  .hero-cta {
    left: 50%;
    bottom: 106px;
    transform: translateX(-50%);
  }

  .hero-note {
    left: 0;
    right: auto;
    bottom: 48px;
    width: min(100%, 360px);
  }

  .quick-start,
  .event-row {
    grid-template-columns: 1fr;
  }

  .quick-start article,
  .event {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-start article:last-child,
  .event:last-child {
    border-bottom: 0;
  }

  .table-list {
    border-bottom: 2px solid var(--line);
  }

  .table-head {
    display: none;
  }

  .table-row {
    grid-template-columns: 46px 1fr;
    gap: 12px 18px;
    padding: 20px 0;
  }

  .table-row > *:nth-child(n+3) {
    grid-column: 2;
  }

  .news .section-content,
  .featured-news {
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  .topbar,
  .legal {
    flex-direction: column;
  }

  .hero h1 {
    font-size: 41px;
    overflow-wrap: break-word;
  }

  .hero h1 span:last-child {
    white-space: normal;
  }

  .hero-copy > p:last-child {
    font-size: 14px;
  }

  .hero-aside div {
    display: grid;
    grid-template-columns: 1fr auto;
  }

  .section-grid {
    gap: 26px;
    padding-top: 72px;
  }

  .section-content h2,
  .library-about h2,
  .library h2,
  .about h2,
  .help h2 {
    font-size: 32px;
    overflow-wrap: break-word;
  }

  .quick-start {
    margin-top: -72px;
  }

  .quick-start article,
  .event,
  .help {
    padding: 28px 22px;
  }

  .quick-start h2,
  .event h3,
  .featured-news h3,
  .side-news h3 {
    font-size: 27px;
    line-height: 1.12;
    overflow-wrap: break-word;
  }

  .quick-start p,
  .section-kicker p,
  .featured-news p,
  .side-news span {
    overflow-wrap: break-word;
  }

  .card-meta {
    gap: 16px;
  }

  .card-meta span:last-child {
    text-align: right;
  }

  .library-about {
    gap: 70px;
    padding-top: 80px;
  }

  .gjs-row.library-about,
  .gjs-row:has(.library):has(.about) {
    grid-template-columns: 1fr !important;
    gap: 70px !important;
    padding: 80px 0 70px !important;
  }

  .library a {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 14px 0;
  }

  .library small {
    text-align: left;
  }

  dl div {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 16px 0;
  }

  .help {
    margin-bottom: 64px;
  }
}
