@font-face {
  font-family: 'IBM Plex Sans';
  src: url('/assets/fonts/ibm-plex-sans/ibm-plex-sans-v23-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'IBM Plex Sans';
  src: url('/assets/fonts/ibm-plex-sans/ibm-plex-sans-v23-latin-italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'IBM Plex Mono';
  src: url('/assets/fonts/ibm-plex-sans-mono/ibm-plex-mono-v20-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Merriweather';
  src: url('/assets/fonts/merriweather/merriweather-v33-latin-300.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Merriweather';
  src: url('/assets/fonts/merriweather/merriweather-v33-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Merriweather';
  src: url('/assets/fonts/merriweather/merriweather-v33-latin-italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Raleway';
  src: url('/assets/fonts/raleway/raleway-v37-latin-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Raleway';
  src: url('/assets/fonts/raleway/raleway-v37-latin-800.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
}

:root {
  --padding: 1.5rem;
  --color-black: #000;
  --color-white: #fff;
  --color-dark: #252F37;
  --color-grey: #a0a8b0;
  --color-light: #2e3b47;
  --color-text: #f0f0f1;
  --color-text-grey: var(--color-grey);
  --color-background: var(--color-dark);
  --color-link: #fae3c3;
  --color-accent: #F26D43;
  --color-code-light-grey: #cacbd1;
  --color-code-comment: #a9aaad;
  --color-code-white: #c5c9c6;
  --color-code-red: #d16464;
  --color-code-orange: #de935f;
  --color-code-yellow: #f0c674;
  --color-code-green: #a7bd68;
  --color-code-aqua: #8abeb7;
  --color-code-blue: #7e9abf;
  --color-code-purple: #b294bb;
  --font-family-serif: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-family-sans: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-family-heading: 'Raleway', -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-family-mono: 'IBM Plex Mono', "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
}

html {
  font-family: var(--font-family-serif);
  font-size: 18px;
  color: var(--color-text);
  background: var(--color-background);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img {
  width: 100%;
}

body {
  padding: var(--padding);
  max-width: 1120px;
  margin: 0 auto;
}

li {
  list-style: none;
}

a {
  color: var(--color-link);
  text-decoration: none;
}

button {
  font: inherit;
  background: none;
  border: 0;
  color: currentColor;
  cursor: pointer;
}

/* ── Rounded Button (wiederverwendbar, mit Arrow-Icon) ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-family-heading);
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  background: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
  border-radius: 6px;
  padding: 14px 22px;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}

.btn svg {
  flex-shrink: 0;
  transition: transform .2s ease;
}

.btn:hover {
  background: var(--color-accent);
  color: #252F37;
}

.btn:hover svg {
  transform: translateX(3px);
}

/* ── Stripe-Button (seitenübergreifend) ── */
@keyframes stripe-slide {
  0% {
    background-position: 0% 0;
  }

  100% {
    background-position: 100% 0;
  }
}

.home-btn {
  display: inline-block;
  overflow: hidden;
  position: relative;
  font-family: var(--font-family-heading);
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  background: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
  border-radius: 6px;
  padding: 16px 30px 23px;
  text-decoration: none;
  cursor: pointer;
  transition: background .4s ease, color .4s ease, border-color .4s ease;
}

.home-btn::after {
  content: '';
  display: block;
  height: 7px;
  width: 100%;
  background-image: repeating-linear-gradient(45deg,
      var(--color-accent), var(--color-accent) 1px, transparent 2px, transparent 5px);
  backface-visibility: hidden;
  border-top: 1px solid var(--color-accent);
  position: absolute;
  left: 0;
  bottom: 0;
  background-size: 7px 7px;
}

.home-btn:hover {
  background: var(--color-accent);
  color: #252F37;
  border-color: var(--color-accent);
}

.home-btn:hover::after {
  background-image: repeating-linear-gradient(45deg,
      #252F37, #252F37 1px, transparent 2px, transparent 5px);
  border-top: 1px solid #252F37;
  animation: stripe-slide 12s infinite linear forwards;
}

strong,
b {
  font-weight: 600;
}

small {
  font-size: inherit;
  color: var(--color-text-grey);
}

.bg-light {
  background-color: var(--color-light);
}

.color-grey {
  color: var(--color-text-grey);
}

.header {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  margin-right: -1rem;
  margin-left: -1rem;
  margin-bottom: 3rem;
}

.logo {
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: .625rem;
  font-family: var(--font-family-heading);
  font-weight: 800;
  color: var(--color-text);
  cursor: pointer;
}

.logo-name {
  font-size: 16px;
  text-transform: uppercase;
}

.logo img {
  width: auto;
  height: 137px;
  flex-shrink: 0;
}

.menu {
  display: flex;
}

.menu a {
  padding: 1rem;
  display: block;
  font-family: var(--font-family-heading);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  position: relative;
}

.menu a::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 1rem;
  right: 1rem;
  height: 3px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: opacity .12s cubic-bezier(0.455, 0.03, 0.515, 0.955), transform .12s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.menu a[aria-current]::after,
.menu a:hover::after {
  transform: scaleX(1);
}

.social {
  display: flex;
  padding: 0 .5rem;
}

.social a {
  padding: 1rem .5rem;
}

.social a[aria-label="RSS"] {
  color: #F58200;
}

.social a[aria-label="Fediverse"] {
  color: #5A62FF;
}

.social a[aria-label="Threads"] {
  color: #EFF0ED;
}

.social a[aria-label="Instagram"] {
  color: #F534B6;
}

.social a[aria-label="LinkedIn"] {
  color: #0074EA;
}

.social a[aria-label="GitHub"] {
  color: #EFF0ED;
}

.social a[aria-label="Goodreads"] {
  color: #EFF0ED;
}

.section {
  padding: 3rem 0;
}

.grid {
  --columns: 12;
  --gutter: 3rem;
  display: grid;
  grid-gap: var(--gutter);
  grid-template-columns: 1fr;
}

.grid>.column {
  margin-bottom: var(--gutter);
}

.autogrid {
  --gutter: 3rem;
  --min: 10rem;
  display: grid;
  grid-gap: var(--gutter);
  grid-template-columns: repeat(auto-fit, minmax(var(--min), 1fr));
  grid-auto-flow: dense;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family-heading);
  font-size: inherit;
  font-weight: 800;
  line-height: 1.5em;
  text-transform: uppercase;
  letter-spacing: normal;
}

.text {
  line-height: 1.85em;
  overflow-wrap: break-word;
}

.text a {
  text-decoration: underline;
}

.text :first-child {
  margin-top: 0;
}

.text :last-child {
  margin-bottom: 0;
}

.text p,
.text ul,
.text ol {
  margin-bottom: 1.5rem;
}

.text ul,
.text ol {
  margin-left: 1rem;
}

.text ul p,
.text ol p {
  margin-bottom: 0;
}

.text ul>li {
  list-style: none;
  padding-left: 1.25rem;
  position: relative;
  margin-bottom: 1rem;
}

.text ul>li::before {
  content: '–';
  color: var(--color-text);
  position: absolute;
  left: 0;
}

.text ol>li {
  list-style: decimal;
}

.text ul ol,
.text ul ul,
.text ol ul,
.text ol ol {
  margin-bottom: 0;
}

.text h1,
.h1,
.intro {
  font-family: var(--font-family-heading);
  font-weight: 800;
  font-size: 2.5rem;
  margin-bottom: 6rem;
  line-height: 1.15em;
  text-align: center;
}

.text h2,
.h2 {
  font-family: var(--font-family-heading);
  font-weight: 800;
  font-size: 1.375rem;
  margin-bottom: 1.25rem;
}

.text h3,
.h3 {
  font-family: var(--font-family-heading);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.text h4 {
  font-family: var(--font-family-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-text-grey);
  margin-bottom: .75rem;
}

.text h5 {
  font-family: var(--font-family-heading);
  font-weight: 600;
  font-size: .875rem;
  color: var(--color-text-grey);
  margin-bottom: .5rem;
}

.text h6 {
  font-family: var(--font-family-heading);
  font-weight: 600;
  font-size: .8rem;
  color: var(--color-text-grey);
  margin-bottom: .5rem;
}

.text blockquote {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 300;
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--color-accent);
  margin: 2rem 0;
  padding: 0;
  border: none;
  position: relative;
  padding-left: 3rem;
}

.text blockquote::before {
  content: '\201C';
  font-family: 'Merriweather', Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--color-accent);
  position: absolute;
  left: 0;
  top: -.5rem;
}

.blockquote-citation {
  display: block;
  font-family: var(--font-family-serif);
  font-size: 1rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--color-text-grey);
}

.text blockquote .blockquote-citation {
  margin-top: 1rem;
}

.table-wrap {
  overflow-x: auto;
  margin: 2rem 0;
}

.block-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}

.block-table th,
.block-table td {
  padding: .6rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.block-table thead th {
  font-family: var(--font-family-heading);
  font-weight: 700;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--color-text-grey);
  border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.block-table tbody tr:last-child td {
  border-bottom: none;
}

.text .codeblock {
  display: grid;
}

.text code {
  font-family: var(--font-family-mono);
  font-size: .875em;
  background: var(--color-black);
  padding: 1.5rem;
  color: var(--color-code-white);
  display: block;
  margin-bottom: 1.5rem;
}

.text pre {
  margin: 3rem 0;
  background: var(--color-black);
  color: var(--color-white);
  padding: 1.5rem;
  overflow-x: scroll;
  overflow-y: hidden;
  line-height: 1.5rem;
}

/* Shared page layout (default, impressum, über mich, ...) */
.ewg-page {
  max-width: 720px;
  margin: 0 auto;
}

.ewg-title {
  font-family: var(--font-family-heading);
  font-weight: 800;
  font-size: 3rem;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 4rem;
  text-align: center;
}

.ewg-text {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text);
}

.text pre code {
  padding: 0;
  background: none;
  color: inherit;
}

.text hr {
  border: none;
  height: 3px;
  width: 10rem;
  background: rgba(255, 255, 255, .15);
  margin: 3rem auto;
}

.text dt {
  font-weight: 600;
}


.text figure {
  margin: 2rem 0;
}

/* figure als letztes Element-Kind behält Margin (Text-Nodes zählen für :last-child nicht) */
.text figure:last-child {
  margin-bottom: 2rem;
}

.text figcaption {
  padding-top: .75rem;
  color: var(--color-text-grey);
  text-align: center;
}

.text figure {
  line-height: 0;
}

.text figure figcaption {
  line-height: 1.5;
}

.text figure iframe,
.text figure video {
  display: block;
  margin-bottom: 0;
}

.text figure ul {
  line-height: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 0;
  justify-content: center;
}

.text figure ul li {
  flex: 1 1 10rem;
  max-width: calc(33.333% - 1rem);
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.text figure ul li::before {
  content: none;
}

hr {
  border: 0;
  background: currentColor;
  height: 2px;
  width: 1.5rem;
  margin: 3rem auto;
}

.align-center {
  text-align: center;
}

.intro {
  max-width: 40rem;
}

.intro *:not(:last-child) {
  margin-bottom: 1em;
}

.cta {
  background: var(--color-black);
  color: var(--color-white);
  display: inline-flex;
  justify-content: center;
  padding: .75rem 1.5rem;
  border: 4px solid var(--color-white);
  outline: 2px solid var(--color-black);
}

.box {
  background: var(--color-light);
  padding: 1.5rem;
  border: 4px solid var(--color-white);
  outline: 2px solid var(--color-light);
}

.video,
.img {
  position: relative;
  display: block;
  --w: 1;
  --h: 1;
  padding-bottom: calc(100% / var(--w) * var(--h));
  background: var(--color-black);
  margin-bottom: 0;
}

.img img,
.video iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}

.img[data-contain] img {
  object-fit: contain;
}

.img-caption,
.video-caption {
  padding-top: .75rem;
  line-height: 1.5em;
}

.site-footer {
  padding: 6rem 0 3rem;
}

.site-footer-social {
  display: flex;
  justify-content: center;
  margin-bottom: 4rem;
}

.site-footer-social .social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 0;
}

.site-footer-social .social svg {
  width: 2rem;
  height: 2rem;
}

.site-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-footer-text {
  font-family: var(--font-family-heading);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: .04em;
  color: var(--color-text);
}

.site-footer-legal {
  font-family: var(--font-family-heading);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--color-link);
  text-decoration: underline;
  text-underline-offset: 4px;
  white-space: nowrap;
}

.site-footer-legal:hover {
  color: var(--color-text);
}

@media screen and (max-width: 600px) {
  .site-footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2.5rem;
  }
}


.map {
  --w: 2;
  --h: 1;
  padding-bottom: calc(100% / var(--w) * var(--h));
  position: relative;
  overflow: hidden;
  background: var(--color-black);
}

.map iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.margin-s {
  margin-bottom: .75rem;
}

.margin-m {
  margin-bottom: 1.5rem;
}

.margin-l {
  margin-bottom: 3rem;
}

.margin-xl {
  margin-bottom: 4.5rem;
}

.margin-xxl {
  margin-bottom: 6rem;
}


/* Uniform Honeypot */
.uniform__potty {
  position: absolute;
  left: -9999px;
}

@media screen and (min-width: 60rem) {
  body {
    --padding: 3rem;
  }

  .grid {
    grid-template-columns: repeat(12, 1fr);
  }

  .grid>.column {
    grid-column: span var(--columns);
  }

}

.pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 4rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pagination-edge {
  color: var(--color-link);
  white-space: nowrap;
}

.pagination-edge.pagination-disabled {
  color: var(--color-text-grey);
  cursor: default;
}

.pagination-pages {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.pagination-page {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  color: var(--color-link);
  border-radius: 6px;
  border: 1.5px solid transparent;
  transition: border-color .15s ease;
  margin: 0 5px;
}

a.pagination-page:hover {
  color: var(--color-link);
  border-color: var(--color-link);
}

.pagination-current {
  background: var(--color-link);
  color: var(--color-black);
  font-weight: 700;
  border-radius: 4px;
}

.pagination-ellipsis {
  color: var(--color-text-grey);
  padding: 0 0.25rem;
}

/* Note-Einzelansicht: Social-Media-Layout */
/* Avatar-Hover-Karte */
.note-avatar-wrapper {
  position: relative;
  flex-shrink: 0;
}

.note-avatar-card {
  position: absolute;
  top: calc(100% + .5rem);
  left: 0;
  width: 18rem;
  background: var(--color-light);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: .5rem;
  padding: 1.25rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-.25rem);
  transition: opacity .15s ease, transform .15s ease, visibility .15s;
  z-index: 10;
  pointer-events: none;
}

.note-avatar-card.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.note-avatar-card-header {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .75rem;
}

.note-avatar-card-img {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.note-avatar-card-name {
  font-weight: 600;
  display: block;
}

.note-avatar-card-handle {
  display: block;
  font-size: 18px;
  font-weight: 400;
  opacity: 0.6;
}

.note-avatar-card-bio {
  font-size: .875rem;
  line-height: 1.5em;
  color: var(--color-text-grey);
  margin-bottom: .75rem;
}

.note-avatar-card-stats {
  font-size: .875rem;
  color: var(--color-text-grey);
}

.note-avatar-card-stats strong {
  font-family: var(--font-family-heading);
  font-weight: 800;
  font-size: 1rem;
  color: var(--color-text);
}

.note-avatar-card-actions {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-top: .75rem;
}

.note-avatar-card-btn {
  display: block;
  text-align: center;
  padding: .5rem 1rem;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 2rem;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--color-text);
  transition: background .15s, border-color .15s;
}

.note-avatar-card-btn:hover {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .35);
}

.note-avatar-card .social {
  margin-top: .75rem;
  padding: 0;
  gap: .25rem;
}

.note-avatar-card .social a {
  padding: .375rem .25rem;
}

.note-avatar-card .social svg {
  width: 1rem;
  height: 1rem;
}

.note-post-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: .25rem;
}

.note-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.note-meta-info {
  display: flex;
  align-items: baseline;
  gap: .75rem;
}

.note-meta-name {
  font-weight: 600;
}

.note-meta-date {
  color: var(--color-text-grey);
  font-size: .875rem;
}

.note-body {
  padding-left: calc(3rem + 1rem);
}

.note-header {
  margin-bottom: .25rem;
}

.note-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.15em;
  margin-bottom: .25rem;
}

