 @font-face {
    font-family: "Bitter";
    src: url("/assets/fonts/bitter/Bitter-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }

@font-face {
    font-family: "Bitter-Bold";
    src: url("/assets/fonts/bitter/Bitter-Bold.woff2") format("woff2");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
  }

  @font-face {
    font-family: "Lato";
    src: url("/assets/fonts/lato/Lato-Black.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }

  @font-face {
    font-family: "Roboto";
    src: url("/assets/fonts/roboto/Roboto-Black.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }

  @font-face {
    font-family: "Fontin";
    src: url("/assets/fonts/fontin/Fontin-Regular.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }

  @font-face {
    font-family: "Alegreya";
    src: url("/assets/fonts/alegreya/Alegreya-Regular.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }

@font-face { 
    font-family: "United-Sans"; 
    src: url("/assets/fonts/united-sans/United-Sans-Cond-Black.woff2") format("woff2"); 
    font-weight: 700; 
    font-style: normal;
    font-display: swap;
  }

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

:root {
  --ink: #171717;
  --paper: #f7f4ee;
  --white: #ffffff;
  --muted: #67615b;
  --line: #ded6cc;
  --red: #a7342f;
  --red-dark: #7e2421;
  --gold: #b88a35;
  --teal: #235d63;
  --shadow: 0 24px 70px rgba(23, 23, 23, 0.13);
  --radius: 18px;
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #fff 0%, #fff 58%, #faf7f1 100%);
  color: #000;
  line-height: 1.68;
}

img,
video,
iframe {
  max-width: 100%;
}

a {
  color: #0000FF;
  text-decoration: none;
}

.skip-link {
  background: var(--ink);
  color: var(--white);
  left: 1rem;
  padding: 0.65rem 0.9rem;
  position: fixed;
  top: 1rem;
  transform: translateY(-160%);
  z-index: 20;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  align-items: center;
  background: #99CCFF;
  border: 1px solid #000;
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(23, 23, 23, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: space-between;
  margin: 0.75rem clamp(1rem, 4vw, 2rem) 0;
  max-width: none;
  padding: 0.8rem clamp(1rem, 4vw, 2rem);
  position: sticky;
  top: 0.75rem;
  z-index: 10;
  backdrop-filter: blur(18px);
}

.main-nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: flex-end;
  min-width: 0;
}

.main-nav a {
  border: 1px solid transparent;
  border-radius: 999px;
  color: #301615;
  font-size: 1rem;
  font-family: Merriweather, serif;
  font-weight: 850;
  padding: 0.45rem 0.75rem;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: #8d1616;
  border-color: #8d1616;
  color: #fff;
  outline: none;
}

.hero-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: -0.4rem;
  min-width: 0;
}

.hero-socials a {
  align-items: center;
  background: #fff7f4;
  border: 1px solid rgba(141, 22, 22, 0.2);
  border-radius: 12px;
  color: #8d1616;
  display: inline-flex;
  height: 2.75rem;
  justify-content: center;
  width: 2.75rem;
}

.hero-socials a:hover,
.hero-socials a:focus-visible {
  background: #8d1616;
  border-color: #8d1616;
  color: #fff;
  outline: none;
}

.hero-socials i {
  font-size: 1.6rem;
}

.page-wrap {
  margin: 0 auto;
  max-width: 1480px;
  padding: clamp(1.2rem, 3vw, 2.75rem) clamp(1rem, 4vw, 3.5rem) clamp(2.4rem, 5vw, 4rem);
}

.article-layout {
  align-items: start;
  display: grid;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  grid-template-columns: minmax(0, 1fr) minmax(17rem, 23rem);
}

.post-card,
.sidebar-card {
  background: #fff;
  border: 1px solid #000;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.post-card {
  overflow: hidden;
}

.post-hero {
  padding: clamp(1rem, 2.4vw, 1.5rem);
}

.featured-image {
  border-radius: 16px;
  display: block;
  height: auto;
  object-fit: contain;
  width: 100%;
}

.post-head {
  padding: clamp(0.5rem, 1.4vw, 1.5rem) clamp(0.4rem, 5vw, 1.3rem) 0;
}

.post-head h1 {
  color: #000;
  display: -webkit-box;
  font-family: United-Sans, serif;
  font-size: clamp(2.3rem, 4.6vw, 4rem);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  line-height: 0.9;
  margin: 0;
  max-width: 100%;
  padding-bottom: 0.12em;
  overflow: hidden;
  overflow-wrap: normal;
  text-wrap: normal;
}

html[lang="de"] .post-head h1 {
  display: block;
  overflow: visible;
  overflow-wrap: anywhere;
  text-wrap: balance;
  -webkit-line-clamp: unset;
  line-clamp: unset;
}

.entry-meta {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: flex-start;
  margin: 0.9rem 0 0;
  padding: 0;
  width: 100%;
}

.post-meta-line {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1rem;
  margin: 1rem 0 1.2rem;
}

.post-category-badge,
.category-pill {
  background: #6f1727;
  border: 1px solid #54101d;
  border-radius: 6px;
  color: #fff;
  display: inline-flex;
  font-family: Roboto, serif;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 1;
  padding: 0.55rem 0.8rem;
  text-transform: uppercase;
}

.post-date {
  color: #000;
  font-family: Roboto, serif;
  font-size: clamp(0.85rem, 1.45vw, 1.05rem);
  line-height: 1;
}

.subtitle {
  color: #000;
  font-size: 17px;
  font-family: Bitter, serif;
  line-height: 1.5;
  margin: 1.2rem 0 0;
  max-width: 58rem;
  padding-top: 0;
}

.toc-panel {
  background: #f8f4ee;
  border: 1px solid var(--line);
  border-radius: 16px;
  margin-top: 1.6rem;
  padding: clamp(1rem, 2.4vw, 1.25rem);
}

.toc-panel h2 {
  color: #000;
  font-family: Roboto, serif;
  font-size: clamp(2.1rem, 2vw, 2.8rem);
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 0.85rem;
}

.toc-title {
  color: #000;
  font-family: Roboto, serif;
  font-size: 22px;
  line-height: 1.1;
  margin: 0 0 0.85rem;
}

.toc-panel ul {
  display: grid;
  gap: 0.45rem;
  grid-template-columns: 1fr;
  list-style: none;
  margin: 0;
  padding: 0;
}

.toc-panel a {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(141, 22, 22, 0.16);
  border-radius: 999px;
  color: #241b19;
  display: flex;
  font-size: 1.1rem;
  font-family: Roboto, serif;
  font-weight: 800;
  line-height: 1.25;
  min-height: 2.65rem;
  padding: 0.58rem 0.85rem;
}

.toc-panel a:hover,
.toc-panel a:focus-visible,
.toc-panel a.is-active {
  background: #8d1616;
  color: #fff;
  outline: none;
}

.post-content {
  font-size: clamp(1rem, 1.5vw, 1.08rem);
  font-family: Bitter, sans-serif;
  padding: clamp(0.4rem, 5vw, 1.3rem);
  padding-top: clamp(1.3rem, 4vw, 2.25rem);
}

.post-content > * {
  margin-left: auto;
  margin-right: auto;
  max-width: 78ch;
}

.post-content p {
  margin-top: 0;
}

.post-content p + p {
  margin-top: 1.1rem;
}

.post-content h2 {
  color: #000;
  font-family: Roboto, serif;
  font-weight: 800;
  font-size: 39px;
  line-height: 1.06;
  margin-bottom: 1rem;
  margin-top: clamp(1.5rem, 6vw, 2rem);
}

.post-content h3 {
  color: #000;
  font-family: Roboto, serif;
  font-size: 28px;
  line-height: 1.06;
  margin-bottom: 1rem;
  margin-top: clamp(1.5rem, 6vw, 2rem);
}

.post-content img {
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(23, 23, 23, 0.13);
  display: block;
  height: auto;
  margin: clamp(1.2rem, 4vw, 2rem) auto;
  object-fit: contain;
  width: 100%;
}

.post-content figure {
  margin: 0;
}

.post-content hr {
  background: #000;
  border: 0;
  height: 1px;
  margin: 2.5rem auto;
}

.post-content strong {
  color: #000;
  font-family: Bitter-Bold, sans-serif;
  font-weight: 900;
}

.post-content em {
  font-style: italic;
}

.article-share {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: clamp(2.1rem, 5vw, 3.2rem);
  padding-top: 1.1rem;
}

.share-label {
  color: #000;
  font-family: Roboto, serif;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-right: 0.2rem;
  text-transform: uppercase;
}

.share-button {
  align-items: center;
  background: #fff;
  border: 1px solid #000;
  border-radius: 8px;
  color: #000;
  display: inline-flex;
  height: 3rem;
  justify-content: center;
  width: 3rem;
}

.share-button i {
  font-size: 1.45rem;
  line-height: 1;
}

.share-button:hover,
.share-button:focus-visible {
  background: #6f1727;
  border-color: #6f1727;
  color: #fff;
  outline: none;
  text-decoration: none;
}

.faq-section {
  background: ##f8f4ee;
  border: 1px solid #000;
  border-radius: 18px;
  margin-top: clamp(2.8rem, 6vw, 4.5rem);
  max-width: 78ch;
  padding: clamp(1rem, 3vw, 1.35rem);
}

.post-content .faq-section h2 {
  margin-top: 0;
}

.faq-section details {
  background: #F7C0C0;
  border: 1px solid rgba(141, 22, 22, 0.14);
  border-radius: 14px;
  padding: 0.95rem 1rem;
}

.faq-section details + details {
  margin-top: 0.7rem;
}

.faq-section summary {
  color: #171717;
  font-family: Roboto, serif;
  cursor: pointer;
  font-weight: 900;
  line-height: 1.25;
}

.faq-section summary::marker {
  color: #8d1616;
}

.faq-section details[open] {
  border-color: rgba(141, 22, 22, 0.34);
  box-shadow: 0 12px 30px rgba(23, 23, 23, 0.08);
}

.faq-section details p {
  color: #36312d;
  margin: 0.85rem 0 0;
  font-family: Bitter, Georgia, serif;
  font-weight: 400;
  font-size: 16px;
}

.sidebar {
  display: grid;
  gap: 1rem;
  position: sticky;
  top: 6.5rem;
}

.sidebar-card {
  padding: 1.1rem;
}

.sidebar-card h2 {
  color: #000;
  font-family: Lato, serif;
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: 0.06;
  line-height: 1.1;
  margin: 0 0 0.8rem;
}

.sidebar-card p {
  color: #36312d;
  font-size: 0.95rem;
  font-family: Bitter, serif;
  margin: 0;
}

.sidebar-card p + p {
  margin-top: 0.75rem;
}

.sidebar-list {
  display: grid;
  gap: 0.7rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar-list a {
  border: 1px solid #000;
  border-radius: 12px;
  color: #000;
  display: block;
  font-weight: 850;
  font-family: Roboto, serif;
  line-height: 1.25;
  padding: 0.78rem 0.85rem;
}

.sidebar-rail {
  display: grid;
  gap: 0.85rem;
  background: #fff;
}

.sidebar-module {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.95rem;
  background: #fff;
}

.sidebar-module h2,
.sidebar-module h3 {
  color: #000;
  font-family: Bitter, serif;
  font-size: 1.05rem;
  line-height: 1.1;
  margin: 0 0 0.65rem;
}

.sidebar-module p {
  color: #36312d;
  font-size: 0.94rem;
  margin: 0;
}

.site-footer {
  align-items: start;
  background:
    radial-gradient(circle at 8% 0%, rgba(167, 52, 47, 0.35), transparent 28rem),
    #050505;
  border: 1px solid rgba(232, 185, 95, 0.14);
  border-radius: 24px;
  box-shadow: 0 -18px 56px rgba(23, 23, 23, 0.12);
  color: #fff;
  display: grid;
  column-gap: 2.25rem;
  grid-template-columns: max-content max-content;
  margin: 0 clamp(1rem, 4vw, 2rem) clamp(1.5rem, 4vw, 2.5rem);
  max-width: none;
  min-width: 0;
  row-gap: 0.95rem;
  padding: clamp(1.6rem, 3vw, 2.35rem) clamp(1rem, 4vw, 3rem) 1rem;
  width: auto;
}

.footer-brand {
  display: grid;
  align-items: start;
  column-gap: 2.25rem;
  grid-template-columns: max-content 13.25rem;
  row-gap: 0.45rem;
}

.site-footer p,
.site-footer address {
  color: #fff;
}

.site-footer p,
.site-footer address {
  font-style: normal;
  margin: 0;
  max-width: 13.25rem;
}

.footer-brand strong {
  grid-column: 1;
  line-height: 1.25;
}

.footer-menu {
  display: grid;
  align-items: start;
  gap: 2rem;
  grid-template-columns: 0 max-content max-content;
  min-width: 0;
}

.footer-link-group {
  display: block;
}

.footer-link-list {
  column-gap: 2rem;
  display: grid;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  grid-template-rows: repeat(4, auto);
  row-gap: 0.45rem;
}

.footer-link-group[aria-label="Explore"] {
  overflow: hidden;
  width: 0;
}

.footer-link-group h2 {
  color: #e8b95f;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0;
  line-height: 1.1;
  margin: 0 0 0.25rem;
  text-transform: uppercase;
}

.footer-link-group[aria-label="Explore"] h2 {
  color: #000;
}

.footer-link-group a {
  color: #fff;
  font-weight: 700;
  line-height: 1.38;
  overflow-wrap: anywhere;
  width: fit-content;
}

.footer-link-group a:hover,
.footer-link-group a:focus-visible {
  color: #e8b95f;
  outline: none;
}

.footer-bottom {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  display: flex;
  gap: 1rem;
  grid-column: 1 / -1;
  justify-content: space-between;
  padding-top: 0.7rem;
}

.footer-bottom span {
  overflow-wrap: anywhere;
}

.eu-hosting-badge {
  display: block;
  height: auto;
  grid-column: 2;
  grid-row: 1 / span 2;
  margin-top: 0;
  width: min(100%, 13.25rem);
}


@media (max-width: 1080px) {
  .article-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }
}

/* Keep widescreen article components on one shared reading measure. */
@media (min-width: 1600px) {
  .post-head > *,
  .post-content > * {
    box-sizing: border-box;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 50rem !important;
    width: 100% !important;
  }
}

@media (max-width: 980px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
  }

  .site-header {
    flex-direction: column;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .main-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 8.25rem;
  }

  .site-header {
    gap: 0.7rem;
    padding: 0.85rem 1rem;
  }

  .main-nav {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.5rem;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.1rem;
    scrollbar-width: none;
    width: 100%;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .main-nav a {
    background: #fff7f4;
    border: 1px solid rgba(141, 22, 22, 0.18);
    border-radius: 999px;
    color: var(--red-dark);
    flex: 0 0 auto;
    font-size: 0.92rem;
    font-family: Roboto, serif;
    line-height: 1.2;
    padding: 0.64rem 0.8rem;
    text-align: center;
  }

  .hero-socials {
    margin-top: 0;
    width: 100%;
  }

  .hero-socials a {
    height: 2.45rem;
    width: 2.45rem;
  }

  .page-wrap {
    padding-inline: 0.85rem;
  }

  .post-hero {
    padding: 0.65rem;
  }

  .post-head,
  .post-content {
    padding-inline: 1rem;
  }

  .toc-panel ul {
    grid-template-columns: 1fr;
  }

  .site-footer {
    gap: 1.5rem;
    grid-template-columns: 1fr;
    padding-inline: 1rem;
  }

  .footer-brand {
    grid-template-columns: 1fr;
    row-gap: 0.75rem;
  }

  .footer-brand strong,
  .eu-hosting-badge {
    grid-column: 1;
  }

  .eu-hosting-badge {
    grid-row: auto;
    margin-top: 0.25rem;
    width: min(100%, 13.25rem);
  }

  .footer-menu {
    gap: 1rem;
    grid-template-columns: 1fr;
  }

  .footer-link-group[aria-label="Explore"] {
    display: none;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 340px) {
  .main-nav {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}

.infographic-float {
  background: #111820;
  border: 1px solid #000;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(23, 23, 23, 0.2);
  color: #fff;
  cursor: zoom-in;
  float: left;
  margin: 0.35rem 1.5rem 1rem 0;
  overflow: hidden;
  padding: 0;
  width: min(42%, 18rem);
}

.infographic-float img {
  display: block;
  height: auto;
  margin: 0;
  width: 100%;
}

.infographic-float span {
  display: block;
  font: 800 0.88rem/1.2 system-ui, sans-serif;
  padding: 0.7rem 0.8rem;
  text-align: center;
}

.infographic-lightbox {
  background: transparent;
  border: 0;
  height: 92vh;
  margin: auto;
  max-height: 92vh;
  max-width: min(92vw, 56rem);
  overflow: hidden;
  padding: 0;
  width: min(92vw, 56rem);
}

.infographic-lightbox::backdrop {
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(4px);
}

.infographic-lightbox__content {
  background: #111820;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 14px;
  height: 100%;
  overflow: auto;
  padding: 0.75rem;
  position: relative;
}

.infographic-lightbox__content img {
  display: block;
  height: auto;
  margin: 0 auto;
  width: 100%;
}

.infographic-lightbox__close {
  align-items: center;
  background: #fff;
  border: 2px solid #111820;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  color: #111820;
  cursor: pointer;
  display: flex;
  font: 800 0.95rem/1 system-ui, sans-serif;
  gap: 0.35rem;
  margin: 0 0 0.65rem auto;
  min-height: 2.75rem;
  padding: 0.6rem 0.95rem;
  position: sticky;
  right: 0;
  top: 0;
  width: max-content;
  z-index: 1;
}

.infographic-lightbox__close span {
  font-size: 1.45rem;
}

body.has-open-lightbox {
  overflow: hidden;
}

@media (max-width: 600px) {
  .infographic-float {
    float: none;
    margin: 1rem auto 1.5rem;
    width: min(100%, 17rem);
  }

  .infographic-lightbox {
    height: 94vh;
    max-height: 94vh;
    max-width: 95vw;
    width: 95vw;
  }

  .infographic-lightbox__content {
    border-radius: 10px;
    padding: 0.5rem;
  }
}

.slide-viewer {
  background: #800000;
  border: 1px solid #fff;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(23, 23, 23, 0.2);
  margin: 2.5rem auto;
  max-width: 60rem;
  overflow: hidden;
  padding: clamp(0.65rem, 2vw, 1rem);
}

.slide-viewer__stage {
  background: #800000;
  border-radius: 12px;
  display: grid;
  justify-items: center;
  overflow: hidden;
  touch-action: pan-y;
}

.slide-viewer__slide {
  margin: 0;
  width: 100%;
}

.slide-viewer__slide[hidden] {
  display: none;
}

.slide-viewer__slide.is-active {
  animation: slide-viewer-fade 180ms ease-out;
}

.slide-viewer__slide img {
  display: block;
  height: auto;
  margin: 0 auto;
  width: 100%;
}

.slide-viewer__controls {
  align-items: center;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: minmax(7.5rem, auto) 1fr minmax(7.5rem, auto);
  padding: 0.9rem 0.15rem 0.1rem;
}

.slide-viewer__button {
  align-items: center;
  background: #99ccff;
  border: 1px solid #fff;
  border-radius: 999px;
  color: #171717;
  cursor: pointer;
  display: inline-flex;
  font: 800 0.95rem/1 system-ui, sans-serif;
  gap: 0.45rem;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.65rem 1rem;
}

.slide-viewer__status {
  align-items: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  justify-content: center;
}

.slide-viewer__counter {
  font: 800 0.8rem/1 system-ui, sans-serif;
  letter-spacing: 0.08em;
}

.slide-viewer__dots {
  display: flex;
  gap: 0.5rem;
}

.slide-viewer__dot {
  background: #68727d;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  height: 0.7rem;
  padding: 0;
  width: 0.7rem;
}

.slide-viewer__dot.is-active {
  background: #99ccff;
  box-shadow: 0 0 0 3px rgba(153, 204, 255, 0.25);
}

.slide-viewer__dot:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

@keyframes slide-viewer-fade {
  from { opacity: 0.45; }
  to { opacity: 1; }
}

@media (max-width: 520px) {
  .slide-viewer {
    border-radius: 14px;
    margin-block: 2rem;
    padding: 0.5rem;
  }

  .slide-viewer__controls {
    grid-template-columns: 1fr 1fr;
  }

  .slide-viewer__status {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .slide-viewer__button {
    min-width: 0;
  }
}

  .blog-promo-box {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    max-width: 1100px;
    margin: 40px auto 20px;
    padding: 24px;
    background: #F7CBCB;
    border: 1px solid #000;
    border-radius: 16px;
    box-sizing: border-box;
  }

  .blog-promo-cover {
    width: 200px;
    flex: 0 0 200px;
  }

  .blog-promo-cover img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.18);
  }

  .blog-promo-content {
    flex: 1;
  }

  .blog-promo-content h2 {
    margin: 0 0 18px !important;
    padding: 0;
    font-size: 38px;
    line-height: 1.15;
  }

  .blog-promo-content p {
    margin: 0 !important;
    font-size: 20px;
    line-height: 1.55;
  }

  /* Creates proper spacing between separate paragraphs */
  .blog-promo-content p + p {
    margin-top: 22px !important;
  }

  .blog-promo-content a {
    color: #0000FF;
    font-weight: 800;
  }

  @media (max-width: 600px) {
    .blog-promo-box {
      gap: 16px;
      padding: 16px;
    }

    .blog-promo-cover {
      width: 100px;
      flex-basis: 100px;
    }

    .blog-promo-content h2 {
      margin-bottom: 12px !important;
      font-size: 24px;
    }

    .blog-promo-content p {
      font-size: 16px;
      line-height: 1.45;
    }

    .blog-promo-content p + p {
      margin-top: 16px !important;
    }
  }

.blog-promo-box {
  align-items: flex-start !important;
}

.blog-promo-cover,
.blog-promo-content {
  align-self: flex-start !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.blog-promo-cover img {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
}

.blog-promo-content h2 {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
