/* Bodywise article bundle cb15 — consolidated for upload. */

.bw-floating-booking {
  position: fixed;
  right: clamp(1rem, 2.2vw, 2rem);
  bottom: clamp(1rem, 2.2vw, 2rem);
  z-index: 180;
  display: grid;
  grid-template-columns: 2.4rem minmax(0, 1fr);
  align-items: center;
  gap: 0.58rem;
  min-width: 12.9rem;
  min-height: 3.55rem;
  padding: 0.52rem 0.85rem 0.52rem 0.58rem;
  overflow: hidden;
  color: #f3eee3;
  text-decoration: none;
  border: 1px solid rgba(243, 238, 227, 0.2);
  border-radius: 0.65rem;
  background:
    radial-gradient(
      circle at 12% 0%,
      rgba(255, 255, 255, 0.16),
      transparent 42%
    ),
    linear-gradient(135deg, #34656d 0%, #27454a 100%);
  box-shadow:
    0 1.15rem 2.75rem rgba(24, 33, 54, 0.25),
    0 0.25rem 0.75rem rgba(39, 38, 38, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  isolation: isolate;
  transform: translateY(0);
  visibility: visible;
  transition:
    transform 220ms ease,
    opacity 220ms ease,
    visibility 0s linear 0s,
    box-shadow 220ms ease,
    border-color 220ms ease;
  animation: bw-floating-booking-in 620ms cubic-bezier(0.22, 1, 0.36, 1)
    500ms both;
}

.bw-floating-booking::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    115deg,
    transparent 18%,
    rgba(255, 255, 255, 0.1) 48%,
    transparent 72%
  );
  transform: translateX(-115%);
  transition: transform 650ms ease;
}