.note-subheading {
  font-family: var(--font-family-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-top: 1rem;
  margin-bottom: .75rem;
}

/* Notes-Stream (Übersichtsseite) */
.notes-stream-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.notes-stream {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.note-stream-item {
  padding: 2rem 0;
}

.note-stream-item+.note-stream-item::before {
  content: "";
  display: block;
  width: 10rem;
  height: 3px;
  background: rgba(255, 255, 255, .15);
  margin: 0 auto 2rem;
}

.note-stream-item:first-child {
  padding-top: 0;
}

.note-stream-item .note-title {
  font-size: 1.7rem;
  margin-bottom: 1.25rem;
}

.note-stream-item .note-title a {
  color: var(--color-link);
  text-decoration: none;
}

.note-stream-item .note-title a:hover {
  text-decoration: underline;
}

.note-stream-item .note-excerpt-text {
  font-size: .9375rem;
  line-height: 1.65em;
  color: var(--color-text-grey);
  margin-top: .5rem;
}

.note-excerpt {
  line-height: 1.5em;
}

.note-excerpt header {
  margin-bottom: 1.5rem;
}

.note-excerpt figure {
  margin-bottom: .5rem;
}

.note-excerpt-title {
  font-weight: 600;
}

.note-excerpt-date {
  color: var(--color-text-grey);
}

.note-excerpt-caption {
  color: var(--color-text-grey);
  font-size: .875rem;
  margin-top: .5rem;
}

/* Link-Karte */
.note-excerpt--link header {
  border-left: 3px solid var(--color-black);
  padding-left: 1rem;
}

.note-excerpt-link-meta {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .25rem;
}

.note-excerpt-type-label {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--color-text-grey);
}

.note-excerpt-domain {
  color: var(--color-text-grey);
  font-size: .875rem;
}

/* Link-Karte */
.post-link-card,
.text .post-link-card {
  display: block;
  background: var(--color-light);
  border: 1.5px solid rgba(255, 255, 255, .08);
  border-radius: 6px;
  padding: 1rem 1.25rem 1.1rem;
  margin-bottom: 1.5rem;
  text-decoration: none;
  transition: border-color .2s;
  color: inherit;
}

.post-link-card:hover {
  border-color: rgba(255, 255, 255, .25);
}

.post-link-card .post-link-domain {
  font-size: .8125rem;
  font-weight: 600;
  color: var(--color-text-grey);
  margin: 0 0 .5rem;
  letter-spacing: .01em;
  text-transform: uppercase;
  text-decoration: none;
}

.post-link-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  text-transform: none;
  letter-spacing: normal;
  color: var(--color-link);
  text-decoration: none;
}

