@charset "UTF-8";

/* static/src/scss/main-desktop.scss */
@font-face {
  font-family: "Apalu";
  src: url("../fonts/Apalu.b0a79d8ab9a7.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Cormorant Garamond Italic";
  src: url("../fonts/CormorantGaramondItalic.7da24ab5cc66.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/CormorantGaramond.c47ff12887a3.woff2") format("woff2");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lora";
  src: url("../fonts/Lora.5d5a586a9741.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Merriweather";
  src: url("../fonts/Merriweather.5c271de154f2.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fjalla One";
  src: url("../fonts/FjallaOne.1b492d988a78.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html {
  font-family: sans-serif;
  min-height: 100%;
  font-size: 100%;
  line-height: 1.2;
  background-color: hsl(280, 80%, 30%);
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
html,
body {
  overscroll-behavior-x: none;
  overscroll-behavior-y: none;
}
a {
  font-weight: 400;
  color: hsl(280, 80%, 50%);
  text-decoration: none;
}
img {
  display: block;
  width: auto;
  height: auto;
}
.icon-button {
  display: flex;
  flex-direction: row;
  background: none;
  border-width: 0;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}
.icon-button i {
  color: inherit;
}
.badges,
.pills {
  display: flex;
  flex-direction: row;
  gap: 0.4em;
  align-items: baseline;
  flex-wrap: wrap;
  line-height: 1;
}
.badges > span:not(.badges-label),
.pills > a,
.pills > span:not(.pills-label) {
  display: inline-flex;
  align-items: center;
  color: hsl(0, 0%, 30%);
  text-decoration: none;
  border-width: 0.07em;
  border-style: solid;
  border-color: hsl(0, 0%, 30%);
  background: hsl(0, 0%, 94%);
}
.pills > a:hover,
.pills > a:focus-visible,
.pills > a.selected,
.pills > span:not(.pills-label):hover,
.pills > span:not(.pills-label):focus-visible,
.pills > span:not(.pills-label).selected {
  color: hsl(280, 80%, 50%);
  border-color: hsl(280, 80%, 50%);
}
.pills > a,
.pills > span:not(.pills-label) {
  padding-inline: 0.6em;
  padding-block: 0.3em;
  border-radius: 1em;
}
.pills > a.selected,
.pills > span:not(.pills-label).selected {
  background: hsl(280, 80%, 95%);
}
.badges > span:not(.badges-label) {
  border-radius: 0.25em;
  padding-inline: 0.2em;
  padding-block: 0.15em;
}
.meta-row {
  display: flex;
  flex-direction: row;
  gap: 0.5em;
}
.meta-row > * + *::before {
  content: "\2022";
  margin-inline-end: 0.5em;
}
.page-spacer {
  flex: 1 0 auto;
}
.text-black {
  color: black;
}
.text-white {
  color: white;
}
.text-current {
  color: currentColor;
}
.text-inherit {
  color: inherit;
}
.text-transparent {
  color: transparent;
}
.text-purple {
  color: hsl(280, 80%, 50%);
}
.text-secondary {
  color: hsl(0, 0%, 39%);
}
.text-neutral-50 {
  color: oklch(98.5% 0 0deg);
}
.text-neutral-100 {
  color: oklch(97% 0 0deg);
}
.text-neutral-200 {
  color: oklch(92.2% 0 0deg);
}
.text-neutral-300 {
  color: oklch(87% 0 0deg);
}
.text-neutral-400 {
  color: oklch(70.8% 0 0deg);
}
.text-neutral-500 {
  color: oklch(55.6% 0 0deg);
}
.text-neutral-600 {
  color: oklch(43.9% 0 0deg);
}
.text-neutral-700 {
  color: oklch(37.1% 0 0deg);
}
.text-neutral-800 {
  color: oklch(26.9% 0 0deg);
}
.text-neutral-900 {
  color: oklch(20.5% 0 0deg);
}
.text-neutral-950 {
  color: oklch(14.5% 0 0deg);
}
.bg-black {
  background-color: black;
}
.bg-white {
  background-color: white;
}
.bg-current {
  background-color: currentColor;
}
.bg-inherit {
  background-color: inherit;
}
.bg-transparent {
  background-color: transparent;
}
.bg-content {
  background-color: white;
}
.bg-footer {
  background-color: hsl(280, 80%, 10%);
}
.bg-purple-light {
  background-color: hsl(280, 80%, 30%);
}
.bg-purple-dark {
  background-color: hsl(280, 80%, 10%);
}
.bg-purple-gradient {
  background:
    linear-gradient(
      to bottom,
      hsl(280, 80%, 30%),
      hsl(280, 80%, 10%));
}
.site-header {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  background-color: hsl(280, 80%, 30%);
  border-top-color: hsl(280, 80%, 30%);
}
.site-header-inner {
  display: flex;
  flex-direction: row;
  height: 3rem;
  align-items: center;
  width: 100%;
  padding-inline: 0.5rem;
  max-width: 1000px;
}
.home-site-header {
  position: absolute;
  top: 0;
  z-index: 10;
  background: transparent;
}
.menu-site-header {
  position: absolute;
  top: 0;
  z-index: 10;
  background: transparent;
}
.site-header-home-link {
  display: flex;
  flex-direction: row;
  height: 100%;
  gap: 0.5rem;
  padding-block: 0.25rem;
  align-items: center;
  user-select: none;
}
.site-header-logo {
  height: 100%;
}
.site-header-wordmark {
  font-family: "Fjalla One", sans-serif;
  font-style: normal;
  font-optical-sizing: auto;
  font-size: 1.25rem;
  line-height: 1;
  color: rgb(235, 200, 0);
  letter-spacing: 0.04em;
}
.site-header-actions {
  display: flex;
  flex-direction: row;
  margin-left: auto;
}
.site-header-actions .icon-button {
  color: hsl(0, 0%, 75%);
}
.site-header-actions .icon {
  width: 1.5rem;
}
body.no-scroll {
  overflow: hidden;
}
.site-menu {
  display: flex;
  flex-direction: column;
  width: max-content;
  max-height: 100dvh;
  background: rgba(96.9, 15.3, 137.7, 0.75);
  position: fixed;
  top: 0;
  right: 0;
  left: auto;
  border-width: 0;
  border-bottom-right-radius: 0.8rem;
  border-bottom-left-radius: 0.8rem;
  outline: none;
  backdrop-filter: blur(1rem);
  overflow-y: auto;
  transform: translateY(-110%);
  opacity: 0;
}
.site-menu[open] {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
@starting-style {
  .site-menu[open] {
    transform: translateY(-110%);
    opacity: 0;
  }
}
.site-menu:not([open]) {
  display: none;
}
.site-menu::backdrop {
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0.1rem);
  opacity: 0;
}
.site-menu[open]::backdrop {
  opacity: 1;
  transition: opacity 0.2s ease;
}
@starting-style {
  .site-menu[open]::backdrop {
    opacity: 0;
  }
}
.site-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-inline: 0.5rem;
  padding-block: 1.5rem;
}
.site-menu-group {
  display: flex;
  flex-direction: column;
}
.site-menu-group.site-menu-group-utility {
  margin-top: 0.5rem;
}
.site-menu-group.site-menu-group-utility .site-menu-list {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.site-menu-group-title {
  display: flex;
  flex-direction: row;
  height: 2.5rem;
  padding-inline: 0.5rem;
  align-items: center;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
  color: hsl(0, 0%, 86%);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.site-menu-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0rem;
  list-style: none;
}
.site-menu-item {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 2.5rem;
  gap: 0.3rem;
  padding-inline: 0.5rem;
  align-items: center;
  border-radius: 0.3rem;
  font-weight: 500;
  color: rgb(235, 200, 0);
}
.site-menu-item .icon {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  color: currentColor;
}
.site-menu-item:active {
  background: rgba(235, 200, 0, 0.1);
}
@media (hover: hover) {
  .site-menu-item:hover,
  .site-menu-item:focus-visible {
    background: rgba(235, 200, 0, 0.1);
  }
}
.site-footer {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  background-color: hsl(280, 80%, 10%);
}
.site-footer-inner {
  display: flex;
  flex-direction: column;
  padding-block: 1rem;
  align-items: center;
  width: 100%;
  padding-inline: 0.5rem;
  max-width: 1000px;
  font-size: 0.875rem;
  line-height: 1.4285714286;
  color: hsl(0, 0%, 39%);
}
.block-audio {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.block-audio audio {
  display: block;
  width: 100%;
}
.block-audio .element-caption {
  font-size: 0.75rem;
  line-height: 1.3333333333;
  text-align: center;
  color: hsl(0, 0%, 51%);
}
.prose {
  display: flex;
  flex-direction: column;
  gap: 1em;
  line-height: 1.6;
  hyphens: auto;
  word-wrap: break-word;
}
.prose a:hover,
.prose a:focus {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.prose .slide {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.prose .source {
  filter: brightness(3) saturate(0.2);
}
.prose p {
  text-align: justify;
}
.prose h1,
.prose h2,
.prose h3,
.prose h4,
.prose h5,
.prose h6 {
  font-weight: 700;
  color: hsl(0, 0%, 12%);
}
.prose h1 {
  font-size: 1.25rem;
  line-height: 1.4;
}
.prose h2 {
  font-size: 1.125rem;
  line-height: 1.5555555556;
}
.prose h3,
.prose h4,
.prose h5,
.prose h6,
.prose p {
  font-size: 1rem;
  line-height: 1.5;
}
.prose blockquote {
  border-left-width: 0.3em;
  border-left-style: solid;
  border-left-color: hsl(280, 80%, 50%);
  padding-left: 0.5em;
}
.prose blockquote > * + * {
  margin-top: 1em;
}
.prose iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
  border-width: 0;
}
.prose ol {
  list-style-position: outside;
  padding-left: 2em;
}
.prose ol > * + * {
  margin-top: 1em;
}
.prose ol li {
  line-height: 1.6;
}
.prose ol {
  list-style-type: decimal;
}
.prose ul {
  list-style-position: outside;
  padding-left: 2em;
}
.prose ul > * + * {
  margin-top: 1em;
}
.prose ul li {
  line-height: 1.6;
}
.prose ul {
  list-style-type: disc;
}
.prose li > ul,
.prose li > ol {
  margin-left: 2em;
}
.prose ol.tight-list,
.prose ul.tight-list {
  margin: 1em 0 0 0;
  list-style-position: outside;
  padding-left: 2em;
}
.prose ol.tight-list > * + *,
.prose ul.tight-list > * + * {
  margin-top: 0;
}
.prose ol.tight-list li,
.prose ul.tight-list li {
  line-height: 1.6;
}
.prose ol.tight-list li,
.prose ul.tight-list li {
  margin: 0;
}
.prose ol.tight-list li:first-child,
.prose ul.tight-list li:first-child {
  margin-top: 0;
}
.prose .tight-list > ol,
.prose .tight-list > ul {
  margin: 1em 0 0 0;
  list-style-position: outside;
  padding-left: 2em;
}
.prose .tight-list > ol > * + *,
.prose .tight-list > ul > * + * {
  margin-top: 0;
}
.prose .tight-list > ol li,
.prose .tight-list > ul li {
  line-height: 1.6;
}
.prose .tight-list > ol li,
.prose .tight-list > ul li {
  margin: 0;
}
.prose .tight-list > ol li:first-child,
.prose .tight-list > ul li:first-child {
  margin-top: 0;
}
.toggle {
  --toggle-dir: 1;
  position: relative;
  width: 3.5em;
  height: 2em;
  padding: 0rem;
  border-width: 0;
  border-radius: 999px;
  background: hsl(0, 0%, 82%);
  cursor: pointer;
  transition: background 150ms ease;
}
[dir=rtl] .toggle {
  --toggle-dir: -1;
}
.toggle .toggle-thumb {
  position: absolute;
  top: 0.15em;
  inset-inline-start: 0.15em;
  width: 1.7em;
  height: 1.7em;
  border-radius: 999px;
  background: white;
  transition: transform 150ms ease;
}
.toggle[aria-pressed=true] {
  background: hsl(280, 80%, 50%);
}
.toggle[aria-pressed=true] .toggle-thumb {
  transform: translateX(calc(1.5em * var(--toggle-dir)));
}
.home-hero {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  background:
    linear-gradient(
      to bottom,
      hsl(280, 80%, 30%),
      hsl(280, 80%, 10%));
}
.home-hero-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 1rem;
  padding-bottom: 2rem;
  align-items: center;
  width: 100%;
  padding-inline: 0.5rem;
  max-width: 1000px;
}
.home-brand {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  display: flex;
  flex-direction: row;
  margin-bottom: -1rem;
  user-select: none;
  animation: hero-fade-in 0.6s ease-out 0.2s both;
}
.home-brand-logo {
  width: 10rem;
}
.home-brand-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.home-hero .home-verse {
  animation: hero-fade-in 0.6s ease-out 0.4s both;
}
.hero-line1 {
  margin-bottom: -0.6rem;
  font-family: "Apalu", serif;
  font-style: normal;
  font-optical-sizing: auto;
  font-size: 5rem;
  line-height: 1;
  color: white;
}
.hero-line2 {
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 500;
  color: rgb(235, 200, 0);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  animation: color-pulse 7s ease-in-out 0.6s infinite;
}
.hero-button {
  display: inline-flex;
  gap: 0.6em;
  padding-inline: 2em;
  padding-block: 0.7em;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: rgb(235, 200, 0);
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.18em;
  background: transparent;
  border-width: 0.05rem;
  border-style: solid;
  border-color: rgb(235, 200, 0);
  border-radius: 99rem;
  box-shadow: 0 0 0 0.0625rem rgb(235, 200, 0), 0 0 1rem rgba(235, 200, 0, 0.4);
  animation: hero-fade-in 0.6s ease-out 0.6s both;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}
.hero-button .hero-button-icon {
  width: 1em;
  height: 1em;
  transition: transform 0.2s ease;
}
.hero-button:hover,
.hero-button:focus {
  color: hsl(280, 80%, 10%);
  background: rgb(235, 200, 0);
  box-shadow: 0 0 0 0.0625rem rgb(235, 200, 0), 0 0 2rem rgba(235, 200, 0, 0.7);
}
.hero-button:hover .hero-button-icon,
.hero-button:focus .hero-button-icon {
  transform: translateX(0.2em);
}
.hero-button:active {
  transform: translateY(0);
  background: rgb(209.5, 178.2978723404, 0);
  color: hsl(280, 80%, 10%);
}
@keyframes hero-fade-in {
  from {
    opacity: 0;
    transform: translateY(0.4rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes color-pulse {
  0%, 40%, 60%, 100% {
    color: rgb(235, 200, 0);
  }
  50% {
    color: rgb(217, 76, 30);
  }
}
.home-verse {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}
.home-verse-text {
  font-family: "Cormorant Garamond Italic", serif;
  font-style: italic;
  font-optical-sizing: auto;
  font-size: 1.5rem;
  line-height: 1.2;
  text-align: center;
  color: hsl(0, 0%, 80%);
  text-wrap: balance;
}
.home-verse-cite {
  font-family: "Cormorant Garamond", serif;
  font-style: normal;
  font-optical-sizing: auto;
  font-size: 0.9rem;
  line-height: 1.2;
  text-align: center;
  color: rgb(235, 200, 0);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.home-main {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  background-color: hsl(280, 80%, 10%);
}
.home-main-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-block: 1rem;
  width: 100%;
  padding-inline: 0.5rem;
  max-width: 1000px;
}
.home-card-grid {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
}
.home-card {
  position: relative;
  display: block;
  aspect-ratio: 1;
  padding: 0rem;
  user-select: none;
  border-width: 0.15rem;
  border-style: solid;
  border-color: rgba(235, 200, 0, 0.25);
  border-radius: 0.75rem;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.home-card:hover,
.home-card:focus {
  transform: translateY(-0.25rem);
  border-color: rgba(235, 200, 0, 0.7);
}
.home-card:hover .home-card-image,
.home-card:focus .home-card-image {
  transform: scale(1.04);
  filter: none;
}
.home-card:hover .home-card-title::before,
.home-card:focus .home-card-title::before {
  background: rgb(235, 200, 0);
  box-shadow: 0 0 8px rgba(235, 200, 0, 0.6);
}
.home-card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.55) sepia(0.25);
  transition: transform 0.5s ease, filter 0.25s ease;
}
.home-card-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0) 35%,
      rgba(32.3, 5.1, 45.9, 0.9) 100%);
  pointer-events: none;
}
.home-card-content {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.2rem;
  position: absolute;
  inset: auto 0 0 0;
}
.home-card-title {
  position: relative;
  font-size: 1.5rem;
  line-height: 1.1;
  font-weight: 600;
  color: rgb(235, 200, 0);
  padding-top: 0.7rem;
}
.home-card-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2.5rem;
  height: 2px;
  background: rgba(235, 200, 0, 0.5);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}
.home-card-description {
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}
.item-title-block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.item-title-topline {
  display: flex;
  flex-direction: row;
  color: hsl(0, 0%, 39%);
}
.item-title-heading {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.title {
  font-size: 1.875rem;
  line-height: 1.2;
  font-weight: 600;
  color: hsl(0, 0%, 12%);
}
.item-subtitle {
  font-size: 1rem;
  line-height: 1.5;
  color: hsl(0, 0%, 39%);
}
.item-date,
.item-tags {
  font-size: 0.875rem;
  line-height: 1.4285714286;
  color: hsl(0, 0%, 39%);
}
.breadcrumbs {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  font-size: 0.875rem;
  line-height: 1.4285714286;
}
.breadcrumbs li {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.breadcrumbs a {
  color: inherit;
}
.breadcrumbs a:hover,
.breadcrumbs a:focus {
  color: hsl(280, 80%, 50%);
}
.breadcrumbs .icon-home {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  color: currentColor;
}
.breadcrumbs li:not(:last-child)::after {
  content: "\bb";
  padding: 0 0.2em;
  color: hsl(0, 0%, 59%);
}
.item-page {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  background-color: white;
  flex: 1 1 0%;
}
.item-shell {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-block: 1rem;
  width: 100%;
  padding-inline: 0.5rem;
  max-width: 800px;
}
.item-main {
  flex: 1 1 0%;
  line-height: 1.8;
  color: hsl(0, 0%, 20%);
}
.content-divider {
  width: 50%;
  height: 0.05rem;
  margin-inline: auto;
  margin-block: 0.5rem;
  border-width: 0;
  background: hsl(0, 0%, 78%);
}
.child-list-block,
.child-list,
.child-list-item,
.child-list-excerpts {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.child-list-title {
  font-size: 1.125rem;
  line-height: 1.5555555556;
  font-weight: 700;
}
.child-list-link {
  font-size: 1rem;
  line-height: 1.5;
  color: hsl(280, 80%, 50%);
}
.child-list-excerpts {
  font-size: 0.875rem;
  line-height: 1.4285714286;
}
.children-cards-block,
.children-cards-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: hsl(0, 0%, 39%);
}
.children-cards-count {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 700;
}
.children-card,
.children-card-details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.children-card-link {
  font-size: 1.125rem;
  line-height: 1.5555555556;
  color: hsl(280, 80%, 50%);
}
.children-card-details {
  font-size: 0.875rem;
  line-height: 1.4285714286;
}
.share-bar {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  margin-left: auto;
  align-items: center;
}
.share-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  background: none;
  border-width: 0;
  color: inherit;
  cursor: pointer;
}
.share-btn[hidden] {
  display: none;
}
.share-btn .icon {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  color: currentColor;
}
.share-btn:active {
  color: hsl(280, 80%, 50%);
}
@media (hover: hover) {
  .share-btn:hover {
    color: hsl(280, 80%, 50%);
  }
}
.share-btn .icon-check {
  display: none;
  color: green;
}
.share-btn.copied .icon-link {
  display: none;
}
.share-btn.copied .icon-check {
  display: block;
}
.slideshow {
  position: relative;
  overflow: hidden;
}
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.3s, display 0.3s allow-discrete;
}
.slide:not(.active) {
  display: none;
}
.slide.active {
  position: relative;
  opacity: 1;
}
@starting-style {
  .slide.active {
    opacity: 0;
  }
}
.slideshow-controls {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  justify-content: center;
  position: relative;
}
.slide-counter {
  width: 6em;
  font-weight: 500;
  text-align: center;
}
.slide-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background: none;
  border-width: 0;
  color: inherit;
  cursor: pointer;
}
.slide-btn .icon {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  color: currentColor;
}
.slide-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}
.slide-btn[hidden] {
  display: none;
}
.slide-btn-fullscreen {
  position: absolute;
  top: 0;
  right: 0;
}
.slide-btn-fullscreen .icon-exit-fullscreen {
  display: none;
}
.slide-btn-fullscreen[aria-pressed=true] .icon-fullscreen {
  display: none;
}
.slide-btn-fullscreen[aria-pressed=true] .icon-exit-fullscreen {
  display: inline-block;
}
.slideshow:fullscreen {
  background:
    linear-gradient(
      to bottom right,
      hsl(180, 80%, 95%),
      hsl(180, 80%, 90%));
  overflow-y: auto;
}
.slideshow:fullscreen .slide {
  padding: 2rem;
  zoom: 2;
}
.slideshow:fullscreen .slideshow-controls {
  position: fixed;
  bottom: 1rem;
  left: 0;
  right: 0;
  z-index: 10;
}
.slideshow:fullscreen .slide-btn-fullscreen {
  right: 1rem;
}
.language-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.4285714286;
  color: hsl(0, 0%, 39%);
}
.language-source-row {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: center;
  line-height: 1;
}
.language-source-toggle {
  display: flex;
  flex-direction: row;
  gap: 0.25rem;
  margin-inline-start: auto;
  align-items: center;
}
.filters {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.filter {
  display: flex;
  flex-direction: column;
  font-size: 0.875rem;
  line-height: normal;
}
.filter summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 0.4em;
  align-items: center;
}
.filter summary::-webkit-details-marker {
  display: none;
}
.filter summary .icon {
  display: block;
  width: 0.8em;
  height: 0.8em;
  color: currentColor;
  transition: transform 0.1s ease;
}
.filter[open] summary .icon {
  transform: rotate(90deg);
}
.filter-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 0.5rem;
}
.prev-next {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-size: 0.875rem;
  line-height: 1.4285714286;
}
.prev-next-item {
  display: flex;
  flex-direction: column;
  width: 48%;
  gap: 0.2em;
}
.prev-next-item.prev {
  text-align: left;
}
.prev-next-item.next {
  text-align: right;
}
.prev-next-label {
  display: inline-flex;
  gap: 0em;
  align-items: center;
}
.prev-next-label.prev {
  flex-direction: row;
}
.prev-next-label.next {
  flex-direction: row-reverse;
}
.prev-next-label .icon {
  display: block;
  width: 1.5em;
  height: 1.5em;
  color: currentColor;
}
.prev-next-label:only-child {
  color: hsl(0, 0%, 78%);
}
.search-bar {
  display: flex;
  flex-direction: row;
  gap: 0.25rem;
}
.search-bar input[type=search] {
  flex: 1 1 0%;
  padding: 0.25em 0.8em;
  border-width: 1px;
  border-style: solid;
  border-color: hsl(0, 0%, 78%);
  border-radius: 0.3em;
  font: inherit;
  font-size: 0.875rem;
  line-height: 1.4285714286;
  color: hsl(0, 0%, 20%);
  background: white;
  outline: none;
}
.search-bar input[type=search]:focus {
  border-color: hsl(280, 80%, 50%);
}
.search-bar button[type=submit] {
  display: flex;
  flex-direction: row;
  padding-inline: 0.5em;
  align-items: center;
  border-width: 1px;
  border-style: solid;
  border-color: hsl(0, 0%, 78%);
  border-radius: 0.3em;
  background: hsl(0, 0%, 94%);
  color: hsl(0, 0%, 39%);
  cursor: pointer;
}
.search-bar button[type=submit] .icon {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  color: currentColor;
}
.search-bar button[type=submit]:hover,
.search-bar button[type=submit]:focus {
  background: hsl(280, 80%, 95%);
  color: hsl(280, 80%, 50%);
  border-color: hsl(280, 80%, 50%);
  outline: none;
}
mark {
  background: rgba(235, 200, 0, 0.35);
  color: inherit;
  padding: 0 0.1em;
  border-radius: 0.15em;
}
/*# sourceMappingURL=main-desktop.css.894d95fe76f7.map */
