/* Reset */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  text-rendering: optimizeSpeed;
  overflow-x: hidden;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img,
picture {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  border: none;
  font-family: inherit;
  color: inherit;
  background: none;
  outline: inherit;
  cursor: pointer;
}

[hidden] {
  display: none;
}

/* Root */
:root {
  font-size: 16px;
  --background: #fffef2;
  --white-yellow: #f6f5e8;
  --rich-silver: #cccbbf;
  --vibrant-mint: #71f6d2;
  --sky-blue: #0dacf1;
  --primary: #333333;
  --secondary: #666666;
  --tertiary: #999999;
  --accent: #252525;
  --teak: #945c26;
}

/* Typography */
@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/Geist-Variable.woff2") format("woff2-variations");
}
@font-face {
  font-family: "Geist";
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/Geist-Italic-Variable.woff2") format("woff2-variations");
}
h1, h2, h3, h4, h5, h6 {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.3;
}

p, a, span {
  font-size: 1rem;
  line-height: 1.5;
}

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

/* Lenis */
html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

/* Body */
body {
  width: 100%;
  height: 100%;
  color: var(--primary);
  font-family: "Geist", sans-serif;
  font-style: normal;
  font-weight: 400;
  background-color: var(--background);
}

/* Consent */
.consent {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 20;
}
.consent__dialog {
  pointer-events: auto;
  background: var(--primary);
}
.consent[data-view=banner] .consent__dialog {
  width: 16.5vw;
  height: 11vw;
  position: absolute;
  right: calc(16.5vw + 30px);
  bottom: 0;
  margin: 30px;
  padding: 15px;
  border-radius: 10px;
}
.consent__dialog--banner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.consent[data-view=preferences] .consent__dialog--banner {
  display: none;
}
.consent__dialog--banner__headline {
  display: none;
}
.consent__dialog--banner__content {
  color: var(--background);
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 1.3;
}
.consent__dialog--banner__content--preferences {
  color: var(--background);
  font-size: 0.75rem;
  font-weight: 300;
  text-decoration: underline;
}
.consent__dialog--banner__content:focus {
  outline: none;
}
.consent__dialog--banner__actions {
  display: flex;
  flex-direction: column;
  align-self: flex-start;
  gap: 15px;
}
.consent__dialog--banner__actions--all {
  width: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7.5px 15px;
  background: var(--background);
  color: var(--primary);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  border-radius: 30px;
  border: none;
  transition: color 0.33s ease;
  cursor: pointer;
}
.consent__dialog--banner__actions--all:hover {
  color: var(--accent);
}
.consent__dialog--banner__actions--necessary {
  color: var(--rich-silver);
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1;
  text-decoration: underline;
  background: transparent;
  border: none;
  padding: 0;
  transition: color 0.33s ease;
  cursor: pointer;
}
.consent__dialog--banner__actions--necessary:hover {
  color: #ffffff;
}
.consent[data-view=banner] .consent__preferences {
  display: none;
}
.consent[data-view=preferences] .consent__preferences {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.consent__preferences--header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 254, 242, 0.11);
}
.consent__preferences--header__headline {
  color: var(--background);
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1;
  padding-left: 15px;
}
.consent__preferences--header__headline:focus {
  outline: none;
}
.consent__preferences--header__close {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--background);
  background: none;
  transition: color 0.33s ease;
  cursor: pointer;
}
.consent__preferences--header__close:hover {
  color: #ffffff;
}
.consent__preferences--overview {
  padding: 15px;
  overflow-y: auto;
}
.consent__preferences--overview__content--text {
  color: var(--background);
  font-size: 0.875rem;
  line-height: 1.3;
  font-weight: 300;
}
.consent__preferences--overview__content--text:nth-of-type(2) {
  margin-top: 15px;
}
.consent__preferences--overview__content--text__link {
  color: var(--background);
  font-size: 0.875rem;
  font-weight: 300;
  text-decoration: underline;
  transition: color 0.33s ease;
}
.consent__preferences--overview__content--text__link:hover {
  color: #ffffff;
}
.consent__preferences--overview__actions {
  margin-top: 15px;
  padding: 0;
  border: none;
}
.consent__preferences--overview__actions--category {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
  padding: 15px;
  border: 1px solid rgba(255, 254, 242, 0.11);
  cursor: pointer;
}
.consent__preferences--overview__actions--category:last-child {
  margin-bottom: 0;
}
.consent__preferences--overview__actions--category__header {
  width: 100%;
  display: flex;
  align-items: center;
}
.consent__preferences--overview__actions--category__header--name {
  flex: 1;
  color: var(--background);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1;
}
.consent__preferences--overview__actions--category__header--required {
  margin-right: 15px;
  color: var(--background);
  font-size: 0.875rem;
  font-weight: 300;
}
.consent__preferences--overview__actions--category__header--input {
  width: 0;
  height: 0;
  position: absolute;
  opacity: 0;
}
.consent__preferences--overview__actions--category__header--input:checked + .consent__preferences--overview__actions--category__header--switch {
  background: var(--white-yellow);
}
.consent__preferences--overview__actions--category__header--input:checked + .consent__preferences--overview__actions--category__header--switch::after {
  transform: translateX(20px);
  background: var(--sky-blue);
}
.consent__preferences--overview__actions--category__header--input:checked + .consent__preferences--overview__actions--category__header--switch .consent__preferences--overview__actions--category__header--switch__check {
  opacity: 1;
  transform: translateX(20px);
  color: var(--background);
}
.consent__preferences--overview__actions--category__header--input:checked + .consent__preferences--overview__actions--category__header--switch .consent__preferences--overview__actions--category__header--switch__cross {
  opacity: 0;
  transform: translateX(20px);
}
.consent__preferences--overview__actions--category__header--input:disabled + .consent__preferences--overview__actions--category__header--switch::after {
  background: var(--sky-blue);
}
.consent__preferences--overview__actions--category__header--input:disabled + .consent__preferences--overview__actions--category__header--switch .consent__preferences--overview__actions--category__header--switch__check {
  color: var(--background);
  opacity: 1;
}
.consent__preferences--overview__actions--category__header--input:disabled + .consent__preferences--overview__actions--category__header--switch .consent__preferences--overview__actions--category__header--switch__cross {
  opacity: 0;
}
.consent__preferences--overview__actions--category__header--switch {
  width: 44px;
  height: 24px;
  display: flex;
  align-items: center;
  position: relative;
  background: rgba(255, 254, 242, 0.11);
  border-radius: 30px;
  transition: background 0.33s ease;
}
.consent__preferences--overview__actions--category__header--switch::after {
  content: "";
  width: 18px;
  height: 18px;
  position: absolute;
  left: 3px;
  top: 3px;
  background: var(--background);
  border-radius: 50%;
  transition: transform 0.33s ease;
}
.consent__preferences--overview__actions--category__header--switch__cross {
  position: absolute;
  left: 7.5px;
  top: 7.5px;
  color: var(--primary);
  opacity: 1;
  transition: opacity 0.33s ease, transform 0.33s ease;
  z-index: 1;
}
.consent__preferences--overview__actions--category__header--switch__check {
  position: absolute;
  left: 6px;
  top: 6px;
  color: var(--primary);
  opacity: 0;
  transition: opacity 0.33s ease, transform 0.33s ease;
  z-index: 1;
}
.consent__preferences--overview__actions--category__details {
  margin-top: 15px;
  color: var(--rich-silver);
  font-size: 0.875rem;
  font-weight: 300;
}
.consent__preferences--actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  border-top: 1px solid rgba(255, 254, 242, 0.11);
}
.consent__preferences--actions__agreements, .consent__preferences--actions__storage {
  display: flex;
  gap: 7.5px;
}
.consent__preferences--actions__agreements--all, .consent__preferences--actions__agreements--necessary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7.5px 15px;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1;
  text-align: center;
  border-radius: 30px;
  border: none;
  transition: opacity 0.33s ease;
  cursor: pointer;
}
.consent__preferences--actions__agreements--all {
  color: var(--primary);
  background: var(--background);
  transition: color 0.33s ease;
}
.consent__preferences--actions__agreements--all:hover {
  color: var(--accent);
}
.consent__preferences--actions__agreements--necessary {
  background: transparent;
  color: var(--background);
  font-weight: 300;
  border: 1px solid var(--background);
  transition: color 0.33s ease, background 0.33s ease;
}
.consent__preferences--actions__agreements--necessary:hover {
  color: var(--primary);
  background-color: var(--background);
}
.consent__preferences--actions__storage--save {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7.5px 15px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1;
  text-align: center;
  border-radius: 30px;
  cursor: pointer;
  background: transparent;
  color: var(--background);
  border: 1px solid var(--background);
  transition: color 0.33s ease, background-color 0.33s ease;
}
.consent__preferences--actions__storage--save:hover {
  color: var(--primary);
  background-color: var(--background);
}
.consent__status {
  width: 1px;
  height: 1px;
  position: absolute;
  white-space: nowrap;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
}