/* Note-Footer: Like-Button */
.note-like-btn {
  display: flex;
  align-items: center;
  gap: .375rem;
  padding: 0;
  color: var(--color-text-grey);
  cursor: pointer;
  flex-shrink: 0;
}

.note-like-btn:hover {
  color: var(--color-text);
}

.note-like-heart {
  fill: none;
  flex-shrink: 0;
  transition: fill .15s, color .15s;
}

.note-like-heart.is-liked {
  fill: #e05252;
  color: #e05252;
}

.note-like-count {
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .06em;
}

/* Note-Footer: Datum + Tags */
.note-footer {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.note-readmore {
  display: inline-block;
  margin: 1rem 0 1.5rem;
}

.note-footer-item {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: .375rem;
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--color-text-grey);
}

.note-footer-icon,
.note-footer-item > svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.note-footer-item time,
.note-footer-item a {
  color: var(--color-text-grey);
}

.note-footer-item a:hover,
.note-footer-item a:hover time {
  color: var(--color-text);
}

/* Quote-Karte */
.note-excerpt--quote header {
  background: var(--color-light);
  padding: 1.5rem;
}

.note-excerpt-quote {
  font-size: 1.1rem;
  line-height: 1.4em;
  margin-bottom: .75rem;
}

/* Burger-Menü */
.menu-toggle {
  display: none;
  align-items: center;
  gap: .5rem;
  padding: 1rem;
  font-family: var(--font-family-heading);
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  color: var(--color-link);
}

