:root {
  --color-beige-raw: 255, 249, 237;
  --color-brown-raw: 77, 69, 54;
  --color-orange-raw: 242, 136, 61;
  --color-gray-raw: 115, 113, 109;
  --color-beige: rgb(var(--color-beige-raw));
  --color-brown: rgb(var(--color-brown-raw));
  --color-orange: rgb(var(--color-orange-raw));
  --color-gray: rgb(var(--color-gray-raw));
  --shadow-default: 0 1rem 4rem rgba(0, 0, 0, .1);
}

@font-face {
  font-display: swap;
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400;
  src: url(/typo3conf/ext/c3local/Resources/Public/Fonts/PlayfairDisplay/playfair-display-v36-latin-regular.woff2) format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 500;
  src: url(/typo3conf/ext/c3local/Resources/Public/Fonts/PlayfairDisplay/playfair-display-v36-latin-500.woff2) format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 700;
  src: url(/typo3conf/ext/c3local/Resources/Public/Fonts/PlayfairDisplay/playfair-display-v36-latin-700.woff2) format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Caveat";
  font-style: normal;
  font-weight: 400;
  src: url(/typo3conf/ext/c3local/Resources/Public/Fonts/Caveat/caveat-v18-latin-regular.woff2) format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Caveat";
  font-style: normal;
  font-weight: 700;
  src: url(/typo3conf/ext/c3local/Resources/Public/Fonts/Caveat/caveat-v18-latin-700.woff2) format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 400;
  src: url(/typo3conf/ext/c3local/Resources/Public/Fonts/SourceSans3/source-sans-3-v15-latin-regular.woff2) format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 700;
  src: url(/typo3conf/ext/c3local/Resources/Public/Fonts/SourceSans3/source-sans-3-v15-latin-700.woff2) format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 900;
  src: url(/typo3conf/ext/c3local/Resources/Public/Fonts/SourceSans3/source-sans-3-v15-latin-900.woff2) format("woff2");
}
body {
  background-color: var(--color-beige);
  color: var(--color-brown);
  font-size: 1.125rem;
  line-height: 1.556;
  font-weight: 500;
  font-family: "Playfair Display", sans-serif;
}
@media (max-width: 768px) {
  body {
    font-size: 0.875rem;
  }
}

h1, .h1 {
  font-size: 3rem;
  line-height: 1.125;
  font-weight: 700;
}
@media (max-width: 768px) {
  h1, .h1 {
    font-size: 1.5rem;
  }
}

