/* CSS Variable */
html {
  font-size: 20px;
}

:root {
  --main-font: serif;
  --main-font-italic: serif;
  --font-weight: 400;
  --text-line-height: 1.05;
  --text-line-height-small: 0.8rem;
  --text-letter-spacing: 0.02rem;
  --text-color: black;
  --text-color-secondary: #a0a0a0;
  --text-color-intro: #bfbfbf;
  --site-padding: 80px;
  --column-padding: 10px;
}
@media screen and (max-width: 580px) {
  :root {
    --text-line-height: 1;
    --text-letter-spacing: 0.02rem;
    --site-padding: 40px;
  }
}

/* CSS Basics */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

body {
  font-family: var(--main-font);
  font-size: var(--font-size);
  color: var(--text-color);
  line-height: var(--text-line-height);
  font-weight: var(--font-weight);
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
  font-weight: var(--font-weight);
}

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

a:hover {
  text-decoration: underline;
}

input,
button,
textarea,
select {
  font: inherit;
}

button,
.btn {
  background: none;
  border: none;
  cursor: pointer;
}

button:hover,
.btn:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

@font-face {
  font-family: Helvetica;
  src: url("/assets/fonts/");
}
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
  top: -0.5em;
}

p::selection,
h1::selection,
h2::selection,
span::selection,
a::selection,
button::selection,
input::selection {
  background: black;
  color: white;
}

tspan::selection {
  background: black;
  fill: white;
}

/* SCSS Variable */
/* CSS Variable */
:root {
  --site-padding: 10px;
  --font-size-news: 45px;
  --font-size-title: 30px;
  --font-size-text: 15px;
  --a4-ratio: 1.4142135624;
  --article-padding: var(--site-padding) 0 calc(var(--site-padding) * 12) 0;
  --content-max-width: min(600px, calc(100% - 40px));
  --link-hover-color: #878787;
}
@media screen and (max-width: 1040px) {
  :root {
    --article-padding: 6lh 0 4lh 0;
  }
}
@media screen and (max-width: 580px) {
  :root {
    --font-size-title: 24px;
    --font-size-text: 16px;
    --article-padding: 2lh 0 4lh 0;
  }
}
@media screen and (min-width: 1920px) {
  :root {
    --content-max-width: min(1000px, calc(100% - 40px));
    --font-size-news: 60px;
    --font-size-title: 40px;
    --font-size-text: 20px;
  }
}

@font-face {
  font-family: ripley-medium;
  src: url("/assets/fonts/SCRipley-Medium.woff2");
}
@font-face {
  font-family: ripley-medium-italic;
  src: url("/assets/fonts/SCRipley-MediumItalic.woff2");
}
* {
  line-height: 1.1;
}

body {
  font-family: ripley-medium;
  min-height: 100vh;
}

a:hover {
  font-family: ripley-medium-italic;
  text-decoration: none;
}

h1 > a,
h2 > a,
p > a {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
h1 > a:hover,
h2 > a:hover,
p > a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

em {
  font-style: normal;
  font-family: ripley-medium-italic;
}

h1 {
  font-size: var(--font-size-news);
  line-height: 1.05;
}

h2 {
  font-size: var(--font-size-title);
}

p {
  font-size: var(--font-size-text);
}

.home-intro {
  position: fixed;
  inset: 0;
  z-index: 1000;
  width: 100vw;
  height: 100dvh;
  background: #fff;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 450ms ease;
}
.home-intro[aria-hidden=true] {
  pointer-events: none;
}
.home-intro > svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
}
.home-intro .spring-stage {
  transform-box: view-box;
  transform-origin: 50% 50%;
  will-change: transform;
  animation: homeIntroSpringIn var(--spring-stage-dur, 4s) var(--spring-ease, linear) forwards;
}
.home-intro .spring-stage.intro-done {
  will-change: auto;
}
.home-intro .spiral-text {
  fill: #000;
  font-family: "Times New Roman", Times, Georgia, serif;
  font-size: 28px;
  letter-spacing: 0.02em;
  text-rendering: optimizeSpeed;
}

.nav-spiral {
  position: fixed;
  left: -20px;
  bottom: var(--site-padding);
  z-index: 100;
  width: 400px;
  aspect-ratio: 1/1;
  max-width: calc(100vw - var(--site-padding) * 2);
  max-height: calc(100dvh - var(--site-padding) * 2);
  pointer-events: auto;
}
.nav-spiral__logo {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
  border-radius: 100%;
}
.nav-spiral svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
  transform: rotate(-27.5deg);
}
.nav-spiral .spiral-text {
  fill: currentColor;
  font-family: ripley-medium;
  letter-spacing: -0.4em;
  text-rendering: optimizeSpeed;
}
.nav-spiral .spiral-text > textPath > tspan:nth-child(1), .nav-spiral .spiral-text > textPath > tspan:nth-child(2), .nav-spiral .spiral-text > textPath > tspan:nth-child(3) {
  font-family: ripley-medium-italic;
}
.nav-spiral .spiral-text > textPath > tspan:nth-child(5), .nav-spiral .spiral-text > textPath > tspan:nth-child(6) {
  letter-spacing: -0.1em;
}

body:not(.mobile-menu-open) div.nav-primary .nav-spiral,
body:not(.mobile-menu-open) div.nav-primary div.nav-secondary {
  color: #000;
}
body:not(.mobile-menu-open) div.nav-primary .nav-spiral a,
body:not(.mobile-menu-open) div.nav-primary div.nav-secondary a {
  color: currentColor;
}
body:not(.mobile-menu-open) div.nav-primary div.nav-secondary > div > ul > li > a {
  font-size: 13px;
  text-transform: uppercase;
}