/* Overlay */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: var(--color-dark);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
}

.menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.menu-overlay-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  padding: .75rem;
  color: var(--color-text);
}

.menu-overlay-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.menu-overlay-nav a {
  font-family: var(--font-family-heading);
  font-weight: 800;
  font-size: 2rem;
  text-transform: uppercase;
  color: var(--color-text);
  text-decoration: none;
  position: relative;
}

.menu-overlay-nav a[aria-current] {
  color: var(--color-link);
}

.menu-overlay-cta {
  margin-top: 2.5rem;
  display: inline-block;
  overflow: hidden;
  position: relative;
  font-family: var(--font-family-heading);
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  background: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
  border-radius: 6px;
  padding: 16px 30px 23px;
  text-decoration: none;
  transition: background .4s ease, color .4s ease;
}

.menu-overlay-cta::after {
  content: '';
  display: block;
  height: 7px;
  width: 100%;
  background-image: repeating-linear-gradient(45deg,
      var(--color-accent), var(--color-accent) 1px, transparent 2px, transparent 5px);
  backface-visibility: hidden;
  border-top: 1px solid var(--color-accent);
  position: absolute;
  left: 0;
  bottom: 0;
  background-size: 7px 7px;
}

.menu-overlay-cta:hover {
  background: var(--color-accent);
  color: #252F37;
}