.consent[data-view=preferences] {
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  pointer-events: auto;
}
.consent[data-view=preferences] .consent__dialog {
  width: min(100% - 60px, 700px);
  max-height: calc(100svh - 60px);
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--primary);
  border-radius: 10px;
}

/* Navigation */
.navigation {
  width: 16.5vw;
  height: 11vw;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: fixed;
  right: 0;
  bottom: 0;
  margin: 30px;
  padding: 15px;
  background-color: var(--vibrant-mint);
  border-radius: 10px;
  z-index: 10;
  cursor: pointer;
}
.navigation:hover .navigation__label--current {
  animation: year 2s infinite;
}
.navigation:hover .navigation__label--next {
  animation: year 2s infinite 0.6s;
}
.navigation__label {
  display: flex;
  flex-direction: row;
  align-items: center;
  overflow: hidden;
  transition: color 0.33s ease;
}
.navigation__label--current, .navigation__label--next, .navigation__label--slash {
  line-height: 1;
}
.navigation__label--current:hover {
  animation: navSlideUp 2s infinite;
}

@keyframes year {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  15% {
    transform: translateY(-120%);
    opacity: 0;
  }
  15.001% {
    transform: translateY(120%);
    opacity: 0;
  }
  30% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
/* Archive */
.archive {
  width: calc(33% + 30px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 15px;
  position: fixed;
  top: 30px;
  right: calc(-100% - 30px);
  bottom: 30px;
  background: var(--white-yellow);
  border-radius: 10px;
  overflow: hidden;
  pointer-events: none;
  z-index: 30;
}
.archive__header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.5px 2.5px 0 15px;
}
.archive__header h2 {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
}
.archive__header--close {
  width: 45px;
  height: 45px;
  padding: 12.5px;
  position: relative;
  transform-origin: center;
  transition: transform 0.33s;
  z-index: 1;
  cursor: pointer;
}
.archive__header--close:hover {
  color: var(--accent);
}
.archive__list {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 2.5px 15px 15px 15px;
  list-style: none;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.archive__list::-webkit-scrollbar {
  display: none;
}
.archive__list--publication {
  border-bottom: 1px solid rgba(51, 51, 51, 0.11);
}
.archive__list--publication:first-child a {
  padding-top: 0;
}
.archive__list--publication:last-child {
  border-bottom: none;
}
.archive__list--publication:last-child a {
  padding-bottom: 0;
}
.archive__list--publication a {
  display: flex;
  flex-direction: column;
  gap: 7.5px;
  padding: 15px 0;
  color: var(--tertiary);
  pointer-events: none;
  text-decoration: none;
  transition: color 0.33s ease;
}
.archive__list--publication a time {
  font-size: 0.875rem;
}
.archive__list--publication a:hover {
  color: var(--accent);
}
.archive__list--publication a.archive__list--publication__active {
  color: var(--primary);
  pointer-events: auto;
}

/* Container */
.container {
  width: 100%;
  height: auto;
}

/* Container: Inner */
.container-inner {
  width: inherit;
  max-width: 720px;
  height: auto;
  margin: 0 auto;
  padding: 0 30px;
}

/* Breadcrumb */
.breadcrumb {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 7.5px;
  margin-top: 30px;
}
.breadcrumb p, .breadcrumb span, .breadcrumb a {
  font-size: 0.875rem;
}
.breadcrumb p {
  min-width: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.breadcrumb span, .breadcrumb a {
  flex-shrink: 0;
  white-space: nowrap;
}
.breadcrumb a {
  color: var(--secondary);
  transition: color 0.33s ease;
}
.breadcrumb a:hover {
  color: var(--accent);
}

/* Sneakpeak */
.sneakpeak {
  width: 100%;
  min-height: 100svh;
  padding: 0 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-content: center;
}
.sneakpeak__categories {
  grid-column: 2;
  justify-self: center;
}
.sneakpeak__categories--inner span {
  display: block;
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.3;
  cursor: pointer;
}
.sneakpeak__categories--inner span sup {
  position: relative;
  vertical-align: baseline;
  top: -0.6em;
  color: var(--secondary);
  font-size: 1rem;
}
.sneakpeak__categories--inner span {
  transition: color 0.33s ease;
}
.sneakpeak__categories--inner span:hover {
  color: var(--accent);
}
.sneakpeak__featured {
  width: 16.5vw;
  grid-column: 3;
  margin-left: auto;
}
.sneakpeak__featured--inner span {
  line-height: 1.3;
  display: block;
}
.sneakpeak__featured--inner span a {
  text-decoration: underline;
  transition: color 0.33s ease;
}
.sneakpeak__featured--inner span a:hover {
  color: var(--accent);
}

/* Index */
.index {
  display: none;
  width: 100%;
  height: auto;
  padding: 30px 0;
}
.index__articles, .index__research, .index__notes {
  display: none;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
}
.index__articles.is-active, .index__research.is-active, .index__notes.is-active {
  display: flex;
}
.index__articles--publication, .index__research--publication, .index__notes--publication {
  position: relative;
  overflow: hidden;
  --line-scale: 0;
}
.index__articles--publication a, .index__research--publication a, .index__notes--publication a {
  display: block;
  color: var(--tertiary);
  pointer-events: none;
  transition: color 0.33s ease;
}
.index__articles--publication a span,
.index__articles--publication a time, .index__research--publication a span,
.index__research--publication a time, .index__notes--publication a span,
.index__notes--publication a time {
  display: block;
}
.index__articles--publication a time, .index__research--publication a time, .index__notes--publication a time {
  margin-top: 7.5px;
  font-size: 0.875rem;
}
.index__articles--publication a:hover, .index__research--publication a:hover, .index__notes--publication a:hover {
  color: var(--accent);
}
.index__articles--publication a.index__articles--publication__active, .index__articles--publication a.index__research--publication__active, .index__articles--publication a.index__notes--publication__active, .index__research--publication a.index__articles--publication__active, .index__research--publication a.index__research--publication__active, .index__research--publication a.index__notes--publication__active, .index__notes--publication a.index__articles--publication__active, .index__notes--publication a.index__research--publication__active, .index__notes--publication a.index__notes--publication__active {
  color: var(--primary);
  pointer-events: auto;
}
.index__articles--publication, .index__research--publication, .index__notes--publication {
  padding: 15px 0;
}
.index__articles--publication:first-of-type, .index__research--publication:first-of-type, .index__notes--publication:first-of-type {
  padding-top: 0;
}
.index__articles--publication:last-of-type, .index__research--publication:last-of-type, .index__notes--publication:last-of-type {
  padding-bottom: 0;
}
.index__articles--publication:last-of-type::after, .index__research--publication:last-of-type::after, .index__notes--publication:last-of-type::after {
  display: none;
}
.index__articles--publication::after, .index__research--publication::after, .index__notes--publication::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(51, 51, 51, 0.11);
  transform: scaleX(var(--line-scale));
  transform-origin: left;
}
.index.is-visible {
  display: block;
}

/* Blog */
.blog {
  width: 100%;
  height: auto;
}
.blog__post {
  padding: 30px 0;
}
.blog__post--title {
  font-size: 2.5rem;
  font-weight: 300;
}
.blog__post--meta {
  margin-top: 30px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.blog__post--meta__author {
  display: flex;
  align-items: center;
  gap: 15px;
}
.blog__post--meta__author img {
  width: 45px;
  height: 45px;
}
.blog__post--meta__author--details span,
.blog__post--meta__author--details time {
  color: var(--secondary);
  font-size: 0.875rem;
  line-height: 1;
}
.blog__post--meta__author--details span {
  display: block;
}
.blog__post--meta__cta {
  line-height: 1;
  padding: 7.5px 15px;
  border: 1px solid var(--primary);
  border-radius: 30px;
  transition: color 0.33s ease, background-color 0.33s ease;
  text-decoration: none;
}
.blog__post--meta__cta:hover {
  color: var(--background);
  background-color: var(--accent);
}
.blog__post--controls {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  margin-top: 30px;
  border-top: 1px solid rgba(51, 51, 51, 0.11);
  border-bottom: 1px solid rgba(51, 51, 51, 0.11);
}
.blog__post--controls__interaction {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
}
.blog__post--controls__interaction--clap {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 7.5px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
}
.blog__post--controls__interaction--clap svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
  transition: color 0.33s ease, fill 0.33s ease;
}
.blog__post--controls__interaction--clap svg path {
  fill: currentColor;
}
.blog__post--controls__interaction--clap span {
  font-size: 0.875rem;
  line-height: 1;
}
.blog__post--controls__interaction--clap:hover svg, .blog__post--controls__interaction--clap.active svg {
  color: var(--accent);
}
.blog__post--controls__interaction--language {
  padding: 0;
  color: var(--primary);
  font-family: inherit;
  font-size: 0.875rem;
  background: transparent;
  border: none;
  transition: color 0.33s ease;
  cursor: pointer;
}
.blog__post--controls__interaction--language:hover, .blog__post--controls__interaction--language.active {
  color: var(--accent);
}
.blog__post--controls__engagement {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.blog__post--controls__engagement--toggle {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
}
.blog__post--controls__engagement--toggle svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
  transition: color 0.33s ease, fill 0.33s ease;
}
.blog__post--controls__engagement--toggle svg path {
  fill: currentColor;
}
.blog__post--controls__engagement--toggle:hover svg, .blog__post--controls__engagement--toggle.active svg {
  color: var(--accent);
}
.blog__post--controls__engagement--dropdown {
  min-width: 180px;
  position: absolute;
  top: 100%;
  right: -15px;
  margin: 15px 0 0 0;
  padding: 15px;
  list-style: none;
  background: var(--white-yellow);
  border-radius: 10px;
  transform: translateY(10px);
  transition: opacity 0.33s ease, transform 0.33s ease, visibility 0.33s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 5;
}
.blog__post--controls__engagement--dropdown::before {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  top: -7.5px;
  right: 22px;
  background: var(--white-yellow);
  transform: rotate(45deg);
}
.blog__post--controls__engagement--dropdown--link a {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 7.5px;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.33s ease;
}
.blog__post--controls__engagement--dropdown--link a svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: inherit;
  transition: color 0.33s ease;
}
.blog__post--controls__engagement--dropdown--link a svg path {
  fill: currentColor;
}
.blog__post--controls__engagement--dropdown--link a span {
  color: var(--secondary);
  font-size: 0.875rem;
  line-height: 1;
}
.blog__post--controls__engagement--dropdown--link a:hover {
  color: var(--accent);
}
.blog__post--controls__engagement--dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.blog__post--content {
  width: 100%;
  height: auto;
  padding: 30px 0;
}
.blog__post--content h1, .blog__post--content h2, .blog__post--content h3, .blog__post--content h4, .blog__post--content h5, .blog__post--content h6, .blog__post--content span {
  display: block;
  padding: 30px 0;
}
.blog__post--content h1:first-child, .blog__post--content h2:first-child, .blog__post--content h3:first-child, .blog__post--content h4:first-child, .blog__post--content h5:first-child, .blog__post--content h6:first-child, .blog__post--content span:first-child {
  padding-top: 0;
}
.blog__post--content h2 {
  font-size: 1.5rem;
  font-weight: 400;
}
.blog__post--content p a {
  color: inherit;
  text-decoration: underline;
}
.blog__post--content p sup {
  position: relative;
  vertical-align: baseline;
  top: -0.5em;
  font-size: 0.75rem;
  line-height: 0;
}
.blog__post--content p sup a {
  color: var(--secondary);
  font-size: 0.75rem;
  text-decoration: none;
}
.blog__post--content p + p,
.blog__post--content ul + p,
.blog__post--content ol + p,
.blog__post--content blockquote + p,
.blog__post--content p + blockquote,
.blog__post--content ul + blockquote,
.blog__post--content ol + blockquote {
  margin-top: 15px;
}
.blog__post--content * + figure,
.blog__post--content figure + * {
  margin-top: 30px;
}
.blog__post--content blockquote {
  margin-top: 15px;
  padding-left: 15px;
  font-style: italic;
  border-left: 3px solid var(--primary);
}
.blog__post--content blockquote p {
  margin-top: 0;
}
.blog__post--content blockquote p + p {
  margin-top: 15px;
}
.blog__post--content figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin: 30px 0;
}
.blog__post--content figure img {
  width: 100%;
  height: auto;
  display: block;
}
.blog__post--content figure figcaption {
  color: var(--secondary);
  font-size: 0.875rem;
  text-align: center;
}
.blog__post--content ol {
  margin-top: 15px;
  padding: 0;
  list-style: none;
  counter-reset: item;
}
.blog__post--content ol li {
  position: relative;
  padding-left: 22.5px;
  counter-increment: item;
}
.blog__post--content ol li::before {
  content: counter(item) ")";
  position: absolute;
  left: 0;
  top: 0;
}
.blog__post--content ul {
  margin-top: 15px;
  padding-left: 15px;
  list-style: disc;
}
.blog__post--references {
  width: 100%;
  border-top: 1px solid rgba(51, 51, 51, 0.11);
  padding-top: 30px;
}
.blog__post--references h2 {
  font-size: 1rem;
  font-weight: 500;
}
.blog__post--references ol, .blog__post--references ul {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 7.5px;
  margin-top: 15px;
  padding-left: 0;
  list-style: none;
  counter-reset: reference;
}
.blog__post--references ol li, .blog__post--references ul li {
  position: relative;
  padding-left: 15px;
  color: var(--secondary);
  font-size: 0.875rem;
  line-height: 1.5;
  word-break: break-word;
  overflow-wrap: anywhere;
  counter-increment: reference;
}
.blog__post--references ol li span, .blog__post--references ol li a, .blog__post--references ul li span, .blog__post--references ul li a {
  font-size: 0.875rem;
}
.blog__post--references ol li a, .blog__post--references ul li a {
  text-decoration: underline;
}
.blog__post--references ol li::before, .blog__post--references ul li::before {
  content: counter(reference) ".";
  position: absolute;
  top: 0;
  left: 0;
}