.bw-floating-booking:hover,
.bw-floating-booking:focus-visible {
  color: #fff;
  border-color: rgba(243, 238, 227, 0.38);
  box-shadow:
    0 1.35rem 3.2rem rgba(24, 33, 54, 0.32),
    0 0.35rem 0.9rem rgba(39, 38, 38, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.bw-floating-booking:hover::before,
.bw-floating-booking:focus-visible::before {
  transform: translateX(115%);
}

.bw-floating-booking:focus-visible {
  outline: 3px solid rgba(243, 238, 227, 0.96);
  outline-offset: 4px;
}

.bw-floating-booking.is-context-hidden {
  opacity: 0;
  transform: translateY(calc(100% + 2rem));
  visibility: hidden;
  pointer-events: none;
  transition-delay: 0s, 0s, 220ms, 0s, 0s;
}

.bw-floating-booking__icon {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid rgba(243, 238, 227, 0.2);
  border-radius: 50%;
  background: rgba(243, 238, 227, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.bw-floating-booking__icon svg {
  width: 1.05rem;
  height: 1.05rem;
}

.bw-floating-booking__copy {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  min-width: 0;
  line-height: 1;
}

.bw-floating-booking__eyebrow {
  color: rgba(243, 238, 227, 0.76);
  font-family: "Roboto", sans-serif;
  font-size: 0.55rem;
  font-weight: 200;
  letter-spacing: 0.06em;
  line-height: 1.2;
}

.bw-floating-booking__label {
  color: inherit;
  font-family: "PPPaloma", serif;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
}

@keyframes bw-floating-booking-in {
  from {
    opacity: 0;
    transform: translateY(1.25rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .bw-floating-booking {
    right: max(0.75rem, env(safe-area-inset-right));
    bottom: max(0.75rem, env(safe-area-inset-bottom));
    grid-template-columns: 2.2rem minmax(0, 1fr);
    gap: 0.5rem;
    min-width: 11.9rem;
    min-height: 3.25rem;
    padding: 0.46rem 0.72rem 0.46rem 0.5rem;
    border-radius: 0.58rem;
  }

  .bw-floating-booking__icon {
    width: 2.2rem;
    height: 2.2rem;
  }

  .bw-floating-booking__label {
    font-size: 0.84rem;
  }

  .bw-floating-booking__eyebrow {
    font-size: 0.51rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bw-floating-booking {
    animation: none;
    transition: none;
  }

  .bw-floating-booking::before {
    transition: none;
  }
}

/* Consolidated article base; loaded only by the final article bundle. */

* {
  box-sizing: border-box;
}

body {
  background-color: #e8e4e0;
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  overflow-x: hidden;
}

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

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

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

.header-desktop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  padding: 1.4rem 3.8rem;
  transition:
    background 0.3s ease-in-out,
    top 0.3s ease-in-out,
    box-shadow 0.3s ease-in-out;

  --header-link-color: #e8e4e0;
  --header-link-color-scrolled: #e8e4e0;
  --header-chevron-filter: brightness(0) saturate(100%) invert(94%) sepia(17%)
    saturate(422%) hue-rotate(303deg) brightness(106%) contrast(101%);
  --header-chevron-filter-scrolled: brightness(0) saturate(100%) invert(94%)
    sepia(17%) saturate(422%) hue-rotate(303deg) brightness(106%) contrast(101%);
  --header-scrolled-bg: linear-gradient(
    0deg,
    rgba(29, 29, 29, 0) 0%,
    rgba(29, 29, 29, 0.8) 100%
  );
  --header-scrolled-shadow: none;

  --header-open-bg: #f3eee3;
  --header-open-shadow: 0 1px 0 rgba(44, 42, 42, 0.05);
  --header-open-link-color: #272626;
  --header-open-chevron-filter: invert(1);

  --mega-bg: #f3eee3;
}

.header-desktop--dark-scrolled {
  --header-link-color-scrolled: #272626;
  --header-chevron-filter-scrolled: none;
  --header-scrolled-bg: rgba(243, 238, 227, 0.96);
  --header-scrolled-shadow: 0 1px 0 rgba(44, 42, 42, 0.05);
}

header.scrolled {
  background: var(--header-scrolled-bg);
  box-shadow: var(--header-scrolled-shadow);
  margin-top: 0;
}

.header-desktop--mega-open,
.header-desktop--mega-open.scrolled {
  background: var(--header-open-bg);
  box-shadow: var(--header-open-shadow);
}

.header-desktop__nav {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-desktop__brand,
.header-desktop__center,
.header-desktop__right {
  display: flex;
  align-items: center;
}

.header-desktop__brand {
  justify-content: flex-start;
  min-width: 120px;
}

.header-desktop__center {
  justify-content: center;
  flex: 1;
  margin-top: 1.5rem;
  gap: clamp(0.95rem, 1.35vw, 1.45rem);
}

.header-desktop__right {
  justify-content: flex-end;
  min-width: 120px;
  margin-top: 1.5rem;
  gap: 1rem;
}

.header-desktop__brand a {
  display: inline-flex;
  align-items: center;
}

.header-desktop__logo {
  width: 100px;
  height: auto;
  display: block;
  transition: width 0.3s ease-in-out;
}

header.scrolled .header-desktop__logo {
  width: 85px;
}

.header-desktop__item {
  position: relative;
}

.header-desktop__trigger {
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font: inherit;
}

.header-desktop__link-text,
.nav-link {
  color: var(--header-link-color);
  text-decoration: none;
  font-size: 1.2rem;
  line-height: 1.1;
  font-weight: 200;
  font-family: "Roboto", sans-serif;
  transition: color 0.3s ease-in-out;
}

.nav-link.current-page,
.header-desktop__trigger.current-page {
  position: relative;
  color: var(--header-link-color, #e8e4e0);
  font-weight: 300;
  text-decoration: none;
}

.nav-link.current-page::before,
.header-desktop__trigger.current-page::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -0.72rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  transform: translateY(-50%);
}

.header-desktop__trigger.current-page .header-desktop__link-text {
  color: inherit;
  font-weight: inherit;
}

.header-desktop.header-desktop--mega-open .nav-link.current-page,
.header-desktop.header-desktop--mega-open .header-desktop__trigger.current-page {
  color: var(--bw-accent, #34656d);
}

header.scrolled .header-desktop__link-text,
header.scrolled .nav-link {
  color: var(--header-link-color-scrolled);
}

header.scrolled .nav-link.current-page,
header.scrolled .header-desktop__trigger.current-page {
  color: var(--header-link-color-scrolled, #e8e4e0);
}

.header-desktop.header-desktop--mega-open .header-desktop__link-text,
.header-desktop.header-desktop--mega-open .nav-link {
  color: var(--header-open-link-color);
}
.header-desktop.header-desktop--mega-open .nav-link.current-page,
.header-desktop.header-desktop--mega-open .header-desktop__trigger.current-page {
  color: var(--bw-accent, #34656d);
}

.header-desktop__chevron,
.header-desktop__lang-chevron {
  display: block;
  object-fit: contain;
  filter: var(--header-chevron-filter);
  transition:
    transform 0.35s ease,
    filter 0.3s ease-in-out,
    opacity 0.3s ease-in-out;
}

header.scrolled .header-desktop__chevron,
header.scrolled .header-desktop__lang-chevron {
  filter: var(--header-chevron-filter-scrolled);
}

.header-desktop.header-desktop--mega-open .header-desktop__chevron,
.header-desktop.header-desktop--mega-open .header-desktop__lang-chevron {
  filter: var(--header-open-chevron-filter);
}

.header-desktop__item.is-active .header-desktop__chevron {
  transform: rotate(180deg);
}

.lang-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.8rem 1.2rem;
  background-color: #34656d;
  color: #e8e4e0;
  text-decoration: none;
  font-weight: 200;
  font-family: "Roboto", sans-serif;
  border-radius: 4px;
}

.header-desktop__mega {
  position: fixed;
  inset: 0;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.header-desktop__mega-panel {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  background: var(--mega-bg);
  border-top: 1px solid rgba(44, 42, 42, 0.05);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.08);
  clip-path: inset(0 0 100% 0);
  overflow: hidden;
  z-index: 2;
  will-change: clip-path;
}

.header-desktop__mega-inner {
  max-width: 1520px;
  margin: 0 auto;
  padding: 10.8rem 3.8rem 3.2rem 3.8rem;
}

.header-desktop__mega-layout {
  display: grid;
  grid-template-columns: minmax(420px, 760px) minmax(320px, 440px);
  justify-content: space-between;
  align-items: start;
  gap: 4.5rem;
}

.header-desktop__mega-main,
.header-desktop__mega-card-body {
  display: flex;
  flex-direction: column;
}

.header-desktop__mega-linkline {
  overflow: hidden;
  width: fit-content;
  margin-bottom: 0.14rem;
  padding-top: 0.12em;
  padding-bottom: 0.2em;
}

.header-desktop__mega-service {
  display: inline-block;
  text-decoration: none;
  color: #2c2a2a;
  font-family: "PPFrama", sans-serif;
  font-weight: 500;
  font-size: clamp(1.55rem, 1.75vw, 2.35rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
  transition: color 0.28s ease;
}

.header-desktop__mega-service:hover,
.header-desktop__mega-service:focus-visible {
  color: #34656d;
}

.header-desktop__mega-service span {
  display: inline-block;
  will-change: transform, opacity;
}

.header-desktop__mega-card {
  display: block;
  text-decoration: none;
  color: inherit;
  max-width: 440px;
}

.header-desktop__mega-card-image-wrap {
  overflow: hidden;
  border-radius: 1.6rem;
  margin-bottom: 1.3rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

.header-desktop__mega-card-image {
  width: 100%;
  aspect-ratio: 1.42 / 1;
}

.header-desktop__mega-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.45s ease;
}

.header-desktop__mega-card:hover .header-desktop__mega-card-image img {
  transform: scale(1.04);
}

.header-desktop__mega-card-title {
  margin: 0 0 0.7rem 0;
  font-family: "PPFrama", sans-serif;
  font-weight: 500;
  font-size: 2.6rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #2c2a2a;
}

.header-desktop__mega-card-text {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 1.08rem;
  line-height: 1.58;
  color: #5f5955;
  max-width: 28rem;
}

.header-desktop__mega-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  margin: 0;
  background: rgba(20, 18, 17, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  cursor: default;
}

.header-desktop__mega.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media (max-width: 1280px) {
  .header-desktop__mega-layout {
    grid-template-columns: minmax(360px, 1fr) minmax(300px, 380px);
    gap: 3rem;
  }

  .header-desktop__mega-service {
    font-size: clamp(1.5rem, 1.7vw, 2.1rem);
  }

  .header-desktop__mega-card-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 1100px) {
  .header-desktop__mega-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .header-desktop__mega-card {
    max-width: 560px;
  }
}

.mobile-header {
  display: none;
  width: 100%;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  padding: 15px;
  background: linear-gradient(
    0deg,
    rgba(29, 29, 29, 0) 0%,
    rgba(29, 29, 29, 0.8) 100%
  );
}

.logo-mobile {
  width: 70px;
  height: auto;
}

.mobile-header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.nav-menu {
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
}

.line-menu,
.line-small {
  background-color: #e8e4e0;
  height: 1px;
  margin-bottom: 5px;
}

.line-menu {
  width: 25px;
}

.line-small {
  width: 20px;
  float: right;
}

.menu-mobile {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: none;
  height: 100vh;
  height: 100dvh;
  padding: 1.4rem;
  background: #e8e4e0;
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  pointer-events: none;
}

.menu-mobile-inner {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
}

.menu-closing {
  position: absolute;
  top: 1.8rem;
  right: 1.4rem;
}

.menu-close {
  position: relative;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.menu-links {
  display: flex;
  flex-direction: column;
  padding: 30% 2rem 2rem;
}

.menu-links a,
.menu-mobile-services__trigger {
  padding: 0.6rem 0;
  color: #272626;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 200;
  text-align: left;
  text-decoration: none;
}

.menu-links a.current-page,
.menu-mobile-services__trigger.current-page {
  position: relative;
  color: var(--bw-accent, #34656d);
  font-weight: 300;
}

.menu-links a.current-page::before,
.menu-mobile-services__trigger.current-page::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -0.9rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bw-accent, #34656d);
  transform: translateY(-50%);
}


.menu-mobile-services {
  display: flex;
  flex-direction: column;
}

.menu-mobile-services__trigger {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 4px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-mobile-services__icon {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.menu-mobile-services.is-open .menu-mobile-services__icon {
  transform: rotate(90deg);
}

.menu-mobile-services__panel {
  display: grid;
  overflow: hidden;
  grid-template-rows: 0fr;
  opacity: 0;
}

.menu-mobile-services__panel-inner {
  min-height: 0;
}

.menu-mobile-services__panel a {
  display: block;
  padding: 0.4rem 0 0.4rem 1.25rem;
  font-size: 1.3rem;
  line-height: 1.45;
}

.menu-mobile-bottom {
  padding-bottom: 1rem;
}

.menu-divider {
  display: block;
  width: calc(100% - 4rem);
  height: 2px;
  margin: 2rem 2rem 0 auto;
}

.menu-divider line {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}

.language-switch {
  display: flex;
  margin-top: 1rem;
  color: #272626;
  font-size: 1.5rem;
  font-weight: 200;
  line-height: 2rem;
}

.language-switch a {
  text-decoration: none;
  color: #272626;
  margin: 0 0.5rem;
  font-weight: 200;
  font-size: 1.2rem;
}

main {
  position: relative;
  height: 75vh;
  min-height: 0;
  overflow: hidden;
  color: #e8e4e0;
}

.hero-img {
  width: 100%;
  height: 100%;
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(76%);
}

.img-pos-top {
  object-position: center 25% !important;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255, 242, 224, 0.02) 18%,
    rgba(39, 38, 38, 0.22) 52%,
    rgba(24, 33, 54, 0.72) 100%
  );
}

.hero-navigation {
  position: absolute;
  left: 6rem;
  top: 10rem;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.hero-navigation a {
  color: rgba(255, 242, 224, 0.75);
  font-size: 1rem;
  font-weight: 200;
  text-decoration: none;
}

.hero-navigation span {
  color: rgba(255, 242, 224, 0.55);
  font-weight: 200;
  font-size: 1rem;
}

.current-nav {
  color: #e8e4e0 !important;
}

.hero-navigation a:hover {
  color: #e8e4e0;
}

main .hero-text {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 6rem;
  transform: translateX(-50%);
  width: calc(100% - 16rem);
  max-width: 1280px;
  text-align: center;
  display: block;
  padding: 0;
  right: auto;
}

main .hero-text h1 {
  width: 100%;
  margin: 0;
  font-family: "PPPaloma", sans-serif;
  font-size: 3rem;
  line-height: 1.05;
  font-weight: 500;
  color: #e8e4e0;
}

.hero-line {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 242, 224, 0.25);
  margin: 2rem 0 1.4rem 0;
}

.article-info {
  display: flex;
  justify-content: center;
  align-items: center;
}

.info-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.article-info p,
.article-info span {
  margin: 0;
  font-weight: 200;
  font-size: 1rem;
  color: #e8e4e0;
}

.intro-section {
  padding: 6rem 8rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.intro-wrapper {
  width: 60%;
  margin: 0 auto;
}

.headline-kicker {
  font-weight: 200;
  margin-bottom: 0;
  color: #34656d;
}

.intro-section h2 {
  font-family: "PPPaloma", sans-serif;
  font-weight: 500;
  color: #272626;
  font-size: 2rem;
  line-height: 1.15;
  margin: 0.4rem 0 1rem 0;
}

.intro-section p {
  color: #272626;
  font-size: 1.2rem;
  font-weight: 200;
  line-height: 1.45;
  margin: 0;
}

.cta-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cta-wrapper-pos {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.main-cta {
  background-color: #34656d;
  padding: 0.8rem 1.2rem;
  color: #e8e4e0;
  text-decoration: none;
  font-weight: 200;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  border-radius: 4px;
  transition: all 0.2s ease-in-out;
}

.main-cta:hover {
  transform: translateY(-2px);
  background-color: #27454a;
  color: #e8e4e0;
}

.main-cta img {
  margin-top: 2px;
  width: 12px;
  height: auto;
}

.secondary-cta {
  border-radius: 4px;
  padding: 0.8rem 1.2rem;
  color: #272626;
  text-decoration: none;
  font-weight: 200;
  cursor: pointer;
  border: 1px solid #272626;
  transition: all 0.2s ease-in-out;
}

.secondary-cta:hover {
  transform: translateY(-2px);
  opacity: 0.8;
}

.section-intro {
  margin-bottom: 1.5rem;
}

.section-intro h2 {
  font-family: "PPPaloma", sans-serif;
  font-weight: 500;
  color: #272626;
  font-size: 2rem;
  line-height: 1.15;
  margin: 0.4rem 0 0 0;
}

.category-section {
  padding: 2rem 8rem 6rem 8rem;
}

.category-wrapper {
  display: flex;
  border: 1px solid rgba(39, 38, 38, 0.45);
  border-radius: 4px;
  overflow: hidden;
}

.category-item {
  width: 33.33%;
  padding: 2rem;
  border-right: 1px solid rgba(39, 38, 38, 0.45);
  color: #272626;
  display: flex;
  flex-direction: column;
}

.category-item:last-child {
  border-right: none;
}

.category-item h3 {
  font-family: "PPPaloma", sans-serif;
  font-weight: 500;
  font-size: 1.7rem;
  line-height: 1.1;
  color: #272626;
  margin: 0 0 1rem 0;
}

.category-item p {
  margin: 0 0 1rem 0;
  color: #272626;
  font-weight: 200;
  font-size: 1.05rem;
  line-height: 1.38;
  max-width: 96%;
}

.category-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.6rem 0;
}

.category-item > .category-list:last-child {
  margin-bottom: 0;
}

.category-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.35rem;
  margin-bottom: 0.45rem;
  color: #272626;
  font-weight: 200;
  font-size: 1.05rem;
  line-height: 1.35;
}

.category-list li img {
  width: 8px;
  height: 8px;
  display: block;
  flex-shrink: 0;
  margin-top: 0.45rem;
}

.category-btn {
  display: inline-block;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(39, 38, 38, 0.45);
  border-radius: 4px;
  text-decoration: none;
  color: #272626;
  font-weight: 200;
  font-size: 1rem;
  box-shadow: 0 2px 6px rgba(39, 38, 38, 0.12);
  margin-top: auto;
  align-self: flex-start;
}

.bg-section {
  background-color: #182136;
  padding: 6rem 8rem;
}

.approach-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
}

.approach-wrapper--text-only {
  justify-content: center;
}

.approach-wrapper--text-only .bg-text {
  width: 100%;
  max-width: 960px;
}

.bg-text,
.bg-img {
  width: 50%;
  color: #e8e4e0;
}

.bg-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.headline-kicker-bg {
  font-weight: 200;
  margin-bottom: 0;
  color: #e8e4e0;
}

.bg-text h2 {
  font-family: "PPPaloma", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.15;
  color: #e8e4e0;
  margin: 0.4rem 0 1rem 0;
}

.bg-text p {
  color: #e8e4e0;
  font-weight: 200;
  font-size: 1.2rem;
  line-height: 1.45;
  margin: 0 0 1rem 0;
}

.main-cta-bg {
  background-color: #34656d;
  padding: 0.8rem 1.2rem;
  color: #e8e4e0;
  text-decoration: none;
  font-weight: 200;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 4px;
}

.main-cta-bg img {
  margin-top: 2px;
  width: 12px;
  height: auto;
}

.services-outer {
  color: #e8e4e0;
  margin-top: 6rem;
}

.services-outer h2 {
  font-family: "PPPaloma", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.15;
  color: #e8e4e0;
  margin: 0.4rem 0 1rem 0;
}

.services-wrapper {
  display: flex;
  border: 1px solid #e8e4e0;
  border-radius: 4px;
  overflow: hidden;
}

.service-item {
  width: 33.33%;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #e8e4e0;
  color: #e8e4e0;
}

.service-item:last-child {
  border-right: none;
}

.service-image {
  display: block;
  padding: 0.7rem 0.7rem 0 0.7rem;
  text-decoration: none;
}

.service-image img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

.service-content {
  padding: 0.8rem 1rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-content h3 {
  margin: 0 0 0.45rem 0;
  font-family: "PPPaloma", sans-serif;
  font-weight: 500;
  font-size: 1.7rem;
  line-height: 1.05;
  color: #e8e4e0;
}

.service-content p {
  margin: 0 0 1rem 0;
  font-weight: 200;
  font-size: 1.05rem;
  line-height: 1.35;
  color: #e8e4e0;
}

.service-content > p:last-child {
  margin-bottom: 0;
}

.service-btn {
  display: inline-block;
  margin-top: auto;
  align-self: flex-start;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255, 242, 224, 0.7);
  border-radius: 4px;
  color: #e8e4e0;
  text-decoration: none;
  font-weight: 200;
  font-size: 1rem;
}

.service-btn:hover {
  background-color: #e8e4e0;
  color: #182136;
}

.process-section {
  padding: 6rem 8rem;
}

.process-intro {
  width: 56%;
  margin: 0 auto 2rem auto;
  text-align: center;
}

.process-intro h2 {
  font-family: "PPPaloma", sans-serif;
  font-weight: 500;
  color: #272626;
  font-size: 2rem;
  line-height: 1.15;
  margin: 0.4rem 0 1rem 0;
}

.process-intro p {
  color: #272626;
  font-size: 1.2rem;
  font-weight: 200;
  line-height: 1.45;
  margin: 0;
}

.process-wrapper {
  display: flex;
  border: 1px solid rgba(39, 38, 38, 0.45);
  border-radius: 4px;
  overflow: hidden;
}

.process-item {
  width: 25%;
  padding: 2rem;
  border-right: 1px solid rgba(39, 38, 38, 0.45);
}

.process-item:last-child {
  border-right: none;
}

.process-number {
  margin: 0 0 0.8rem 0;
  color: #34656d;
  font-size: 0.95rem;
  font-weight: 200;
}

.process-item h3 {
  margin: 0 0 0.8rem 0;
  font-family: "PPPaloma", sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.1;
  color: #272626;
}

.process-item p {
  margin: 0;
  color: #272626;
  font-weight: 200;
  font-size: 1.05rem;
  line-height: 1.4;
}

.fit-section {
  padding: 0 8rem 6rem 8rem;
}

.fit-wrapper {
  display: flex;
  align-items: stretch;
  gap: 2rem;
}

.fit-text,
.fit-card {
  width: 50%;
}

.fit-text h2 {
  font-family: "PPPaloma", sans-serif;
  font-weight: 500;
  color: #272626;
  font-size: 2rem;
  line-height: 1.15;
  margin: 0.4rem 0 1rem 0;
}

.fit-text p {
  color: #272626;
  font-size: 1.2rem;
  font-weight: 200;
  line-height: 1.45;
  margin: 0 0 1rem 0;
}

.fit-card {
  border: 1px solid rgba(39, 38, 38, 0.45);
  border-radius: 4px;
  padding: 2rem;
}

.fit-card h3 {
  margin: 0 0 1rem 0;
  font-family: "PPPaloma", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  color: #272626;
}

.fit-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem 0;
}

.fit-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
  color: #272626;
  font-weight: 200;
  font-size: 1.08rem;
  line-height: 1.4;
}

.fit-list li img {
  width: 10px;
  height: 10px;
  margin-top: 0.35rem;
  flex-shrink: 0;
}

.fit-list a {
  color: inherit;
  text-decoration-color: rgba(39, 38, 38, 0.38);
  text-underline-offset: 0.2em;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.fit-list a:hover,
.fit-list a:focus-visible {
  color: #34656d;
  text-decoration-color: currentColor;
}

.fit-note {
  margin: 0;
  color: #272626;
  font-weight: 200;
  font-size: 1rem;
  line-height: 1.4;
}

.final-cta-section {
  padding-top: 0;
  padding-bottom: 8rem;
}

@media (max-width: 1200px) {
  .intro-wrapper,
  .process-intro {
    width: 74%;
  }

  .approach-wrapper,
  .fit-wrapper,
  .category-wrapper,
  .services-wrapper {
    flex-direction: column;
  }

  .bg-text,
  .bg-img,
  .fit-text,
  .fit-card,
  .category-item,
  .service-item {
    width: 100%;
  }

  .category-item,
  .service-item {
    border-right: none;
    border-bottom: 1px solid rgba(39, 38, 38, 0.45);
  }

  .service-item {
    border-bottom-color: rgba(255, 242, 224, 0.7);
  }

  .category-item:last-child,
  .service-item:last-child {
    border-bottom: none;
  }

  .process-wrapper {
    flex-wrap: wrap;
  }

  .process-item {
    width: 50%;
    border-bottom: 1px solid rgba(39, 38, 38, 0.45);
  }

  .process-item:nth-child(2n) {
    border-right: none;
  }

  .process-item:nth-last-child(-n + 2) {
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  .intro-section,
  .category-section,
  .bg-section,
  .process-section,
  .fit-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .intro-wrapper,
  .process-intro {
    width: 100%;
  }

  .cta-wrapper,
  .cta-wrapper-pos {
    flex-direction: column;
    justify-content: flex-start;
  }

  .intro-section h2,
  .section-intro h2,
  .bg-text h2,
  .services-outer h2,
  .process-intro h2,
  .fit-text h2 {
    font-size: 1.7rem;
  }

  .category-item,
  .service-content,
  .fit-card,
  .process-item {
    padding: 1.5rem;
  }

  .process-item {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(39, 38, 38, 0.45);
  }

  .process-item:last-child {
    border-bottom: none;
  }

  .service-image img {
    height: 260px;
  }
}

footer {
  background-color: #272626;
  padding: 2rem 8rem 1rem 8rem;
}

.footer-logo {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  gap: 2rem;
  width: 30%;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-links img {
  width: 40px !important;
  cursor: pointer;
}

.footer-logo img {
  width: 140px;
}

.footer-layout {
  display: flex;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  width: 70%;
}

.footer-links div {
  display: flex;
  flex-direction: column;
}

.footer-links h4 {
  color: #e8e4e0;
  font-weight: 500;
  font-size: 1.1rem;
  font-family: "PPPaloma", sans-serif;
  margin-bottom: 1rem;
}

.footer-links a {
  text-decoration: none;
  color: #e8e4e0;
  font-size: 1rem;
  font-weight: 200;
  line-height: 1.4rem;
}

.line-footer {
  background-color: #e8e4e080;
  width: 100%;
  height: 0.5px;
  margin: 4rem 0 1rem 0;
}

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

.footer-bottom p {
  color: #e8e4e0;
  font-weight: 200;
  font-size: 0.9rem;
  margin: 0;
}

.footer-bottom a {
  color: #e8e4e0;
  text-decoration: none;
}

@media (max-width: 768px) {
  .header-desktop {
    display: none;
  }
  .mobile-header {
    display: flex;
  }
  .hero-navigation {
    display: none;
  }
  main .hero-text {
    max-width: none;
    left: 1rem;
    right: 1rem;
    width: auto;
    transform: translateX(0);
    text-align: start;
  }
  main .hero-text h1 {
    width: 100%;
    font-size: 1.8rem;
    line-height: 2rem;
  }
  .hero-line {
    width: calc(100% - 2rem);
  }

  .info-wrapper {
    justify-content: flex-start;
  }
  .intro-section {
    padding: 6rem 1rem 4rem 1rem;
    text-align: start;
  }

  .cta-wrapper,
  .cta-wrapper-pos {
    justify-content: flex-start;
  }
  .intro-wrapper {
    width: 100%;
  }
  .intro-section h2 {
    font-size: 1.6rem;
  }
  .category-section {
    padding: 2rem 1rem 6rem 1rem;
  }
  .category-wrapper {
    flex-direction: column;
  }
  .category-item {
    width: 100%;
    border-right: none;
  }
  .category-item:nth-child(1) {
    border-bottom: 1px solid rgba(39, 38, 38, 0.45);
  }
  .category-item:nth-child(2) {
    border-bottom: 1px solid rgba(39, 38, 38, 0.45);
  }
  .bg-section {
    padding: 6rem 1rem;
  }
  .pees-info-wrapper {
    flex-direction: column;
  }
  .bg-text,
  .bg-img {
    width: 100%;
  }
  .bg-text h2 {
    font-size: 1.7rem;
  }
  .services-wrapper {
    flex-direction: column;
    gap: 2rem;
  }
  .services-outer h2 {
    font-size: 1.7rem;
  }
  .service-item {
    width: 100%;
    border-right: none;
  }
  .service-item:nth-child(1) {
    border-bottom: 1px solid #e8e4e0;
  }
  .service-item:nth-child(2) {
    border-bottom: 1px solid #e8e4e0;
  }
  .service-content h3 {
    font-size: 1.5rem;
  }
  .service-content p {
    font-size: 1.2rem;
  }
  .faq-section {
    padding: 6rem 1rem 4rem 1rem;
  }
  .faq-icon {
    display: none;
  }
  .faq-text h2 {
    font-size: 1.7rem;
  }
  .blog-section {
    padding: 6rem 1rem;
  }
  .blog-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .blog-item {
    width: 100%;
    border-right: none;
  }
  .blog-item:nth-child(1) {
    border-bottom: 1px solid rgba(39, 38, 38, 0.45);
  }
  .blog-item:nth-child(2) {
    border-bottom: 1px solid rgba(39, 38, 38, 0.45);
  }
  .blog-content h3 {
    font-size: 1.5rem;
  }
  footer {
    padding: 2rem 1rem 1rem 1rem;
  }
  .footer-layout {
    flex-direction: column;
  }
  .footer-links {
    flex-direction: column;
  }
  .footer-bottom {
    flex-direction: column;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .header-desktop {
    display: none;
  }
  .mobile-header {
    display: flex;
  }
  .solo-img {
    --hero-img-side-padding: 3rem;
  }
  .menu-links a {
    font-size: 1.9rem;
    line-height: 2rem;
    padding: 0.8rem 0;
  }
.menu-links a.current-page,
.menu-mobile-services__trigger.current-page {
  color: var(--bw-accent, #34656d);
  font-weight: 300;
}

  .menu-mobile-services__trigger {
    font-size: 1.9rem;
    line-height: 2rem;
    padding: 0.8rem 0;
  }
  .hero-text {
    left: 1rem;
    right: 1rem;
    padding: 12rem 3rem 2rem 3rem;
    flex-direction: column;
  }
  .hero-title {
    width: 100%;
  }
  .hero-intro {
    width: 100%;
    padding-top: 0;
  }
  .hero-intro .secondary-cta {
    display: none;
  }
  h1 {
    width: 100%;
    font-size: 2.4rem;
  }
  .hero-intro p {
    margin-top: 0;
  }
  .intro-section {
    padding: 6rem 3rem;
  }
  .intro-wrapper {
    width: 100%;
  }
  .intro-section h2 {
    font-size: 2rem;
  }
  .category-section {
    padding: 2rem 3rem 6rem 3rem;
  }
  .category-wrapper {
    flex-direction: column;
  }
  .category-item {
    width: 100%;
    border-right: none;
  }
  .category-item:nth-child(1) {
    border-bottom: 1px solid rgba(39, 38, 38, 0.45);
  }
  .category-item:nth-child(2) {
    border-bottom: 1px solid rgba(39, 38, 38, 0.45);
  }
  .bg-section {
    padding: 6rem 3rem;
  }
  .pees-info-wrapper {
    flex-direction: column;
  }
  .bg-text,
  .bg-img {
    width: 100%;
  }
  .bg-text h2 {
    font-size: 2rem;
  }
  .services-wrapper {
    flex-direction: column;
    gap: 2rem;
  }
  .services-outer h2 {
    font-size: 2rem;
  }
  .service-item {
    width: 100%;
    border-right: none;
  }
  .service-item:nth-child(1) {
    border-bottom: 1px solid #e8e4e0;
  }
  .service-item:nth-child(2) {
    border-bottom: 1px solid #e8e4e0;
  }
  .service-content h3 {
    font-size: 1.7rem;
  }
  .service-content p {
    font-size: 1.2rem;
  }
  .faq-section {
    padding: 6rem 3rem 4rem 3rem;
  }
  .faq-icon {
    display: none;
  }
  .faq-text h2 {
    font-size: 2rem;
  }
  .blog-section {
    padding: 6rem 3rem;
  }
  .blog-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .blog-item {
    width: 100%;
    border-right: none;
  }
  .blog-content {
    gap: 1rem;
  }
  .blog-item:nth-child(1) {
    border-bottom: 1px solid rgba(39, 38, 38, 0.45);
  }
  .blog-item:nth-child(2) {
    border-bottom: 1px solid rgba(39, 38, 38, 0.45);
  }
  .blog-content h3 {
    font-size: 1.7rem;
    min-height: inherit;
  }
  .blog-content p {
    min-height: inherit;
  }
  footer {
    padding: 2rem 3rem 1rem 3rem;
  }
  .footer-layout {
    flex-direction: column;
  }
  .footer-links {
    flex-direction: column;
  }
  .footer-bottom {
    flex-direction: column;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1200px) and (orientation: landscape) {
  .header-desktop {
    padding: 1.8rem 2.5%;
  }
  .hero-text {
    bottom: 10%;
    left: 5%;
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1520px) {
  main {
    height: 75vh;
  }

  main .hero-text h1 {
    font-size: 2.6rem;
  }

  .hero-intro {
    align-self: flex-end;
    padding-top: 0;
  }
  .intro-section {
    padding: 6rem;
  }
  .category-section {
    padding: 2rem 6rem 6rem 6rem;
  }
  .bg-section {
    padding: 6rem;
  }
  .faq-section {
    padding: 6rem;
  }
  .blog-section {
    padding: 6rem;
  }
  .process-section {
    padding: 6rem;
  }
  .fit-section {
    padding: 0 6rem 6rem 6rem;
  }
  footer {
    background-color: #272626;
    padding: 2rem 6rem 1rem 6rem;
  }
}

/* Responsive refinements */
main .hero-text,
.article-info,
.intro-wrapper,
.category-wrapper > *,
.footer-layout > *,
.footer-links > * {
  min-width: 0;
}

main .hero-text {
  max-width: 1280px;
}

main .hero-text h1 {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 3rem;
  line-height: 1.08;
  overflow-wrap: normal;
  text-wrap: balance;
}

@media (min-width: 1025px) and (max-width: 1520px) {
  main .hero-text h1 {
    font-size: 2.7rem;
  }
}

.main-cta,
.secondary-cta {
  max-width: 100%;
  white-space: normal;
  text-align: center;
}

@media (max-width: 768px) {
  main {
    height: 75vh;
    min-height: 0;
  }

  main .hero-text {
    right: 1rem;
    left: 1rem;
    bottom: 3rem;
    width: auto;
    max-width: none;
    padding: 0;
    transform: none;
    text-align: center;
  }

  main .hero-text h1 {
    max-width: 42rem;
    font-size: 1.9rem;
    line-height: 1.08;
  }

  .hero-line {
    width: 100%;
  }

  .info-wrapper {
    justify-content: center;
  }
}

@media (max-width: 420px) {
  main {
    height: 75vh;
  }

  main .hero-text {
    bottom: 2rem;
  }

  main .hero-text h1 {
    font-size: 1.75rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  main {
    height: 75vh;
    min-height: 0;
  }

  main .hero-text {
    right: auto;
    bottom: 3.5rem;
    left: 50%;
    width: calc(100% - 6rem);
    max-width: 760px;
    padding: 0;
    transform: translateX(-50%);
    text-align: center;
  }

  main .hero-text h1 {
    max-width: 720px;
    margin-right: auto;
    margin-left: auto;
    font-size: 2.25rem;
  }

  .info-wrapper {
    justify-content: center;
  }
}

/* Medical editorial article system */
:root {
  --article-ink: #242625;
  --article-muted: #706f69;
  --article-paper: #f3eee3;
  --article-rule: rgba(36, 38, 37, 0.22);
  --article-accent: #6f9a9c;
  --article-hero: #1b3034;
  --article-hero-ink: #f3eee3;
  --article-gutter: 7.5rem;
  --article-h1-size: 2.85rem;
  --article-h2-size: 2rem;
  --article-h3-size: 1.5rem;
}

body {
  background-color: var(--article-paper);
}

.header-desktop {
  padding-right: var(--article-gutter);
  padding-left: var(--article-gutter);
}

.header-desktop__mega-inner {
  padding-right: var(--article-gutter);
  padding-left: var(--article-gutter);
}

main {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(420px, 0.82fr);
  grid-template-rows: auto minmax(0, 1fr);
  column-gap: 4rem;
  width: 100%;
  height: auto;
  min-height: 780px;
  padding: 9.5rem var(--article-gutter) 3.5rem;
  overflow: hidden;
  color: var(--article-hero-ink);
  background: var(--article-hero);
}

main::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 8.45rem;
  right: var(--article-gutter);
  left: var(--article-gutter);
  height: 1px;
  background: rgba(243, 238, 227, 0.16);
  pointer-events: none;
}

main .hero-gradient {
  display: none;
}

main .hero-img {
  position: relative;
  z-index: 1;
  grid-column: 2;
  grid-row: 1 / 3;
  width: 100%;
  height: 100%;
  min-height: 560px;
  overflow: hidden;
  background: #243a3e;
  outline: 1px solid rgba(243, 238, 227, 0.2);
  outline-offset: -1px;
}

main .hero-img::before {
  content: "BODYWISE HEIDELBERG";
  position: absolute;
  z-index: 3;
  right: 1.35rem;
  bottom: 1.2rem;
  color: rgba(243, 238, 227, 0.78);
  font-size: 0.68rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.13em;
}

main .hero-img::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 28, 31, 0.28), transparent 28%),
    linear-gradient(0deg, rgba(14, 28, 31, 0.34), transparent 32%);
  pointer-events: none;
}

main .hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: none;
  transform: scale(1.01);
}

main .hero-img img.img-pos-top {
  object-position: 50% 52% !important;
}

main .hero-img img[src*="aesthetische-medizin-bodywise-heidelberg"] {
  object-position: 43% 50%;
}

main .hero-img img[src*="gesundheitsvorsorge-heidelberg"] {
  object-position: 38% 58%;
}

main .hero-navigation {
  position: static;
  z-index: 3;
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
  padding: 1.25rem 0 0;
}

main .hero-navigation a,
main .hero-navigation span {
  color: rgba(243, 238, 227, 0.58);
  font-size: 0.78rem;
  font-weight: 200;
  line-height: 1.4;
}

main .hero-navigation .current-nav {
  color: rgba(243, 238, 227, 0.88) !important;
}

main .hero-navigation a:hover,
main .hero-navigation a:focus-visible {
  color: var(--article-hero-ink);
}

main .hero-text {
  position: static;
  z-index: 3;
  grid-column: 1;
  grid-row: 2;
  align-self: end;
  display: block;
  width: 100%;
  max-width: 1000px;
  padding: 4.5rem 0 0.5rem;
  transform: none;
  text-align: left;
}

main .hero-text::before {
  content: "BODYWISE · MEDIZINISCHE EINORDNUNG";
  display: block;
  margin: 0 0 1.4rem;
  color: #9fc0bd;
  font-size: 0.76rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.14em;
}

html[lang^="en"] main .hero-text::before {
  content: "BODYWISE · MEDICAL PERSPECTIVE";
}

main .hero-text h1 {
  width: 100%;
  max-width: 1000px;
  margin: 0;
  color: var(--article-hero-ink);
  font-family: "PPPaloma", sans-serif;
  font-size: var(--article-h1-size);
  font-weight: 500;
  line-height: 1.07;
  letter-spacing: -0.025em;
  overflow-wrap: break-word;
  hyphens: auto;
  text-wrap: balance;
}

main .hero-line {
  width: 84px;
  height: 2px;
  margin: 2.1rem 0 1.5rem;
  background: var(--article-accent);
}

main .article-info {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  min-width: 0;
}

main .info-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  min-width: 0;
  gap: 0.72rem;
  flex-wrap: wrap;
}

main .article-info p,
main .article-info span {
  max-width: 100%;
  margin: 0;
  color: rgba(243, 238, 227, 0.72);
  font-size: 0.86rem;
  font-weight: 200;
  line-height: 1.45;
  overflow-wrap: break-word;
}

main .article-info span {
  color: var(--article-accent);
}

.intro-section {
  display: block;
  padding: 7rem var(--article-gutter) 6rem;
  border-bottom: 1px solid var(--article-rule);
  text-align: left;
}

.intro-wrapper {
  display: grid;
  grid-template-columns: 220px minmax(0, 740px);
  column-gap: 5rem;
  justify-content: center;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
}

.intro-wrapper > .headline-kicker {
  grid-column: 1;
  grid-row: 1 / span 8;
  align-self: start;
  margin: 0.35rem 0 0;
}

.intro-wrapper > :not(.headline-kicker) {
  grid-column: 2;
}

.headline-kicker,
.section-intro .headline-kicker {
  color: #4d7b80;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.intro-section h2,
.section-intro h2,
.bg-text h2,
.services-outer h2,
.process-intro h2,
.fit-text h2 {
  font-size: var(--article-h2-size);
  line-height: 1.18;
  letter-spacing: -0.018em;
}

.intro-section h2 {
  max-width: 700px;
  margin: 0 0 1.7rem;
}

.intro-section p {
  max-width: 720px;
  margin: 0 0 1.15rem;
  color: var(--article-ink);
  font-size: 1.08rem;
  font-weight: 200;
  line-height: 1.68;
}

.intro-section p:first-of-type {
  color: #3d403e;
  font-size: 1.23rem;
  line-height: 1.62;
}

.intro-section .cta-wrapper-pos {
  justify-content: flex-start;
  margin-top: 1.4rem;
}

.category-section,
.process-section,
.fit-section {
  padding-right: var(--article-gutter);
  padding-left: var(--article-gutter);
}

.category-section {
  padding-top: 5rem;
  padding-bottom: 7rem;
}

.section-intro {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  column-gap: 5rem;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto 2.8rem;
}

.section-intro .headline-kicker {
  grid-column: 1;
  margin: 0.35rem 0 0;
}

.section-intro h2 {
  grid-column: 2;
  max-width: 760px;
  margin: 0;
}

.category-wrapper {
  display: flex;
  flex-direction: row;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  border: 0;
  border-top: 1px solid var(--article-rule);
  border-bottom: 1px solid var(--article-rule);
  border-radius: 0;
  overflow: visible;
  counter-reset: editorial-card;
}

.category-item {
  position: relative;
  width: 33.333%;
  padding: 2rem 2.3rem 2.5rem;
  border-right: 1px solid var(--article-rule);
  color: var(--article-ink);
  counter-increment: editorial-card;
}

.category-item::before {
  content: "0" counter(editorial-card);
  display: block;
  margin-bottom: 2.6rem;
  color: #4d7b80;
  font-size: 0.74rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
}

.category-item:last-child {
  border-right: 0;
}

.category-item h3 {
  margin: 0 0 1rem;
  font-size: 1.55rem;
  line-height: 1.16;
  letter-spacing: -0.015em;
}

.category-item p,
.category-list li {
  color: #444643;
  font-size: 1rem;
  line-height: 1.55;
}

.bg-section {
  padding: 7rem var(--article-gutter);
  background: #202e32;
}

.approach-wrapper,
.services-outer {
  width: 100%;
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
}

.approach-wrapper {
  flex-direction: row;
  gap: 5rem;
}

.bg-img {
  overflow: hidden;
}

.bg-img img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.headline-kicker-bg {
  color: #9fc0bd;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bg-text p,
.service-content p {
  font-size: 1.05rem;
  line-height: 1.62;
}

.services-wrapper {
  flex-direction: row;
  border-radius: 0;
}

.service-image img {
  height: 300px;
}

.process-section {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.process-intro,
.process-wrapper,
.fit-wrapper {
  width: 100%;
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
}

.process-intro {
  max-width: 780px;
  margin-bottom: 3rem;
}

.process-wrapper,
.fit-card {
  border-radius: 0;
}

.fit-section {
  padding-bottom: 7rem;
}

.category-item h3,
.service-content h3,
.process-item h3,
.fit-card h3 {
  font-size: var(--article-h3-size);
  line-height: 1.18;
  letter-spacing: -0.012em;
}

:is(
  .intro-section,
  .category-section,
  .bg-section,
  .process-section,
  .fit-section,
  .final-cta-section
) h2 {
  font-size: var(--article-h2-size);
  line-height: 1.18;
  letter-spacing: -0.018em;
}

:is(
  .intro-section,
  .category-section,
  .bg-section,
  .process-section,
  .fit-section,
  .final-cta-section
) h3:not(.headline-kicker, .headline-kicker-bg) {
  font-size: var(--article-h3-size);
  line-height: 1.18;
  letter-spacing: -0.012em;
}

@media (max-width: 1400px) {
  :root {
    --article-gutter: 4rem;
    --article-h1-size: 2.65rem;
  }

  main {
    grid-template-columns: minmax(0, 1.12fr) minmax(390px, 0.88fr);
    column-gap: 3.5rem;
    min-height: 720px;
  }

  main .hero-text h1 {
    font-size: var(--article-h1-size);
  }
}

@media (max-width: 1024px) {
  :root {
    --article-gutter: 2rem;
    --article-h1-size: 2.35rem;
    --article-h2-size: 2rem;
  }

  main {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto;
    row-gap: 0;
    min-height: 0;
    padding: 7rem var(--article-gutter) 3.5rem;
  }

  main::before,
  main .hero-navigation {
    display: none;
  }

  main .hero-img {
    grid-column: 1;
    grid-row: 1;
    height: 430px;
    min-height: 0;
  }

  main .hero-text {
    grid-column: 1;
    grid-row: 2;
    max-width: 760px;
    padding: 3rem 0 0;
  }

  main .hero-text h1 {
    max-width: 740px;
    font-size: var(--article-h1-size);
  }

  .intro-section,
  .category-section,
  .bg-section,
  .process-section,
  .fit-section {
    padding-right: var(--article-gutter);
    padding-left: var(--article-gutter);
  }

  .intro-wrapper,
  .section-intro {
    grid-template-columns: 1fr;
    row-gap: 1rem;
  }

  .intro-wrapper > .headline-kicker,
  .intro-wrapper > :not(.headline-kicker),
  .section-intro .headline-kicker,
  .section-intro h2 {
    grid-column: 1;
    grid-row: auto;
  }

  .category-wrapper,
  .services-wrapper,
  .approach-wrapper,
  .fit-wrapper {
    flex-direction: column;
  }

  .category-item,
  .service-item,
  .bg-text,
  .bg-img,
  .fit-text,
  .fit-card {
    width: 100%;
  }

  .category-item {
    border-right: 0;
    border-bottom: 1px solid var(--article-rule);
  }

  .category-item:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 768px) {
  :root {
    --article-gutter: 1.25rem;
    --article-h1-size: 1.85rem;
    --article-h2-size: 1.7rem;
    --article-h3-size: 1.35rem;
  }

  main {
    height: auto;
    min-height: 0;
    padding: 5.6rem var(--article-gutter) 2.8rem;
  }

  main .hero-img {
    height: 280px;
  }

  main .hero-img::before {
    display: none;
  }

  main .hero-text {
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    max-width: none;
    padding: 2.5rem 0 0;
    transform: none;
    text-align: left;
  }

  main .hero-text::before {
    margin-bottom: 1.05rem;
    font-size: 0.68rem;
    letter-spacing: 0.11em;
  }

  main .hero-text h1 {
    max-width: none;
    margin: 0;
    font-size: var(--article-h1-size);
    line-height: 1.1;
    overflow-wrap: break-word;
    hyphens: auto;
    text-wrap: wrap;
  }

  main .hero-line {
    width: 64px;
    margin: 1.6rem 0 1.2rem;
  }

  main .info-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
    gap: 0.38rem;
  }

  main .article-info p {
    position: relative;
    width: 100%;
    padding-left: 0.8rem;
    font-size: 0.8rem;
  }

  main .article-info p::before {
    content: "";
    position: absolute;
    top: 0.55em;
    left: 0;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--article-accent);
  }

  main .article-info span {
    display: none;
  }

  .intro-section,
  .category-section,
  .bg-section,
  .process-section,
  .fit-section {
    padding-right: var(--article-gutter);
    padding-left: var(--article-gutter);
  }

  .intro-section {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .intro-section h2,
  .section-intro h2,
  .bg-text h2,
  .services-outer h2,
  .process-intro h2,
  .fit-text h2 {
    font-size: var(--article-h2-size);
    line-height: 1.2;
  }

  .intro-section p,
  .intro-section p:first-of-type {
    font-size: 1.03rem;
    line-height: 1.62;
  }

  .category-section {
    padding-top: 4rem;
    padding-bottom: 5rem;
  }

  .section-intro {
    margin-bottom: 2rem;
  }

  .category-item {
    padding: 1.5rem 0 2rem;
  }

  .category-item::before {
    margin-bottom: 1.6rem;
  }

  .bg-section,
  .process-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .approach-wrapper {
    gap: 2.5rem;
  }

  .bg-img img {
    min-height: 280px;
  }

  .service-image img {
    height: 240px;
  }
}

@media (max-width: 420px) {
  :root {
    --article-gutter: 1rem;
    --article-h1-size: 1.75rem;
  }

  main {
    height: auto;
  }

  main .hero-img {
    height: 235px;
  }

  main .hero-text {
    bottom: auto;
  }

  main .hero-text h1 {
    font-size: var(--article-h1-size);
  }
}

/* Post-hero editorial reading system */
.intro-section {
  padding: 4.25rem var(--article-gutter) 4rem;
}

.intro-wrapper {
  display: block;
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
}

.intro-wrapper > .headline-kicker,
.section-intro > .headline-kicker,
.process-intro > .headline-kicker,
.fit-text > .headline-kicker {
  margin: 0 0 0.9rem;
}

.headline-kicker,
.section-intro .headline-kicker,
.headline-kicker-bg {
  display: flex;
  align-items: center;
  gap: 0.72rem;
  color: var(--article-muted);
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.headline-kicker::before,
.section-intro .headline-kicker::before,
.headline-kicker-bg::before {
  content: "";
  flex: 0 0 1.75rem;
  width: 1.75rem;
  height: 1px;
  background: rgba(36, 38, 37, 0.34);
}

.headline-kicker-bg {
  margin: 0 0 0.9rem;
  color: rgba(243, 238, 227, 0.68);
}

.headline-kicker-bg::before {
  background: rgba(243, 238, 227, 0.36);
}

.intro-section h2 {
  max-width: 860px;
  margin: 0 0 1.45rem;
  text-wrap: balance;
}

.intro-section p,
.bg-text p,
.process-intro p,
.fit-text p {
  max-width: 68ch;
  color: #44443f;
  font-size: 1.05rem;
  line-height: 1.68;
}

.intro-section p {
  margin-bottom: 1rem;
}

.intro-section p:first-of-type {
  max-width: 66ch;
  color: #343633;
  font-size: 1.12rem;
  line-height: 1.68;
}

.category-section {
  padding-top: 3.5rem;
  padding-bottom: 4.5rem;
}

.section-intro {
  display: block;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto 2.25rem;
}

.section-intro h2 {
  max-width: 860px;
  margin: 0;
  text-wrap: balance;
}

.category-wrapper {
  background: transparent;
}

.category-item {
  padding: 1.75rem 2rem 2.25rem;
}

.category-item::before,
.process-number {
  color: var(--article-muted);
}

.category-item::before {
  margin-bottom: 2rem;
}

.category-item h3 {
  margin-bottom: 0.85rem;
  text-wrap: balance;
}

.category-item p,
.category-list li,
.service-content p,
.process-item p {
  font-size: 1rem;
  line-height: 1.58;
}

.category-list li {
  position: relative;
  display: block;
  padding-left: 1rem;
}

.category-list li::before {
  content: "";
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 4px;
  height: 4px;
  border: 1px solid rgba(36, 38, 37, 0.48);
  border-radius: 50%;
}

.category-list li img {
  display: none;
}

.bg-section {
  padding: 4.75rem var(--article-gutter);
}

.approach-wrapper {
  align-items: flex-start;
  gap: 4rem;
}

.bg-img img {
  min-height: 380px;
}

.bg-text p,
.service-content p {
  line-height: 1.64;
}

.bg-text p {
  color: rgba(243, 238, 227, 0.78);
}

.services-outer {
  margin-top: 4rem;
}

.services-wrapper {
  border: 0;
  border-top: 1px solid rgba(243, 238, 227, 0.32);
  border-bottom: 1px solid rgba(243, 238, 227, 0.32);
  overflow: visible;
}

.service-item {
  border-right-color: rgba(243, 238, 227, 0.26);
}

.process-section {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.process-intro {
  max-width: 940px;
  margin-bottom: 2.25rem;
  text-align: left;
}

.process-intro h2 {
  max-width: 860px;
  margin: 0 0 1.15rem;
  text-wrap: balance;
}

.process-wrapper {
  border: 0;
  border-top: 1px solid var(--article-rule);
  border-bottom: 1px solid var(--article-rule);
  overflow: visible;
}

.process-item {
  padding: 1.8rem 1.9rem 2.1rem;
  border-right-color: var(--article-rule);
}

.process-number {
  margin-bottom: 1.65rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.process-item h3 {
  margin-bottom: 0.75rem;
  text-wrap: balance;
}

.fit-section {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.fit-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: start;
  gap: 5rem;
}

.fit-text,
.fit-card {
  width: auto;
  min-width: 0;
}

.fit-text h2 {
  max-width: 760px;
  margin: 0 0 1.2rem;
  text-wrap: balance;
}

.fit-card {
  padding: 0.2rem 0 0.2rem 2.75rem;
  border: 0;
  border-left: 1px solid rgba(36, 38, 37, 0.38);
  background: transparent;
}

.fit-card h3 {
  margin-bottom: 1.15rem;
  text-wrap: balance;
}

.fit-list {
  margin-bottom: 1.15rem;
}

.fit-list li {
  position: relative;
  display: grid;
  grid-template-columns: 0.55rem minmax(0, 1fr);
  gap: 0.7rem;
  margin: 0;
  padding: 0.58rem 0;
  font-size: 1rem;
  line-height: 1.55;
}

.fit-list li::before {
  content: "";
  width: 4px;
  height: 4px;
  margin-top: 0.62em;
  border: 1px solid rgba(36, 38, 37, 0.5);
  border-radius: 50%;
}

.fit-list li img {
  display: none;
}

.fit-list li > span,
.fit-list li > a,
.fit-list a {
  min-width: 0;
  overflow-wrap: anywhere;
}

.fit-list a {
  color: var(--article-ink);
  text-decoration-color: rgba(36, 38, 37, 0.3);
  text-underline-offset: 0.24em;
}

.fit-list a:hover,
.fit-list a:focus-visible {
  color: var(--article-ink);
  text-decoration-color: currentColor;
}

.fit-note {
  margin-top: 1.35rem;
  padding-top: 0.95rem;
  border-top: 1px solid var(--article-rule);
  color: var(--article-muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

:is(
  .fit-section[aria-labelledby*="quelle"],
  .fit-section[aria-labelledby*="source"]
) .fit-wrapper {
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 5rem;
}

:is(
  .fit-section[aria-labelledby*="quelle"],
  .fit-section[aria-labelledby*="source"]
) .fit-card {
  padding: 1.15rem 0 0;
  border: 0;
  border-top: 1px solid rgba(36, 38, 37, 0.42);
}

:is(
  .fit-section[aria-labelledby*="quelle"],
  .fit-section[aria-labelledby*="source"]
) .fit-list {
  margin: 0;
  counter-reset: editorial-source;
}

:is(
  .fit-section[aria-labelledby*="quelle"],
  .fit-section[aria-labelledby*="source"]
) .fit-list li {
  grid-template-columns: 2rem minmax(0, 1fr);
  gap: 0.75rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--article-rule);
  counter-increment: editorial-source;
}

:is(
  .fit-section[aria-labelledby*="quelle"],
  .fit-section[aria-labelledby*="source"]
) .fit-list li::before {
  content: counter(editorial-source, decimal-leading-zero);
  width: auto;
  height: auto;
  margin: 0.17rem 0 0;
  border: 0;
  border-radius: 0;
  color: var(--article-muted);
  font-size: 0.7rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.06em;
}

.final-cta-section {
  padding-top: 3.75rem;
  padding-bottom: 4rem;
  border-top: 1px solid var(--article-rule);
  border-bottom: 0;
  background: rgba(226, 216, 198, 0.2);
}

.final-cta-section .intro-wrapper {
  max-width: 1000px;
}

@media (max-width: 1024px) {
  .intro-section {
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
  }

  .category-section {
    padding-top: 3rem;
    padding-bottom: 3.75rem;
  }

  .bg-section,
  .process-section {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }

  .fit-section {
    padding-top: 3.5rem;
    padding-bottom: 3.75rem;
  }

  .final-cta-section {
    padding-top: 3.25rem;
    padding-bottom: 3.5rem;
  }

  .section-intro {
    margin-bottom: 2rem;
  }

  .approach-wrapper {
    gap: 2.5rem;
  }

  .services-outer {
    margin-top: 3.5rem;
  }

  .process-intro {
    margin-bottom: 2rem;
  }

  .fit-wrapper,
  :is(
    .fit-section[aria-labelledby*="quelle"],
    .fit-section[aria-labelledby*="source"]
  ) .fit-wrapper {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
  }

  .fit-card {
    padding: 1.8rem 0 0;
    border-left: 0;
    border-top: 1px solid rgba(36, 38, 37, 0.38);
  }
}

@media (max-width: 768px) {
  .intro-section {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .category-section {
    padding-top: 2.25rem;
    padding-bottom: 2.75rem;
  }

  .bg-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .process-section,
  .fit-section {
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
  }

  .final-cta-section {
    padding-top: 2.5rem;
    padding-bottom: 2.75rem;
  }

  .headline-kicker,
  .section-intro .headline-kicker,
  .headline-kicker-bg {
    gap: 0.6rem;
    font-size: 0.68rem;
    letter-spacing: 0.085em;
  }

  .headline-kicker::before,
  .section-intro .headline-kicker::before,
  .headline-kicker-bg::before {
    flex-basis: 1.4rem;
    width: 1.4rem;
  }

  .intro-section h2,
  .section-intro h2,
  .bg-text h2,
  .services-outer h2,
  .process-intro h2,
  .fit-text h2 {
    margin-bottom: 1rem;
  }

  .intro-section p,
  .intro-section p:first-of-type,
  .bg-text p,
  .process-intro p,
  .fit-text p {
    font-size: 1rem;
    line-height: 1.62;
  }

  .section-intro {
    margin-bottom: 1.5rem;
  }

  .category-item {
    padding: 1.25rem 0 1.5rem;
  }

  .category-item::before {
    margin-bottom: 1rem;
  }

  .category-item p,
  .category-list li,
  .service-content p,
  .process-item p,
  .fit-list li {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .approach-wrapper {
    gap: 1.75rem;
  }

  .bg-img img {
    min-height: 250px;
  }

  .services-outer {
    margin-top: 3rem;
  }

  .process-intro {
    margin-bottom: 1.75rem;
  }

  .process-item {
    width: 100%;
    padding: 1.35rem 0 1.55rem;
    border-right: 0;
  }

  .process-number {
    margin-bottom: 0.85rem;
  }

  .fit-wrapper,
  :is(
    .fit-section[aria-labelledby*="quelle"],
    .fit-section[aria-labelledby*="source"]
  ) .fit-wrapper {
    gap: 1.75rem;
  }

  .fit-card,
  :is(
    .fit-section[aria-labelledby*="quelle"],
    .fit-section[aria-labelledby*="source"]
  ) .fit-card {
    padding-top: 1.4rem;
  }

  .fit-list li {
    padding: 0.48rem 0;
  }

  :is(
    .fit-section[aria-labelledby*="quelle"],
    .fit-section[aria-labelledby*="source"]
  ) .fit-list li {
    padding: 0.78rem 0;
  }
}

@media (max-width: 420px) {
  .intro-section,
  .category-section {
    padding-top: 2rem;
    padding-bottom: 2.25rem;
  }

  .bg-section,
  .process-section,
  .fit-section {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .final-cta-section {
    padding-top: 2.15rem;
    padding-bottom: 2.35rem;
  }

  .section-intro {
    margin-bottom: 1.25rem;
  }

  .services-outer {
    margin-top: 2.5rem;
  }

  .process-intro {
    margin-bottom: 1.5rem;
  }

  .fit-wrapper,
  :is(
    .fit-section[aria-labelledby*="quelle"],
    .fit-section[aria-labelledby*="source"]
  ) .fit-wrapper {
    gap: 1.5rem;
  }
}

/* Unified article grid and related reading */
:root {
  --article-content-width: 80rem;
  --article-section-space: 3.75rem;
  --article-section-head-gap: 2rem;
}

:is(
  .intro-section,
  .category-section,
  .bg-section,
  .process-section,
  .fit-section,
  .final-cta-section,
  .article-related
) {
  padding: var(--article-section-space) var(--article-gutter);
}

:is(
  .intro-wrapper,
  .section-intro,
  .category-wrapper,
  .approach-wrapper,
  .services-outer,
  .process-intro,
  .process-wrapper,
  .fit-wrapper,
  .article-related__inner
) {
  width: 100%;
  max-width: var(--article-content-width);
  margin-right: auto;
  margin-left: auto;
}

.final-cta-section .intro-wrapper,
.process-intro {
  max-width: var(--article-content-width);
}

.approach-wrapper--text-only {
  justify-content: flex-start;
}

.approach-wrapper--text-only .bg-text {
  width: 100%;
  max-width: 68ch;
  margin-right: 0;
  margin-left: 0;
}

.section-intro,
.process-intro {
  margin-bottom: var(--article-section-head-gap);
}

.article-related {
  border-top: 1px solid var(--article-rule);
  background: #eae2d5;
}

.article-related__heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
}

.article-related__kicker {
  display: flex;
  align-items: center;
  gap: 0.72rem;
  margin: 0 0 0.85rem;
  color: var(--article-muted);
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-related__kicker::before {
  content: "";
  flex: 0 0 1.75rem;
  width: 1.75rem;
  height: 1px;
  background: rgba(36, 38, 37, 0.34);
}

.article-related__heading h2 {
  max-width: 780px;
  margin: 0;
  color: var(--article-ink);
  font-family: "PPPaloma", sans-serif;
  font-size: var(--article-h2-size);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.018em;
  text-wrap: balance;
}

.article-related__archive-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.65rem;
  padding-bottom: 0.18rem;
  border-bottom: 1px solid rgba(36, 38, 37, 0.34);
  color: var(--article-ink);
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.4;
  text-decoration: none;
  transition: border-color 180ms ease;
}

.article-related__archive-link span {
  transition: transform 180ms ease;
}

.article-related__archive-link:hover,
.article-related__archive-link:focus-visible {
  border-color: currentColor;
}

.article-related__archive-link:hover span,
.article-related__archive-link:focus-visible span {
  transform: translateX(0.2rem);
}

.article-related__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: var(--article-section-head-gap);
  border-top: 1px solid rgba(36, 38, 37, 0.3);
  border-bottom: 1px solid rgba(36, 38, 37, 0.3);
}

.article-related-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 1rem 1.2rem 1.45rem;
  border-right: 1px solid rgba(36, 38, 37, 0.22);
  color: var(--article-ink);
  text-decoration: none;
  transition: background-color 200ms ease;
}

.article-related-card:first-child {
  padding-left: 0;
}

.article-related-card:last-child {
  padding-right: 0;
  border-right: 0;
}

.article-related-card:hover,
.article-related-card:focus-visible {
  background: rgba(255, 255, 255, 0.18);
}

.article-related-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #d7d0c4;
}

.article-related-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.article-related-card:hover .article-related-card__image img,
.article-related-card:focus-visible .article-related-card__image img {
  transform: scale(1.025);
}

.article-related-card__body {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  padding-top: 1.25rem;
}

.article-related-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.8rem;
  color: var(--article-muted);
  font-size: 0.7rem;
  font-weight: 400;
  line-height: 1.45;
}

.article-related-card__category {
  font-weight: 500;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.article-related-card__details {
  flex: 0 0 auto;
  white-space: nowrap;
}

.article-related-card h3 {
  margin: 0.9rem 0 0.7rem;
  color: var(--article-ink);
  font-family: "PPPaloma", sans-serif;
  font-size: var(--article-h3-size);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.012em;
  text-wrap: balance;
}

.article-related-card__excerpt {
  margin: 0;
  color: #55534d;
  font-size: 0.94rem;
  font-weight: 200;
  line-height: 1.55;
}

.article-related-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  align-self: flex-start;
  margin-top: auto;
  padding-top: 1.25rem;
  color: var(--article-ink);
  font-size: 0.82rem;
  font-weight: 500;
}

.article-related-card__link::after {
  content: "";
  width: 1.25rem;
  height: 1px;
  background: currentColor;
  transform-origin: left center;
  transition: transform 180ms ease;
}

.article-related-card:hover .article-related-card__link::after,
.article-related-card:focus-visible .article-related-card__link::after {
  transform: scaleX(1.25);
}

@media (max-width: 1024px) {
  :root {
    --article-section-space: 3rem;
    --article-section-head-gap: 1.75rem;
  }

  .article-related__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .article-related-card,
  .article-related-card:first-child,
  .article-related-card:last-child {
    display: grid;
    grid-template-columns: 14rem minmax(0, 1fr);
    gap: 1.5rem;
    padding: 1.25rem 0;
    border-right: 0;
    border-bottom: 1px solid rgba(36, 38, 37, 0.22);
  }

  .article-related-card:last-child {
    border-bottom: 0;
  }

  .article-related-card__image {
    aspect-ratio: 4 / 3;
  }

  .article-related-card__body {
    padding-top: 0;
  }
}

@media (max-width: 768px) {
  :root {
    --article-section-space: 2.25rem;
    --article-section-head-gap: 1.25rem;
  }

  .article-related__heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.1rem;
  }

  .article-related__kicker {
    gap: 0.6rem;
    margin-bottom: 0.7rem;
    font-size: 0.68rem;
    letter-spacing: 0.085em;
  }

  .article-related__kicker::before {
    flex-basis: 1.4rem;
    width: 1.4rem;
  }

  .article-related-card,
  .article-related-card:first-child,
  .article-related-card:last-child {
    grid-template-columns: 7.25rem minmax(0, 1fr);
    gap: 1rem;
    padding: 1.1rem 0;
  }

  .article-related-card__meta {
    flex-direction: column;
    gap: 0.25rem;
  }

  .article-related-card__details {
    white-space: normal;
  }

  .article-related-card h3 {
    margin-top: 0.55rem;
  }

  .article-related-card__excerpt {
    display: none;
  }

  .article-related-card__link {
    margin-top: 0;
    padding-top: 0.75rem;
  }
}

@media (max-width: 420px) {
  :root {
    --article-section-space: 2rem;
  }

  .article-related-card,
  .article-related-card:first-child,
  .article-related-card:last-child {
    grid-template-columns: 6.5rem minmax(0, 1fr);
    gap: 0.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .article-related-card,
  .article-related-card__image img,
  .article-related-card__link::after,
  .article-related__archive-link,
  .article-related__archive-link span {
    transition: none;
  }
}

/* Travel article: product-specific medical information */
.travel-article main .hero-text::before {
  content: "GEWICHT & STOFFWECHSEL";
}

.travel-article .travel-article__content {
  width: 100%;
  max-width: var(--article-content-width);
  margin-right: auto;
  margin-left: auto;
}

.travel-article .travel-article__content--dark {
  color: var(--article-hero-ink);
}

.travel-article .travel-section__header {
  max-width: 62rem;
  margin-bottom: 2.4rem;
}

.travel-article .travel-section__header h2 {
  max-width: 52rem;
  margin: 0.4rem 0 1.25rem;
  color: var(--article-ink);
  font-family: "PPPaloma", sans-serif;
  font-size: var(--article-h2-size);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.018em;
  text-wrap: balance;
}

.travel-article .travel-section__header p,
.travel-article .travel-flight__closing,
.travel-article .travel-disclaimer {
  max-width: 54rem;
  margin: 0 0 1rem;
  color: #444643;
  font-size: 1.05rem;
  font-weight: 200;
  line-height: 1.62;
}

.travel-article .travel-section__header p:last-child {
  margin-bottom: 0;
}

.travel-article .travel-article__content--dark .travel-section__header h2 {
  color: var(--article-hero-ink);
}

.travel-article .travel-article__content--dark .travel-section__header p,
.travel-article .travel-article__content--dark .travel-flight__closing {
  color: rgba(243, 238, 227, 0.78);
}

.travel-article .travel-article__standfirst {
  margin-bottom: 1.6rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--article-rule);
  color: #303331;
}

.travel-article .travel-storage,
.travel-article .travel-dose,
.travel-article .travel-checklist,
.travel-article .travel-sources {
  border-bottom: 1px solid var(--article-rule);
}

.travel-article .travel-storage {
  background: #eee7dc;
}

.travel-article .travel-table-wrap {
  width: 100%;
  overflow-x: auto;
  border-top: 1px solid rgba(36, 38, 37, 0.34);
  border-bottom: 1px solid rgba(36, 38, 37, 0.34);
  -webkit-overflow-scrolling: touch;
}

.travel-article .travel-table-wrap:focus-visible {
  outline: 2px solid #4d7b80;
  outline-offset: 4px;
}

.travel-article .travel-table {
  width: 100%;
  min-width: 64rem;
  border-collapse: collapse;
  color: var(--article-ink);
  table-layout: fixed;
}

.travel-article .travel-table th,
.travel-article .travel-table td {
  padding: 1.25rem 1.4rem;
  border-right: 1px solid var(--article-rule);
  border-bottom: 1px solid var(--article-rule);
  font-size: 0.95rem;
  font-weight: 200;
  line-height: 1.52;
  text-align: left;
  vertical-align: top;
}

.travel-article .travel-table tr:last-child > * {
  border-bottom: 0;
}

.travel-article .travel-table tr > *:last-child {
  border-right: 0;
}

.travel-article .travel-table thead th {
  padding-top: 1rem;
  padding-bottom: 1rem;
  color: #4d7b80;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.travel-article .travel-table tbody th {
  width: 22%;
  font-family: "PPPaloma", sans-serif;
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.3;
}

.travel-article .travel-callout {
  display: grid;
  grid-template-columns: minmax(13rem, 0.62fr) minmax(0, 1.38fr);
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(36, 38, 37, 0.34);
  border-bottom: 1px solid rgba(36, 38, 37, 0.34);
}

.travel-article .travel-callout h3,
.travel-article .travel-callout p {
  margin: 0;
}

.travel-article .travel-callout h3 {
  color: var(--article-ink);
  font-family: "PPPaloma", sans-serif;
  font-size: var(--article-h3-size);
  font-weight: 500;
  line-height: 1.18;
}

.travel-article .travel-callout p {
  color: #444643;
  font-size: 1rem;
  font-weight: 200;
  line-height: 1.58;
}

.travel-article .travel-split-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 2.4rem;
  border-top: 1px solid rgba(243, 238, 227, 0.28);
  border-bottom: 1px solid rgba(243, 238, 227, 0.28);
}

.travel-article .travel-split-list > div {
  padding: 1.8rem 2rem 2rem 0;
}

.travel-article .travel-split-list > div + div {
  padding-right: 0;
  padding-left: 2rem;
  border-left: 1px solid rgba(243, 238, 227, 0.28);
}

.travel-article .travel-split-list h3 {
  margin: 0 0 1.15rem;
  color: var(--article-hero-ink);
  font-family: "PPPaloma", sans-serif;
  font-size: var(--article-h3-size);
  font-weight: 500;
  line-height: 1.18;
}

.travel-article .travel-split-list ul,
.travel-article .travel-bullet-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.travel-article .travel-split-list li,
.travel-article .travel-bullet-list li {
  position: relative;
  padding-left: 1.25rem;
  color: rgba(243, 238, 227, 0.78);
  font-size: 1rem;
  font-weight: 200;
  line-height: 1.55;
}

.travel-article .travel-split-list li + li {
  margin-top: 0.65rem;
}

.travel-article .travel-split-list li::before,
.travel-article .travel-bullet-list li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 0.32rem;
  height: 0.32rem;
  border-radius: 50%;
  background: #9fc0bd;
}

.travel-article .travel-flight__closing {
  margin-top: 1.6rem;
  margin-bottom: 0;
}

.travel-article .travel-rule-card {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  border-color: var(--article-rule);
  background: #eee7dc;
}

.travel-article .travel-rule-card__label {
  margin: 0 0 auto;
  padding-bottom: 3rem;
  color: #4d7b80;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.085em;
  text-transform: uppercase;
}

.travel-article .travel-rule-card p:last-child {
  margin: 0;
  color: #4d4f4c;
  font-size: 1rem;
  font-weight: 200;
  line-height: 1.58;
}

.travel-article .travel-bullet-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 2.2rem;
  border-top: 1px solid rgba(243, 238, 227, 0.28);
  border-bottom: 1px solid rgba(243, 238, 227, 0.28);
}

.travel-article .travel-bullet-list li {
  padding: 1.35rem 2rem 1.35rem 1.25rem;
}

.travel-article .travel-bullet-list li:nth-child(even) {
  padding-right: 0;
  padding-left: 3.25rem;
  border-left: 1px solid rgba(243, 238, 227, 0.28);
}

.travel-article .travel-bullet-list li:nth-child(even)::before {
  left: 2rem;
}

.travel-article .travel-bullet-list li:nth-child(n + 3) {
  border-top: 1px solid rgba(243, 238, 227, 0.2);
}

.travel-article .travel-callout--urgent {
  border-color: rgba(159, 192, 189, 0.65);
}

.travel-article .travel-callout--urgent h3 {
  color: var(--article-hero-ink);
}

.travel-article .travel-callout--urgent p {
  color: rgba(243, 238, 227, 0.82);
}

.travel-article .travel-checklist__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(36, 38, 37, 0.34);
  border-bottom: 1px solid rgba(36, 38, 37, 0.34);
  list-style: none;
}

.travel-article .travel-checklist__grid li {
  position: relative;
  min-height: 5rem;
  padding: 1.35rem 2rem 1.35rem 3rem;
  color: #3f423f;
  font-size: 1rem;
  font-weight: 200;
  line-height: 1.52;
}

.travel-article .travel-checklist__grid li:nth-child(even) {
  border-left: 1px solid var(--article-rule);
}

.travel-article .travel-checklist__grid li:nth-child(n + 3) {
  border-top: 1px solid var(--article-rule);
}

.travel-article .travel-checklist__grid li::before {
  content: "";
  position: absolute;
  top: 1.55rem;
  left: 0.65rem;
  width: 1rem;
  height: 1rem;
  border: 1px solid #4d7b80;
}

.travel-article .travel-faq__list {
  border-top: 1px solid rgba(243, 238, 227, 0.3);
  border-bottom: 1px solid rgba(243, 238, 227, 0.3);
}

.travel-article .travel-faq__list details + details {
  border-top: 1px solid rgba(243, 238, 227, 0.22);
}

.travel-article .travel-faq__list summary {
  position: relative;
  padding: 1.45rem 4rem 1.45rem 0;
  color: var(--article-hero-ink);
  font-family: "PPPaloma", sans-serif;
  font-size: 1.22rem;
  font-weight: 500;
  line-height: 1.25;
  list-style: none;
  cursor: pointer;
}

.travel-article .travel-faq__list summary::-webkit-details-marker {
  display: none;
}

.travel-article .travel-faq__list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1.75rem;
  color: #9fc0bd;
  font-family: "Roboto", sans-serif;
  font-size: 1.4rem;
  font-weight: 200;
  text-align: center;
  transform: translateY(-50%);
}

.travel-article .travel-faq__list details[open] summary::after {
  content: "–";
}

.travel-article .travel-faq__list details p {
  max-width: 56rem;
  margin: -0.35rem 0 0;
  padding: 0 4rem 1.55rem 0;
  color: rgba(243, 238, 227, 0.76);
  font-size: 1rem;
  font-weight: 200;
  line-height: 1.62;
}

.travel-article .travel-conclusion .intro-wrapper {
  max-width: var(--article-content-width);
}

.travel-article .travel-sources .fit-card {
  padding-top: 1.25rem;
}

.travel-article .travel-source-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: travel-source;
}

.travel-article .travel-source-list li {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  gap: 0.8rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--article-rule);
  counter-increment: travel-source;
}

.travel-article .travel-source-list li:last-child {
  border-bottom: 0;
}

.travel-article .travel-source-list li::before {
  content: "0" counter(travel-source);
  color: #4d7b80;
  font-size: 0.7rem;
  font-weight: 500;
  line-height: 1.7;
}

.travel-article .travel-source-list a {
  color: #343735;
  font-size: 0.94rem;
  font-weight: 200;
  line-height: 1.5;
  text-decoration-color: rgba(36, 38, 37, 0.35);
  text-underline-offset: 0.22em;
}

.travel-article .travel-source-list a:hover,
.travel-article .travel-source-list a:focus-visible {
  color: #34656d;
  text-decoration-color: currentColor;
}

.travel-article .travel-disclaimer {
  margin-top: 1.5rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--article-rule);
  font-size: 0.93rem;
}

@media (max-width: 768px) {
  .travel-article .travel-section__header {
    margin-bottom: 1.55rem;
  }

  .travel-article .travel-section__header p,
  .travel-article .travel-flight__closing,
  .travel-article .travel-disclaimer {
    font-size: 1rem;
    line-height: 1.58;
  }

  .travel-article .travel-table {
    min-width: 52rem;
  }

  .travel-article .travel-table th,
  .travel-article .travel-table td {
    padding: 1rem;
    font-size: 0.88rem;
  }

  .travel-article .travel-callout,
  .travel-article .travel-split-list,
  .travel-article .travel-bullet-list,
  .travel-article .travel-checklist__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .travel-article .travel-callout {
    gap: 0.75rem;
    margin-top: 1.6rem;
  }

  .travel-article .travel-split-list > div,
  .travel-article .travel-split-list > div + div {
    padding: 1.25rem 0;
    border-left: 0;
  }

  .travel-article .travel-split-list > div + div {
    border-top: 1px solid rgba(243, 238, 227, 0.22);
  }

  .travel-article .travel-bullet-list li,
  .travel-article .travel-bullet-list li:nth-child(even) {
    padding: 1.1rem 0 1.1rem 1.25rem;
    border-left: 0;
  }

  .travel-article .travel-bullet-list li:nth-child(even)::before {
    left: 0;
  }

  .travel-article .travel-bullet-list li + li {
    border-top: 1px solid rgba(243, 238, 227, 0.2);
  }

  .travel-article .travel-checklist__grid li,
  .travel-article .travel-checklist__grid li:nth-child(even) {
    min-height: 0;
    padding: 1.05rem 0 1.05rem 2.3rem;
    border-left: 0;
  }

  .travel-article .travel-checklist__grid li + li {
    border-top: 1px solid var(--article-rule);
  }

  .travel-article .travel-checklist__grid li::before {
    top: 1.25rem;
    left: 0;
  }

  .travel-article .travel-faq__list summary {
    padding: 1.2rem 3rem 1.2rem 0;
    font-size: 1.08rem;
  }

  .travel-article .travel-faq__list details p {
    padding-right: 1.5rem;
  }
}

/* Lip filler aftercare article */
.lip-article main .hero-text::before {
  content: "ÄSTHETISCHE MEDIZIN";
}

.lip-article .lip-timeline {
  flex-wrap: wrap;
}

.lip-article .lip-timeline .process-item {
  width: 33.333333%;
}

.lip-article .lip-timeline .process-item:nth-child(3) {
  border-right: 0;
}

.lip-article .lip-timeline .process-item:nth-child(n + 4) {
  width: 50%;
  border-top: 1px solid var(--article-rule);
}

.lip-article .lip-timeline .process-item:last-child {
  border-right: 0;
}

.lip-article .lip-summary {
  border-color: var(--article-rule);
}

.lip-article .lip-summary > div + div {
  border-color: var(--article-rule);
}

.lip-article .lip-summary h3 {
  color: var(--article-ink);
}

.lip-article .lip-summary p {
  color: #444643;
}

.lip-article .lip-sources {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(243, 238, 227, 0.28);
  list-style: none;
  counter-reset: lip-source;
}

.lip-article .lip-sources li {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  gap: 0.75rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(243, 238, 227, 0.2);
  counter-increment: lip-source;
}

.lip-article .lip-sources li::before {
  color: rgba(243, 238, 227, 0.58);
  content: counter(lip-source, decimal-leading-zero);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.lip-article .lip-sources a {
  color: var(--article-hero-ink);
  font-size: 0.92rem;
  font-weight: 200;
  line-height: 1.45;
  text-decoration-color: rgba(243, 238, 227, 0.4);
  text-underline-offset: 0.2em;
}

.lip-article .fit-text a,
.lip-article .bg-text a {
  color: inherit;
  text-decoration-color: currentColor;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.lip-article .lip-wide-dark-section .approach-wrapper--text-only {
  max-width: 1280px;
}

.lip-article .lip-wide-dark-section .approach-wrapper--text-only .bg-text {
  flex: 0 0 100%;
  width: 100%;
  max-width: none;
}

.lip-article .lip-wide-dark-section .bg-text > h2 {
  max-width: 52rem;
  text-wrap: balance;
}

.lip-article .lip-wide-dark-section .bg-text > p {
  max-width: 68ch;
}

.lip-article .lip-assessment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 2.4rem;
  border-top: 1px solid rgba(243, 238, 227, 0.28);
  border-bottom: 1px solid rgba(243, 238, 227, 0.28);
}

.lip-article .lip-assessment-grid > div {
  padding: 1.8rem 2rem 2rem 0;
}

.lip-article .lip-assessment-grid > div:nth-child(even) {
  padding-right: 0;
  padding-left: 2rem;
  border-left: 1px solid rgba(243, 238, 227, 0.28);
}

.lip-article .lip-assessment-grid > div:nth-child(n + 3) {
  border-top: 1px solid rgba(243, 238, 227, 0.2);
}

.lip-article .lip-assessment-grid h3 {
  margin: 0 0 1.15rem;
  color: var(--article-hero-ink);
  font-family: "PPPaloma", sans-serif;
  font-size: var(--article-h3-size);
  font-weight: 500;
  line-height: 1.18;
}

.lip-article .travel-bullet-list.lip-emergency-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lip-article .travel-bullet-list.lip-emergency-list li,
.lip-article .travel-bullet-list.lip-emergency-list li:nth-child(even) {
  padding: 1.35rem 2rem 1.35rem 1.25rem;
  border-top: 0;
  border-left: 0;
}

.lip-article .travel-bullet-list.lip-emergency-list li + li {
  padding-left: 3.25rem;
  border-left: 1px solid rgba(243, 238, 227, 0.28);
}

.lip-article .travel-bullet-list.lip-emergency-list li + li::before {
  left: 2rem;
}

@media (max-width: 900px) {
  .lip-article .lip-assessment-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .lip-article .lip-assessment-grid > div,
  .lip-article .lip-assessment-grid > div:nth-child(even) {
    padding: 1.25rem 0;
    border-left: 0;
  }

  .lip-article .lip-assessment-grid > div + div {
    border-top: 1px solid rgba(243, 238, 227, 0.22);
  }

  .lip-article .travel-bullet-list.lip-emergency-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .lip-article .travel-bullet-list.lip-emergency-list li,
  .lip-article .travel-bullet-list.lip-emergency-list li:nth-child(even),
  .lip-article .travel-bullet-list.lip-emergency-list li + li {
    padding: 1.1rem 0 1.1rem 1.25rem;
    border-left: 0;
  }

  .lip-article .travel-bullet-list.lip-emergency-list li + li {
    border-top: 1px solid rgba(243, 238, 227, 0.2);
  }

  .lip-article .travel-bullet-list.lip-emergency-list li + li::before {
    left: 0;
  }

  .lip-article .lip-timeline .process-item,
  .lip-article .lip-timeline .process-item:nth-child(n + 4) {
    width: 100%;
    border-top: 1px solid var(--article-rule);
    border-right: 0;
  }

  .lip-article .lip-timeline .process-item:first-child {
    border-top: 0;
  }
}

/* 2026 editorial refinement: readable rhythm instead of table-like layouts */
:root {
  --article-gutter: clamp(1.25rem, 5vw, 5rem);
  --article-content-width: 72rem;
  --article-section-space: 2.75rem;
  --article-section-head-gap: 1.6rem;
  --article-soft-surface: #ebe4d8;
  --article-soft-surface-2: #e5ded2;
}

body {
  color: var(--article-ink);
}

main {
  grid-template-columns: minmax(0, 0.92fr) minmax(26rem, 1.08fr);
  min-height: 620px;
  column-gap: clamp(3rem, 5vw, 5.5rem);
  padding-top: 8.75rem;
  padding-bottom: 2.75rem;
}

main::before {
  content: none;
}

main .hero-img {
  min-height: 470px;
  border-radius: 0.4rem;
  outline: 0;
}

main .hero-navigation {
  padding-top: 0.2rem;
}

main .hero-text {
  max-width: 46rem;
  padding-top: 3rem;
  padding-bottom: 0.25rem;
}

main .hero-text::before {
  margin-bottom: 1rem;
}

main .hero-text h1 {
  max-width: 46rem;
  font-size: clamp(2.35rem, 3.4vw, 3.45rem);
  line-height: 1.04;
}

main .hero-line {
  display: none;
}

main .article-info {
  margin-top: 1.5rem;
}

article {
  background: var(--article-paper);
}

:is(
  .intro-section,
  .category-section,
  .process-section,
  .fit-section,
  .final-cta-section
) {
  border-top: 0;
  border-bottom: 0;
}

article > section.intro-section + section.fit-section,
article > section.intro-section + section.category-section,
article > section.category-section + section.process-section,
article > section.fit-section + section.fit-section,
article > section.fit-section + section.process-section,
article > section.process-section + section.fit-section {
  padding-top: 0.85rem;
}

.intro-wrapper {
  max-width: 48rem;
}

.intro-section h2,
.section-intro h2,
.bg-text h2,
.services-outer h2,
.process-intro h2,
.fit-text h2,
.article-related__heading h2 {
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.intro-section p,
.intro-section p:first-of-type,
.bg-text p,
.process-intro p,
.fit-text p {
  font-size: 1.03rem;
  line-height: 1.66;
}

.intro-section p:first-of-type {
  font-size: 1.08rem;
}

.headline-kicker,
.section-intro .headline-kicker,
.headline-kicker-bg,
.article-related__kicker {
  gap: 0;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
}

.headline-kicker::before,
.section-intro .headline-kicker::before,
.headline-kicker-bg::before,
.article-related__kicker::before {
  content: none;
}

.section-intro,
.process-intro {
  max-width: var(--article-content-width);
}

.section-intro h2,
.process-intro h2 {
  max-width: 50rem;
}

.category-wrapper {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  border: 0;
}

.category-item {
  width: auto;
  padding: 1.6rem 1.55rem 1.75rem;
  border: 0;
  border-radius: 0.5rem;
  background: var(--article-soft-surface);
}

.category-item::before {
  margin-bottom: 1.25rem;
}

.category-item p,
.category-list li,
.service-content p,
.process-item p {
  font-size: 0.96rem;
  line-height: 1.58;
}

.bg-section {
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
}

.approach-wrapper {
  display: grid;
  grid-template-columns: minmax(18rem, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(2.25rem, 5vw, 4.5rem);
}

.approach-wrapper--text-only {
  display: block;
}

.approach-wrapper > .bg-text,
.approach-wrapper > .bg-img {
  width: 100%;
  min-width: 0;
}

.bg-img {
  align-self: start;
  aspect-ratio: 4 / 5;
}

.bg-img img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.bg-img {
  border-radius: 0.4rem;
}

.services-outer {
  margin-top: 0;
}

.services-outer > h2 {
  max-width: 48rem;
  margin-bottom: 1.75rem;
}

.services-wrapper {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.9rem;
  border: 0;
}

.service-item {
  grid-column: span 3;
  width: auto;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0.5rem;
  background: rgba(243, 238, 227, 0.075);
}

.service-item:first-child:nth-last-child(3),
.service-item:first-child:nth-last-child(3) ~ .service-item {
  grid-column: span 2;
}

.service-content {
  padding: 1.55rem 1.6rem 1.7rem;
}

.service-content h3 {
  margin-bottom: 0.75rem;
  text-wrap: balance;
}

.process-wrapper,
.lip-article .lip-timeline {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.9rem;
  border: 0;
}

.process-item,
.lip-article .lip-timeline .process-item,
.lip-article .lip-timeline .process-item:nth-child(n + 4) {
  grid-column: span 2;
  width: auto;
  padding: 1.55rem 1.5rem 1.7rem;
  border: 0;
  border-radius: 0.5rem;
  background: var(--article-soft-surface);
}

.process-item:nth-last-child(2):nth-child(3n + 1),
.process-item:nth-last-child(2):nth-child(3n + 1) ~ .process-item,
.lip-article .lip-timeline .process-item:nth-child(4),
.lip-article .lip-timeline .process-item:nth-child(5) {
  grid-column: span 3;
}

.process-item:first-child:nth-last-child(4),
.process-item:first-child:nth-last-child(4) ~ .process-item {
  grid-column: span 3;
}

.process-number {
  margin-bottom: 1.05rem;
  color: #4d7b80;
}

.fit-wrapper {
  grid-template-columns: minmax(0, 1.16fr) minmax(19rem, 0.84fr);
  gap: clamp(2.25rem, 5vw, 4rem);
}

.fit-card,
:is(
  .fit-section[aria-labelledby*="quelle"],
  .fit-section[aria-labelledby*="source"]
) .fit-card {
  padding: 1.6rem 1.7rem 1.75rem;
  border: 0;
  border-radius: 0.5rem;
  background: var(--article-soft-surface);
}

.fit-list li {
  padding: 0.42rem 0;
}

.fit-note {
  border-top-color: rgba(36, 38, 37, 0.12);
}

:is(
  .fit-section[aria-labelledby*="quelle"],
  .fit-section[aria-labelledby*="source"]
) .fit-wrapper {
  grid-template-columns: minmax(0, 0.82fr) minmax(24rem, 1.18fr);
  gap: clamp(2.25rem, 5vw, 4rem);
}

.travel-article .travel-callout {
  grid-template-columns: minmax(11rem, 0.65fr) minmax(0, 1.35fr);
  gap: 2rem;
  margin-top: 1.75rem;
  padding: 1.4rem 1.5rem;
  border: 0;
  border-radius: 0.5rem;
  background: var(--article-soft-surface);
}

.bg-section .travel-callout {
  background: rgba(243, 238, 227, 0.08);
}

.travel-article .travel-split-list,
.lip-article .lip-assessment-grid,
.travel-article .travel-bullet-list,
.travel-article .travel-checklist__grid {
  gap: 0.75rem;
  border: 0;
}

.travel-article .travel-split-list > div,
.travel-article .travel-split-list > div + div,
.lip-article .lip-assessment-grid > div,
.lip-article .lip-assessment-grid > div:nth-child(even) {
  padding: 1.4rem 1.45rem 1.5rem;
  border: 0;
  border-radius: 0.45rem;
  background: rgba(243, 238, 227, 0.075);
}

.lip-article .lip-assessment-grid > div:nth-child(n + 3) {
  border-top: 0;
}

.travel-article .travel-bullet-list li,
.travel-article .travel-bullet-list li:nth-child(even),
.lip-article .travel-bullet-list.lip-emergency-list li,
.lip-article .travel-bullet-list.lip-emergency-list li:nth-child(even),
.lip-article .travel-bullet-list.lip-emergency-list li + li {
  padding: 1rem 1.15rem 1rem 2.15rem;
  border: 0;
  border-radius: 0.4rem;
  background: rgba(243, 238, 227, 0.07);
}

.travel-article .travel-bullet-list li::before,
.travel-article .travel-bullet-list li:nth-child(even)::before,
.lip-article .travel-bullet-list.lip-emergency-list li + li::before {
  left: 1rem;
}

.travel-article .travel-checklist__grid li,
.travel-article .travel-checklist__grid li:nth-child(even) {
  min-height: 0;
  padding: 1.1rem 1.15rem 1.1rem 2.8rem;
  border: 0;
  border-radius: 0.4rem;
  background: var(--article-soft-surface);
}

.travel-article .travel-checklist__grid li::before {
  top: 1.3rem;
  left: 1rem;
}

.lip-article .lip-sources {
  border-top: 0;
}

.lip-article .lip-sources li {
  border-bottom-color: rgba(36, 38, 37, 0.13);
}

.lip-article .lip-sources li::before {
  color: var(--article-muted);
}

.lip-article .lip-sources a {
  color: var(--article-ink);
  text-decoration-color: rgba(36, 38, 37, 0.3);
}

.article-related {
  border-top: 0;
  background: #e8e0d3;
}

.article-related__grid {
  gap: 0.9rem;
  border: 0;
}

.article-related-card,
.article-related-card:first-child,
.article-related-card:last-child {
  padding: 0 0 1.35rem;
  overflow: hidden;
  border: 0;
  border-radius: 0.5rem;
  background: rgba(244, 239, 230, 0.72);
}

.article-related-card__body {
  padding: 1.15rem 1.25rem 0;
}

.article-related-card:hover,
.article-related-card:focus-visible {
  background: var(--article-paper);
}

@media (max-width: 1024px) {
  :root {
    --article-gutter: 2rem;
    --article-section-space: 2.5rem;
  }

  main {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
    padding-top: 7rem;
  }

  main .hero-img {
    min-height: 0;
    border-radius: 0.35rem;
  }

  main .hero-text {
    padding-top: 2.4rem;
  }

  .category-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .fit-wrapper,
  :is(
    .fit-section[aria-labelledby*="quelle"],
    .fit-section[aria-labelledby*="source"]
  ) .fit-wrapper {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
  }

  .fit-card,
  :is(
    .fit-section[aria-labelledby*="quelle"],
    .fit-section[aria-labelledby*="source"]
  ) .fit-card {
    padding: 1.5rem;
  }

  .services-wrapper {
    grid-template-columns: minmax(0, 1fr);
  }

  .service-item,
  .service-item:first-child:nth-last-child(3),
  .service-item:first-child:nth-last-child(3) ~ .service-item {
    grid-column: auto;
  }

  .article-related__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .article-related-card,
  .article-related-card:first-child,
  .article-related-card:last-child {
    display: grid;
    grid-template-columns: 13rem minmax(0, 1fr);
    gap: 0;
    padding: 0;
  }

  .article-related-card__body {
    padding: 1.25rem;
  }
}

@media (max-width: 780px) {
  :root {
    --article-gutter: 1.25rem;
    --article-section-space: 2.25rem;
  }

  main {
    padding-top: 5.75rem;
    padding-bottom: 2.4rem;
  }

  main .hero-text h1 {
    font-size: clamp(1.9rem, 8vw, 2.5rem);
  }

  .category-wrapper,
  .services-wrapper,
  .process-wrapper,
  .lip-article .lip-timeline,
  .approach-wrapper {
    grid-template-columns: minmax(0, 1fr);
  }

  .bg-img {
    aspect-ratio: 16 / 10;
  }

  .category-item,
  .category-item:last-child:nth-child(odd),
  .service-item,
  .process-item,
  .process-item:nth-last-child(2):nth-child(3n + 1),
  .process-item:nth-last-child(2):nth-child(3n + 1) ~ .process-item,
  .lip-article .lip-timeline .process-item,
  .lip-article .lip-timeline .process-item:nth-child(4),
  .lip-article .lip-timeline .process-item:nth-child(5),
  .lip-article .lip-timeline .process-item:nth-child(n + 4) {
    grid-column: auto;
  }

  .category-item,
  .process-item,
  .lip-article .lip-timeline .process-item,
  .lip-article .lip-timeline .process-item:nth-child(n + 4) {
    padding: 1.3rem 1.25rem 1.45rem;
  }

  .service-content {
    padding: 1.35rem 1.3rem 1.45rem;
  }

  .travel-article .travel-callout {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.6rem;
    padding: 1.25rem;
  }

  .article-related-card,
  .article-related-card:first-child,
  .article-related-card:last-child {
    grid-template-columns: 7.5rem minmax(0, 1fr);
  }

  .article-related-card__body {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  :root {
    --article-gutter: 1rem;
    --article-section-space: 2rem;
  }

  article > section.intro-section + section.fit-section,
  article > section.intro-section + section.category-section,
  article > section.category-section + section.process-section,
  article > section.fit-section + section.fit-section,
  article > section.fit-section + section.process-section,
  article > section.process-section + section.fit-section {
    padding-top: 0.5rem;
  }

  .article-related-card,
  .article-related-card:first-child,
  .article-related-card:last-child {
    grid-template-columns: 6.4rem minmax(0, 1fr);
  }

  .article-related-card h3 {
    font-size: 1.18rem;
  }
}

/*
 * Unified editorial layout, August 2026
 * One content axis for every article section and a classic editorial header.
 */

:root {
  --article-gutter: clamp(1.25rem, 6vw, 7.5rem);
  --article-content-width: 82rem;
  --article-copy-width: 62rem;
  --article-section-space: clamp(4.75rem, 7vw, 7rem);
  --article-paper: #f4efe6;
  --article-paper-alt: #ebe4d8;
  --article-ink: #202728;
  --article-muted: #6c706b;
  --article-accent: #8bb3b0;
  --article-rule: rgba(32, 39, 40, 0.14);
  --article-hero: #172d31;
  --article-hero-ink: #f5f0e7;
  --article-h1-size: 3.25rem;
  --article-h2-size: clamp(1.7rem, 2vw, 2.25rem);
  --article-h3-size: clamp(1.15rem, 1.25vw, 1.35rem);
}

body {
  background: var(--article-paper);
  color: var(--article-ink);
}

.article-reading-progress {
  position: fixed;
  z-index: 2200;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  overflow: hidden;
  background: rgba(139, 179, 176, 0.16);
  pointer-events: none;
}

.article-reading-progress__bar {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #b8d1ce 0%, #719b9d 100%);
  box-shadow: 0 0 8px rgba(139, 179, 176, 0.45);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

/* Classic article header: title first, editorial image second */
main {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto auto auto;
  width: 100%;
  height: auto;
  min-height: 0;
  padding: 9.5rem var(--article-gutter) 4rem;
  overflow: hidden;
  background: var(--article-hero);
  color: var(--article-hero-ink);
}

main::before {
  content: none;
}

main .hero-gradient {
  display: none;
}

main .hero-img {
  position: relative;
  z-index: 1;
  inset: auto;
  grid-column: 1;
  grid-row: 3;
  width: min(100%, var(--article-content-width));
  max-width: var(--article-content-width);
  height: clamp(21rem, 29vw, 27rem);
  min-height: 0;
  margin: 3.25rem auto 0;
  overflow: hidden;
  border: 0;
  border-radius: 0.25rem;
  outline: 0;
  background: var(--article-hero);
}

main .hero-img::after {
  content: none;
}

main .hero-img::before {
  content: none;
}

main .hero-img img,
main .hero-img img.img-pos-top {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48% !important;
  filter: none;
  transform: none;
}

main .hero-img img[src*="aesthetische-medizin-bodywise-heidelberg"] {
  object-position: center 50% !important;
}

main .hero-img img[src*="gesundheitsvorsorge-heidelberg"] {
  object-position: center 54% !important;
}

main .hero-navigation {
  position: static;
  z-index: 3;
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  display: flex;
  width: min(100%, var(--article-content-width));
  margin: 0 auto;
  padding: 0;
  flex-wrap: wrap;
  gap: 0.45rem;
}

main .hero-navigation a,
main .hero-navigation span {
  color: rgba(245, 240, 231, 0.66);
  font-size: 0.76rem;
  font-weight: 300;
  line-height: 1.5;
}

main .hero-navigation .current-nav {
  color: rgba(245, 240, 231, 0.94) !important;
}

main .hero-text {
  position: static;
  z-index: 3;
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  display: block;
  width: min(100%, var(--article-content-width));
  max-width: var(--article-content-width);
  margin: 3.5rem auto 0;
  padding: 0;
  transform: none;
  text-align: left;
}

main .hero-text::before {
  display: block;
  margin: 0 0 1rem;
  color: #b0ceca;
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.15em;
}

main .hero-text h1 {
  width: 100%;
  max-width: var(--article-content-width);
  margin: 0;
  color: var(--article-hero-ink);
  font-family: "PPPaloma", sans-serif;
  font-size: var(--article-h1-size);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.028em;
  overflow-wrap: normal;
  hyphens: none;
  text-wrap: wrap;
}

main .hero-line {
  display: none;
}

main .article-info,
main .info-wrapper {
  display: flex;
  width: auto;
  min-width: 0;
  justify-content: flex-start;
  align-items: center;
}

main .article-info {
  margin-top: 1.5rem;
}

main .info-wrapper {
  gap: 0.8rem;
  flex-wrap: wrap;
}

main .article-info p,
main .article-info span {
  width: auto;
  max-width: 100%;
  margin: 0;
  padding: 0;
  color: rgba(245, 240, 231, 0.78);
  font-size: 0.84rem;
  font-weight: 300;
  line-height: 1.5;
}

main .article-info p::before {
  content: none;
}

main .article-info span {
  display: inline;
  color: var(--article-accent);
}

/* One shared axis for every article section */
:is(
  .intro-section,
  .category-section,
  .bg-section,
  .process-section,
  .fit-section,
  .final-cta-section,
  .article-related
) {
  padding: var(--article-section-space) var(--article-gutter);
  border: 0;
}

:is(
  .intro-wrapper,
  .section-intro,
  .category-wrapper,
  .approach-wrapper,
  .services-outer,
  .process-intro,
  .process-wrapper,
  .fit-wrapper,
  .article-related__inner
) {
  width: min(100%, var(--article-content-width));
  max-width: var(--article-content-width);
  margin-right: auto;
  margin-left: auto;
}

.intro-section,
.category-section,
.process-section,
.fit-section,
.final-cta-section {
  background: var(--article-paper);
}

article > .fit-section:nth-of-type(even),
body > .fit-section:nth-of-type(even),
article > .category-section {
  background: rgba(235, 228, 216, 0.56);
}

article > section + section,
body > main + section,
body > section + section {
  border-top: 1px solid var(--article-rule);
}

.intro-wrapper {
  display: block;
  text-align: left;
}

.intro-wrapper > .headline-kicker,
.intro-wrapper > :not(.headline-kicker) {
  grid-column: auto;
  grid-row: auto;
}

.headline-kicker,
.section-intro .headline-kicker,
.headline-kicker-bg,
.article-related__kicker {
  display: block;
  margin: 0 0 1rem;
  color: #55797b;
  font-size: 0.7rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.headline-kicker::before,
.section-intro .headline-kicker::before,
.headline-kicker-bg::before,
.article-related__kicker::before {
  content: none;
}

.headline-kicker-bg {
  color: #a8c5c2;
}

:is(
  .intro-section,
  .category-section,
  .bg-section,
  .process-section,
  .fit-section,
  .final-cta-section
) h2 {
  font-size: var(--article-h2-size);
  line-height: 1.04;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

:is(
  .intro-section,
  .category-section,
  .bg-section,
  .process-section,
  .fit-section,
  .final-cta-section
) h3:not(.headline-kicker, .headline-kicker-bg) {
  font-size: var(--article-h3-size);
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.intro-section h2 {
  max-width: 62rem;
  margin: 0 0 1.75rem;
}

.intro-section p,
.intro-section p:first-of-type {
  max-width: var(--article-copy-width);
  margin: 0 0 1.2rem;
  color: #414746;
  font-size: 1.08rem;
  font-weight: 200;
  line-height: 1.72;
}

.intro-section p:first-of-type {
  font-size: 1.14rem;
}

.intro-section .cta-wrapper-pos {
  justify-content: flex-start;
}

.section-intro,
.process-intro {
  display: block;
  max-width: var(--article-content-width);
  margin-bottom: 2.5rem;
}

.section-intro .headline-kicker,
.section-intro h2 {
  grid-column: auto;
}

.section-intro h2,
.process-intro h2 {
  max-width: 62rem;
  margin: 0;
}

.process-intro p {
  max-width: var(--article-copy-width);
  margin-top: 1.35rem;
}

/* Calm editorial cards without shifting the outer reading edge */
.category-wrapper,
.process-wrapper,
.lip-article .lip-timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  border: 0;
}

.category-item,
.process-item,
.lip-article .lip-timeline .process-item,
.lip-article .lip-timeline .process-item:nth-child(n + 4) {
  grid-column: auto;
  width: auto;
  min-width: 0;
  padding: 1.75rem 1.7rem 1.9rem;
  border: 1px solid rgba(32, 39, 40, 0.1);
  border-radius: 0.35rem;
  background: rgba(255, 255, 255, 0.2);
}

.category-item::before {
  margin-bottom: 1.5rem;
}

.process-item:nth-last-child(2):nth-child(3n + 1),
.process-item:nth-last-child(2):nth-child(3n + 1) ~ .process-item,
.lip-article .lip-timeline .process-item:nth-child(4),
.lip-article .lip-timeline .process-item:nth-child(5) {
  grid-column: auto;
}

.process-number {
  margin-bottom: 1.15rem;
}

.category-item p,
.category-list li,
.process-item p,
.service-content p {
  font-size: 0.98rem;
  line-height: 1.62;
}

/* Two-column text/card sections keep the same outer edge */
.fit-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(19rem, 0.55fr);
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.fit-text,
.fit-card {
  width: 100%;
  min-width: 0;
}

.fit-text h2 {
  max-width: 52rem;
}

.fit-text p {
  max-width: 52rem;
}

.fit-card,
:is(
  .fit-section[aria-labelledby*="quelle"],
  .fit-section[aria-labelledby*="source"]
) .fit-card {
  padding: 1.75rem;
  border: 1px solid rgba(32, 39, 40, 0.1);
  border-radius: 0.35rem;
  background: var(--article-paper-alt);
}

:is(
  .fit-section[aria-labelledby*="quelle"],
  .fit-section[aria-labelledby*="source"]
) .fit-wrapper {
  grid-template-columns: minmax(0, 0.78fr) minmax(28rem, 1.22fr);
  gap: clamp(3rem, 6vw, 6rem);
}

/* Dark sections are full-width bands, but their content never changes axis */
.bg-section {
  background: #1c3135;
}

.approach-wrapper {
  display: grid;
  grid-template-columns: minmax(19rem, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.approach-wrapper--text-only {
  display: block;
}

.lip-article .lip-wide-dark-section .approach-wrapper--text-only {
  width: min(100%, var(--article-content-width));
  max-width: var(--article-content-width);
  margin-right: auto;
  margin-left: auto;
}

.approach-wrapper > .bg-text,
.approach-wrapper > .bg-img,
.approach-wrapper--text-only .bg-text,
.lip-article .lip-wide-dark-section .approach-wrapper--text-only .bg-text {
  width: 100%;
  max-width: none;
  min-width: 0;
  margin: 0;
}

.bg-text > h2,
.lip-article .lip-wide-dark-section .bg-text > h2 {
  max-width: 62rem;
}

.bg-text > p,
.lip-article .lip-wide-dark-section .bg-text > p {
  max-width: var(--article-copy-width);
}

.bg-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 0.35rem;
}

.bg-img img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.services-wrapper {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  border: 0;
}

.service-item,
.service-item:first-child:nth-last-child(3),
.service-item:first-child:nth-last-child(3) ~ .service-item {
  grid-column: auto;
  width: auto;
  min-width: 0;
  border: 1px solid rgba(245, 240, 231, 0.12);
  border-radius: 0.35rem;
  background: rgba(245, 240, 231, 0.055);
}

.service-content {
  padding: 1.7rem 1.65rem 1.85rem;
}

.lip-article .lip-assessment-grid,
.travel-article .travel-split-list,
.travel-article .travel-bullet-list,
.travel-article .travel-checklist__grid {
  gap: 1rem;
}

.lip-article .lip-assessment-grid > div,
.lip-article .lip-assessment-grid > div:nth-child(even) {
  padding: 1.55rem;
}

.travel-article .travel-callout {
  width: min(100%, var(--article-copy-width));
  grid-template-columns: minmax(12rem, 0.65fr) minmax(0, 1.35fr);
  gap: 2rem;
  margin-top: 2rem;
  padding: 1.55rem 1.65rem;
  border: 1px solid rgba(32, 39, 40, 0.1);
  border-radius: 0.35rem;
}

.bg-section .travel-callout {
  width: 100%;
  border-color: rgba(245, 240, 231, 0.12);
}

.final-cta-section .intro-wrapper {
  max-width: var(--article-content-width);
}

.article-related {
  border-top: 1px solid var(--article-rule);
  background: #e7dfd2;
}

@media (max-width: 1100px) {
  :root {
    --article-gutter: 2.25rem;
    --article-section-space: 5rem;
    --article-h1-size: 2.75rem;
  }

  main {
    height: auto;
    min-height: 0;
    padding-top: 8rem;
    padding-bottom: 3.5rem;
  }

  main .hero-text {
    margin-top: 2.75rem;
  }

  main .hero-img {
    height: clamp(20rem, 42vw, 25rem);
    margin-top: 2.75rem;
  }

  .fit-wrapper,
  :is(
    .fit-section[aria-labelledby*="quelle"],
    .fit-section[aria-labelledby*="source"]
  ) .fit-wrapper {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.25rem;
  }

  .fit-card {
    max-width: 44rem;
  }

  .approach-wrapper {
    grid-template-columns: minmax(17rem, 0.75fr) minmax(0, 1.25fr);
    gap: 3rem;
  }

  .category-wrapper,
  .process-wrapper,
  .lip-article .lip-timeline,
  .services-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  :root {
    --article-gutter: 1.25rem;
    --article-section-space: 3.75rem;
    --article-h1-size: 2.15rem;
    --article-h2-size: clamp(1.55rem, 6.5vw, 1.9rem);
    --article-h3-size: 1.18rem;
  }

  main {
    grid-template-rows: auto auto auto;
    height: auto;
    min-height: 0;
    padding: 6.5rem var(--article-gutter) 2.5rem;
  }

  main .hero-navigation {
    display: none;
  }

  main .hero-text {
    grid-row: 2;
    margin-top: 0;
  }

  main .hero-text::before {
    margin-bottom: 0.9rem;
    font-size: 0.66rem;
  }

  main .hero-text h1 {
    line-height: 1.05;
    overflow-wrap: break-word;
    hyphens: auto;
  }

  main .hero-line {
    display: none;
  }

  main .info-wrapper {
    display: flex;
    grid-template-columns: none;
    gap: 0.4rem 0.65rem;
  }

  main .article-info p,
  main .article-info span {
    display: inline;
    width: auto;
    padding: 0;
    font-size: 0.76rem;
  }

  main .article-info p::before {
    content: none;
  }

  main .hero-img {
    grid-row: 3;
    height: auto;
    aspect-ratio: 4 / 3;
    margin-top: 2rem;
    border-radius: 0.2rem;
  }

  .intro-section p,
  .intro-section p:first-of-type,
  .bg-text p,
  .process-intro p,
  .fit-text p {
    font-size: 1rem;
    line-height: 1.66;
  }

  .category-wrapper,
  .process-wrapper,
  .lip-article .lip-timeline,
  .services-wrapper,
  .approach-wrapper {
    grid-template-columns: minmax(0, 1fr);
  }

  .category-item,
  .process-item,
  .lip-article .lip-timeline .process-item,
  .lip-article .lip-timeline .process-item:nth-child(n + 4),
  .service-item {
    grid-column: auto;
  }

  .category-item,
  .process-item,
  .lip-article .lip-timeline .process-item,
  .lip-article .lip-timeline .process-item:nth-child(n + 4) {
    padding: 1.4rem 1.35rem 1.55rem;
  }

  .service-content,
  .fit-card {
    padding: 1.4rem 1.35rem 1.55rem;
  }

  .bg-img {
    aspect-ratio: 16 / 10;
  }

  .travel-article .travel-callout {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.65rem;
    padding: 1.35rem;
  }

  .lip-article .lip-assessment-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .lip-article .lip-assessment-grid > div,
  .lip-article .lip-assessment-grid > div:nth-child(even) {
    padding: 1.35rem;
  }
}

@media (max-width: 420px) {
  :root {
    --article-gutter: 1rem;
    --article-section-space: 3.25rem;
    --article-h1-size: 1.95rem;
  }

  main {
    height: auto;
    min-height: 0;
    padding-top: 5.5rem;
    padding-bottom: 2rem;
  }

  main .article-info span:nth-of-type(2),
  main .article-info p:last-child {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  main .hero-img img {
    transform: none;
  }
}

/* Article image limits and mobile header spacing. */
main .hero-img {
  height: 25rem;
}

.bg-img {
  height: 28rem;
  aspect-ratio: auto;
}

.article-related-card__image {
  height: 12rem;
  aspect-ratio: auto;
}

@media (max-width: 1100px) {
  main .hero-img {
    height: 22rem;
  }

  .bg-img {
    height: 24rem;
  }
}

@media (max-width: 780px) {
  main {
    padding-top: 7.75rem;
  }

  main .hero-img {
    height: 18rem;
    aspect-ratio: auto;
  }

  .bg-img {
    height: 18rem;
  }

  .article-related-card__image {
    height: 11rem;
  }
}

@media (max-width: 420px) {
  main {
    padding-top: 7.25rem;
  }

  main .hero-img,
  .bg-img {
    height: 16.5rem;
  }
}

:root {
  --bw-bg: #e8e4e0;
  --bw-ink: #272626;
  --bw-accent: #34656d;
  --bw-accent-dark: #27454a;
  --bw-light: #f3eee3;
}

.header-desktop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  width: 100%;
  padding: 1.55rem 2.6rem;
  transition:
    top 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

header.scrolled {
  margin-top: 0;
  background: var(
    --header-scrolled-bg,
    linear-gradient(
      0deg,
      rgba(29, 29, 29, 0) 0%,
      rgba(29, 29, 29, 0.8) 100%
    )
  );
  box-shadow: var(--header-scrolled-shadow, none);
}

.header-desktop--mega-open,
.header-desktop--mega-open.scrolled {
  background: var(--bw-light);
  box-shadow: 0 1px 0 rgba(44, 42, 42, 0.05);
}

.header-desktop__nav {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
}

.header-desktop__brand {
  min-width: 0;
  justify-self: start;
}

.header-desktop__brand a {
  display: inline-flex;
  align-items: center;
}

.header-desktop__logo {
  display: block;
  width: 88px;
  height: auto;
  transition: width 0.28s ease;
}

header.scrolled .header-desktop__logo {
  width: 76px;
}

.header-desktop__center,
.header-desktop__right {
  display: flex;
  min-width: 0;
  align-items: center;
  margin-top: 0;
}

.header-desktop__center {
  justify-self: center;
  justify-content: center;
  gap: clamp(0.95rem, 1.35vw, 1.45rem);
}

.header-desktop__right {
  justify-self: end;
  justify-content: flex-end;
  gap: 1rem;
}

.header-desktop__trigger {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.header-desktop__link-text,
.nav-link {
  color: var(--header-link-color, #e8e4e0);
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 200;
  line-height: normal;
  text-decoration: none;
  transition: color 0.25s ease;
}

.header-desktop__chevron,
.header-desktop__lang-chevron {
  display: block;
  object-fit: contain;
  filter: var(--header-chevron-filter, none);
  transition:
    transform 0.35s ease,
    filter 0.25s ease,
    opacity 0.25s ease;
}

header.scrolled .header-desktop__chevron,
header.scrolled .header-desktop__lang-chevron {
  filter: var(
    --header-chevron-filter-scrolled,
    brightness(0) saturate(100%) invert(94%) sepia(17%) saturate(422%)
      hue-rotate(303deg) brightness(106%) contrast(101%)
  );
}

header.scrolled .header-desktop__link-text,
header.scrolled .nav-link {
  color: var(--header-link-color-scrolled, #e8e4e0);
}

.header-desktop.header-desktop--mega-open .header-desktop__link-text,
.header-desktop.header-desktop--mega-open .nav-link {
  color: var(--header-open-link-color, var(--bw-ink));
}

.header-desktop.header-desktop--mega-open .header-desktop__chevron,
.header-desktop.header-desktop--mega-open .header-desktop__lang-chevron {
  filter: var(--header-open-chevron-filter, invert(1));
}

.main-cta {
  position: relative;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0.62rem 1rem;
  overflow: hidden;
  border-radius: 3px;
  background: var(--bw-accent);
  color: #e8e4e0;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 200;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.26);
  transition:
    transform 0.35s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

.main-cta:hover,
.main-cta:focus-visible {
  transform: translateY(-2px);
  background: var(--bw-accent-dark);
  color: #e8e4e0;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

.header-desktop__mega-panel {
  background: var(--bw-bg);
}

.header-desktop__mega-inner {
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  padding: 10.4rem 2.6rem 3.2rem;
}

.header-desktop__mega-layout {
  grid-template-columns: minmax(420px, 780px) minmax(320px, 440px);
}

.header-desktop__mega-main {
  gap: clamp(0.55rem, 0.9vw, 0.95rem);
}

.header-desktop__mega-linkline {
  margin-bottom: 0;
  padding-bottom: 0.16em;
}

.header-desktop__mega-service {
  color: var(--bw-ink);
  font-family: "PPPaloma", Arial, sans-serif;
  font-size: clamp(1.55rem, 1.75vw, 2.35rem);
  font-weight: 500;
  letter-spacing: normal;
}

.header-desktop__mega-card-image-wrap {
  border-radius: 12px;
}

.header-desktop__mega-card-title {
  margin: 0 0 0.45rem;
  color: var(--bw-ink);
  font-family: "PPPaloma", Arial, sans-serif;
  font-size: clamp(1.25rem, 1.35vw, 1.65rem);
  font-weight: 500;
  letter-spacing: normal;
}

.header-desktop__mega-card-text {
  color: #5f5955;
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 200;
  line-height: normal;
}

.mobile-header {
  z-index: 250;
  padding: 15px;
}

.menu-mobile {
  z-index: 400;
  padding: 1.4rem;
  background: var(--bw-bg);
}

.menu-closing {
  top: 1.8rem;
  right: 1.4rem;
}

.menu-links {
  padding: 30% 2rem 2rem;
}

.menu-links a,
.menu-mobile-services__trigger {
  padding: 0.6rem 0;
  color: var(--bw-ink);
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 200;
  line-height: normal;
}

.menu-mobile-services__panel a {
  padding: 0.4rem 0 0.4rem 1.25rem;
  font-size: 1.3rem;
  line-height: 1.45;
}

.language-switch,
.language-switch a {
  color: var(--bw-ink);
}

@media (min-width: 1024px) {
  .header-desktop {
    display: block;
  }

  .mobile-header {
    display: none;
  }
}

@media (max-width: 1023px) {
  .header-desktop {
    display: none;
  }

  .mobile-header {
    display: flex;
  }
}

.lab-table-wrap {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-top: 2rem;
  overflow: hidden;
  border: 1px solid rgba(32, 39, 40, 0.12);
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.28);
  box-shadow: 0 1.25rem 3rem rgba(32, 39, 40, 0.06);
}

.lab-table {
  width: 100%;
  min-width: 0;
  border-collapse: collapse;
  table-layout: fixed;
  background: transparent;
}

.lab-table th,
.lab-table td {
  padding: 1.2rem 1.3rem;
  border-right: 1px solid rgba(32, 39, 40, 0.09);
  border-bottom: 1px solid rgba(32, 39, 40, 0.1);
  vertical-align: middle;
  color: #414746;
  font-size: 0.95rem;
  font-weight: 200;
  line-height: 1.58;
  text-align: left;
}

.lab-table thead th {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #203a3e;
  color: #f5f0e7;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.lab-table tbody th {
  background: rgba(139, 179, 176, 0.1);
  color: #202728;
  font-weight: 500;
}

.lab-table tbody tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.2);
}

.lab-table tbody tr {
  transition: background-color 0.2s ease;
}

.lab-table tbody tr:hover {
  background: rgba(139, 179, 176, 0.07);
}

.lab-table tr:last-child td,
.lab-table tr:last-child th {
  border-bottom: 0;
}

.lab-table th:last-child,
.lab-table td:last-child {
  border-right: 0;
}

.lab-value {
  display: block;
  color: #203a3e;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.fit-wrapper:has(> .lab-table-wrap) {
  grid-template-columns: minmax(0, 1fr);
  gap: 2.25rem;
}

.fit-wrapper:has(> .lab-table-wrap) > .fit-text {
  max-width: var(--article-copy-width);
}

.fit-wrapper:has(> .lab-table-wrap) > .lab-table-wrap {
  margin-top: 0;
}

.bg-section .lab-table-wrap {
  border-color: rgba(245, 240, 231, 0.16);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: none;
}

.bg-section .lab-table th,
.bg-section .lab-table td {
  border-color: rgba(245, 240, 231, 0.13);
  color: rgba(245, 240, 231, 0.82);
}

.bg-section .lab-table thead th {
  background: rgba(139, 179, 176, 0.14);
  color: #f5f0e7;
}

.bg-section .lab-table tbody th {
  background: rgba(255, 255, 255, 0.055);
  color: #f5f0e7;
}

.bg-section .lab-table tbody tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.025);
}

.bg-section .lab-table tbody tr:hover {
  background: rgba(139, 179, 176, 0.07);
}

.lab-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem 2rem;
  max-width: var(--article-copy-width);
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.lab-checklist li {
  position: relative;
  padding: 0.9rem 0 0.9rem 1.35rem;
  border-top: 1px solid var(--article-rule);
  color: inherit;
  font-size: 1rem;
  font-weight: 200;
  line-height: 1.55;
}

.lab-checklist li::before {
  position: absolute;
  top: 1.55rem;
  left: 0;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--article-accent);
  content: "";
}

main .article-info {
  gap: 0.8rem;
}

.fit-wrapper > .lab-table-wrap,
.bg-wrapper .lab-table-wrap,
.process-section > .lab-table-wrap {
  min-width: 0;
}

@media (max-width: 780px) {
  article,
  article > section,
  .fit-wrapper,
  .bg-wrapper,
  .process-section {
    min-width: 0;
  }

  .lab-table-wrap {
    margin-top: 1.4rem;
    overflow-x: auto;
    border-radius: 0.45rem;
    scrollbar-color: rgba(49, 95, 102, 0.7) transparent;
    scrollbar-width: thin;
  }

  .lab-table {
    min-width: 44rem;
  }

  .lab-table th,
  .lab-table td {
    padding: 0.9rem 0.95rem;
    font-size: 0.88rem;
  }

  .lab-checklist {
    grid-template-columns: minmax(0, 1fr);
  }
}