.menu-overlay-cta:hover::after {
  background-image: repeating-linear-gradient(45deg,
      #252F37, #252F37 1px, transparent 2px, transparent 5px);
  border-top: 1px solid #252F37;
  animation: stripe-slide 12s infinite linear forwards;
}

/* Responsive: Burger ab 960px abwärts (Padding wechselt ebenfalls bei 960px) */
@media screen and (max-width: 960px) {
  .menu {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }
}

/* Responsive: Name ab 480px ausblenden */
@media screen and (max-width: 480px) {
  .logo-name {
    display: none;
  }
}

.note-excerpt-quote footer {
  font-size: .875rem;
  color: var(--color-text-grey);
  font-style: italic;
}

/* ── Prevnext / Lust auf mehr ── */
.prevnext {
  background: var(--color-light);
  padding: 3rem 2.5rem;
  border-radius: 8px;
  margin: 0;
}

.prevnext-heading {
  font-family: var(--font-family-heading);
  font-weight: 800;
  font-size: 1.375rem;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 2rem;
}

.prevnext-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.prevnext-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-decoration: none;
}

.prevnext-item--next {
  text-align: right;
}

.prevnext-direction {
  font-family: var(--font-family-heading);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--color-text-grey);
}

.prevnext-title {
  font-family: var(--font-family-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-text);
  line-height: 1.35;
  text-transform: uppercase;
}

.prevnext-item:hover .prevnext-title {
  color: var(--color-link);
}

.prevnext-meta {
  font-family: var(--font-family-heading);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: .04em;
  color: var(--color-text-grey);
}

@media screen and (max-width: 600px) {
  .note-avatar {
    width: 2rem;
    height: 2rem;
  }

  .note-post-meta {
    gap: .5rem;
  }

  .note-body {
    padding-left: calc(2rem + .5rem);
  }

  .note-avatar-card {
    display: none;
  }

  .text figure ul li {
    max-width: calc(50% - .75rem);
  }

  .menu-overlay-nav a {
    font-size: 1.4rem;
  }

  .text ul>li {
    margin-bottom: .5rem;
  }
}

@media screen and (max-width: 600px) {
  .prevnext-grid {
    grid-template-columns: 1fr;
  }

  .prevnext-item--next {
    text-align: left;
  }
}

