@font-face {
  font-family: "Inter UI var";
  font-weight: 400 900; /* safe weight range */
  src: url("/fonts/Inter-UI.var.woff2") format("woff2-variations"), url("/fonts/Inter-UI.var.woff2") format("woff2");
  font-style: normal;
  font-stretch: normal;
  font-display: swap;
}
@font-face {
  font-family: "Atomic Marker";
  src: url("/fonts/AtomicMarker.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  font-display: block;
}
@font-face {
  font-family: "Atomic Marker Extras";
  src: url("/fonts/AtomicMarkerExtras.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  font-display: block;
}
@font-face {
  font-family: "Atomic Marker Extras Two";
  src: url("/fonts/AtomicMarkerExtrasTwo.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  font-display: block;
}
@media (prefers-reduced-motion: reduce) {
  :root {
    --global-transition-time: 0;
    --scroll-behaviour: auto;
  }
}
:root {
  --pink: #f0047f;
  --pink-light: #f890c6;
  --black: #0e0016;
  --black-alt: #1f1823;
  --grey-dark: #2b2e3a;
  --grey-mid: #475467;
  --white: #faefff;
  --white-alt: #f7d9ff;
  --orange: #fc814a;
  --body-horizontal-padding-sm: 1rem;
  --body-horizontal-padding-lg: 2.5rem;
  --font-family-main: "Inter UI var", Arial, sans-serif;
  --font-weight-bold: 800;
  --font-weight-mid: 600;
  --font-weight-main: 400;
  --border-radius-base: 0.375rem;
  --global-max-width: 1440px;
  --feed-max-width: 510px;
  --post-max-width: 1064px;
  --base-shadow-filter: drop-shadow(0px 0.125rem 0.125rem rgba(0, 0, 0, 0.25));
  --global-transition-time: 0.21s;
  --scroll-behaviour: smooth;
  --form-height: 48px;
}

[color-mode=dark] {
  color-scheme: dark;
  --page-bg: radial-gradient(farthest-corner at 100% 100%, var(--black-alt) 0%, var(--black) 50%);
  --whitep4nth3r-bg-svg: url("/img/whitep4nth3r-darkmode.svg");
  --color-bg: var(--black);
  --color-fg: var(--white);
  --color-fg-copy: rgba(255, 255, 255, 0.92);
  --color-link: var(--pink-light);
  --color-brush-bg: rgba(255, 255, 255, 0.72);
  --color-focus-outline: var(--pink-light);
}

[color-mode=light] {
  color-scheme: light;
  --page-bg: radial-gradient(farthest-corner at 100% 100%, var(--white-alt) 0%, var(--white) 50%);
  --whitep4nth3r-bg-svg: url("/img/whitep4nth3r-lightmode.svg");
  --color-bg: var(--white);
  --color-fg: var(--black);
  --color-fg-copy: rgba(0, 0, 0, 0.72);
  --color-link: var(--pink);
  --color-brush-bg: rgba(0, 0, 0, 0.72);
  --color-focus-outline: var(--pink);
}

* {
  box-sizing: border-box;
  margin: 0;
  z-index: 1;
}

html {
  font-size: 100%;
  scroll-behavior: var(--scroll-behaviour);
  background-color: var(--color-bg);
}

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

a {
  color: inherit;
  transition: color 0.2s ease-in-out;
  text-decoration: underline;
  text-underline-offset: 0.125rem;
  text-decoration-thickness: 0.125rem;
}

strong {
  font-weight: var(--font-weight-bold);
  font-family: var(--font-family-main);
}

/* END RESET */
body {
  font-weight: var(--font-weight-main);
  font-family: var(--font-family-main);
  font-size: 1rem;
  color: var(--color-fg);
  padding: var(--body-horizontal-padding-sm);
  position: relative;
  min-height: 100vh;
  background: var(--color-bg);
  background-image: var(--page-bg);
  background-attachment: fixed !important;
}
@media screen and (min-width: 48rem) {
  body {
    padding: 1rem var(--body-horizontal-padding-lg);
  }
}

@keyframes fadeInBrush {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
main {
  margin: 6rem auto auto auto;
  max-width: var(--global-max-width);
}
@media screen and (min-width: 768px) {
  main {
    margin-top: 10rem;
  }
}
main:before {
  animation: fadeInBrush 0.42s ease-in-out;
  font-weight: normal;
  font-style: normal;
  font-family: "Atomic Marker Extras Two";
  content: "M"/"";
  color: var(--color-brush-bg);
  position: fixed;
  z-index: -1;
  opacity: 50%;
  mix-blend-mode: overlay;
  font-size: 1000px;
  line-height: 1;
  right: -10%;
  top: 5%;
}
main:after {
  content: var(--whitep4nth3r-bg-svg);
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}

[data-type=about] main:before,
[data-type=uses] main:before,
[data-type=post] main:before {
  content: "Q"/"";
  top: 20%;
  right: -20%;
}

[color-mode=dark] {
  --input-bg: rgba(255, 255, 255, 0.06);
  --input-border: 0.0625rem solid rgba(255, 255, 255, 0.18);
}

[color-mode=light] {
  --input-bg: rgba(0, 0, 0, 0.07);
  --input-border: 1px solid rgba(0, 0, 0, 0.14);
}

@keyframes flash {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
[color-mode=light] {
  --header-bg: rgba(250, 239, 255, 0.8);
  --header-external-arrow-svg: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.66663 11.3334L11.3333 4.66675M11.3333 4.66675H4.66663M11.3333 4.66675V11.3334' stroke='black' stroke-opacity='0.72' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  --header-home-active-content: url("/img/nav-active-home-light.svg");
  --header-about-active-content: url("/img/nav-active-about-light.svg");
  --header-blog-active-content: url("/img/nav-active-blog-light.svg");
}

[color-mode=dark] {
  --header-bg: rgba(14, 0, 22, 0.75);
  --header-external-arrow-svg: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.66663 11.3334L11.3333 4.66675M11.3333 4.66675H4.66663M11.3333 4.66675V11.3334' stroke='white' stroke-opacity='0.72' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  --header-home-active-content: url("/img/nav-active-home-dark.svg");
  --header-about-active-content: url("/img/nav-active-about-dark.svg");
  --header-blog-active-content: url("/img/nav-active-blog-dark.svg");
}

.header {
  --header-padding-vertical: 0.25rem;
  --logo-height: 3rem;
  margin: 1rem auto;
  max-width: var(--global-max-width);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  z-index: 10;
  position: fixed;
  justify-self: center;
  width: calc(100vw - var(--body-horizontal-padding-sm) * 2);
  border-radius: 2.5rem;
  background: var(--header-bg);
  backdrop-filter: blur(6px);
  padding: 0 0.5rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .header {
    width: calc(100vw - var(--body-horizontal-padding-lg) * 2);
  }
}

.header__navGroup {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-direction: row;
  justify-self: flex-start;
  width: max-content;
}

.header__skipToMainContent {
  font-weight: var(--font-weight-bold);
  font-family: var(--font-family-main);
  display: flex;
  justify-content: center;
  color: var(--color-fg);
  text-decoration: none;
  font-size: 1rem;
  line-height: 1;
  max-width: var(--global-max-width);
  margin-left: auto;
  margin-right: auto;
  padding: 0.5rem;
  margin-bottom: 0.5rem;
  position: absolute;
  top: -100px;
  transform: translateX(-50%);
  left: 50%;
  background-color: var(--color-bg);
  z-index: 15;
  position: absolute;
}
.header__skipToMainContent:focus-visible {
  outline: transparent;
  outline-style: solid;
  box-shadow: var(--color-bg) 0 0 0 0.08rem, var(--color-focus-outline) 0 0 0 0.24rem;
  transition: box-shadow var(--global-transition-time) ease-in-out;
  border-radius: var(--border-radius-base);
}
.header__skipToMainContent:focus {
  top: 1rem;
}

.header__logoContainer {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__logoContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--header-padding-vertical);
  }
  .header__logoContainer svg {
    height: var(--logo-height);
    width: auto;
  }
}

.header__navList {
  padding-left: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.25rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .header__navList {
    gap: 1rem;
  }
}

.header__navListDetails {
  position: relative;
}

.header__navListMoreLinks {
  background: var(--header-bg);
  border-radius: 0 0 var(--border-radius-base) var(--border-radius-base);
  position: absolute;
  bottom: 0;
  width: max-content;
  left: 50%;
  transform: translate(-50%, 100%);
}
.header__navListMoreLinks a {
  padding: 0.9rem;
}
@media screen and (min-width: 768px) {
  .header__navListMoreLinks {
    bottom: calc(var(--header-padding-vertical) * -0.5);
  }
  .header__navListMoreLinks a {
    padding: 0.5rem;
  }
}
.header__navListMoreLinks::before {
  background-color: var(--header-bg);
  content: "";
  filter: blur(6px);
  position: absolute;
  inset: 6%;
  z-index: -1;
  display: block;
}

.header__navListItemLink--external {
  transition: text-shadow var(--global-transition-time) ease-in-out;
}
.header__navListItemLink--external:hover {
  text-shadow: 0 0 0.25rem rgba(245, 88, 170, 0.7);
}
.header__navListItemLink--external::after {
  content: "";
  display: inline-block;
  background-image: var(--header-external-arrow-svg);
  height: 1rem;
  width: 1rem;
}

.header__navListSummary {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .header__navListSummary {
    height: calc(var(--header-padding-vertical) + var(--logo-height));
  }
}

.header__navListItemLink,
.header__navListSummary {
  transition: opacity var(--global-transition-time) ease-in-out;
  opacity: 0.72;
  font-weight: var(--font-weight-bold);
  font-family: var(--font-family-main);
  padding: 1rem 0.5rem;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: center;
  justify-content: space-between;
  text-transform: uppercase;
  position: relative;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 1px;
}
@media screen and (min-width: 768px) {
  .header__navListItemLink,
  .header__navListSummary {
    font-size: 1rem;
    padding: 0.5rem 0.5rem;
  }
}
.header__navListItemLink:focus-visible,
.header__navListSummary:focus-visible {
  outline: transparent;
  outline-style: solid;
  box-shadow: var(--color-bg) 0 0 0 0.08rem, var(--color-focus-outline) 0 0 0 0.24rem;
  transition: box-shadow var(--global-transition-time) ease-in-out;
  border-radius: var(--border-radius-base);
}
.header__navListItemLink:hover,
.header__navListSummary:hover {
  opacity: 1;
}

[data-active=home] [data-link=home],
[data-active=blog] [data-link=blog],
[data-active=about] [data-link=about] {
  opacity: 1;
  position: relative;
}
[data-active=home] [data-link=home]::after,
[data-active=blog] [data-link=blog]::after,
[data-active=about] [data-link=about]::after {
  width: 100%;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

[data-active=home] [data-link=home]::after {
  content: var(--header-home-active-content);
  bottom: 0.75rem;
}
@media screen and (min-width: 768px) {
  [data-active=home] [data-link=home]::after {
    bottom: 0.25rem;
  }
}

[data-active=blog] [data-link=blog]::after {
  content: var(--header-blog-active-content);
  bottom: 0.75rem;
}
@media screen and (min-width: 768px) {
  [data-active=blog] [data-link=blog]::after {
    bottom: 0.25rem;
  }
}

[data-active=about] [data-link=about]::after {
  content: var(--header-about-active-content);
  bottom: 0.75rem;
}
@media screen and (min-width: 768px) {
  [data-active=about] [data-link=about]::after {
    bottom: 0.25rem;
  }
}

.header__themeToggle {
  padding: 0.5rem;
  border-color: transparent;
  transition: all var(--global-transition-time) ease-in-out;
  background-image: url("/img/theme-dark.svg");
  background-repeat: no-repeat;
  background-position: center;
  height: 2.75rem;
  width: 2.75rem;
  border-radius: 100%;
  background-color: transparent;
  cursor: pointer;
  display: inline;
  position: relative;
}
.header__themeToggle.header__themeToggle--light {
  background-image: url("/img/theme-light.svg");
}
.header__themeToggle:focus-visible {
  outline: transparent;
  outline-style: solid;
  box-shadow: var(--color-bg) 0 0 0 0.08rem, var(--color-focus-outline) 0 0 0 0.24rem;
  transition: box-shadow var(--global-transition-time) ease-in-out;
  border-radius: var(--border-radius-base);
}

.home {
  display: block;
  margin: auto;
  gap: 2rem;
  min-height: 100vh;
}
@media screen and (min-width: 62.5em) {
  .home {
    display: flex;
    flex-direction: row;
  }
}

.home__left {
  margin-bottom: 3rem;
}
@media screen and (min-width: 62.5em) {
  .home__left {
    width: 26.25rem;
    flex-grow: 0;
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    min-height: 70vh;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 62.5em) {
  .home__fixed {
    position: fixed;
    height: 70vh;
    max-width: 26.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.home__scroll {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  max-width: 1080px;
  margin: auto;
}

.home__twitch {
  margin-bottom: 3rem;
}
@media screen and (min-width: 62.5em) {
  .home__twitch {
    display: flex;
    flex-grow: 1;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
}

.home__heading {
  font-weight: var(--font-weight-mid);
  font-family: var(--font-family-main);
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 2rem;
  color: var(--color-link);
  position: relative;
  text-decoration: none;
}
.home__heading:focus-visible {
  outline: transparent;
  outline-style: solid;
  box-shadow: var(--color-bg) 0 0 0 0.08rem, var(--color-focus-outline) 0 0 0 0.24rem;
  transition: box-shadow var(--global-transition-time) ease-in-out;
  border-radius: var(--border-radius-base);
}

.home__activity {
  margin: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media screen and (min-width: 62.5em) {
  .home__activity {
    grid-template-columns: 1fr 1fr;
  }
}

.homeAbout {
  width: 100%;
}

.homeAbout__name {
  position: relative;
  color: var(--color-fg);
  display: block;
}

.homeAbout__subtitle {
  font-size: 1.4rem;
  line-height: 1;
  margin-bottom: 2rem;
  color: var(--color-fg);
  display: block;
}

.homeAbout__bio h2 {
  font-weight: var(--font-weight-mid);
  font-family: var(--font-family-main);
  font-size: 1.875rem;
  line-height: 1.375;
  margin-bottom: 1rem;
  color: var(--color-fg);
}
.homeAbout__bio p {
  font-weight: var(--font-weight-main);
  font-family: var(--font-family-main);
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: var(--color-fg-copy);
}
.homeAbout__bio p a {
  font-weight: var(--font-weight-mid);
  font-family: var(--font-family-main);
  color: var(--color-link);
  text-decoration: none;
}
.homeAbout__bio p a:focus-visible {
  outline: transparent;
  outline-style: solid;
  box-shadow: var(--color-bg) 0 0 0 0.08rem, var(--color-focus-outline) 0 0 0 0.24rem;
  transition: box-shadow var(--global-transition-time) ease-in-out;
  border-radius: var(--border-radius-base);
}

.blog {
  display: block;
}
@media screen and (min-width: 48em) {
  .blog {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1.5rem;
  }
}
@media screen and (min-width: 70em) {
  .blog {
    grid-template-columns: 1fr 4fr;
  }
}

.blog__searchAndCats {
  height: max-content;
  border-radius: 0.75rem;
}

.blog__filterToggle {
  font-weight: var(--font-weight-mid);
  font-family: var(--font-family-main);
  font-size: 0.875rem;
  line-height: 1.25;
  display: flex;
  flex-direction: row;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
  padding: 0.625rem 1rem;
  gap: 0.5rem;
  background: linear-gradient(180deg, #70707b 0%, #51525c 100%);
  border: 0.0625rem solid #18181b;
  box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05), inset 0px -2px 0px rgba(0, 0, 0, 0.24), inset 0px 1px 0px rgba(255, 255, 255, 0.32);
  border-radius: 0.5rem;
  height: var(--form-height);
  color: #fff;
  transition: all var(--global-transition-time) ease-in-out;
}
.blog__filterToggle:hover {
  background: linear-gradient(180deg, #51525c 0%, #26272b 100%);
}
.blog__filterToggle:focus-visible {
  box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05), 0px 0px 0px 2px #404040, 0px 0px 0px 6px var(--pink), 0px 1px 2px rgba(16, 24, 40, 0.05), inset 0px -2px 0px rgba(0, 0, 0, 0.24), inset 0px 1px 0px rgba(255, 255, 255, 0.32);
  outline-color: var(--color-bg);
}
.blog__filterToggle:active {
  background: linear-gradient(180deg, #18181b 0%, #26272b 100%);
}
@media screen and (min-width: 48em) {
  .blog__filterToggle {
    display: none;
  }
}

.blog__searchBoxAndFilterToggle {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1rem;
}

@media screen and (min-width: 48em) {
  .blog__searchBoxAndFilterToggle--topicsPage {
    margin-bottom: 0;
  }
}

.blog__cats {
  display: none;
  background: var(--color-bg);
  box-shadow: inset 0px 1px 0px rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(1rem);
  border-radius: 1rem 1rem 0 0;
  padding: 1rem;
  z-index: 10;
  position: fixed;
  bottom: 0;
  width: 100vw;
  height: 50vh;
  overflow-y: scroll;
  overflow-x: hidden;
  margin-left: -1rem;
}
@media screen and (min-width: 48em) {
  .blog__cats {
    background: unset;
    border-radius: unset;
    box-shadow: unset;
    display: block;
    padding: unset;
    z-index: 1;
    position: relative;
    bottom: unset;
    width: unset;
    height: 100%;
    overflow: auto;
    margin-left: 0;
  }
}

.blog__cardsGrid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  list-style: none;
  padding-left: 0;
  grid-auto-rows: 1fr;
}
.blog__cardsGrid li {
  display: flex;
}

.blog__emptySearchCard {
  max-width: 320px;
}

.blog__item mark {
  color: var(--color-bg);
  background-color: var(--color-fg);
}

.about {
  display: block;
  margin: auto;
  gap: 2rem;
  min-height: 100vh;
}
@media screen and (min-width: 62.5em) {
  .about {
    display: flex;
    flex-direction: row;
  }
}

.about__image {
  margin-bottom: 3rem;
}
@media screen and (min-width: 62.5em) {
  .about__image {
    width: 28rem;
    flex-grow: 0;
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    min-height: 70vh;
    margin-bottom: 0;
  }
}

.about__name {
  z-index: 10;
  margin-top: -6.6rem;
}
@media screen and (min-width: 62.5em) {
  .about__name {
    margin-top: 0;
  }
}

@media screen and (min-width: 62.5em) {
  .about__fixed {
    position: fixed;
    height: 100vh;
    max-width: 26.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (min-width: 62.5em) {
  .about__fixed {
    align-items: flex-start;
  }
}
.about__fixed * {
  height: calc(100% - 6.5rem);
  object-fit: cover;
  border-radius: var(--border-radius-base);
}

.about__details {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  max-width: 1080px;
  margin: auto;
  margin: unset;
}

[color-mode=dark] {
  --topics-item-hover-bg: rgba(255, 255, 255, 0.09);
}

[color-mode=light] {
  --topics-item-hover-bg: rgba(0, 0, 0, 0.09);
}

.topics {
  list-style: none;
  display: block;
  padding-left: 0.175rem;
  padding-right: 0.175rem;
  padding-bottom: 0.75rem;
}

.topics__topRow {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.topics__closeButton {
  display: block;
  appearance: none;
  background: transparent;
  color: var(--color-fg);
  outline: transparent;
  border-color: transparent;
  padding: 0;
}
.topics__closeButton:focus-visible {
  box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05), 0px 0px 0px 2px #404040, 0px 0px 0px 6px var(--pink), 0px 1px 2px rgba(16, 24, 40, 0.05), inset 0px -2px 0px rgba(0, 0, 0, 0.24), inset 0px 2px 0px rgba(255, 255, 255, 0.32);
  outline: var(--color-bg);
}
@media screen and (min-width: 48em) {
  .topics__closeButton {
    display: none;
  }
}

.topics__title {
  font-weight: var(--font-weight-mid);
  font-family: var(--font-family-main);
  font-size: 1rem;
}

.topics__meta {
  font-weight: var(--font-weight-mid);
  font-family: var(--font-family-main);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.topics__listItemLink {
  display: block;
  font-weight: var(--font-weight-mid);
  font-family: var(--font-family-main);
  color: var(--color-fg);
  font-size: 1rem;
  line-height: 1.5rem;
  text-decoration: none;
  padding: 0.635rem 0.875rem;
  border-radius: var(--border-radius-base);
  transition: background-color var(--global-transition-time) ease-in-out;
}
.topics__listItemLink:hover {
  background-color: var(--topics-item-hover-bg);
}
.topics__listItemLink:focus-visible {
  outline: transparent;
  outline-style: solid;
  box-shadow: var(--color-bg) 0 0 0 0.08rem, var(--color-focus-outline) 0 0 0 0.24rem;
  transition: box-shadow var(--global-transition-time) ease-in-out;
  border-radius: var(--border-radius-base);
}

.topics__listItemLink--selected {
  background-color: var(--pink);
  color: var(--white);
}
.topics__listItemLink--selected:hover {
  background-color: var(--pink);
  color: var(--white);
}

.page__headerTitle {
  font-weight: var(--font-weight-bold);
  font-family: var(--font-family-main);
  margin: 0 auto clamp(2rem, 3vw, 3rem) auto;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  line-height: 1.4;
  color: var(--color-fg);
}

[color-mode=dark] {
  --post-hr-color: var(--pink-light);
}

[color-mode=light] {
  --post-hr-color: var(--pink);
}

.post {
  max-width: var(--post-max-width);
  margin: auto;
}

@media screen and (min-width: 56em) {
  .post {
    display: grid;
    grid-template-columns: 1fr 3fr;
    column-gap: clamp(2rem, 4vw, 4rem);
  }
}
.post__meta {
  margin: auto;
  max-width: var(--post-max-width);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.post__meta__topic {
  font-weight: var(--font-weight-mid);
  font-family: var(--font-family-main);
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--pink);
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 0.125rem 0.5rem;
  width: max-content;
}

.post__excerpt p {
  font-weight: var(--font-weight-mid);
  font-family: var(--font-family-main);
  font-size: 1.25rem;
  line-height: 1.5;
  margin-bottom: 2rem;
  color: var(--color-fg-copy);
}

.post__separator {
  margin-bottom: 2rem;
  border-color: var(--post-hr-color);
  border-style: solid;
}

.post__article {
  display: flex;
  flex-direction: column;
}

.post__aside {
  flex-direction: column;
  display: flex;
  width: 17.5rem;
}

@media screen and (min-width: 56em) {
  .post__authorContainer {
    margin-bottom: 2rem;
  }
}

.post__asideStickyGroup {
  position: sticky;
  top: 10rem;
  overflow-y: auto;
  max-height: 100vh;
  padding-top: 0.25rem;
  padding-bottom: 0;
  padding-right: 1rem;
  margin-left: -1rem;
  padding-left: 1rem;
}
@media screen and (min-width: 56em) {
  .post__asideStickyGroup {
    padding-bottom: 4rem;
  }
}

.post__body {
  margin-bottom: 2rem;
}

.post__hr {
  border-color: transparent;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.post__h1 {
  font-weight: var(--font-weight-bold);
  font-family: var(--font-family-main);
  margin: 0 auto 3rem auto;
  font-size: clamp(2.5rem, 3.5vw, 3.5rem);
  line-height: 1.4;
  color: var(--color-fg);
  max-width: var(--post-max-width);
}

.post__h2 {
  font-weight: var(--font-weight-mid);
  font-family: var(--font-family-main);
  font-size: clamp(1.8rem, 2.8vw, 2rem);
  line-height: 1.4;
  margin-bottom: 2rem;
  margin-top: 2rem;
  word-break: break-word;
  hyphens: auto;
  color: var(--color-fg);
}

.post__h3 {
  font-weight: var(--font-weight-mid);
  font-family: var(--font-family-main);
  font-size: 1.4rem;
  line-height: 1.4;
  margin-top: 2rem;
  margin-bottom: 2rem;
  color: var(--color-fg);
  word-break: break-word;
  hyphens: auto;
}

.post__linkedHeading {
  display: block;
  text-decoration: none;
  color: var(--color-fg);
  position: relative;
}
.post__linkedHeading:focus-visible {
  outline: transparent;
  outline-style: solid;
  box-shadow: var(--color-bg) 0 0 0 0.08rem, var(--color-focus-outline) 0 0 0 0.24rem;
  transition: box-shadow var(--global-transition-time) ease-in-out;
  border-radius: var(--border-radius-base);
}

.post__h4,
.post__h5,
.post__h6 {
  font-weight: var(--font-weight-mid);
  font-family: var(--font-family-main);
  font-size: 1.2rem;
  line-height: 1.4;
  margin-bottom: 1rem;
  color: var(--color-fg);
}

.post__p {
  font-weight: var(--font-weight-main);
  font-family: var(--font-family-main);
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: 1rem;
  color: var(--color-fg-copy);
  word-break: break-word;
}
.post__p a:focus-visible {
  outline: transparent;
  outline-style: solid;
  box-shadow: var(--color-bg) 0 0 0 0.08rem, var(--color-focus-outline) 0 0 0 0.24rem;
  transition: box-shadow var(--global-transition-time) ease-in-out;
  border-radius: var(--border-radius-base);
}

.post__p--bold {
  font-family: var(--font-family-bold);
  font-weight: var(--font-weight-bold);
}

.post__p--italic {
  font-style: italic;
}

.post__responsiveImage {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.post__codeBlock {
  margin-bottom: 2rem;
  margin-top: 2rem;
}

.post__blockquote {
  display: block;
  margin-block-start: 2rem;
  margin-block-end: 2rem;
  padding: 1rem 1.5rem;
  border-left: 0.25rem solid var(--orange);
}

.post__blockquote p {
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 500;
  color: var(--color-fg);
}

.post__blockquote:before {
  content: '"';
  font-weight: normal;
  font-style: normal;
  font-family: "Atomic Marker";
  color: var(--orange);
  font-size: 10rem;
  line-height: 0;
  position: relative;
  top: 4rem;
}

.post__externalUrl,
.post__isSponsored {
  font-weight: var(--font-weight-bold);
  font-family: var(--font-family-main);
  margin-bottom: 2rem;
  max-width: max-content;
  color: var(--color-fg);
  text-decoration: none;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 1rem;
  word-wrap: break-word;
}

.post__isSponsoredIcon,
.post__externalUrlIcon {
  margin-right: 0.5rem;
  display: flex;
}

.post__related {
  margin-bottom: 2rem;
}

.post__relatedHeader {
  font-weight: var(--font-weight-mid);
  font-family: var(--font-family-main);
  font-size: clamp(1.8rem, 2.8vw, 2rem);
  line-height: 1.4;
  margin-bottom: 2rem;
  padding-top: 2rem;
  word-break: break-word;
  hyphens: auto;
  color: var(--color-fg);
}

.post__relatedGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media screen and (min-width: 54em) {
  .post__relatedGrid {
    grid-template-columns: 1fr 1fr;
  }
}

.post__tweetEmbed {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.post__tweetEmbed iframe {
  border-radius: 14px;
}

.post__responsiveImage {
  margin-left: auto;
  margin-right: auto;
  display: block;
  border-radius: calc(var(--border-radius-base) * 2);
}

.post__deployToNetlifyButton {
  margin: 2rem auto;
  display: block;
  width: max-content;
}

.post__callout {
  padding: 1rem;
  border-radius: 0.75rem;
  border: 0.25rem solid var(--post-hr-color);
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.post__calloutTitle {
  font-weight: var(--font-weight-bold);
  font-family: var(--font-family-main);
  font-size: 1.4rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: var(--color-fg);
}

.post__calloutContent {
  font-weight: var(--font-weight-main);
  font-family: var(--font-family-main);
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--color-fg);
  word-break: break-word;
}

.post__calloutContent p:not(:last-of-type) {
  margin-bottom: 1rem;
}

.post__calloutContent blockquote {
  margin-inline-start: 1rem;
}

.post__calloutContent blockquote p {
  font-weight: var(--font-weight-mid);
  font-family: var(--font-family-main);
  margin-bottom: 1.75rem;
  font-size: 1.4rem;
  line-height: 1.7;
}

.post__calloutContent blockquote:before {
  content: '"';
  font-weight: normal;
  font-style: normal;
  font-family: "Atomic Marker";
  color: var(--orange);
  font-size: 10rem;
  line-height: 0;
  position: relative;
  top: 4rem;
}

.post__outOfDate {
  font-weight: var(--font-weight-mid);
  font-family: var(--font-family-main);
  line-height: 1.3;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.post__referer {
  font-weight: var(--font-weight-mid);
  font-family: var(--font-family-main);
  display: block;
  max-width: var(--post-max-width);
  font-size: 1rem;
  margin: 1rem auto 2rem auto;
  color: var(--color-fg);
  line-height: 1.4;
  font-style: italic;
}
.post__referer a {
  display: inline-block;
  line-height: inherit;
  position: relative;
}
.post__referer a:focus-visible {
  outline: transparent;
  outline-style: solid;
  box-shadow: var(--color-bg) 0 0 0 0.08rem, var(--color-focus-outline) 0 0 0 0.24rem;
  transition: box-shadow var(--global-transition-time) ease-in-out;
  border-radius: var(--border-radius-base);
}

.pagination {
  margin: 4rem auto;
  max-width: var(--global-max-width);
  background: var(--card-bg);
  backdrop-filter: blur(1rem);
  border-radius: 0.75rem;
}

.pagination__description {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.pagination__list {
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  gap: 1rem;
}

.pagination__listItem {
  font-weight: var(--font-weight-bold);
  font-family: var(--font-family-main);
  font-size: 1.2rem;
  text-decoration: none;
  flex-grow: 1;
  text-align: center;
}
.pagination__listItem:first-of-type, .pagination__listItem:first-of-type a {
  justify-content: flex-start;
  text-align: left;
}
.pagination__listItem:last-of-type, .pagination__listItem:last-of-type a {
  justify-content: flex-end;
  text-align: right;
}
.pagination__listItem a {
  color: inherit;
  padding: 1rem;
  text-decoration: none;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  position: relative;
}
.pagination__listItem a:focus:focus-visible {
  outline: transparent;
  outline-style: solid;
  box-shadow: var(--color-bg) 0 0 0 0.08rem, var(--color-focus-outline) 0 0 0 0.24rem;
  transition: box-shadow var(--global-transition-time) ease-in-out;
  border-radius: var(--border-radius-base);
}

.publishedDate {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: center;
  justify-content: flex-start;
}

.publishedDate__item {
  font-weight: var(--font-weight-mid);
  font-family: var(--font-family-main);
  font-size: 0.875rem;
  margin-bottom: 0;
  color: var(--color-fg);
}

.tableOfContents {
  margin-bottom: 2rem;
}

.tableOfContents__list {
  list-style: none;
  padding: 0;
}

[color-mode=dark] {
  --table-of-contents-header-color: var(--pink-light);
}

[color-mode=light] {
  --table-of-contents-header-color: var(--pink);
}

.tableOfContents__header {
  font-weight: var(--font-weight-bold);
  font-family: var(--font-family-main);
  color: var(--table-of-contents-header-color);
  margin-bottom: 1rem;
  font-size: 1.2rem;
  cursor: pointer;
}
.tableOfContents__header:focus-visible {
  outline: transparent;
  outline-style: solid;
  box-shadow: var(--color-bg) 0 0 0 0.08rem, var(--color-focus-outline) 0 0 0 0.24rem;
  transition: box-shadow var(--global-transition-time) ease-in-out;
  border-radius: var(--border-radius-base);
}

.tableOfContents__item {
  margin-bottom: 0.75rem;
}

.tableOfContents__itemLink {
  font-weight: var(--font-weight-main);
  font-family: var(--font-family-main);
  font-size: 1rem;
  line-height: 1.4;
  color: var(--color-fg-copy);
  text-decoration: none;
  display: block;
}
.tableOfContents__itemLink:focus-visible {
  outline: transparent;
  outline-style: solid;
  box-shadow: var(--color-bg) 0 0 0 0.08rem, var(--color-focus-outline) 0 0 0 0.24rem;
  transition: box-shadow var(--global-transition-time) ease-in-out;
  border-radius: var(--border-radius-base);
}

.tableOfContents__item--nudged {
  padding-left: 1rem;
}

.tableOfContents__item--cat {
  text-transform: capitalize;
}

.author {
  --gap: 4rem;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  row-gap: var(--gap);
}

.author--hideSmall {
  display: none;
}
@media screen and (min-width: 56em) {
  .author--hideSmall {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
  }
}

.author__cta {
  display: block;
  position: relative;
  flex-grow: 1;
}
.author__cta:focus-visible {
  outline: transparent;
  outline-style: solid;
  box-shadow: var(--color-bg) 0 0 0 0.08rem, var(--color-focus-outline) 0 0 0 0.24rem;
  transition: box-shadow var(--global-transition-time) ease-in-out;
  border-radius: var(--border-radius-base);
}
.author__cta:focus-visible .author__imgContainer, .author__cta:hover .author__imgContainer {
  transform: scale(0.95);
}

.author__imgContainer {
  filter: var(--base-shadow-filter);
  transition: transform var(--global-transition-time) ease-in-out;
  height: 100%;
}
.author__imgContainer * {
  border-radius: var(--border-radius-base);
  height: 100%;
  object-fit: cover;
}

.author__name {
  display: block;
  position: relative;
  height: 0;
  bottom: var(--gap);
}

.author_social {
  margin-top: 0.5rem;
  display: flex;
  height: max-content;
}

.blogEndAuthor {
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: 1fr 5fr;
  gap: 0 1rem;
  grid-template-areas: "avatar bio" "avatar social";
}

.blogEndAuthor__imgContainer {
  grid-area: avatar;
  filter: var(--base-shadow-filter);
  transition: transform var(--global-transition-time) ease-in-out;
}
.blogEndAuthor__imgContainer * {
  border-radius: var(--border-radius-base);
}

.blogEndAuthor_social {
  grid-area: social;
}

.blogEndAuthor__name {
  font-weight: var(--font-weight-mid);
  font-family: var(--font-family-main);
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--color-fg);
}

.blogEndAuthor__bio {
  grid-area: bio;
  margin-bottom: 0.5rem;
}
.blogEndAuthor__bio p {
  font-weight: var(--font-weight-main);
  font-family: var(--font-family-main);
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  color: var(--color-fg-copy);
}
.blogEndAuthor__bio p a {
  font-weight: var(--font-weight-mid);
  font-family: var(--font-family-main);
  color: var(--color-link);
  text-decoration: none;
}
.blogEndAuthor__bio p a:focus-visible {
  outline: transparent;
  outline-style: solid;
  box-shadow: var(--color-bg) 0 0 0 0.08rem, var(--color-focus-outline) 0 0 0 0.24rem;
  transition: box-shadow var(--global-transition-time) ease-in-out;
  border-radius: var(--border-radius-base);
}

.blogSidebarSocialLinks {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.speakerDeckLink__viewCta {
  font-weight: var(--font-weight-mid);
  font-family: var(--font-family-main);
  background-color: var(--topic-button-bg);
  border-radius: var(--border-radius-base);
  padding: 0.5rem 1rem 0.5rem 0.75rem;
  color: var(--topic-button-color);
  text-decoration: none;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 1rem;
  max-width: max-content;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.videoEmbed__cta {
  font-weight: var(--font-weight-main);
  font-family: var(--font-family-main);
  font-size: 1rem;
  line-height: 1;
  margin-bottom: 1rem;
  color: var(--color-fg-copy);
}

.eleventy-plugin-youtube-embed {
  margin-bottom: 1rem;
  margin-top: 2rem;
  filter: var(--base-shadow-filter);
  border-radius: calc(var(--border-radius-base) * 2);
  overflow: hidden;
}

.videoEmbed__ytShort .eleventy-plugin-youtube-embed lite-youtube {
  aspect-ratio: 9/16;
  position: relative;
  width: 100%;
  height: auto;
}

.codePenEmbed__container {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}

.uses {
  max-width: var(--global-max-width);
  margin: auto;
}

.uses_catHeading {
  position: relative;
  top: 2.5rem;
  z-index: 9;
}

.uses__list {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  list-style: none;
  padding-left: 0;
  grid-auto-rows: 1fr;
}
.uses__list li {
  display: flex;
}

[color-mode=dark] {
  --bio-button-color: rgba(255, 255, 255, 0.6);
  --bio-button-bg: rgba(255, 255, 255, 0.1);
}

[color-mode=light] {
  --bio-button-color: var(--grey-mid);
  --bio-button-bg: rgba(52, 64, 84, 0.1);
}

.bio {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.bio__topRow {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}
@media screen and (min-width: 1237px) {
  .bio__topRow {
    flex-direction: row;
  }
}

.bio__buttons {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  z-index: 3;
  order: 2;
}
@media screen and (min-width: 1237px) {
  .bio__buttons {
    order: 1;
  }
}

.bio__links {
  order: 1;
}
@media screen and (min-width: 1237px) {
  .bio__links {
    order: 2;
  }
}

.bio__button {
  position: relative;
  border-width: 0;
  border-radius: var(--border-radius-base);
  color: var(--bio-button-color);
  background: var(--bio-button-bg);
  color: var(--color-fg);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5;
  padding: 0.625rem 0.875rem;
  text-decoration: none;
}
.bio__button:focus-visible {
  outline: transparent;
  outline-style: solid;
  box-shadow: var(--color-bg) 0 0 0 0.08rem, var(--color-focus-outline) 0 0 0 0.24rem;
  transition: box-shadow var(--global-transition-time) ease-in-out;
  border-radius: var(--border-radius-base);
}

.bio__block {
  margin-bottom: 4rem;
  max-width: 42rem;
}
.bio__block h2 {
  font-weight: var(--font-weight-mid);
  font-family: var(--font-family-main);
  font-size: 1.875rem;
  line-height: 1.375;
  margin-bottom: 1rem;
  color: var(--color-fg);
  scroll-margin-top: 10.5rem;
}
.bio__block h3 {
  font-weight: var(--font-weight-mid);
  font-family: var(--font-family-main);
  font-size: 1.875rem;
  line-height: 1.375;
  margin-bottom: 1rem;
  color: var(--color-fg);
}
.bio__block p {
  font-weight: var(--font-weight-main);
  font-family: var(--font-family-main);
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: var(--color-fg-copy);
}
.bio__block p a {
  font-weight: var(--font-weight-mid);
  font-family: var(--font-family-main);
  color: var(--color-link);
  text-decoration: none;
}
.bio__block p a:focus-visible {
  outline: transparent;
  outline-style: solid;
  box-shadow: var(--color-bg) 0 0 0 0.08rem, var(--color-focus-outline) 0 0 0 0.24rem;
  transition: box-shadow var(--global-transition-time) ease-in-out;
  border-radius: var(--border-radius-base);
}
.bio__block .videoEmbed__cta {
  font-weight: var(--font-weight-main);
  font-family: var(--font-family-main);
  font-size: 1rem;
  line-height: 1;
  margin-bottom: 1rem;
}

[color-mode=dark] {
  --lighthouse-green-fg: rgb(27, 195, 106);
  --lighthouse-green-stroke: rgb(27, 195, 106);
  --lighthouse-green-bg: rgb(30, 46, 47);
  --lighthouse-orange-fg: rgb(251, 157, 70);
  --lighthouse-orange-stroke: rgb(251, 157, 70);
  --lighthouse-orange-bg: rgb(52, 43, 34);
  --lighthouse-red-fg: rgb(250, 40, 52);
  --lighthouse-red-stroke: rgb(250, 40, 52);
  --lighthouse-red-bg: rgb(52, 31, 32);
  --lighthouse-container-bg: rgb(29, 30, 32);
}

[color-mode=light] {
  --lighthouse-green-fg: rgb(15, 123, 38);
  --lighthouse-green-stroke: rgb(27, 195, 106);
  --lighthouse-green-bg: rgb(233, 249, 240);
  --lighthouse-orange-fg: rgb(184, 42, 22);
  --lighthouse-orange-stroke: rgb(251, 157, 70);
  --lighthouse-orange-bg: rgb(255, 246, 237);
  --lighthouse-red-fg: rgb(193, 0, 19);
  --lighthouse-red-stroke: rgb(250, 40, 52);
  --lighthouse-red-bg: rgb(255, 234, 235);
  --lighthouse-container-bg: #ffffff;
}

.lighthouse {
  margin: 2rem auto;
  max-width: 520px;
  padding: 1rem;
  text-align: left;
  border-radius: calc(var(--border-radius-base) * 2);
  background-color: var(--lighthouse-container-bg);
  filter: var(--base-shadow-filter);
}

.lighthouse__header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--color-fg);
}

.lighthouse__title {
  font-weight: var(--font-weight-mid);
  font-family: var(--font-family-main);
  font-size: 1.2rem;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.lighthouse__subTitle {
  font-weight: var(--font-weight-main);
  font-family: var(--font-family-main);
  font-size: 1.2rem;
  line-height: 1.4;
  margin-bottom: 2rem;
  word-wrap: break-all;
  display: block;
}

.lighthouse__scores {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
}

.lighthouse__col {
  display: flex;
  flex-direction: column;
}

.lighthouse__scoresNo {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: center;
  font-family: "Courier New", Courier, monospace;
  font-weight: bold;
  font-size: 3rem;
  border-radius: 50%;
  height: 8rem;
  width: 8rem;
  margin-bottom: 1rem;
}
.lighthouse__scoresNo--red {
  background-color: var(--lighthouse-red-bg);
  color: var(--lighthouse-red-fg);
}
.lighthouse__scoresNo--red .lighthouse__circle {
  stroke: var(--lighthouse-red-stroke);
}
.lighthouse__scoresNo--orange {
  background-color: var(--lighthouse-orange-bg);
  color: var(--lighthouse-orange-fg);
}
.lighthouse__scoresNo--orange .lighthouse__circle {
  stroke: var(--lighthouse-orange-stroke);
}
.lighthouse__scoresNo--green {
  background-color: var(--lighthouse-green-bg);
  color: var(--lighthouse-green-fg);
}
.lighthouse__scoresNo--green .lighthouse__circle {
  stroke: var(--lighthouse-green-stroke);
}

.lighthouse__type {
  font-weight: var(--font-weight-bold);
  font-family: var(--font-family-main);
  font-size: 1.2rem;
  text-align: center;
  line-height: 1.4;
}

.lighthouse__circle {
  border-radius: 50%;
  height: 8rem;
  width: 8rem;
  position: absolute;
  transform: rotate(-90deg);
  fill: none;
  stroke: white;
  stroke-width: 6;
  stroke-linecap: round;
}

.fourohfour__headerTitle {
  font-weight: var(--font-weight-bold);
  font-family: var(--font-family-main);
  margin: 0 auto 1rem auto;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  line-height: 1.4;
  color: var(--color-fg);
  max-width: var(--post-max-width);
}

.fourohfour__content {
  max-width: var(--post-max-width);
  margin-left: auto;
  margin-right: auto;
}

.fourohfour__text {
  font-weight: var(--font-weight-main);
  font-family: var(--font-family-main);
  font-size: 1.4rem;
  line-height: 1.4;
  margin-bottom: 4rem;
  color: var(--color-fg);
  display: block;
}

.fourohfour__img {
  box-shadow: 0px 1.5rem 2rem -1rem rgba(0, 0, 0, 0.4), inset 0px 1px 0px rgba(255, 255, 255, 0.48);
  border-radius: calc(var(--border-radius-base) * 2);
  width: 100%;
  margin: auto;
  display: block;
}

[color-mode=dark] {
  --reset-color: var(--white);
}

[color-mode=light] {
  --reset-color: var(--black);
}

@media screen and (min-width: 48rem) {
  .ais {
    --form-height: 44px;
  }
}

.ais__searchbox {
  display: grid;
  grid-template-columns: 5fr 1fr;
  grid-template-areas: "label label" "input button";
}

.ais__hitsContainer {
  position: relative;
  display: none;
  min-height: 20rem;
}

.ais__hits--empty {
  margin-left: auto;
  margin-right: auto;
}

.ais__emptyMessage {
  font-weight: var(--font-weight-mid);
  font-family: var(--font-family-main);
  font-size: 2rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.ais__howAbout {
  font-weight: var(--font-weight-mid);
  font-family: var(--font-family-main);
  color: var(--color-fg);
  font-size: 2rem;
  margin-bottom: 3rem;
}

.ais__form {
  display: block;
}

.ais__label {
  grid-area: label;
  font-weight: var(--font-weight-mid);
  font-family: var(--font-family-main);
  font-size: 1rem;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
}

.ais__input {
  grid-area: input;
  font-weight: var(--font-weight-main);
  font-family: var(--font-family-main);
  background-color: var(--input-bg);
  color: var(--color-fg);
  border: var(--input-border);
  border-radius: var(--border-radius-base);
  font-size: 1rem;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
  border-radius: var(--border-radius-base) 0 0 var(--border-radius-base);
  height: var(--form-height);
  width: 100%;
}

.ais__input:focus-visible {
  outline-color: transparent;
  outline-style: solid;
  outline-offset: 0.125rem;
  box-shadow: inset var(--color-fg) 0 0 0 0.125rem;
  transition: box-shadow var(--global-transition-time) ease-in-out;
}

.ais__reset {
  font-weight: var(--font-weight-mid);
  font-family: var(--font-family-main);
  grid-area: button;
  background-color: var(--input-bg);
  display: inline;
  border-radius: 0;
  padding: 0.6rem 1rem;
  border: var(--input-border);
  border-left-width: 0;
  width: 100%;
  height: var(--form-height);
  border-radius: 0 var(--border-radius-base) var(--border-radius-base) 0;
  color: var(--reset-color);
}

.ais__reset:focus-visible {
  outline-color: transparent;
  outline-style: solid;
  outline-offset: 0.125rem;
  box-shadow: inset var(--color-fg) 0 0 0 0.125rem;
  transition: box-shadow var(--global-transition-time) ease-in-out;
}

.ais-Highlight-highlighted {
  background-color: var(--pink);
  color: var(--white);
}

/**
 * okaidia theme for JavaScript, CSS and HTML
 * Loosely based on Monokai textmate theme by https://www.monokai.nl/
 * @author ocodia
 */
code[class*=language-],
pre[class*=language-] {
  color: #ffffff;
  background: none;
  text-shadow: 0 1px rgba(0, 0, 0, 0.3);
  font-family: Consolas, Monaco, "Andale Mono", "Ubuntu Mono", monospace;
  font-size: 1rem;
  text-align: left;
  white-space: pre;
  word-spacing: normal;
  word-break: normal;
  word-wrap: normal;
  line-height: 1.5;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}

/* Code blocks */
pre[class*=language-] {
  padding: 1rem;
  margin: 0.5rem 0;
  overflow: auto;
  border-radius: calc(var(--border-radius-base) * 2);
}

/* MY FIXES: https://whitep4nth3r.com/blog/how-to-make-your-code-blocks-accessible-on-your-website */
code[class*=language-] {
  white-space: pre-wrap;
  word-break: break-all;
}

:not(pre) > code[class*=language-],
pre[class*=language-] {
  background: var(--grey-dark);
}

/* Inline code */
:not(pre) > code[class*=language-] {
  padding: 0.1em;
  border-radius: 0.3em;
  white-space: normal;
}

.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
  color: #adb8c2;
}

.token.punctuation {
  color: #f8f8f2;
}

.token.namespace {
  opacity: 0.7;
}

.token.property,
.token.tag,
.token.constant,
.token.symbol,
.token.deleted {
  color: #fc92b6;
}

.token.boolean,
.token.number {
  color: #c9b0f6;
}

.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
  color: #a6e22e;
}

.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string,
.token.variable {
  color: #f8f8f2;
}

.token.atrule,
.token.attr-value,
.token.function,
.token.class-name {
  color: #e6db74;
}

.token.keyword {
  color: #66d9ef;
}

.token.regex,
.token.important {
  color: #f3a344;
}

.token.important,
.token.bold {
  font-weight: bold;
}

.token.italic {
  font-style: italic;
}

.token.entity {
  cursor: help;
}

.token.deleted {
  background-color: rgba(255, 0, 0, 0.2);
}

.token.inserted {
  background-color: rgba(0, 255, 128, 0.1);
}

/* Make the + and - characters unselectable for copy/paste */
.token.prefix.unchanged,
.token.prefix.inserted,
.token.prefix.deleted {
  -webkit-user-select: none;
  user-select: none;
  background-color: transparent;
}

/* Optional: full-width background color */
.token.inserted:not(.prefix),
.token.deleted:not(.prefix) {
  display: block;
}

[color-mode=dark] {
  --card-bg: rgba(255, 255, 255, 0.02);
  --card-bg-hover: rgba(255, 255, 255, 0.08);
  --card-box-shadow: inset 0px 1px 0px rgba(255, 255, 255, 0.16);
  --card-box-shadow-hover: inset 0px 1px 0px rgba(255, 255, 255, 0.16);
}

[color-mode=light] {
  --card-bg: rgba(255, 255, 255, 0.32);
  --card-bg-hover: rgba(255, 255, 255, 0.72);
  --card-box-shadow: 0px 0px 0px -16px rgba(27, 27, 27, 0.01),
    inset 0px 1px 0px rgba(255, 255, 255, 0.16);
  --card-box-shadow-hover: 0px 24px 32px -16px rgba(27, 27, 27, 0.16),
    inset 0px 1px 0px rgba(255, 255, 255, 0.16);
}

.card {
  overflow: hidden;
  border-radius: 0.75rem;
  background: var(--card-bg);
  backdrop-filter: blur(1rem);
  box-shadow: var(--card-box-shadow);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: all var(--global-transition-time) ease-in-out !important;
  position: relative;
  min-height: max-content;
}
.card:hover, .card:focus {
  background: var(--card-bg-hover);
  box-shadow: var(--card-box-shadow-hover);
}
.card:hover .card__image, .card:focus .card__image {
  transform: scale(1.1);
}
.card:focus-visible {
  outline: transparent;
  outline-style: solid;
  box-shadow: var(--color-bg) 0 0 0 0.08rem, var(--color-focus-outline) 0 0 0 0.24rem;
  transition: box-shadow var(--global-transition-time) ease-in-out;
  border-radius: var(--border-radius-base);
}

.card__imageContainer {
  aspect-ratio: 3/1;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: linear-gradient(145deg, var(--pink) 60%, var(--orange) 98%);
  filter: blur(0px);
}

.card__imageContainer--large {
  aspect-ratio: 1/1;
}
.card__imageContainer--large * {
  height: 100%;
}

.card__inner {
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card__image {
  transition: all var(--global-transition-time) ease-in-out;
}

.card__date {
  font-weight: var(--font-weight-main);
  font-family: var(--font-family-main);
  color: var(--color-fg);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.card__title {
  font-weight: var(--font-weight-bold);
  font-family: var(--font-family-main);
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.card__description {
  font-weight: var(--font-weight-main);
  font-family: var(--font-family-main);
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-fg);
  margin-bottom: 1rem;
  overflow: hidden;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  flex-grow: 1;
}
.card__description p {
  overflow: hidden;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}

.card__meta {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem;
}

.card__metaLabel {
  font-weight: var(--font-weight-mid);
  font-family: var(--font-family-main);
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--color-fg);
  background-color: var(--color-bg);
  border-radius: 1rem;
  padding: 0.125rem 0.5rem;
  width: max-content;
  text-transform: capitalize;
}

.card__metaRead {
  font-weight: var(--font-weight-mid);
  font-family: var(--font-family-main);
  font-size: 0.875rem;
  line-height: 1.125;
  color: var(--color-fg);
}

.twitchInfo {
  --thumbnail-outer-radius: calc(var(--border-radius-base) * 2);
  --thumbnail-inner-padding: calc(var(--border-radius-base) / 2);
  --title-bottom-left-radius: calc(var(--thumbnail-outer-radius) - var(--thumbnail-inner-padding));
  --title-font-size: clamp(1rem, 1.5vw, 1.5rem);
  --title-padding: 0.75rem;
  display: block;
  height: 100%;
  width: 100%;
}

.twitchInfo__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16/9;
}
.twitchInfo__link:focus-visible {
  outline: transparent;
  outline-style: solid;
  box-shadow: var(--color-bg) 0 0 0 0.08rem, var(--color-focus-outline) 0 0 0 0.24rem;
  transition: box-shadow var(--global-transition-time) ease-in-out;
  border-radius: var(--border-radius-base);
}

.twitchInfo__thumbnail {
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--thumbnail-outer-radius);
  background-color: var(--color-bg);
  z-index: 0;
  position: relative;
  width: auto;
  height: 100%;
  box-shadow: 0px 1.5rem 2rem -1rem rgba(0, 0, 0, 0.4), inset 0px 1px 0px rgba(255, 255, 255, 0.48);
  filter: grayscale(1);
  transition: all var(--global-transition-time) ease-in-out;
}
.twitchInfo__thumbnail:hover {
  filter: grayscale(0) contrast(1.1);
}

.twitchInfo__thumbnail--live {
  filter: grayscale(0) contrast(1.1);
}

.twitchInfo__deets {
  position: absolute;
  z-index: 1;
  bottom: var(--thumbnail-inner-padding);
  left: var(--thumbnail-inner-padding);
  right: var(--thumbnail-inner-padding);
  display: flex;
  flex-direction: row;
  gap: 0.25rem;
  justify-content: space-between;
}

.twitchInfo__streamTitleContainer {
  padding: var(--title-padding);
  background: rgba(27, 27, 27, 0.9);
  backdrop-filter: blur(6px);
  border-radius: calc(var(--border-radius-base) * 0.75);
  border-bottom-left-radius: var(--title-bottom-left-radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  width: 100%;
  flex-grow: 1;
}

.twitchInfo__streamTitle {
  font-weight: var(--font-weight-mid);
  font-family: var(--font-family-main);
  font-size: var(--title-font-size);
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.twitchInfo__live {
  font-weight: var(--font-weight-mid);
  font-family: var(--font-family-main);
  font-size: var(--title-font-size);
  font-style: italic;
  min-width: max-content;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(145.04deg, var(--pink) 60.34%, var(--orange) 98.77%);
  color: var(--white);
  padding: var(--title-padding);
  border-radius: calc(var(--border-radius-base) * 0.75);
  border-bottom-right-radius: var(--title-bottom-left-radius);
}
.twitchInfo__live svg {
  height: 1.25rem;
  width: 1.25rem;
}

.activityFeed {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--feed-max-width);
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.activityFeed__header {
  padding: 0 1rem;
}

.events {
  max-width: var(--post-max-width);
  margin: auto;
}

.events__list {
  padding-left: 0;
  list-style: none;
}

.events__listItem {
  display: grid;
  grid-template-columns: 1fr 4fr;
  gap: 1rem 2rem;
  grid-template-areas: "date time" "date name" "date desc" "date cta";
  margin-bottom: 4rem;
}
@media screen and (min-width: 48em) {
  .events__listItem {
    margin-bottom: 3rem;
    grid-template-columns: 1fr 6fr 1fr;
    grid-template-areas: "date time cta" "date name cta" "date desc cta";
  }
}

.events__listItemDate {
  grid-area: date;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.events__listItemDate__month {
  font-weight: var(--font-weight-mid);
  font-family: var(--font-family-main);
  text-align: center;
  color: var(--color-fg);
  text-transform: uppercase;
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.events__listItemDate__day {
  font-weight: var(--font-weight-bold);
  font-family: var(--font-family-main);
  display: block;
  text-align: center;
  color: var(--color-fg);
  text-transform: uppercase;
  font-size: 2.8rem;
}

.events__listItemTime {
  grid-area: time;
  font-weight: var(--font-weight-main);
  font-family: var(--font-family-main);
  font-size: 1rem;
  display: grid;
  gap: 0.5rem;
  align-items: center;
  grid-template-columns: 1fr;
}
.events__listItemTime svg {
  color: var(--color-fg);
}
@media screen and (min-width: 48em) {
  .events__listItemTime {
    display: flex;
    flex-direction: row;
  }
}

.events__listItemTimeInner {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: center;
}

.events__listshortDescription {
  grid-area: desc;
  font-weight: var(--font-weight-main);
  font-family: var(--font-family-main);
  font-size: 1.2rem;
  line-height: 1.2;
}

.events__listItemName {
  grid-area: name;
  font-weight: var(--font-weight-mid);
  font-family: var(--font-family-main);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  font-size: clamp(1.2rem, 1.6vw, 1.6rem);
  line-height: 1.2;
  color: var(--color-fg);
}

.events__listItemCta {
  grid-area: cta;
  font-weight: var(--font-weight-mid);
  font-family: var(--font-family-main);
  gap: 0.5rem;
  flex-grow: 0;
  align-self: center;
  width: max-content;
  background-color: var(--card-bg);
  color: var(--color-fg);
  border-radius: calc(var(--border-radius-base) * 2);
  padding: 0.5rem 1rem 0.5rem 0.75rem;
  text-decoration: none;
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 1rem;
  border-color: transparent;
}
.events__listItemCta:focus-visible {
  outline: transparent;
  outline-style: solid;
  box-shadow: var(--color-bg) 0 0 0 0.08rem, var(--color-focus-outline) 0 0 0 0.24rem;
  transition: box-shadow var(--global-transition-time) ease-in-out;
  border-radius: var(--border-radius-base);
}

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

.events__listItemCta--centered {
  margin: auto;
  display: flex;
}
.events__listItemCta--centered::after {
  content: "";
  display: inline-block;
  background-image: var(--header-external-arrow-svg);
  height: 1rem;
  width: 1rem;
}

.events__listItemCancelled {
  color: var(--color-fg);
  border-radius: calc(var(--border-radius-base) * 2);
  background-color: var(--card-bg);
  padding: 0.5rem 1rem;
  font-size: 1rem;
  font-weight: var(--font-weight-bold);
  font-family: var(--font-family-main);
  width: max-content;
}

.socialLinks {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.socialLinks li {
  height: 2.75rem;
  width: 2.75rem;
  display: flex;
  justify-self: center;
  align-items: center;
}

[color-mode=dark] .socialLinks__item svg path {
  fill: var(--color-fg);
}

.socialLinks__item {
  height: 100%;
  width: 100%;
  display: flex;
  justify-self: center;
  align-items: center;
  justify-content: center;
  position: relative;
}
.socialLinks__item:focus-visible {
  outline: transparent;
  outline-style: solid;
  box-shadow: var(--color-bg) 0 0 0 0.08rem, var(--color-focus-outline) 0 0 0 0.24rem;
  transition: box-shadow var(--global-transition-time) ease-in-out;
  border-radius: var(--border-radius-base);
}

.talks__cardGrid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  list-style: none;
  padding-left: 0;
  grid-auto-rows: 1fr;
}
.talks__cardGrid li {
  display: flex;
}

[color-mode=dark] {
  --testimonial-bg: var(--black);
}

[color-mode=light] {
  --testimonial-bg: var(--white);
}

.testimonial {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 1rem;
  background-color: var(--testimonial-bg);
}

.testimonial__quote {
  grid-area: quote;
  font-weight: var(--font-weight-main);
  font-family: var(--font-family-main);
  color: var(--color-fg-copy);
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 2rem;
}

.testimonial__image {
  grid-area: image;
  border-radius: 100%;
  height: 2.5rem;
  width: 2.5rem;
  aspect-ratio: 1/1;
}

.testimonial__attr {
  display: grid;
  row-gap: 0.25rem;
  column-gap: 0.5rem;
  grid-template-areas: "image name" "image org";
  justify-content: flex-start;
  align-items: center;
}

.testimonial__name {
  grid-area: name;
  margin-bottom: 0;
  line-height: 1;
  color: var(--color-fg-copy);
  font-weight: var(--font-weight-main);
  font-family: var(--font-family-main);
  font-size: 1rem;
}

.testimonial__org {
  grid-area: org;
  color: var(--color-fg-copy);
  text-decoration-style: solid;
  text-decoration-color: var(--color-fg-copy);
  font-weight: var(--font-weight-main);
  font-family: var(--font-family-main);
}
.testimonial__org:focus-visible {
  outline: transparent;
  outline-style: solid;
  box-shadow: var(--color-bg) 0 0 0 0.08rem, var(--color-focus-outline) 0 0 0 0.24rem;
  transition: box-shadow var(--global-transition-time) ease-in-out;
  border-radius: var(--border-radius-base);
}

.sponsorships {
  max-width: 1040px;
  margin: auto;
}

.sponsorships__title {
  font-weight: var(--font-weight-bold);
  font-family: var(--font-family-main);
  font-size: clamp(2.25rem, 3.5vw, 3.5rem);
  line-height: 1.4;
  margin-bottom: 2.5rem;
}

.sponsorships__intro {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media screen and (min-width: 881px) {
  .sponsorships__intro {
    grid-template-columns: 1fr 2fr;
  }
}

.sponsorships__introText h2 {
  font-weight: var(--font-weight-mid);
  font-family: var(--font-family-main);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.25;
  margin-bottom: 1rem;
  color: var(--color-fg);
}
.sponsorships__introText h3 {
  font-weight: var(--font-weight-mid);
  font-family: var(--font-family-main);
  font-size: 1.875rem;
  line-height: 1.375;
  margin-bottom: 1rem;
  color: var(--color-fg);
  font-weight: var(--font-weight-main);
  color: var(--color-fg-copy);
}
.sponsorships__introText p {
  font-weight: var(--font-weight-main);
  font-family: var(--font-family-main);
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: var(--color-fg-copy);
}
.sponsorships__introText p a {
  font-weight: var(--font-weight-mid);
  font-family: var(--font-family-main);
  color: var(--color-link);
  text-decoration: none;
}
.sponsorships__introText p a:focus-visible {
  outline: transparent;
  outline-style: solid;
  box-shadow: var(--color-bg) 0 0 0 0.08rem, var(--color-focus-outline) 0 0 0 0.24rem;
  transition: box-shadow var(--global-transition-time) ease-in-out;
  border-radius: var(--border-radius-base);
}
.sponsorships__introText p:last-of-type {
  margin-bottom: 0;
}

.sponsorships__author {
  width: 20rem;
}

.sponsorships__content h2 {
  font-weight: var(--font-weight-mid);
  font-family: var(--font-family-main);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.25;
  margin-bottom: 1rem;
  color: var(--color-fg);
}
.sponsorships__content h3 {
  font-weight: var(--font-weight-mid);
  font-family: var(--font-family-main);
  font-size: 1.875rem;
  line-height: 1.375;
  margin-bottom: 1rem;
  color: var(--color-fg);
  margin-top: 2rem;
}
.sponsorships__content p:not(.testimonial__name) {
  font-weight: var(--font-weight-main);
  font-family: var(--font-family-main);
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: var(--color-fg-copy);
}
.sponsorships__content p:not(.testimonial__name) a {
  font-weight: var(--font-weight-mid);
  font-family: var(--font-family-main);
  color: var(--color-link);
  text-decoration: none;
}
.sponsorships__content p:not(.testimonial__name) a:focus-visible {
  outline: transparent;
  outline-style: solid;
  box-shadow: var(--color-bg) 0 0 0 0.08rem, var(--color-focus-outline) 0 0 0 0.24rem;
  transition: box-shadow var(--global-transition-time) ease-in-out;
  border-radius: var(--border-radius-base);
}

.sponsorships__packages {
  display: grid;
  margin: 2rem 0;
}
@media screen and (min-width: 881px) {
  .sponsorships__packages {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.sponsorships__testimonials {
  display: grid;
  gap: 2rem;
  margin-top: 1rem;
  margin-bottom: 3rem;
}
@media screen and (min-width: 881px) {
  .sponsorships__testimonials {
    grid-template-columns: 1fr 1fr;
  }
}

.sponsorships__form {
  padding: 2rem;
  background-color: var(--card-bg);
  border-radius: 1rem;
  max-width: 768px;
}

.sponsorships__formInput {
  font-weight: var(--font-weight-main);
  font-family: var(--font-family-main);
  background-color: var(--input-bg);
  color: var(--color-fg);
  border: var(--input-border);
  border-radius: var(--border-radius-base);
  font-size: 1rem;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
}
.sponsorships__formInput:focus-visible {
  outline-color: transparent;
  outline-style: solid;
  outline-offset: 0.125rem;
  box-shadow: inset var(--color-fg) 0 0 0 0.125rem;
  transition: box-shadow var(--global-transition-time) ease-in-out;
}

.sponsorships__formInput--text {
  display: block;
  width: 100%;
}

.sponsorships__formLabel {
  font-weight: var(--font-weight-main);
  font-family: var(--font-family-main);
  font-size: 1.2rem;
  line-height: 1.4;
  color: var(--color-fg-copy);
  display: block;
  width: 100%;
}

.sponsorships__formLabel--checkbox {
  line-height: 1;
}

.sponsorships__question {
  font-weight: var(--font-weight-main);
  font-family: var(--font-family-main);
  font-size: 1.2rem;
  line-height: 1.4;
  color: var(--color-fg-copy);
  display: block;
  width: 100%;
  margin-bottom: 1rem;
}

.sponsorships__formTextArea {
  font-weight: var(--font-weight-main);
  font-family: var(--font-family-main);
  background-color: var(--input-bg);
  color: var(--color-fg);
  border: var(--input-border);
  border-radius: var(--border-radius-base);
  font-size: 1rem;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
  width: 100%;
  scroll-padding-block: 1rem;
  line-height: 1.5;
}
.sponsorships__formTextArea:focus-visible {
  outline-color: transparent;
  outline-style: solid;
  outline-offset: 0.125rem;
  box-shadow: inset var(--color-fg) 0 0 0 0.125rem;
  transition: box-shadow var(--global-transition-time) ease-in-out;
}

.sponsorships__formTitle {
  font-weight: var(--font-weight-mid);
  font-family: var(--font-family-main);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.25;
  margin-bottom: 1rem;
  color: var(--color-fg);
}

.sponsorships__topRow {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 1rem;
}
@media screen and (min-width: 768px) {
  .sponsorships__topRow {
    grid-template-columns: 1fr 1fr;
  }
}

.sponsorships__formRow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 1rem;
}

.sponsorships__checkboxRow {
  display: flex;
  gap: 1rem;
  flex-direction: row;
  margin-bottom: 0.5rem;
  align-items: center;
}

.sponsorships__checkboxRow--last {
  margin-bottom: 2rem;
}

.sponsorships__submit {
  position: relative;
  border-width: 0;
  border-radius: var(--border-radius-base);
  color: var(--bio-button-color);
  background: var(--bio-button-bg);
  color: var(--color-fg);
  font-weight: var(--font-weight-mid);
  font-family: var(--font-family-main);
  font-size: 1.2rem;
  line-height: 1.6;
  padding: 0.625rem 0.875rem;
}
.sponsorships__submit:focus-visible {
  outline: transparent;
  outline-style: solid;
  box-shadow: var(--color-bg) 0 0 0 0.08rem, var(--color-focus-outline) 0 0 0 0.24rem;
  transition: box-shadow var(--global-transition-time) ease-in-out;
  border-radius: var(--border-radius-base);
}

.sponsorships__success {
  font-weight: var(--font-weight-main);
  font-family: var(--font-family-main);
  display: none;
  padding: 0.5rem 1rem;
  margin-bottom: 2rem;
  font-size: 1.2rem;
  line-height: 1.4;
  border-radius: var(--border-radius-base);
  background-color: var(--pink);
  color: var(--white);
}

.sponsorships__success--show {
  display: inline-block;
}

.streamPackage__title {
  font-weight: var(--font-weight-main);
  font-family: var(--font-family-main);
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  color: var(--color-fg-copy);
  font-weight: var(--font-weight-mid);
  font-family: var(--font-family-main);
}
.streamPackage__title a {
  font-weight: var(--font-weight-mid);
  font-family: var(--font-family-main);
  color: var(--color-link);
  text-decoration: none;
}
.streamPackage__title a:focus-visible {
  outline: transparent;
  outline-style: solid;
  box-shadow: var(--color-bg) 0 0 0 0.08rem, var(--color-focus-outline) 0 0 0 0.24rem;
  transition: box-shadow var(--global-transition-time) ease-in-out;
  border-radius: var(--border-radius-base);
}

.streamPackage__description p {
  font-weight: var(--font-weight-main);
  font-family: var(--font-family-main);
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  color: var(--color-fg-copy);
}
.streamPackage__description p a {
  font-weight: var(--font-weight-mid);
  font-family: var(--font-family-main);
  color: var(--color-link);
  text-decoration: none;
}
.streamPackage__description p a:focus-visible {
  outline: transparent;
  outline-style: solid;
  box-shadow: var(--color-bg) 0 0 0 0.08rem, var(--color-focus-outline) 0 0 0 0.24rem;
  transition: box-shadow var(--global-transition-time) ease-in-out;
  border-radius: var(--border-radius-base);
}

/*# sourceMappingURL=main.css.map */