/* Documents */
.documents {
  width: 100%;
  height: auto;
  padding: 30px 0;
}
.documents h1 {
  display: block;
  margin-bottom: 30px;
  font-size: 2.5rem;
  font-weight: 300;
}
.documents h2 {
  font-size: 1.5rem;
  font-weight: 400;
}
.documents h2, .documents h3, .documents h4, .documents h5, .documents h6, .documents span {
  display: block;
  padding: 30px 0;
}
.documents p a {
  color: inherit;
  text-decoration: underline;
}
.documents p + p,
.documents ul + p,
.documents ol + p,
.documents blockquote + p,
.documents p + blockquote,
.documents ul + blockquote,
.documents ol + blockquote {
  margin-top: 15px;
}
.documents * + figure,
.documents figure + * {
  margin-top: 30px;
}
.documents blockquote {
  margin-top: 15px;
  padding-left: 15px;
  font-style: italic;
  border-left: 3px solid var(--primary);
}
.documents blockquote p {
  margin-top: 0;
}
.documents blockquote p + p {
  margin-top: 15px;
}
.documents figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin: 30px 0;
}
.documents figure img {
  width: 100%;
  height: auto;
  display: block;
}
.documents figure figcaption {
  font-size: 0.875rem;
  color: var(--secondary);
  text-align: center;
}
.documents ol {
  margin-top: 15px;
  padding: 0;
  list-style: none;
  counter-reset: item;
}
.documents ol li {
  position: relative;
  padding-left: 22.5px;
  counter-increment: item;
}
.documents ol li::before {
  content: counter(item) ")";
  position: absolute;
  top: 0;
  left: 0;
}
.documents ul {
  margin-top: 15px;
  padding-left: 15px;
  list-style: disc;
}