/* ── Back-to-top Rakete ── */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #885EC3;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(.5rem);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  z-index: 200;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #7341E8;
  color: #fff;
}

/* ── Shared: Intro-Illustration ── */
.coaching-intro-after {
  display: flex;
  align-items: flex-end;
  gap: 3rem;
}

.coaching-intro-illustration {
  flex-shrink: 0;
  width: 256px;
}

.coaching-intro-illustration img {
  width: 256px;
  height: 256px;
  object-fit: contain;
  display: block;
}

/* ── Shared: About-Illustration ── */
.coaching-about-image-wrap {
  position: relative;
  overflow: visible;
}

.coaching-about-illustration {
  position: absolute;
  right: -180px;
  bottom: -80px;
  width: 256px;
}

.coaching-about-illustration img {
  width: 256px;
  height: 256px;
  object-fit: contain;
  display: block;
}

/* ── Shared: Merriweather für Fließtexte (Startseite, Coaching, etc.) ── */
.home-intro-text,
.home-service-description,
.home-about-text,
.home-about-text-after,
.home-contact-text .text,
.home-contact-note,
.home-form-input,
.home-contact-success-text {
  font-family: 'Merriweather', Georgia, 'Times New Roman', serif;
}

/* ── Shared: Intro ── */
.home-intro {
  padding: 4rem 0 3rem;
}

.home-intro-text {
  max-width: 720px;
  font-size: 1rem;
  line-height: 1.67;
}

.home-intro-text+.home-quote {
  margin-top: 3rem;
}

.home-quote {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 300;
  font-size: 1.77rem;
  line-height: 1.5;
  color: var(--color-accent);
  margin-top: 0;
  margin-bottom: 3rem;
}

.home-quote+.home-intro-text {
  margin-top: 0;
}

/* ── Shared: Services ── */
.home-services {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: linear-gradient(135deg, #7341E8 0%, #885EC3 100%);
  padding: 4rem 0;
  margin-top: 4rem;
}

.home-services-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 var(--padding);
}

.home-services-heading {
  font-family: var(--font-family-heading);
  font-weight: 800;
  font-size: 32px;
  text-transform: uppercase;
  color: #F0F0F1;
  margin-bottom: 1.5rem;
}

.home-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}

.home-service-title {
  font-family: var(--font-family-heading);
  font-weight: 800;
  font-size: 22px;
  text-transform: uppercase;
  color: #F0F0F1;
  margin-bottom: 1rem;
}

.home-service-subtitle {
  font-family: 'Merriweather', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.65;
  color: #F0F0F1;
  margin-bottom: 1rem;
}

.home-service-description {
  font-family: 'Merriweather', Georgia, 'Times New Roman', serif;
  font-size: 1rem;
  line-height: 1.67;
  color: #F0F0F1;
  margin-bottom: 1.5rem;
}

.home-service-tags {
  display: inline-flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.home-service-tags li {
  font-family: var(--font-family-heading);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  background: #F0F0F1;
  border-radius: 99px;
  padding: 10px 15px;
  margin: 0 10px 15px 0;
  color: #5e3f8a;
  display: flex;
}

/* ── Shared: About ── */
.home-about {
  padding: 5rem 0 4rem;
}

.home-about-heading {
  font-family: var(--font-family-heading);
  font-weight: 800;
  font-size: 32px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.home-about-text {
  max-width: 720px;
  line-height: 1.67;
  margin-bottom: 3rem;
}

.home-about-image {
  max-width: 720px;
  margin-bottom: 3rem;
}

.home-about-image img {
  width: 100%;
  display: block;
}

.home-about-text-after {
  max-width: 720px;
  line-height: 1.67;
}

/* ── Shared: Kontakt ── */
.home-contact {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: #F0F0F1;
  padding: 4rem 0;
  margin-top: 4rem;
}

.home-contact-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 var(--padding);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}

.home-contact-text {
  padding-right: 5rem;
  border-right: 2px solid var(--color-dark);
}

.home-contact-heading {
  font-family: var(--font-family-heading);
  font-weight: 800;
  font-size: 32px;
  text-transform: uppercase;
  color: var(--color-dark);
  margin-bottom: 1.5rem;
}

.home-contact-text .text {
  line-height: 1.67;
  color: var(--color-dark);
  margin-bottom: 1.5rem;
}

.home-contact-note {
  margin-top: 1.5rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-dark);
}