h2, .h2 {
  font-size: 2.375rem;
  line-height: 1.158;
  font-weight: 700;
  margin-bottom: 4rem;
  word-break: break-word;
}
@media print {
  h2, .h2 {
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  h2, .h2 {
    font-size: 1.75rem;
  }
}

h3, .h3 {
  font-size: 1.75rem;
  line-height: 1.357;
  font-weight: 700;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  h3, .h3 {
    font-size: 1.2rem;
  }
}

p {
  margin-bottom: 1.5em;
}
p:last-child {
  margin-bottom: 0;
}

.text-subtitle {
  font-family: "Source Sans 3", sans-serif;
  font-weight: 400;
  opacity: 0.7;
}

.text-sans-serif {
  font-family: "Source Sans 3", sans-serif;
}

.eyebrow {
  color: var(--color-orange);
  margin-bottom: 0.5rem;
  font-family: "Source Sans 3", sans-serif;
}

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

.dotted-background {
  padding: 3rem 4rem;
  background-image: var(--dot-image);
  background-repeat: repeat;
  background-size: 1.93rem;
}
@media print {
  .dotted-background {
    padding: 0;
    background: none;
  }
}
@media (max-width: 768px) {
  .dotted-background {
    padding: 2rem 1.5rem;
    background-size: 1rem;
  }
}

hr {
  height: 2rem;
  background-image: radial-gradient(circle closest-side, var(--color-orange), var(--color-orange) 12.5%, transparent 12.6%);
  background-repeat: repeat;
  background-size: 2rem;
  border: none;
  max-width: 8rem;
  margin: 2.5rem auto;
}
@media (max-width: 768px) {
  hr {
    background-size: 1rem;
    height: 1rem;
    max-width: 4rem;
  }
}

.button {
  background: var(--color-orange);
}
.button, .button-gray, .button-print {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  padding: 0 2rem;
  border-radius: 1000px;
  font-size: 1.125rem;
  font-weight: 700;
  font-family: "Source Sans 3", sans-serif;
  color: #fff;
  cursor: pointer;
  border: none;
}
@media (max-width: 768px) {
  .button, .button-gray, .button-print {
    font-size: 0.875rem;
    height: 2.5rem;
    padding: 0 1rem;
  }
}
.button-gray {
  background: var(--color-gray);
}
.button-print {
  padding-left: 1.75rem;
  gap: 1rem;
}
.button-print::before {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  background-image: url(/typo3conf/ext/c3local/Resources/Public/Icons/icon_print.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.timeline-section {
  max-width: 60rem;
  width: calc(100% - 4rem);
  margin: auto;
}
@media (max-width: 1400px) {
  .timeline-section {
    max-width: 45rem;
  }
}

.page-header {
  position: fixed;
  top: 2rem;
  left: 2rem;
  z-index: 999;
  transition: 0.6s color;
}
@media print {
  .page-header {
    position: absolute;
    color: #000 !important;
  }
}
.background-dark .page-header {
  color: var(--color-beige);
}
.page-header::before {
  content: "";
  position: absolute;
  left: -2rem;
  top: -2rem;
  width: calc(100% + 4rem);
  height: calc(100% + 4rem);
  z-index: 1;
  background-image: linear-gradient(180deg, var(--color-beige) 60%, transparent);
  filter: blur(2rem);
  transition: 0.6s background;
}
@media print {
  .page-header::before {
    display: none;
  }
}
.background-dark .page-header::before {
  background-image: linear-gradient(180deg, var(--color-gray) 60%, transparent);
}
.page-header a {
  position: relative;
  z-index: 2;
}
@media (max-width: 1200px) {
  .page-header {
    top: 1rem;
    left: 1rem;
  }
}

.page-footer {
  padding: 2rem;
  font-family: "Source Sans 3", sans-serif;
}
@media print {
  .page-footer {
    display: none;
  }
}
.page-footer ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .page-footer ul {
    gap: 0.5rem 1rem;
  }
}

[data-container=container-timeline] {
  position: relative;
  color: var(--theme-color-font);
  padding: 8rem 0;
  background: url(/typo3conf/ext/c3local/Resources/Public/Images/Noise_Desktop.jpg);
  background-size: 100%;
}
[data-container=container-timeline]:before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: var(--theme-color-background);
}
[data-container=container-timeline] .timeline-section {
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  [data-container=container-timeline] {
    background: url(/typo3conf/ext/c3local/Resources/Public/Images/Noise_Mobile.jpg);
  }
}
@media print {
  [data-container=container-timeline] {
    page-break-inside: avoid;
    background-image: none !important;
    color: #000 !important;
    background-color: #fff !important;
    padding: 3rem 0;
  }
  [data-container=container-timeline]:first-child {
    padding-top: 8rem;
  }
}
[data-container=container-timeline]:nth-child(2n+1) {
  --theme-color-background: var(--color-gray);
  --theme-color-font: var(--color-beige);
  --theme-color-font-raw: var(--color-beige-raw);
  --theme-color-background-dots: var(--color-beige-raw);
  --dot-image: url(/typo3conf/ext/c3local/Resources/Public/Icons/icon_dot_desktop_dark.svg);
  background-blend-mode: exclusion;
}
@media (max-width: 768px) {
  [data-container=container-timeline]:nth-child(2n+1) {
    --dot-image: url(/typo3conf/ext/c3local/Resources/Public/Icons/icon_dot_mobile_dark.svg);
  }
}
[data-container=container-timeline]:nth-child(2n) {
  --theme-color-background: rgba(var(--color-beige-raw), .9);
  --theme-color-font: var(--color-brown);
  --theme-color-font-raw: var(--color-brown-raw);
  --theme-color-background-dots: var(--color-orange-raw);
  --dot-image: url(/typo3conf/ext/c3local/Resources/Public/Icons/icon_dot_desktop.svg);
  background-blend-mode: overlay;
}
@media (max-width: 768px) {
  [data-container=container-timeline]:nth-child(2n) {
    --dot-image: url(/typo3conf/ext/c3local/Resources/Public/Icons/icon_dot_mobile.svg);
  }
}

.frame-space-before-extra-small {
  margin-top: 1rem;
}
.frame-space-before-small {
  margin-top: 2rem;
}
.frame-space-before-medium {
  margin-top: 4rem;
}
.frame-space-before-large {
  margin-top: 6rem;
}
.frame-space-before-extra-large {
  margin-top: 8rem;
}
.frame-space-after-extra-small {
  margin-bottom: 1rem;
}
.frame-space-after-small {
  margin-bottom: 2rem;
}
.frame-space-after-medium {
  margin-bottom: 4rem;
}
.frame-space-after-large {
  margin-bottom: 6rem;
}
.frame-space-after-extra-large {
  margin-bottom: 8rem;
}

.frame-layout-30 > div {
  margin: 0 2rem 0 2rem;
}
@media (max-width: 1200px) {
  .frame-layout-30 > div {
    margin: 0 1rem 0 1rem;
  }
}

.timeline-start {
  display: grid;
  grid-template-columns: 4fr 2fr;
  gap: 6rem;
  align-items: center;
  max-width: 96rem;
  width: calc(100% - 4rem);
  margin: auto;
  padding: 6rem 0;
}
@media (max-width: 768px) {
  .timeline-start {
    grid-template-columns: 1fr;
    gap: 4rem;
    min-height: 0;
    padding: 8rem 0 3rem;
  }
}
.timeline-start-buttons {
  display: flex;
  gap: 0.5rem;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .timeline-start-buttons {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .timeline-start-image {
    order: -1;
    padding: 0 2rem;
  }
}
.timeline-start-image img {
  box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  overflow: hidden;
  display: block;
  margin: auto;
}

.jumpnav {
  max-width: 96rem;
  width: calc(100% - 4rem);
  margin: auto;
}
.jumpnav ul {
  max-width: 57.5rem;
}
.jumpnav-item {
  font-family: "Playfair Display", sans-serif;
  font-weight: 700;
  display: flex;
  gap: 1rem;
  font-size: 1.75rem;
  line-height: 1.357;
  word-break: break-word;
}
@media (max-width: 768px) {
  .jumpnav-item {
    font-size: 1.2rem;
    gap: 0.5rem;
  }
}
.jumpnav-item:not(:last-child) {
  margin-bottom: 2rem;
}
.jumpnav-item::before {
  content: "";
  width: 2rem;
  height: 2rem;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(/typo3conf/ext/c3local/Resources/Public/Icons/icon_arrow_down.svg);
  margin-top: 0.25rem;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .jumpnav-item::before {
    margin-top: -0.125rem;
  }
}

.sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 2rem;
  height: 83%;
  margin: auto;
  display: flex;
  gap: 0.5rem;
  z-index: 200;
}
@media print {
  .sidebar {
    display: none;
  }
}
@media (max-width: 768px) {
  .sidebar {
    pointer-events: none;
  }
}
.sidebar::before {
  opacity: 0;
  visibility: hidden;
  content: "";
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  background-image: linear-gradient(270deg, var(--color-beige), rgba(var(--color-beige-raw), 0.8) 45%, rgba(var(--color-beige-raw), 0));
  transform: translateX(2rem);
  transition: 0.3s opacity, 0.3s visibility, 0.3s transform;
}
@media (max-width: 1200px) {
  .sidebar {
    right: 0.75rem;
    height: auto;
    top: 6rem;
    bottom: 6rem;
  }
}
.sidebar-toggle {
  background: transparent;
  border: none;
  margin: 0;
  font: inherit;
  font-family: "Source Sans 3", sans-serif;
  font-weight: 900;
  gap: 0.5rem;
  position: absolute;
  bottom: calc(100% + 2.875rem);
  right: 0;
  align-items: center;
  white-space: nowrap;
  color: var(--color-orange);
  cursor: pointer;
  padding: 0.75rem;
  margin: -0.75rem;
  display: none;
  font-size: 0.625rem;
  height: 2.625rem;
  pointer-events: all;
}
@media (max-width: 1200px) {
  .sidebar-toggle {
    display: flex;
  }
}
.sidebar-toggle::before {
  content: "";
  position: absolute;
  top: -2rem;
  right: -1.5rem;
  width: calc(100% + 4rem);
  height: calc(100% + 4rem);
  background-image: linear-gradient(180deg, var(--color-beige) 60%, transparent);
  filter: blur(2rem);
  z-index: 1;
  transition: 0.6s background;
}
.background-dark :not(.sidebar-open) .sidebar-toggle::before {
  background-image: linear-gradient(180deg, var(--color-gray) 60%, transparent);
}
.sidebar-open .sidebar-toggle-visible-default {
  display: none;
}
.sidebar-toggle-visible-close {
  display: none;
}
.sidebar-open .sidebar-toggle-visible-close {
  display: block;
}
.sidebar-toggle span {
  line-height: 1;
}
.sidebar-toggle span, .sidebar-toggle img {
  position: relative;
  z-index: 2;
}
.sidebar-toggle img {
  flex-shrink: 0;
}
.sidebar-items {
  position: relative;
  z-index: 3;
}
.sidebar-track {
  height: 100%;
  width: 0.5rem;
  background: rgba(var(--color-brown-raw), 0.2);
  border-radius: 1000px;
  position: relative;
  z-index: 3;
}
@media (max-width: 1200px) {
  .sidebar-track {
    width: 0.25rem;
  }
}
.sidebar-track-fill {
  height: calc(var(--fill, 0) * 100%);
  width: 100%;
  background: var(--color-orange);
  border-radius: 1000px;
}
.sidebar-item {
  text-align: right;
  height: calc(var(--height) * 100%);
  color: var(--color-brown);
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  cursor: pointer;
  transition: 0.3s color;
  pointer-events: all;
  align-items: flex-start;
}
@media (max-width: 1200px) {
  .sidebar-item {
    opacity: 0;
    visibility: hidden;
    transform: translateX(1rem);
    transition: 0.3s opacity, 0.3s visibility, 0.3s transform;
  }
}
@media (min-width: 1200px) {
  .sidebar-item-dark-bg {
    color: var(--color-beige);
  }
}
.sidebar-item-active {
  color: var(--color-orange);
  font-weight: 900;
}
.sidebar-item-active .sidebar-item-title::after {
  height: 0.25rem;
}
@media (max-width: 1200px) {
  .sidebar-item-active .sidebar-item-title::after {
    height: 2px;
  }
}
.sidebar-item-title {
  font-size: 0.8125rem;
  line-height: 1.385;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-family: "Source Sans 3", sans-serif;
  justify-content: flex-end;
}
.sidebar-item-title::after {
  width: 1rem;
  height: 0.125rem;
  border-radius: 1000px;
  content: "";
  display: block;
  background: currentColor;
  transition: 0.3s height, 0.3s background;
}
@media (max-width: 1200px) {
  .sidebar-item-title::after {
    height: 1px;
  }
}
@media (max-width: 1200px) {
  .sidebar-open::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
}
@media (max-width: 1200px) {
  .sidebar-open .sidebar-item {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
}

@media print {
  .frame-type-audio {
    display: none;
  }
}

.audio audio {
  display: none;
}
.audio figcaption {
  margin-top: 2rem;
}
.audio-container {
  display: flex;
  gap: 2rem;
  align-items: center;
  font-family: "Source Sans 3", sans-serif;
  padding-top: 3rem;
}
@media (max-width: 768px) {
  .audio-container {
    gap: 1rem;
  }
}
.audio-button {
  width: 2rem;
  height: 2rem;
  display: grid;
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  color: inherit;
  cursor: pointer;
}
.audio-button span {
  grid-area: 1/1;
}
.audio-button svg {
  fill: currentColor;
  width: 100%;
  height: 100%;
}
.audio-button-icon-pause {
  display: none;
}
.playing .audio-button-icon-pause {
  display: block;
}
.playing .audio-button-icon-play {
  display: none;
}
.audio-track {
  height: 0.5rem;
  border-radius: 1000px;
  flex-grow: 1;
  background: rgba(var(--theme-color-font-raw), 0.2);
  cursor: col-resize;
}
.audio-track-fill {
  width: var(--progress, 0);
  height: 100%;
  background: var(--color-orange);
  border-radius: 1000px;
  position: relative;
}
.playing .audio-track-fill {
  transition: 0.3s width linear;
}
.audio-track-time {
  position: absolute;
  right: 0;
  transform: translateX(50%);
  bottom: calc(100% + 0.75rem);
  color: var(--color-orange);
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 900;
  pointer-events: none;
}
.audio-track-time::after {
  content: "";
  display: block;
  width: 0.125rem;
  height: 1rem;
  border-radius: 1000px;
  background: currentColor;
  margin-top: 0.5rem;
}

.ce-gallery {
  display: flex;
  justify-content: center;
  margin: 4rem 0 2rem;
  align-items: flex-start;
}
@media print {
  .ce-gallery {
    margin-top: 2rem;
    page-break-inside: avoid;
  }
}
.ce-gallery[data-ce-images="1"] .ce-column .image {
  max-width: 22.5rem;
  transform: rotate(2deg);
}
.ce-gallery[data-ce-images="2"] .image, .ce-gallery[data-ce-images="3"] .image, .ce-gallery[data-ce-images="4"] .image {
  max-width: 26rem;
}
.ce-gallery[data-ce-images="2"] .ce-column:not(:last-child) .image, .ce-gallery[data-ce-images="3"] .ce-column:not(:last-child) .image, .ce-gallery[data-ce-images="4"] .ce-column:not(:last-child) .image {
  transform: translateX(1.5rem) rotate(-5deg);
  z-index: 2;
  position: relative;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .ce-gallery[data-ce-images="2"] .ce-column:not(:last-child) .image, .ce-gallery[data-ce-images="3"] .ce-column:not(:last-child) .image, .ce-gallery[data-ce-images="4"] .ce-column:not(:last-child) .image {
    transform: rotate(-5deg);
  }
}
.ce-gallery[data-ce-images="2"] .ce-column:last-child .image, .ce-gallery[data-ce-images="3"] .ce-column:last-child .image, .ce-gallery[data-ce-images="4"] .ce-column:last-child .image {
  transform: translateX(-1.5rem) rotate(3deg);
  z-index: 1;
  position: relative;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .ce-gallery[data-ce-images="2"] .ce-column:last-child .image, .ce-gallery[data-ce-images="3"] .ce-column:last-child .image, .ce-gallery[data-ce-images="4"] .ce-column:last-child .image {
    transform: translateX(-0.5rem) rotate(3deg);
    margin-top: 0;
    z-index: 3;
  }
}
.ce-gallery[data-ce-images="3"] .ce-row:last-child {
  width: 50%;
  margin: auto;
}
@media (max-width: 768px) {
  .ce-gallery[data-ce-images="3"] .ce-row:last-child {
    width: 100%;
  }
}
.ce-gallery[data-ce-images="3"] .ce-row:last-child .image {
  transform: translateX(1.5rem) rotate(-2.5deg);
  margin-top: -1rem;
}
.ce-gallery[data-ce-images="4"] .ce-row:last-child .ce-column:first-child .image {
  margin-top: 0;
  transform: translateX(0.5rem) rotate(-2.5deg);
}
.ce-gallery[data-ce-images="4"] .ce-row:last-child .ce-column:last-child .image {
  margin-top: 2rem;
  transform: rotate(4deg);
  z-index: 2;
}
.ce-gallery .ce-row {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .ce-gallery .ce-row {
    flex-direction: column;
  }
}
.ce-gallery .video-frame {
  display: grid;
  align-items: center;
  justify-items: center;
}
.ce-gallery .video-frame > * {
  grid-area: 1/1;
}
.ce-gallery figure {
  padding: 1rem 1rem 0.75rem;
  background: #fff;
  box-shadow: var(--shadow-default);
}
@media print {
  .ce-gallery figure {
    page-break-inside: avoid;
  }
}
@media (max-width: 768px) {
  .ce-gallery figure {
    padding: 0.75rem;
  }
}
.ce-gallery figure:not(:has(figcaption)) {
  padding-bottom: 3rem;
}
@media (max-width: 768px) {
  .ce-gallery figure:not(:has(figcaption)) {
    padding-bottom: 2rem;
  }
}
.ce-gallery figure figcaption {
  font-family: Caveat, sans-serif;
  font-weight: 700;
  margin-top: 0.75rem;
  color: var(--color-brown);
  text-align: center;
  line-height: 1.33333;
}
@media (max-width: 768px) {
  .ce-gallery figure figcaption {
    margin-top: 0.75rem;
  }
}
@media print {
  .ce-gallery .video {
    display: none;
  }
}
.ce-gallery .video video {
  max-width: 50rem;
  height: auto;
  filter: blur(5px);
  width: 100%;
}
.ce-gallery .video-play {
  background: none;
  padding: 0;
  margin: 0;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.ce-gallery .video-started video {
  filter: blur(0);
}
.ce-gallery .video-started .video-play {
  display: none;
}

@media print {
  .story {
    page-break-inside: avoid;
  }
}
.story-inner {
  padding: 2rem;
  background: #fff;
  box-shadow: var(--shadow-default);
}
@media (max-width: 768px) {
  .story-inner {
    padding: 1rem;
  }
}
.story-header {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-family: "Source Sans 3", sans-serif;
  font-weight: 900;
  font-size: 0.8125rem;
  margin-bottom: 1rem;
  color: var(--color-orange);
}
.story-title {
  margin-bottom: 2rem;
  color: var(--color-gray);
}
.story-body {
  position: relative;
  padding-bottom: 2rem;
}
.open .story-body {
  padding-bottom: 0;
}
.story-body::after {
  content: "";
  height: 100%;
  width: 100%;
  background-image: linear-gradient(0deg, #fff 2rem, transparent);
  display: block;
  position: absolute;
  bottom: 0;
}
@media print {
  .story-body::after {
    display: none;
  }
}
.open .story-body::after {
  display: none;
}
.story-text {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media print {
  .story-text {
    -webkit-box-orient: unset;
    -webkit-line-clamp: unset;
    display: block;
  }
}
.open .story-text {
  display: block;
}
.story-read-more {
  border: none;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}
@media print {
  .story-read-more {
    display: none;
  }
}
.open .story-read-more {
  display: none;
}

@media print {
  .quote {
    page-break-inside: avoid;
  }
}
.quote-inner {
  padding: 2rem;
  background: #fff;
  box-shadow: var(--shadow-default);
}
@media (max-width: 768px) {
  .quote-inner {
    padding: 1rem;
  }
}
.quote-icon {
  margin-bottom: 1rem;
}
.quote-icon img {
  display: block;
  margin: auto;
}
.quote-body {
  font-size: 1.75rem;
  line-height: 1.357;
  font-weight: 700;
  text-align: center;
  color: var(--color-gray);
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .quote-body {
    font-size: 1.2rem;
  }
}
.quote-person {
  font-family: "Caveat", sans-serif;
  font-weight: 700;
  text-align: center;
  color: var(--color-orange);
  margin-bottom: 0;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem 3rem;
}
@media (max-width: 768px) {
  .image-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2rem;
  }
}
@media (max-width: 500px) {
  .image-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 1rem;
  }
}
.image-grid .image {
  padding: 0.5rem;
}
.image-grid .image:not(:has(figcaption)) {
  padding-bottom: 1.5rem;
}
.image-grid .image:nth-child(9n+1) {
  transform: rotate(-5deg);
}
.image-grid .image:nth-child(9n+2) {
  transform: translateY(1rem) rotate(3deg);
}
.image-grid .image:nth-child(9n+3) {
  transform: rotate(-2deg);
}
.image-grid .image:nth-child(9n+4) {
  transform: translateY(0.75rem) rotate(5deg);
}
.image-grid .image:nth-child(9n+5) {
  transform: translateY(0.75rem) rotate(-1deg);
}
.image-grid .image:nth-child(9n+6) {
  transform: rotate(2deg);
}
.image-grid .image:nth-child(9n+7) {
  transform: rotate(-2deg);
}
.image-grid .image:nth-child(9n+8) {
  transform: rotate(0deg);
}
.image-grid .image:nth-child(9n+9) {
  transform: translateY(-1rem) rotate(2deg);
}

html:has(.page-id-186) {
  position: relative;
  background-image: url(/typo3conf/ext/c3local/Resources/Public/Images/Noise_Desktop.jpg);
  background-size: 100%;
}
@media (max-width: 768px) {
  html:has(.page-id-186) {
    background-image: url(/typo3conf/ext/c3local/Resources/Public/Images/Noise_Mobile.jpg);
  }
}
html:has(.page-id-186) [data-container=container-timeline] {
  background-image: none !important;
  background-color: transparent !important;
}
html:has(.page-id-186) body {
  position: relative;
  z-index: 2;
  background-color: initial;
}
html:has(.page-id-186):before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(var(--color-beige-raw), 0.8);
}

.page-id-186 .sidebar {
  display: none;
}

html:has(.page-id-186) {
  scroll-behavior: smooth;
}

@media (max-width: 1500px) and (min-width: 768px) {
  .page-id-198 main {
    padding-top: 4rem;
  }
}

@media print {
  .frame-type-print-btn {
    display: none;
  }
}

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