@media screen and (max-width: 1040px) {
  .mobile-menu-toggle {
    font-family: ripley-medium;
    position: fixed;
    top: var(--site-padding);
    left: 50%;
    transform: translateX(-50%);
    z-index: 220;
    font-size: var(--font-size-text);
    color: currentColor;
    background: transparent;
    padding: 0;
    border: 0;
    line-height: 1;
    display: grid;
    place-items: center;
  }
  .mobile-menu-toggle:active, .mobile-menu-toggle:focus {
    text-decoration: none;
    outline: none;
  }
  .mobile-menu-toggle {
    --hero-split: 0px;
    --hero-color: currentColor;
    --hero-bleed-top: 0px;
    --hero-base-top: 0px;
    --hero-base-overflow-bleed: 0px;
  }
  .mobile-menu-toggle__layer {
    grid-area: 1/1;
  }
  .mobile-menu-toggle__layer--base {
    color: #000;
    clip-path: polygon(0% calc(var(--hero-base-top) - var(--hero-base-overflow-bleed)), 100% calc(var(--hero-base-top) - var(--hero-base-overflow-bleed)), 100% 200%, 0% 200%);
  }
  .mobile-menu-toggle__layer--hero {
    color: var(--hero-color);
    clip-path: polygon(0% calc(-1 * var(--hero-bleed-top)), 100% calc(-1 * var(--hero-bleed-top)), 100% var(--hero-split), 0% var(--hero-split));
  }
  div.nav-primary {
    position: fixed;
    inset: 0;
    z-index: 210;
    background-color: var(--menu-hero-bg-color, #fff);
    background-image: var(--menu-hero-bg-image, none);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--menu-hero-color, #000);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 220ms ease, visibility 0s linear 220ms;
  }
  body.mobile-menu-open div.nav-primary {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 220ms ease;
  }
  body.mobile-menu-closing div.nav-primary {
    visibility: visible;
    pointer-events: none;
  }
  body.mobile-menu-open .mobile-menu-toggle,
  body.mobile-menu-closing .mobile-menu-toggle {
    color: var(--menu-hero-color, currentColor);
  }
  body.mobile-menu-open div.nav-primary .hero-color-mask__layer--base,
  body.mobile-menu-closing div.nav-primary .hero-color-mask__layer--base {
    color: var(--menu-hero-color, currentColor);
  }
  body.mobile-menu-open div.nav-primary .hero-color-mask__layer--hero,
  body.mobile-menu-closing div.nav-primary .hero-color-mask__layer--hero {
    clip-path: none;
  }
  body.mobile-menu-open .mobile-menu-toggle__layer--base,
  body.mobile-menu-closing .mobile-menu-toggle__layer--base {
    color: var(--menu-hero-color, currentColor);
    clip-path: none;
  }
  body.mobile-menu-open .mobile-menu-toggle__layer--hero,
  body.mobile-menu-closing .mobile-menu-toggle__layer--hero {
    clip-path: none;
  }
  body.mobile-menu-open div.nav-primary .nav-spiral,
  body.mobile-menu-open div.nav-primary .nav-secondary,
  body.mobile-menu-open div.nav-primary .nav-spiral__center,
  body.mobile-menu-open div.nav-primary .nav-spiral__link,
  body.mobile-menu-open div.nav-primary .nav-secondary a,
  body.mobile-menu-closing div.nav-primary .nav-spiral,
  body.mobile-menu-closing div.nav-primary .nav-secondary,
  body.mobile-menu-closing div.nav-primary .nav-spiral__center,
  body.mobile-menu-closing div.nav-primary .nav-spiral__link,
  body.mobile-menu-closing div.nav-primary .nav-secondary a {
    color: var(--menu-hero-color, currentColor);
  }
  body.mobile-menu-open div.nav-primary .nav-spiral,
  body.mobile-menu-closing div.nav-primary .nav-spiral {
    position: absolute;
    left: 50%;
    top: 50%;
    bottom: auto;
    transform: translate(-50%, -50%);
    width: min(520px, 86vw);
    max-width: 86vw;
    max-height: none;
    pointer-events: auto;
  }
  body.mobile-menu-open div.nav-primary .nav-secondary,
  body.mobile-menu-closing div.nav-primary .nav-secondary {
    position: absolute;
    left: 50%;
    right: auto;
    top: auto;
    bottom: var(--site-padding);
    transform: translateX(-50%);
    width: auto;
    text-align: center;
  }
  body.mobile-menu-open div.nav-primary .nav-secondary > ul,
  body.mobile-menu-open div.nav-primary .nav-secondary > div > ul,
  body.mobile-menu-closing div.nav-primary .nav-secondary > ul,
  body.mobile-menu-closing div.nav-primary .nav-secondary > div > ul {
    justify-content: center;
  }
  body.mobile-menu-intro.mobile-menu-open .mobile-menu-toggle {
    visibility: hidden;
    pointer-events: none;
  }
  body.mobile-menu-intro.mobile-menu-open div.nav-primary .nav-spiral__link.is-active,
  body.mobile-menu-intro.mobile-menu-open div.nav-primary .nav-spiral__link[aria-current=page],
  body.mobile-menu-intro.mobile-menu-open div.nav-primary .nav-spiral__center .nav-spiral__link.is-active,
  body.mobile-menu-intro.mobile-menu-open div.nav-primary .nav-spiral__center .nav-spiral__link[aria-current=page],
  body.mobile-menu-intro.mobile-menu-open div.nav-primary .hero-color-mask__layer--hero .nav-spiral__link.is-active,
  body.mobile-menu-intro.mobile-menu-open div.nav-primary .hero-color-mask__layer--hero .nav-spiral__link[aria-current=page],
  body.mobile-menu-intro.mobile-menu-open div.nav-primary .hero-color-mask__layer--base .nav-spiral__link.is-active,
  body.mobile-menu-intro.mobile-menu-open div.nav-primary .hero-color-mask__layer--base .nav-spiral__link[aria-current=page] {
    font-family: ripley-medium;
    text-decoration: none;
    color: var(--menu-hero-color, currentColor);
  }
  body.mobile-menu-intro.mobile-menu-open div.nav-primary ul.language-switcher a.is-active {
    font-family: ripley-medium-italic;
    color: var(--link-hover-color);
  }
}
@media screen and (max-width: 1040px) and (prefers-reduced-motion: reduce) {
  div.nav-primary {
    transition: none;
  }
  body.mobile-menu-open div.nav-primary {
    transition: none;
  }
}
@media screen and (min-width: calc(1040px + 1px)) {
  .mobile-menu-toggle {
    display: none;
  }
}
.hero-color-mask {
  --hero-split: 0px;
  --hero-color: currentColor;
  --hero-bleed-top: 0px;
  --hero-base-top: 0px;
  --hero-base-overflow-bleed: 0px;
}

.hero-color-mask__layer--base {
  position: relative;
  z-index: 0;
  text-shadow: none;
  clip-path: polygon(0% calc(var(--hero-base-top) - var(--hero-base-overflow-bleed)), 100% calc(var(--hero-base-top) - var(--hero-base-overflow-bleed)), 100% 200%, 0% 200%);
}
.hero-color-mask__layer--base .spiral-text {
  filter: none;
}

.hero-color-mask__layer--hero {
  position: absolute;
  inset: 0;
  z-index: 1;
  color: var(--hero-color);
  clip-path: polygon(0% calc(-1 * var(--hero-bleed-top)), 100% calc(-1 * var(--hero-bleed-top)), 100% var(--hero-split), 0% var(--hero-split));
}

.mobile-menu-toggle__layer--base {
  text-shadow: none;
}

.nav-spiral__center {
  padding-top: 50px;
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  align-content: center;
  gap: 0;
  pointer-events: none;
}

.nav-spiral__link {
  pointer-events: auto;
  display: inline-block;
  font-size: 20px;
  text-decoration: none;
}
.nav-spiral__link:hover, .nav-spiral__link.is-active, .nav-spiral__link[aria-current=page] {
  font-family: ripley-medium-italic;
  text-decoration: none;
}

.nav-primary:not([data-page-template=publication]) .nav-spiral__link:hover,
.nav-primary:not([data-page-template=publication]) .nav-spiral__link.is-active,
.nav-primary:not([data-page-template=publication]) .nav-spiral__link[aria-current=page],
.nav-primary:not([data-page-template=publication]) div.nav-secondary > ul > li > a:hover,
.nav-primary:not([data-page-template=publication]) div.nav-secondary > div > ul > li > a:hover,
.nav-primary:not([data-page-template=publication]) div.nav-secondary > ul > li > a.is-active,
.nav-primary:not([data-page-template=publication]) div.nav-secondary > div > ul > li > a.is-active {
  color: var(--link-hover-color);
}

.nav-primary[data-page-template=publication] .hero-color-mask__layer--base .nav-spiral__link:hover,
.nav-primary[data-page-template=publication] .hero-color-mask__layer--base .nav-spiral__link.is-active,
.nav-primary[data-page-template=publication] .hero-color-mask__layer--base .nav-spiral__link[aria-current=page],
.nav-primary[data-page-template=publication] .hero-color-mask__layer--base a:hover,
.nav-primary[data-page-template=publication] .hero-color-mask__layer--base a.is-active {
  color: var(--link-hover-color);
}

.nav-primary[data-page-template=publication] .hero-color-mask__layer--hero .nav-spiral__link:hover,
.nav-primary[data-page-template=publication] .hero-color-mask__layer--hero .nav-spiral__link.is-active,
.nav-primary[data-page-template=publication] .hero-color-mask__layer--hero .nav-spiral__link[aria-current=page],
.nav-primary[data-page-template=publication] .hero-color-mask__layer--hero a:hover,
.nav-primary[data-page-template=publication] .hero-color-mask__layer--hero a.is-active {
  color: var(--hero-color, currentColor);
}

html.home-intro--seen .home-intro {
  opacity: 0;
  pointer-events: none;
}

@keyframes homeIntroSpringIn {
  from {
    transform: translate(var(--start-tx, 0px), var(--start-ty, 0px)) scale(var(--start-scale, 0.32)) rotate(var(--start-rot, -22deg));
  }
  to {
    transform: translate(var(--end-tx, 0px), var(--end-ty, 0px)) scale(var(--end-scale, 1)) rotate(var(--end-rot, 8deg));
  }
}
@media (prefers-reduced-motion: reduce) {
  .home-intro .spring-stage {
    animation: none;
    transform: none;
    will-change: auto;
  }
}
.publication-header {
  position: relative;
  width: 100%;
  height: 100dvh;
  padding: var(--site-padding);
  box-sizing: border-box;
}
@media screen and (max-width: 1040px) {
  .publication-header {
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 2lh;
  }
}
.publication-header:not(.publication-header--has-carousel) {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

@media screen and (max-width: 1040px) {
  .publication-header--has-carousel .publication-header-title {
    margin-top: 4lh;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
  }
  .publication-header--has-carousel .publication-header-carousel {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    transform: none;
    height: auto;
    max-height: none;
    width: 100%;
    max-width: min(90vw, 1440px);
  }
  .publication-header--has-carousel .publication-carousel-counter {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
  }
}
.publication-header__image-BG {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.publication-header__image-FG {
  position: fixed;
  inset: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}
.publication-header__image-FG.hidden {
  opacity: 0;
}

.publication-header-title {
  position: relative;
  z-index: 20;
  text-align: center;
  width: 100%;
  transform: translateY(-5px);
}
.publication-header-title > span.publication-header-series {
  font-size: var(--font-size-text);
  padding-top: 0px;
  margin-top: 0px;
}
.publication-header--has-carousel .publication-header-title {
  position: absolute;
  top: var(--site-padding);
  left: var(--site-padding);
  right: var(--site-padding);
  width: auto;
}

.publication-header-carousel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: min(90vw, 1440px);
  min-height: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.publication-header--has-carousel .publication-header-carousel {
  position: absolute;
  left: var(--site-padding);
  right: var(--site-padding);
  top: 50%;
  transform: translateY(-50%);
  height: 60%;
  max-height: 60%;
  max-width: none;
  width: auto;
}

.publication-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 100%;
  display: grid;
  place-items: center;
}
.publication-header--has-carousel .publication-header-carousel .publication-carousel {
  max-width: min(90vw, 1440px);
}

.publication-carousel .carousel-iso-frame {
  display: none;
  box-sizing: border-box;
}
.publication-carousel .carousel-iso-frame:has(.carousel-image.active) {
  display: block;
}

.publication-carousel .carousel-iso-frame--landscape,
.publication-carousel .carousel-iso-frame--portrait {
  height: min(100cqh, 100cqw / var(--a4-ratio));
  width: auto;
}

.publication-carousel .carousel-iso-frame--landscape {
  aspect-ratio: var(--a4-ratio);
}

.publication-carousel .carousel-iso-frame--portrait {
  aspect-ratio: calc(1 / var(--a4-ratio));
}

.publication-carousel .carousel-image {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.publication-carousel .carousel-image.active {
  display: block;
}

.publication-carousel .carousel-stage {
  container-type: size;
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

.publication-carousel .carousel-prev,
.publication-carousel .carousel-next {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  z-index: 2;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: transparent;
}

.publication-carousel .carousel-prev {
  cursor: w-resize;
}

.publication-carousel .carousel-next {
  cursor: e-resize;
}

.publication-header .publication-carousel-counter {
  position: relative;
  z-index: 20;
  margin: 0;
  width: 100%;
  text-align: center;
}

.publication-header--has-carousel .publication-carousel-counter {
  position: absolute;
  bottom: var(--site-padding);
  left: var(--site-padding);
  right: var(--site-padding);
  width: auto;
}

@media screen and (max-width: 1040px) {
  .publication-header--has-carousel .publication-header-title {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: 100% !important;
  }
  .publication-header--has-carousel .publication-header-carousel {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    height: auto !important;
    max-height: none !important;
    width: 100% !important;
    max-width: min(90vw, 1440px) !important;
    min-height: 150px !important;
    max-height: 450px !important;
  }
  .publication-header--has-carousel .publication-carousel-counter {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
  }
  .publication-header--has-carousel .publication-carousel {
    height: auto;
    max-height: none;
  }
  .publication-header--has-carousel .publication-carousel .carousel-stage {
    container-type: normal;
    height: auto;
  }
  .publication-header--has-carousel .publication-carousel .carousel-iso-frame--landscape,
  .publication-header--has-carousel .publication-carousel .carousel-iso-frame--portrait {
    height: min(450px, min(70vh, 90vw / var(--a4-ratio)));
    width: auto;
    max-height: min(450px, min(70vh, 90vw / var(--a4-ratio)));
  }
  .publication-header--has-carousel .publication-carousel .carousel-iso-frame--landscape {
    aspect-ratio: var(--a4-ratio);
  }
  .publication-header--has-carousel .publication-carousel .carousel-iso-frame--portrait {
    aspect-ratio: calc(1 / var(--a4-ratio));
  }
}
.publication-buy .qty-stepper {
  display: grid;
  grid-template-columns: 45px minmax(0, 1fr) 45px;
  align-items: stretch;
  width: 100%;
  margin: 0.35lh 0;
}
.publication-buy .qty-stepper-button {
  border: 1px solid #d5d5d5;
  background: transparent;
  color: #000;
  font: inherit;
  font-size: 1.25em;
  line-height: 1;
  padding: 0;
  min-height: 45px;
  display: grid;
  place-items: center;
  user-select: none;
  text-decoration: none;
}
.publication-buy .qty-stepper-button:hover, .publication-buy .qty-stepper-button:focus, .publication-buy .qty-stepper-button:focus-visible, .publication-buy .qty-stepper-button:active {
  text-decoration: none;
}
.publication-buy .qty-stepper-button:disabled {
  color: #d5d5d5;
  border-color: #d5d5d5;
  cursor: default;
}
.publication-buy .qty-stepper-button--minus {
  border-right: 0;
}
.publication-buy .qty-stepper-button--plus {
  border-left: 0;
}
.publication-buy .qty-stepper > input[name=qty] {
  text-align: center;
  width: 100%;
  border: 1px solid #d5d5d5;
  margin: 0;
  padding: 10px;
  border-radius: 0;
  -moz-appearance: textfield;
  appearance: textfield;
}
.publication-buy .qty-stepper > input[name=qty]::-webkit-outer-spin-button, .publication-buy .qty-stepper > input[name=qty]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.publication-buy .qty-stepper > input[name=qty]:focus {
  outline: none;
  border-color: black;
}
.publication-buy .qty-stepper > input[name=qty]:focus + .qty-stepper-button--plus {
  border-color: black;
}
.publication-buy .qty-stepper:focus-within > input[name=qty],
.publication-buy .qty-stepper:focus-within .qty-stepper-button {
  border-color: black;
}
@media screen and (max-width: 580px) {
  .publication-buy > form > button {
    color: black;
    text-align: center;
  }
}

.publication-content {
  max-width: var(--content-max-width);
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4lh;
  padding: 4lh 0;
}
.publication-content > * {
  font-size: var(--font-size-text);
}
.publication-content .publication-main-text {
  text-align: left;
}
.publication-content .publication-main-text p + p {
  margin-top: 1lh;
}
.publication-content .publication-main-text hr {
  margin: 1lh 0;
}

nav {
  position: fixed;
  top: var(--site-padding);
  left: var(--site-padding);
  z-index: 100;
  font-size: var(--font-size-title);
}
@media screen and (max-width: 580px) {
  nav {
    position: relative;
    top: auto;
    left: auto;
    margin: var(--site-padding) var(--site-padding) 0 var(--site-padding);
  }
}
nav > ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
nav > ul > li > a:hover, nav > ul > li > a.is-active {
  font-family: ripley-medium-italic;
  text-decoration: none;
}

div.nav-secondary {
  position: fixed;
  width: 330px;
  top: var(--site-padding);
  left: var(--site-padding);
  z-index: 100;
  font-size: 13px;
}
div.nav-secondary > ul > li > a {
  text-transform: uppercase;
}
@media screen and (max-width: 580px) {
  div.nav-secondary {
    position: absolute;
    top: var(--site-padding);
    right: var(--site-padding);
    width: auto;
    margin: 0;
  }
}
div.nav-secondary > ul, div.nav-secondary > div > ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 0.5lh;
  list-style: none;
  padding: 0;
  margin: 0;
  text-transform: uppercase;
}
div.nav-secondary > ul > li > a:hover, div.nav-secondary > ul > li > a.is-active, div.nav-secondary > div > ul > li > a:hover, div.nav-secondary > div > ul > li > a.is-active {
  font-family: ripley-medium-italic;
  text-decoration: none;
}
div.nav-secondary > ul.cart-count, div.nav-secondary > div > ul.cart-count {
  text-transform: none;
}
div.nav-secondary > ul.cart-count a[data-cart-nav-link], div.nav-secondary > div > ul.cart-count a[data-cart-nav-link] {
  display: inline-block;
  transform-origin: 50% 50%;
}
div.nav-secondary > ul.cart-count.is-empty, div.nav-secondary > ul.cart-count[hidden], div.nav-secondary > div > ul.cart-count.is-empty, div.nav-secondary > div > ul.cart-count[hidden] {
  display: none !important;
}
div.nav-secondary.hero-color-mask.cart-nav-swinging .hero-color-mask__layer--hero {
  clip-path: none;
  overflow: visible;
}
div.nav-secondary.hero-color-mask.cart-nav-swinging .hero-color-mask__layer--base .cart-count {
  visibility: hidden;
}
div.nav-secondary.hero-color-mask.cart-nav-swinging .hero-color-mask__layer--hero .cart-count {
  visibility: visible;
}

@media screen and (max-width: 580px) {
  body:not(.mobile-nav-reveal-enabled) div.nav-secondary {
    position: absolute;
    top: var(--site-padding);
    right: var(--site-padding);
    width: auto;
    margin: 0;
  }
  body.mobile-nav-reveal-enabled nav,
  body.mobile-nav-reveal-enabled div.nav-secondary {
    position: fixed;
    top: 14px;
    z-index: 170;
    margin: 0;
    transform: translateY(calc(-100% - 16px));
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms ease, opacity 180ms ease;
  }
  body.mobile-nav-reveal-enabled nav {
    left: var(--site-padding);
  }
  body.mobile-nav-reveal-enabled div.nav-secondary {
    right: var(--site-padding);
    width: auto;
  }
  body.mobile-nav-reveal-visible nav,
  body.mobile-nav-reveal-visible div.nav-secondary {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  body.mobile-nav-reveal-visible::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    z-index: 160;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 55%, rgba(255, 255, 255, 0) 100%);
  }
}
article.error,
article.news {
  text-align: center;
  padding: var(--site-padding) 0;
  margin-inline: auto;
  max-width: var(--content-max-width);
  display: flex;
  flex-direction: column;
  gap: 4lh;
  padding-bottom: 8lh;
  align-items: center;
}
@media screen and (max-width: 580px) {
  article.error,
  article.news {
    padding: 4lh 0 4lh 0;
  }
}
@media screen and (max-width: 580px) {
  article.error > div > h1,
  article.news > div > h1 {
    font-size: 30px;
  }
}
@media screen and (max-width: 580px) {
  article.error > div > h2,
  article.news > div > h2 {
    font-size: 16px;
  }
}

article.newsletter {
  text-align: center;
  padding: var(--site-padding) 0 8lh;
  margin-inline: auto;
  max-width: var(--content-max-width);
  display: flex;
  flex-direction: column;
  gap: 2lh;
  align-items: center;
}
@media screen and (max-width: 580px) {
  article.newsletter {
    padding: 4lh 0;
  }
}
article.newsletter .newsletter-intro {
  text-align: left;
  width: 100%;
}
article.newsletter > div::selection {
  background-color: black;
  color: white;
}

article.catalogue {
  padding: var(--article-padding);
}
@media screen and (max-width: 580px) {
  article.catalogue {
    padding: 4lh 0 4lh 0;
  }
}
article.catalogue > .catalogue-group.catalogue-group--soon, article.catalogue > .catalogue-group.catalogue-group--published {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--site-padding);
}
@media screen and (max-width: 580px) {
  article.catalogue > .catalogue-group.catalogue-group--soon, article.catalogue > .catalogue-group.catalogue-group--published {
    gap: 2lh;
  }
}
article.catalogue > .catalogue-group.catalogue-group--soon > .catalogue-heading, article.catalogue > .catalogue-group.catalogue-group--published > .catalogue-heading {
  text-align: center;
}
article.catalogue > .catalogue-group.catalogue-group--soon > .catalogue-item, article.catalogue > .catalogue-group.catalogue-group--published > .catalogue-item {
  width: var(--content-max-width);
  text-align: center;
}
article.catalogue > .catalogue-group.catalogue-group--soon > .catalogue-item > a, article.catalogue > .catalogue-group.catalogue-group--published > .catalogue-item > a {
  font-size: 20px !important;
  text-decoration: none;
}
article.catalogue > .catalogue-group.catalogue-group--soon > .catalogue-item > a > .catalogue-item__image, article.catalogue > .catalogue-group.catalogue-group--published > .catalogue-item > a > .catalogue-item__image {
  display: block;
  width: 100%;
  aspect-ratio: var(--a4-ratio);
  height: auto;
  object-fit: cover;
}
article.catalogue > .catalogue-group.catalogue-group--soon:last-of-type, article.catalogue > .catalogue-group.catalogue-group--published:last-of-type {
  margin-bottom: 100px;
}
article.catalogue .catalogue-item > a:hover > .catalogue-item__text:not(:hover) > span,
article.catalogue .catalogue-item > a:hover > .catalogue-item__text:not(:hover) > span > * {
  font-family: ripley-medium-italic;
}
article.catalogue .catalogue-item > a:hover,
article.catalogue .catalogue-item > a > *:hover {
  font-family: ripley-medium-italic;
  color: var(--link-hover-color);
}
article.catalogue > .catalogue-group.catalogue-group--published > .catalogue-item:not(:last-of-type) {
  margin-bottom: 60px;
}
@media screen and (max-width: 580px) {
  article.catalogue > .catalogue-group.catalogue-group--published > .catalogue-item:not(:last-of-type) {
    margin-bottom: 0;
  }
}
article.catalogue > .catalogue-group.catalogue-group--soon > .catalogue-item {
  position: relative;
  aspect-ratio: var(--a4-ratio);
  width: 100%;
  overflow: hidden;
}
article.catalogue > .catalogue-group.catalogue-group--soon > .catalogue-item > .catalogue-item__soon {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
}
article.catalogue > .catalogue-group.catalogue-group--soon > .catalogue-item > .catalogue-item__soon-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0;
  object-fit: cover;
  transition: opacity 300ms ease;
}
article.catalogue > .catalogue-group.catalogue-group--soon > .catalogue-item > picture.catalogue-item__soon-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0;
  transition: opacity 300ms ease;
}
article.catalogue > .catalogue-group.catalogue-group--soon > .catalogue-item > picture.catalogue-item__soon-image > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
article.catalogue > .catalogue-group.catalogue-group--soon > .catalogue-item.is-revealed > .catalogue-item__soon-image {
  opacity: 1;
}
article.catalogue > .catalogue-group.catalogue-group--soon > .catalogue-item.is-revealed > picture.catalogue-item__soon-image {
  opacity: 1;
}