.home-contact-note a {
  color: var(--color-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Shared: Formular ── */
.home-contact-form {
  padding-left: 5rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.home-form-label {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  font-family: var(--font-family-heading);
  font-weight: 800;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--color-dark);
}

.home-form-input {
  background: #fff;
  border: 1.5px solid #d0d0d2;
  border-radius: 4px;
  padding: .7rem .9rem;
  color: var(--color-dark);
  font-family: 'Merriweather', Georgia, 'Times New Roman', serif;
  font-size: 1rem;
  transition: border-color .2s;
}

.home-form-input:focus {
  outline: none;
  border-color: var(--color-accent);
}

.home-form-textarea {
  resize: vertical;
  min-height: 120px;
}

.home-form-input::placeholder {
  color: #aaa;
}

.home-form-submit {
  align-self: flex-start;
}

.home-form-error {
  font-family: var(--font-family-sans);
  font-size: .8rem;
  font-weight: 600;
  color: #b91c1c;
  background: #fef2f2;
  border-left: 3px solid #b91c1c;
  padding: .35rem .6rem;
  border-radius: 0 3px 3px 0;
}

.home-form-error--general {
  font-size: .9rem;
  margin-left: 5rem;
  margin-bottom: 1.25rem;
  padding: .75rem 1rem;
}

.home-contact-success {
  padding: 2rem 0 2rem 5rem;
}

.home-contact-success-heading {
  font-family: var(--font-family-heading);
  font-weight: 800;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: #16a34a;
  margin-bottom: .5rem;
}

.home-contact-success-text {
  font-family: 'Merriweather', Georgia, 'Times New Roman', serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-dark);
}

/* ── Shared: Button im Kontakt-Bereich (dunkel statt orange, Kontrast) ── */
.home-contact .home-btn {
  color: #252F37;
  border-color: #252F37;
}

.home-contact .home-btn::after {
  background-image: repeating-linear-gradient(45deg,
      #252F37,
      #252F37 1px,
      transparent 2px,
      transparent 5px);
  border-top: 1px solid #252F37;
}

/* ── Shared Responsive: Tablet (≤960px) ── */
@media screen and (max-width: 960px) {
  .coaching-about-illustration {
    display: none;
  }

  .home-services-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .home-contact-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .home-contact-text {
    padding-right: 0;
    border-right: none;
    border-bottom: 2px solid var(--color-dark);
    padding-bottom: 2.5rem;
  }

  .home-contact-form {
    padding-left: 0;
  }

  .home-form-error--general {
    margin-left: 0;
  }
}

/* ── Shared Responsive: Mobile (≤600px) ── */
@media screen and (max-width: 600px) {
  .coaching-intro-after {
    flex-direction: column;
    gap: 1.5rem;
  }

  .coaching-intro-illustration {
    width: 80%;
    align-self: center;
  }

  .coaching-intro-illustration img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }

  .coaching-about-illustration {
    visibility: hidden;
  }

  .home-intro {
    padding: 2.5rem 0 2rem;
  }

  .home-quote {
    font-size: 32px;
    line-height: 48px;
  }

  .home-services {
    padding: 3rem 0;
    margin-top: 3rem;
  }

  .home-services-heading {
    font-size: 32px;
  }

  .home-service-tags li {
    font-size: 14px;
  }

  .home-about {
    padding: 3.5rem 0 3rem;
  }

  .home-about-heading {
    font-size: 32px;
  }

  .home-contact {
    padding: 3rem 0;
    margin-top: 3rem;
  }

  .home-contact-heading {
    font-size: 32px;
  }

  .home-contact-text {
    border-bottom: none;
    padding-bottom: 0;
  }

}

/* ── Postref Block ── */
.postref {
  display: block;
  margin: 2rem 0;
  padding: 1.25rem 1.5rem;
  background: var(--color-light);
  border: 1.5px solid rgba(255, 255, 255, .08);
  border-radius: 6px;
  text-decoration: none;
  color: inherit;
  transition: border-color .2s;
}

.postref__link,
.text .postref__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.postref__link:hover .postref__header {
  opacity: .8;
}

.postref__header {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: .75rem;
}

.postref__avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
}

.postref__name {
  font-weight: 600;
  font-size: .95rem;
  color: var(--color-text);
}

.postref__date {
  font-size: .8rem;
  color: var(--color-text-grey);
}

.postref__excerpt {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  margin: .75rem 0 0;
}

.postref__body {
  margin-top: 1rem;
}

.postref__body>*:last-child {
  margin-bottom: 0;
}

/* ── Newsletter CTA Block ── */
.newsletter-cta__btn,
.text .newsletter-cta__btn {
  text-decoration: none;
}


.newsletter-cta {
  margin: 3rem 0;
  padding: 3rem 2.5rem;
  background: #2E3B47;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.newsletter-cta__headline {
  font-family: var(--font-family-heading);
  font-weight: 800;
  font-size: 1.4rem;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}

.newsletter-cta__text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  line-height: 1.6;
  max-width: 480px;
  text-align: center;
}

@media screen and (max-width: 600px) {
  .newsletter-cta {
    padding: 1.5rem 1.25rem;
    text-align: center;
  }

  .text h1,
  .h1,
  .intro {
    font-size: 1.75rem;
  }

  .note-title {
    font-size: 1.75rem;
  }

  .postref__header {
    flex-wrap: wrap;
    row-gap: 0.25rem;
  }

  .postref__date {
    width: 100%;
    padding-left: calc(2rem + 0.6rem);
  }
}