/* Data */
.data {
  width: 100%;
  max-width: 720px;
  height: auto;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 1;
}
.data__about a {
  font-weight: 500;
}
.data__about p {
  padding: 15px 0 30px 0;
  font-size: 0.875rem;
}
.data__subscribe {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 33svh;
  padding: 30px;
  background-color: var(--white-yellow);
  border-radius: 10px;
  background-image: url("../images/rasters/jonasz-with-laptop.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 66%;
}
.data__subscribe--details {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.data__subscribe--details h2 {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
}
.data__subscribe--details__price {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 7.5px;
}
.data__subscribe--details__price span {
  line-height: 1;
}
.data__subscribe--details__price span:nth-child(1) {
  font-size: 1.5rem;
  font-weight: 400;
}
.data__subscribe--details__price span:nth-child(2), .data__subscribe--details__price span:nth-child(3) {
  color: var(--secondary);
  font-size: 0.875rem;
}
.data__subscribe--cta {
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin-top: 30px;
  padding: 7.5px 15px;
  line-height: 1;
  border: 1px solid var(--primary);
  border-radius: 30px;
  transition: color 0.33s ease, background-color 0.33s ease;
  cursor: not-allowed;
}
.data__subscribe--cta:hover {
  color: var(--background);
  background-color: var(--accent);
}
.data__subscribe--notice {
  display: block;
  color: var(--secondary);
  font-size: 0.875rem;
  line-height: 1;
  margin-top: auto;
}
.data__networking {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 30px 0;
}
.data__networking--message {
  width: fit-content;
  width: -moz-fit-content;
  display: inline-flex;
  align-items: center;
  gap: 7.5px;
  text-decoration: none;
  transition: color 0.33s ease;
}
.data__networking--message span {
  line-height: 1;
}
.data__networking--message:hover {
  color: var(--accent);
}
.data__networking--accounts {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.data__networking--accounts__registered {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
.data__networking--accounts__registered a {
  color: var(--primary);
  transition: color 0.33s ease;
}
.data__networking--accounts__registered a svg path {
  fill: currentColor;
  transition: fill 0.33s ease;
}
.data__networking--accounts__registered a:hover {
  color: var(--accent);
}
.data__legal {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 30px 0;
  border-top: 1px solid rgba(51, 51, 51, 0.11);
}
.data__legal p, .data__legal a {
  color: var(--secondary);
  font-size: 0.875rem;
  line-height: 1;
}
.data__legal a {
  transition: color 0.33s ease;
}
.data__legal a:hover {
  color: var(--accent);
}
.data__legal ul {
  justify-self: end;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (max-width: 1280px) {
  /* Consent */
  .consent[data-view=banner] .consent__dialog {
    display: flex;
    flex-direction: column;
    width: calc(100% - 60px);
    right: 0;
    height: calc(100svh - 60px);
  }
  .consent__dialog--banner {
    flex-grow: 1;
    justify-content: flex-start;
    position: relative;
    padding-bottom: 65px;
  }
  .consent__dialog--banner__headline {
    display: block;
    color: var(--background);
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 15px;
  }
  .consent__dialog--banner__content {
    flex-grow: 1;
    font-size: 1rem;
    background-image: url("../images/vectors/globe.svg");
    background-size: 50% 50%;
    background-position: center;
    background-repeat: no-repeat;
  }
  .consent__dialog--banner__content--preferences {
    width: 100%;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    margin-top: 0;
    padding: 15px;
    color: var(--background);
    font-family: inherit;
    font-size: 1rem;
    text-align: center;
    text-decoration: none;
    line-height: 1;
    border: 1px solid var(--background);
    border-radius: 30px;
    transition: color 0.33s ease, background-color 0.33s ease;
    cursor: pointer;
  }
  .consent__dialog--banner__content--preferences:hover {
    color: var(--accent);
    background-color: var(--background);
  }
  .consent__dialog--banner__actions {
    display: flex;
    flex-direction: column;
    align-self: stretch;
    margin-top: auto;
    padding-top: 30px;
    gap: 15px;
  }
  .consent__dialog--banner__actions--all, .consent__dialog--banner__actions--necessary {
    align-self: stretch;
    width: 100%;
    padding: 15px;
    font-size: 1rem;
  }
  .consent__dialog--banner__actions--necessary {
    color: var(--background);
    text-decoration: none;
    border: 1px solid var(--background);
    border-radius: 30px;
    transition: color 0.33s ease, background-color 0.33s ease;
    cursor: pointer;
  }
  .consent__dialog--banner__actions--necessary:hover {
    color: var(--accent);
    background-color: var(--background);
  }
  .consent__preferences--actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .consent__preferences--actions__agreements, .consent__preferences--actions__storage {
    width: 100%;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
  .consent__preferences--actions__agreements--all, .consent__preferences--actions__agreements--necessary {
    width: inherit;
    padding: 15px;
    font-size: 1rem;
  }
  .consent__preferences--actions__storage--save {
    width: inherit;
    padding: 15px;
    font-size: 1rem;
  }
  .consent[data-view=preferences] .consent__dialog {
    width: calc(100% - 60px);
    height: 100svh;
    max-height: auto;
    margin: 30px;
    top: 0;
    left: 0;
    transform: none;
  }
  /* Navigation */
  .navigation {
    width: calc(50vw - 30px);
    height: calc((50vw - 30px) * 720 / 1080);
    transition: width 0.33s cubic-bezier(0.25, 1, 0.5, 1), height 0.33s cubic-bezier(0.25, 1, 0.5, 1), border-radius 0.33s cubic-bezier(0.25, 1, 0.5, 1), padding 0.33s cubic-bezier(0.25, 1, 0.5, 1);
  }
  .navigation.is-shrunk {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    padding: 0;
    justify-content: center;
    align-items: center;
  }
  .navigation.is-shrunk .navigation__label {
    display: none;
  }
  .navigation.is-shrunk .navigation__arrow {
    display: flex;
  }
  .navigation:hover .navigation__label--current, .navigation:hover .navigation__label--next {
    animation: none;
  }
  /* Archive */
  .archive {
    width: calc(100% - 60px);
  }
  /* Sneakpeak */
  .sneakpeak {
    display: block;
  }
  .sneakpeak__categories {
    justify-self: start;
  }
  .sneakpeak__featured {
    display: none;
  }
  /* Blog */
  .blog__post--controls {
    position: relative;
  }
  .blog__post--controls__engagement {
    position: static;
  }
  .blog__post--controls__engagement--dropdown {
    width: 100%;
    left: 0;
  }
  /* Data */
  .data__subscribe {
    height: 100svh;
    background-size: auto 33%;
  }
}/*# sourceMappingURL=styles.css.map */