.CardContainer {
  --fold-start-x: 0%;
  --fold-start-y: 0%;
  --shadow-corner-x: 0%;
  --shadow-corner-y: 0%;
  --shadow-offset-x: 0.5px;
  --shadow-offset-y: 1px;
  --shade: rgba(0, 0, 0, 0.22);
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.CardContainer {
  clip-path: polygon(var(--fold-start-x) 0%, 100% 0%, 100% 100%, 0% 100%, 0% var(--fold-start-y));
}

.CardContainer:hover {
  --fold-start-x: 30%;
  --fold-start-y: 25%;
}

.CardContainer {
  --fold-corner-x: 0%;
  --fold-corner-y: 0%;
}

.CardContainer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05)), var(--soon-image-url);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 4;
  clip-path: polygon(var(--fold-start-x) 0%, 0% var(--fold-start-y), var(--fold-corner-x) var(--fold-corner-y));
}

.CardContainer:hover::before {
  --fold-corner-x: 15%;
  --fold-corner-y: 31%;
}

.CardContainer {
  --shadow-corner-x: 0%;
  --shadow-corner-y: 0%;
}

.CardContainer {
  transition: clip-path 400ms, opacity 220ms ease;
}

.CardContainer.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.CardContainer__shadow {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.CardContainer__shadow > * {
  position: absolute;
  inset: 0;
  background-color: var(--shade);
  opacity: 0.12;
  clip-path: polygon(var(--fold-start-x) 0%, 0% var(--fold-start-y), var(--shadow-corner-x) var(--shadow-corner-y));
  clip-path: polygon(var(--fold-start-x) 0%, 0% var(--fold-start-y), calc(var(--shadow-corner-x) + var(--shadow-offset-x) * var(--index)) calc(var(--shadow-corner-y) + var(--shadow-offset-y) * var(--index)));
}

.CardContainer > *:not(.CardContainer__shadow) {
  position: relative;
  z-index: 2;
}

.CardContainer__shadow > :nth-child(1) {
  --index: 1;
}

.CardContainer__shadow > :nth-child(2) {
  --index: 2;
}

.CardContainer__shadow > :nth-child(3) {
  --index: 3;
}

.CardContainer__shadow > :nth-child(4) {
  --index: 4;
}

.CardContainer__shadow > :nth-child(5) {
  --index: 5;
}

.CardContainer__shadow > :nth-child(6) {
  --index: 6;
}

.CardContainer__shadow > :nth-child(7) {
  --index: 7;
}

.CardContainer__shadow > :nth-child(8) {
  --index: 8;
}

.CardContainer__shadow > :nth-child(9) {
  --index: 9;
}

.CardContainer__shadow > :nth-child(10) {
  --index: 10;
}

.CardContainer:hover .CardContainer__shadow > * {
  opacity: 0.18;
}

.CardContainer:hover {
  --shadow-corner-x: 18%;
  --shadow-corner-y: 36%;
}

.CardContainer::after,
.CardContainer::before,
.CardContainer__shadow,
.CardContainer__shadow > * {
  transition: inherit;
}

hr {
  border: 0.5px solid #d5d5d5;
  margin-bottom: 1lh;
}

article.cart {
  max-width: var(--content-max-width);
  margin-inline: auto;
  text-align: center;
  padding: var(--article-padding);
}
@media screen and (max-width: 580px) {
  article.cart {
    margin-top: 6lh;
  }
}
article.cart > .cart-table > .cart-table-product {
  display: flex;
  flex-direction: row;
  gap: 1lh;
  text-align: left;
  font-size: var(--font-size-text);
}
@media screen and (max-width: 580px) {
  article.cart > .cart-table > .cart-table-product {
    flex-direction: column;
    text-align: center;
  }
}
article.cart > .cart-table > .cart-table-product > * {
  width: calc(50% - 10px);
}
@media screen and (max-width: 580px) {
  article.cart > .cart-table > .cart-table-product > * {
    width: 100%;
  }
}
article.cart > .cart-table > .cart-table-product > .cart-table-product-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
article.cart > .cart-table > .cart-table-product > .cart-table-product-text > .publication-buy {
  display: flex;
  flex-direction: row;
  gap: 0.5lh;
  align-items: center;
}
article.cart > .cart-table > .cart-table-product > .cart-table-product-text > .publication-buy > form:not(:first-child) {
  height: 45px;
}
article.cart > .cart-table > .cart-table-product > .cart-table-product-text > .publication-buy > form > label.qty-stepper > input[name=qty] {
  margin: 0;
}
article.cart > .cart-table > .cart-table-product > .cart-table-product-text > .publication-buy > form:first-child {
  flex-grow: 1;
}
article.cart > .cart-table > .cart-table-product > .cart-table-product-text > .publication-buy > form > button.product-remove {
  position: relative;
  flex-shrink: 0;
  box-sizing: border-box;
  width: 45px;
  height: 45px;
  padding: 0;
  border: 0;
  cursor: pointer;
  color: #000;
  background: transparent;
}
article.cart > .cart-table > .cart-table-product > .cart-table-product-text > .publication-buy > form > button.product-remove::before, article.cart > .cart-table > .cart-table-product > .cart-table-product-text > .publication-buy > form > button.product-remove::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 28px;
  background: currentColor;
  transform-origin: center center;
}
article.cart > .cart-table > .cart-table-product > .cart-table-product-text > .publication-buy > form > button.product-remove::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
article.cart > .cart-table > .cart-table-product > .cart-table-product-text > .publication-buy > form > button.product-remove::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
article.cart > .cart-table > .cart-table-product > .cart-table-product-text > .publication-buy > form > button.product-remove:hover {
  color: #a0a0a0;
}
article.cart .cart-line-footer {
  margin: 1lh 0;
}
article.cart .cart-delivery {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1lh;
  flex-wrap: wrap;
  margin-bottom: 1lh;
}
article.cart .cart-delivery > div.cart-delivery-options {
  width: calc(50% - 10px);
  text-align: left;
}
article.cart .cart-delivery > p {
  margin: 0;
}
article.cart .cart-delivery > .cart-delivery-options {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5lh;
  text-align: left;
}
article.cart .cart-delivery-option {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5em;
  cursor: pointer;
}
article.cart .cart-delivery-option:hover .cart-delivery-option-text {
  font-family: ripley-medium-italic;
  text-decoration: none;
}
article.cart .cart-delivery-option {
  /* Native input on top of the box (clicks + focus); box carries ::before/::after cross like .product-remove */
}
article.cart .cart-delivery-option > .cart-delivery-option-input[type=radio] {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 22px;
  height: 22px;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
article.cart .cart-delivery-option > .cart-delivery-box {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 1px solid #d5d5d5;
  background: transparent;
  color: #000;
  pointer-events: none;
  position: relative;
  border-radius: 0;
}
article.cart .cart-delivery-option > .cart-delivery-option-input:focus-visible + .cart-delivery-box {
  border-color: black;
}
article.cart .cart-delivery-option > .cart-delivery-option-input:checked + .cart-delivery-box {
  border-color: black;
}
article.cart .cart-delivery-option > .cart-delivery-option-input:checked + .cart-delivery-box::before, article.cart .cart-delivery-option > .cart-delivery-option-input:checked + .cart-delivery-box::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 14px;
  background: currentColor;
  transform-origin: center center;
}
article.cart .cart-delivery-option > .cart-delivery-option-input:checked + .cart-delivery-box::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
article.cart .cart-delivery-option > .cart-delivery-option-input:checked + .cart-delivery-box::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
article.cart .cart-total {
  margin-bottom: 1lh;
}
article.cart .cart-checkout {
  text-align: center;
}