/* ---------- Error Page (404) ---------- */
.error-page {
  max-width: 640px;
  margin: 4rem auto 6rem;
  padding: 0 1.5rem;
  text-align: center;
}

.error-illustration {
  max-width: 320px;
  margin: 0 auto 2rem;
}

.error-illustration img {
  width: 100%;
  height: auto;
  display: block;
}

.error-code {
  font-family: var(--font-family-heading);
  font-weight: 800;
  font-size: clamp(4rem, 14vw, 7rem);
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--color-accent);
  margin: 0 0 1rem;
}

.error-headline {
  font-family: var(--font-family-heading);
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  text-transform: uppercase;
  color: var(--color-text);
  margin: 0 0 1.5rem;
  line-height: 1.2;
}

.error-text {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--color-text);
  margin: 0 auto 2.5rem;
  max-width: 520px;
}

/* =====================================================================
   Prism.js — Syntax Highlighting (ehemals prism.css)
   PrismJS 1.19.0 — tomorrow night eighties theme
   ===================================================================== */

code[class*="language-"],
pre[class*="language-"] {
  color: var(--color-code-white);
	font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
	font-size: 1em;
	text-align: left;
	white-space: pre;
	word-spacing: normal;
	word-break: normal;
	word-wrap: normal;
	line-height: 1.5;

	-moz-tab-size: 4;
	-o-tab-size: 4;
	tab-size: 4;

	-webkit-hyphens: none;
	-moz-hyphens: none;
	-ms-hyphens: none;
	hyphens: none;

}

/* Code blocks */
pre[class*="language-"] {
	padding: 1rem;
	margin: 0 0;
	overflow: auto;
}

.token.punctuation {
  color: var(--color-code-light-grey);
}

.token.comment,
.token.doctype {
  color: var(--color-code-comment);
}

.token.tag,
.token.markup,
.token.variable,
.token.this,
.token.selector,
.token.key,
.token.kirbytag-bracket,
.token.prolog,
.token.delimiter {
  color: var(--color-code-red);
}

.token.constant,
.token.number,
.token.boolean,
.token.boolean.important,
.token.attr-name,
.token.kirbytag-attr,
.token.kirbytag-name,
.token.entity,
.token.bold,
.token.bold > .punctuation {
  color: var(--color-code-orange);
}

.token.keyword,
.token.italic,
.token.italic > .punctuation {
  color: var(--color-code-purple);
}

.token.function {
  color: var(--color-code-blue);
}

.token.operator,
.token.title {
  color: var(--color-code-aqua);
}

.token.string,
.token.attr-value,
.token.attr-value .punctuation,
.token.list.punctuation {
  color: var(--color-code-green);
}

.token.scope,
.token.class-name,
.token.property,
.token.url {
  color: var(--color-code-yellow);
}

.token.title,
.token.kirbytag-bracket,
.token.list.punctuation {
  font-weight: 700;
}

.token.title .punctuation {
  color: inherit;
}

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

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

.codeblock {
  background: var(--color-black);
}
.codeblock figcaption {
  color: var(--color-code-white);
  padding: .5rem 1rem;
  font-family: var(--font-family-mono);
  border-bottom: 1px solid #333;
}

/* =====================================================================
   basicLightbox — Lightbox (ehemals lightbox.css)
   ===================================================================== */

.basicLightbox{position:fixed;display:flex;justify-content:center;align-items:center;top:0;left:0;width:100%;height:100vh;background:rgba(0,0,0,.8);opacity:.01;transition:opacity .4s ease;z-index:1000;will-change:opacity}.basicLightbox--visible{opacity:1}.basicLightbox__placeholder{max-width:100%;-webkit-transform:scale(.9);transform:scale(.9);transition:-webkit-transform .4s ease;transition:transform .4s ease;transition:transform .4s ease,-webkit-transform .4s ease;z-index:1;will-change:transform}.basicLightbox__placeholder>iframe:first-child:last-child,.basicLightbox__placeholder>img:first-child:last-child,.basicLightbox__placeholder>video:first-child:last-child{display:block;position:absolute;top:0;right:0;bottom:0;left:0;margin:auto;max-width:95%;max-height:95%}.basicLightbox__placeholder>iframe:first-child:last-child,.basicLightbox__placeholder>video:first-child:last-child{pointer-events:auto}.basicLightbox__placeholder>img:first-child:last-child,.basicLightbox__placeholder>video:first-child:last-child{width:auto;height:auto}.basicLightbox--iframe .basicLightbox__placeholder,.basicLightbox--img .basicLightbox__placeholder,.basicLightbox--video .basicLightbox__placeholder{width:100%;height:100%;pointer-events:none}.basicLightbox--visible .basicLightbox__placeholder{-webkit-transform:scale(1);transform:scale(1)}