article.cart .cart-order-errors,
article.newsletter .cart-order-errors {
  text-align: left;
  margin-bottom: 1lh;
  color: #a00;
  width: 100%;
}
article.cart .cart-order-success,
article.newsletter .cart-order-success {
  text-align: left;
  margin-bottom: 1lh;
  width: 100%;
}
article.cart .cart-order-form,
article.newsletter .cart-order-form {
  position: relative;
  text-align: center;
  font-size: var(--font-size-text);
  width: 100%;
}
article.cart .cart-order-form > fieldset > label > input,
article.newsletter .cart-order-form > fieldset > label > input {
  border-radius: 0;
}
article.cart .cart-order-form > button,
article.newsletter .cart-order-form > button {
  color: black;
}
article.cart .cart-order-fields,
article.newsletter .cart-order-fields {
  border: 0;
  margin: 0 0 1.5lh;
  padding: 0;
}
article.cart .cart-order-legend,
article.newsletter .cart-order-legend {
  font-weight: var(--font-weight);
  margin-bottom: 1lh;
  padding: 0;
}
article.cart .cart-order-field,
article.newsletter .cart-order-field {
  display: block;
  margin-bottom: 1lh;
}
article.cart .cart-order-field .cart-order-label,
article.newsletter .cart-order-field .cart-order-label {
  display: block;
  margin-bottom: 0.35lh;
}
article.cart .cart-order-field input,
article.cart .cart-order-field textarea,
article.cart .cart-order-field select,
article.newsletter .cart-order-field input,
article.newsletter .cart-order-field textarea,
article.newsletter .cart-order-field select {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  border: 1px solid #d5d5d5;
  padding: 5px;
  font: inherit;
  background: transparent;
}
article.cart .cart-order-field select,
article.newsletter .cart-order-field select {
  cursor: pointer;
}
article.cart .cart-order-field textarea,
article.newsletter .cart-order-field textarea {
  resize: vertical;
  min-height: 6lh;
}
article.cart .cart-order-field input:focus,
article.cart .cart-order-field textarea:focus,
article.cart .cart-order-field select:focus,
article.newsletter .cart-order-field input:focus,
article.newsletter .cart-order-field textarea:focus,
article.newsletter .cart-order-field select:focus {
  outline: none;
  border-color: black;
}
article.cart .cart-order-address,
article.newsletter .cart-order-address {
  border: 0;
  margin: 0 0 1lh;
  padding: 0;
}
article.cart .cart-order-address-legend,
article.newsletter .cart-order-address-legend {
  font-weight: var(--font-weight);
  margin-bottom: 1lh;
  padding: 0;
}
article.cart .cart-order-field-row,
article.newsletter .cart-order-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1lh;
}
@media screen and (max-width: 580px) {
  article.cart .cart-order-field-row,
  article.newsletter .cart-order-field-row {
    grid-template-columns: 1fr;
  }
}
article.cart .cart-order-field--phone .cart-order-label,
article.newsletter .cart-order-field--phone .cart-order-label {
  display: block;
  margin-bottom: 0.35lh;
}
article.cart .cart-order-phone,
article.newsletter .cart-order-phone {
  display: grid;
  grid-template-columns: minmax(6.5rem, 8rem) 1fr;
  gap: 0.5lh;
}
article.cart .cart-order-phone select,
article.cart .cart-order-phone input,
article.newsletter .cart-order-phone select,
article.newsletter .cart-order-phone input {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  border: 1px solid #d5d5d5;
  padding: 5px;
  font: inherit;
  background: transparent;
}
article.cart .cart-order-phone select:focus,
article.cart .cart-order-phone input:focus,
article.newsletter .cart-order-phone select:focus,
article.newsletter .cart-order-phone input:focus {
  outline: none;
  border-color: black;
}
article.cart .cart-order-honeypot,
article.newsletter .cart-order-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
article.cart .cart-order-field--checkbox,
article.newsletter .cart-order-field--checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5lh;
  text-align: left;
  cursor: pointer;
}
article.cart .cart-order-field--checkbox input[type=checkbox],
article.newsletter .cart-order-field--checkbox input[type=checkbox] {
  width: auto;
  margin: 0.15em 0 0;
  flex-shrink: 0;
}
article.cart .cart-order-field--checkbox span,
article.newsletter .cart-order-field--checkbox span {
  flex: 1;
}
article.cart .cart-order-estimate-note,
article.newsletter .cart-order-estimate-note {
  margin: 0.5lh 0 0;
  font-size: 0.9em;
  color: var(--text-color-secondary, #a0a0a0);
  text-wrap: balance;
}

article.checkout-result {
  min-height: min(100dvh, 100vh);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--site-padding, 80px) var(--column-padding, 10px);
  text-align: center;
}
article.checkout-result .checkout-result-inner {
  max-width: 36rem;
  margin-inline: auto;
}
article.checkout-result .checkout-result-title {
  margin: 0 0 1lh;
  font-weight: var(--font-weight);
}
article.checkout-result .checkout-result-body {
  margin: 0 0 1.25lh;
  text-wrap: balance;
}
article.checkout-result .checkout-result-redirect {
  margin: 0 0 0.75lh;
  color: var(--text-color-secondary, #a0a0a0);
  font-size: var(--font-size-small, 0.75rem);
}
article.checkout-result .checkout-result-home a {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
article.checkout-result.order-confirmed .order-confirmed-invoice-note {
  font-weight: var(--font-weight);
}
article.checkout-result .order-confirmed-summary {
  margin: 1.25lh 0;
  text-align: left;
}
article.checkout-result .order-confirmed-summary-title {
  margin: 0 0 0.5lh;
  font-weight: var(--font-weight);
}
article.checkout-result .order-confirmed-list {
  margin: 0;
  padding-left: 1.2em;
}
article.checkout-result .order-confirmed-total {
  margin: 1lh 0 0;
}

article.about {
  box-sizing: border-box;
  min-height: 100dvh;
  width: 100%;
  margin: 0;
  max-width: none;
  padding-inline: var(--site-padding);
  padding-top: 25px;
}
@media screen and (max-width: 580px) {
  article.about {
    max-width: var(--content-max-width);
    margin-inline: auto;
    padding: 4lh var(--site-padding) 4lh var(--site-padding);
  }
}
article.about.about--cart-has-items {
  padding-top: 40px;
}
article.about > .about-content {
  width: 100%;
  max-width: none;
  font-size: var(--font-size-title);
  line-height: 1.05;
  text-align: left;
}
article.about > .about-content::selection {
  background: black;
  color: white;
}
@media screen and (min-width: 1040px) {
  article.about > .about-content {
    font-size: var(--font-size-news);
  }
}
article.about > .about-credits {
  position: fixed;
  left: var(--site-padding);
  right: var(--site-padding);
  bottom: calc(var(--site-padding) * 2);
  z-index: 90;
  margin: 0;
  font-size: var(--font-size-text);
  line-height: 1.1;
  text-align: center;
}
@media screen and (max-width: 580px) {
  article.about > .about-credits {
    position: static;
    bottom: auto;
    margin-top: 4lh;
  }
}
article.about > .about-credits p {
  margin: 0;
}
article.about > .about-credits p.about-credits__heading {
  padding-top: 1lh;
  padding-bottom: 0.25lh;
}
article.about > .about-credits > .about-content__secondary {
  max-width: var(--content-max-width);
  padding-top: 1lh;
  margin-inline: auto;
  font-size: var(--font-size-text);
  line-height: 1.1;
}
@media screen and (max-width: 580px) {
  article.about > .about-credits > .about-content__secondary {
    max-width: 100%;
  }
}
@media screen and (max-width: 580px) {
  article.about > .about-content {
    font-size: var(--font-size-title);
  }
}

footer::selection {
  background-color: black;
  color: white;
}

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