* {
  box-sizing: border-box;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: #fbfbfb;
  margin: 0;
  padding: 0;
}

html[dir="rtl"] body {
  direction: rtl;
  font-family:
    Arial,
    "Tahoma",
    "Noto Sans Arabic",
    "Segoe UI",
    sans-serif;
}

html[dir="rtl"] input,
html[dir="rtl"] textarea,
html[dir="rtl"] select,
html[dir="rtl"] button {
  font-family:
    Arial,
    "Tahoma",
    "Noto Sans Arabic",
    "Segoe UI",
    sans-serif;
}

html[dir="rtl"] [href^="tel:"],
html[dir="rtl"] [href^="mailto:"] {
  direction: ltr;
  unicode-bidi: isolate;
}

@font-face {
  font-family: "PPEditorialNew";
  font-style: normal;
  font-weight: 500;
  src: url(/assets/fonts/PPEditorialNew/PPEditorialNew-Regular.woff2)
    format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  src: url("/assets/fonts/Roboto/roboto-v50-latin-regular.woff2")
    format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 200;
  src: url("/assets/fonts/Roboto/roboto-v50-latin-300.woff2") format("woff2");
  font-display: swap;
}

.pop-up {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
}

.pop-up.is-open {
  display: grid;
  place-items: center;
}

.pop-up-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(2px);
}

.pop-up-dialog {
  position: relative;
  width: min(92vw, 860px);
  background: #fbfbfb;
  border-radius: 5px;
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.18),
    0 4px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  animation: pop-in 200ms ease-out;
}

@keyframes pop-in {
  from {
    transform: translateY(8px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .pop-up-dialog {
    animation: none;
  }
}

.pop-up-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
}

.pop-up-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pop-up-text {
  padding: 24px 24px 28px;
}

.pop-up-text h3 {
  margin: 0 0 10px;
  font-size: clamp(1.1rem, 1.2rem + 0.3vw, 1.4rem);
  color: #cca152;
  font-size: 1.8rem;
  font-weight: 100;
}

.pop-up-text p {
  margin: 0 0 12px;
  color: #4d4d4d;
  font-weight: 100;
  font-size: 1.2rem;
  margin-top: 1rem;
}

.pop-up-cta {
  background-color: #cca152;
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  padding: 0.6rem 0.8rem;
  color: #fbfbfb;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  margin-top: 1rem;
}

.pop-up-close {
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  padding: 6px;
  line-height: 0;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}
.pop-up-close:hover {
  background: #ffffff;
}
.pop-up-close svg {
  display: block;
}

.sidebar {
  position: fixed;
  z-index: 1000;
  left: 0;
  width: clamp(300px, 15vw, 420px);
  border-right: 1px solid #4d4d4d;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 0 2rem;
  background-color: #fbfbfb;
}

.logo-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 2.2rem;
}

.logo-wrapper img {
  width: 240px;
  height: auto;
}

.main-navigation {
  margin-top: 3rem;
}

.main-navigation ul {
  padding: 0;
}

.main-navigation ul li {
  list-style: none;
}

.main-link {
  color: #4d4d4d;
  font-weight: 200;
  font-size: 1.3rem;
  text-decoration: none;
  line-height: 2.8rem;
  display: flex;
  align-items: center;
  gap: 4px;
}

.current-page {
  text-decoration: 1px #cca152 underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.has-submenu {
  position: relative;
  overflow: hidden;
}

.submenu {
  opacity: 0;
  max-height: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: max-height 0.3s ease;
}

.submenu {
  padding-left: 1rem !important;
}

.submenu a {
  font-size: 1.1rem;
  line-height: 1.5rem;
  font-weight: 200;
  color: #7a7a7a;
  text-decoration: none;
}

.sidebar-footer {
  position: absolute;
  bottom: 1rem;
  background-color: #fbfbfb;
}

.sidebar-footer {
  margin-top: auto;
  padding: 1rem 0;
  background-color: #fbfbfb;
}

.language-switch {
  position: relative;
  width: max-content;
}

.lang-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.7rem;
  border-radius: 2px;
  border: 1px solid hsl(0 0% 82%);
  background-color: #fbfbfb;
  box-shadow: 0 1px 2px hsl(0 0% 0% / 0.05);
  cursor: pointer;
  transition:
    box-shadow 0.2s ease,
    transform 0.12s ease;
}

.lang-trigger:hover {
  box-shadow: 0 4px 14px hsl(0 0% 0% / 0.1);
}

.lang-trigger:active {
  transform: translateY(1px);
}

.chev {
  transition: transform 0.18s ease;
}

.lang-list {
  position: absolute;
  left: 0;
  bottom: calc(100% + 0.4rem);
  margin: 0;
  padding: 0.35rem;
  list-style: none;
  min-width: 180px;
  z-index: 5000;
  border: 1px solid hsl(0 0% 82%);
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 10px 30px hsl(0 0% 0% / 0.12);
  transform-origin: bottom left;
  opacity: 0;
  transform: translateY(6px) scale(0.98);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.lang-list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.6rem;
  border-radius: 2px;
  cursor: pointer;
  outline: none;
}

.text {
  font-family: "Roboto", sans-serif;
  font-weight: 100;
}

.lang-label {
  font-family: "Roboto", sans-serif;
  font-weight: 200;
  font-size: 1rem;
}

.lang-list li:hover,
.lang-list li:focus {
  background: hsl(210 16% 96%);
}

.lang-list li[aria-selected="true"] {
  background: hsl(210 16% 94%);
}

.language-switch[data-open="true"] .lang-list {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.language-switch[data-open="true"] .chev {
  transform: rotate(180deg);
}

@media (prefers-reduced-motion: reduce) {
  .lang-list,
  .chev,
  .lang-trigger {
    transition: none;
  }
}

.mobile-header {
  display: none;
  justify-content: space-between;
  width: 100%;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  padding: 15px;
  transition: all 0.3s ease-in-out;
  background: linear-gradient(
    0deg,
    rgba(29, 29, 29, 0) 0%,
    rgba(29, 29, 29, 0.8) 100%
  );
}

.mobile-header nav {
  width: 100%;
}

.nav-menu {
  background: transparent;
  border: none;
}

.line {
  background-color: #fff;
  width: 25px;
  height: 1px;
  margin-bottom: 5px;
}

.line-small {
  background-color: #fff;
  width: 20px;
  height: 1px;
  margin-bottom: 5px;
  float: right;
}

.menu-mobile {
  display: none;
  background-color: #fbfbfb;
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10000;
}

.menu-mobile img {
  filter: invert(100%);
}

.menu-close {
  height: 20px;
  position: relative;
  width: 20px;
}

.menu-closing {
  position: absolute;
  right: 1.4rem;
  top: 1.8rem;
}

.menu-links {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 15%;
  left: 1.4rem;
}

.menu-links a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1.5rem;
  font-weight: 100;
  text-decoration: none;
  padding: 0.7rem 0;
  color: #4d4d4d;
}

.menu-links img {
  width: 12px;
}

.menu-mobile > .menu-links {
  position: static;
  width: max-content;
  margin-block-start: 15vh;
  margin-inline-start: 1.4rem;
  margin-inline-end: auto;
}

.menu-bottom {
  position: static;
  width: max-content;
  margin-block-start: 0.5rem;
  margin-inline-start: 1.4rem;
  margin-inline-end: auto;
}

.menu-mobile > .menu-bottom .lang-list {
  top: calc(100% + 0.4rem);
  bottom: auto;
  transform-origin: top left;
}

html[dir="rtl"] .menu-mobile > .menu-bottom .lang-list {
  right: 0;
  left: auto;
  transform-origin: top right;
}

.vertical-bar {
  color: #4d4d4d;
}

.menu-bottom a {
  font-size: 1rem;
  font-weight: 200;
  text-decoration: none;
  color: #4d4d4d;
}

.menu-mobile-page {
  background-color: #fbfbfb;
  display: none;
  height: 100%;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10001;
}

.menu-mobile-page-closing {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.8rem 1.4rem;
  width: 100%;
  position: absolute;
  top: 0;
}

.page-body {
  margin-left: clamp(300px, 15vw, 420px);
  width: calc(100% - clamp(300px, 15vw, 420px));
  width: max(0px, calc(100% - clamp(300px, 15vw, 420px)));
  position: relative;
}

main {
  width: 100%;
  position: relative;
}

.hero-img-wrapper {
  width: 100%;
  height: 90vh;
  top: 0;
}

.hero-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(70%);
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 80%;
}

h1 {
  color: #fffdf6;
  font-family: "PPEditorialNew", sans-serif;
  font-size: 3.8rem;
  line-height: 4.4rem;
  font-weight: 400;
}

.hero-text p {
  color: #fffdf6;
  font-weight: 200;
  font-size: 1.2rem;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.hero-btn button {
  background-color: #cca152;
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  padding: 0.8rem 1rem;
  color: #fbfbfb;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.hero-link {
  display: flex;
  align-items: center;
  gap: 3px;
}

.hero-link a {
  color: #fffdf6;
  font-weight: 100;
  font-size: 1.1rem;
  text-decoration: none;
}

.intro-section {
  margin: 4rem 6rem;
}

.intro-layout {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.intro-text {
  width: 65%;
}

.intro-img {
  padding-top: 1rem;
  width: 35%;
  height: auto;
}

.intro-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: 50% 25%;
}

.intro-section h2 {
  color: #cca152;
  font-size: 1.8rem;
  font-weight: 100;
  width: 60%;
}

.intro-section p {
  color: #4d4d4d;
  font-weight: 100;
  font-size: 1.2rem;
  margin-top: 1rem;
}

.intro-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.intro-btn button {
  background-color: #cca152;
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  padding: 0.8rem 1rem;
  color: #fbfbfb;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.intro-link {
  display: flex;
  align-items: center;
  gap: 3px;
}

.intro-link a {
  color: #4d4d4d;
  font-weight: 100;
  font-size: 1.1rem;
  text-decoration: none;
}

.products-section {
  margin: 6rem 6rem;
}

.products-heading {
  display: block;
  max-width: 720px;
}

.products-heading h2 {
  color: #9a7336;
  font-size: 1.8rem;
  font-weight: 100;
  margin-top: 0;
  margin-bottom: 0;
}

.products-heading p {
  color: #4d4d4d;
  font-size: 1.2rem;
  font-weight: 100;
  margin: 1rem 0 0;
  max-width: 620px;
}

.products-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 1.2rem;
  margin-top: 2rem;
}

.product-home-card {
  background-color: #fbfbfb;
  border: 1px solid rgba(77, 77, 77, 0.13);
  box-shadow: 0 10px 30px rgba(60, 61, 55, 0.06);
  color: inherit;
  display: grid;
  min-width: 0;
  overflow: hidden;
  text-decoration: none;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.product-home-card:hover {
  border-color: rgba(154, 115, 54, 0.35);
  box-shadow: 0 18px 40px rgba(60, 61, 55, 0.12);
  transform: translateY(-4px);
}

.product-home-card:focus-visible {
  outline: 3px solid #6f542b;
  outline-offset: 4px;
}

.product-home-card:hover .product-home-img img {
  transform: scale(1.035);
}

.product-home-feature {
  grid-template-columns: 0.95fr 1.05fr;
  min-height: 480px;
}

.product-home-side {
  display: grid;
  gap: 1.2rem;
}

.product-home-small {
  grid-template-columns: 170px 1fr;
  min-height: 230px;
}

.product-home-img {
  align-items: center;
  background-color: #f7f4ef;
  display: flex;
  justify-content: center;
  min-width: 0;
  overflow: hidden;
}

.product-home-img img {
  display: block;
  height: 100%;
  width: 100%;
  transition: transform 0.45s ease;
}

.product-home-feature .product-home-img img {
  object-fit: cover;
}

.product-home-feature.product-home-pdf .product-home-img img {
  object-fit: contain;
  padding: 2.2rem;
}

.product-home-small .product-home-img img {
  object-fit: contain;
  padding: 1rem;
}

.product-home-small.product-home-photo .product-home-img img {
  object-fit: cover;
  padding: 0;
}

.product-home-content {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 1.6rem;
}

.product-home-kicker {
  color: #6f542b;
  font-size: 0.76rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-home-card h3 {
  color: #3c3d37;
  font-family: "PPEditorialNew", sans-serif;
  font-size: clamp(1.3rem, 1.55vw, 1.6rem);
  font-weight: 400;
  line-height: 1.25;
  margin: 0.65rem 0 0;
}

.product-home-feature h3 {
  color: #3c3d37;
  font-size: clamp(1.7rem, 2.2vw, 2.25rem);
  font-weight: 400;
}

.product-home-card p {
  color: #4d4d4d;
  font-size: 1.1rem;
  font-weight: 100;
  line-height: 1.45;
  margin: 1rem 0 0;
}

.product-home-footer {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1.4rem;
}

.product-home-footer strong {
  color: #6f542b;
  font-size: 1.2rem;
  font-weight: 300;
  white-space: nowrap;
}

.product-home-footer span {
  align-items: center;
  color: #6f542b;
  display: inline-flex;
  font-size: 1.05rem;
  font-weight: 100;
  gap: 4px;
  text-align: right;
}

.product-home-footer img {
  height: 10px;
  width: 10px;
}

.immunologie-section {
  margin: 6rem 6rem;
}

.subheader h3,
.subheader > p {
  padding: 0.6rem 1rem;
  border: 1px solid #4d4d4d;
  border-radius: 25px;
  display: inline-block;
  font-weight: 100;
  font-size: 1rem;
  color: #4d4d4d;
}

.immunologie-section h2 {
  color: #cca152;
  font-size: 1.8rem;
  font-weight: 100;
  width: 60%;
  margin-top: 0;
}

.immunologie-section p {
  color: #4d4d4d;
  font-size: 1.2rem;
  font-weight: 100;
}

.services-section {
  margin: 6rem 6rem;
}

.services-section h2 {
  color: #9a7336;
  font-size: 1.8rem;
  font-weight: 100;
  width: 60%;
  margin-top: 0;
}

.services-section p {
  color: #4d4d4d;
  font-weight: 100;
  font-size: 1.2rem;
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 1.25rem;
  margin-top: 2rem;
}

.services-cards > a {
  display: flex;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(77, 77, 77, 0.13);
  background: #fbfbfb;
  box-shadow: 0 10px 30px rgba(60, 61, 55, 0.06);
  color: #3c3d37;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.services-cards > a:focus-visible {
  outline: 3px solid #6f542b;
  outline-offset: 4px;
}

.services-item {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  width: 100%;
  height: auto;
  cursor: pointer;
}

.services-img {
  overflow: hidden;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  background: #e7e1d9;
}

.services-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  transition: transform 0.45s ease;
}

.services-content {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 1.35rem;
  pointer-events: auto;
}

.services-content::before {
  content: "Praxisleistung";
  margin-bottom: 0.7rem;
  color: #6f542b;
  font-size: 0.76rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.services-header {
  display: flex;
  align-items: center;
  width: 100%;
}

.services-header h3 {
  width: 100%;
  margin: 0;
  color: #3c3d37;
  font-family: "PPEditorialNew", sans-serif;
  font-size: clamp(1.3rem, 1.55vw, 1.6rem);
  font-weight: 400;
  line-height: 1.25;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.services-text {
  color: #4d4d4d;
}

.services-text p {
  margin: 0.9rem 0 1.5rem;
  color: #4d4d4d;
  font-size: 1rem;
  font-weight: 200;
  line-height: 1.55;
}

.services-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: auto;
  color: #6f542b;
  font-size: 0.95rem;
  font-weight: 200;
}

.services-cta img {
  display: block;
  transition: transform 0.25s ease;
}

@media (hover: hover) {
  .services-cards > a:hover {
    transform: translateY(-4px);
    border-color: rgba(154, 115, 54, 0.35);
    box-shadow: 0 18px 40px rgba(60, 61, 55, 0.12);
  }

  .services-cards > a:hover .services-img img {
    transform: scale(1.035);
  }

  .services-cards > a:hover .services-cta img {
    transform: translateX(0.3rem);
  }
}

.services-cards > a:focus-visible .services-cta img {
  transform: translateX(0.3rem);
}

.services-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

.services-btn button {
  background-color: #cca152;
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  padding: 0.8rem 1rem;
  color: #fbfbfb;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.services-link {
  display: flex;
  align-items: center;
  gap: 3px;
}

.services-link a {
  color: #4d4d4d;
  font-weight: 100;
  font-size: 1.1rem;
  text-decoration: none;
}

.interviews-section {
  margin: 6rem 6rem;
}

.interviews-section h2 {
  color: #9a7336;
  font-size: 1.8rem;
  font-weight: 100;
  width: 60%;
  margin-top: 0;
}

.overlays-wrapper {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 1.2rem;
  row-gap: 3.8rem;
  padding-bottom: 2.5rem;
}

.interview-item {
  position: relative;
  flex: 1 1 calc((100% - 2 * 1.2rem) / 3);
  aspect-ratio: 16 / 9;
  background: #000;
}

.interview-item .interview-poster,
.interview-item > img {
  filter: brightness(50%);
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.interview-item .interview-poster,
.interview-item > img,
.interview-item .video-placeholder,
.interview-item iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.interview-item .video-placeholder {
  z-index: 3;
  pointer-events: none;
}

.interview-item iframe {
  border: 0;
}

.interview-item iframe:focus-visible {
  outline: 3px solid #fffdf6;
  outline-offset: -5px;
}

.interview-item.is-active .video-placeholder {
  pointer-events: auto;
}

.overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  text-align: center;
  z-index: 100;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.overlay-text p {
  color: #fffdf6;
  font-weight: 100;
  font-size: 1.1rem;
}

.overlay-text a {
  color: #fffdf6;
  font-weight: 100;
  font-size: 1.1rem;
}

.overlay-text button {
  background-color: #6f542b;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  cursor: pointer;
  min-height: 44px;
  padding: 0.7rem 1rem;
  color: #fbfbfb;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.overlay-text button:hover {
  background-color: #594323;
}

.overlay-text button:focus-visible {
  outline: 3px solid #fffdf6;
  outline-offset: 3px;
}

.overlay-text button:disabled {
  cursor: wait;
}

.interview-item.is-active .interview-poster,
.interview-item.is-active > img,
.interview-item.is-active .overlay-text {
  visibility: hidden;
  opacity: 0;
}

.interview-date {
  position: absolute;
  bottom: -2.5rem;
}

.interview-date p {
  color: #4d4d4d;
  font-weight: 100;
  font-size: 1.1rem;
}

.interviews-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: end;
  gap: clamp(2rem, 5vw, 6rem);
  margin-bottom: 2rem;
}

.interviews-heading h2 {
  width: 100%;
  max-width: 720px;
  margin-bottom: 0;
}

.interviews-section .interviews-eyebrow,
.interviews-section .featured-podcast__meta,
.interviews-section .interview-card__meta {
  margin: 0 0 0.7rem;
  color: #6f542b;
  font-size: 0.76rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.interviews-section .interviews-lead {
  max-width: 560px;
  margin: 0;
  color: #4d4d4d;
  font-size: 1.05rem;
  font-weight: 200;
  line-height: 1.6;
}

.featured-podcast {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(330px, 0.85fr);
  overflow: hidden;
  border: 1px solid rgba(77, 77, 77, 0.13);
  background: #fbfbfb;
  box-shadow: 0 18px 50px rgba(60, 61, 55, 0.1);
}

.featured-podcast .interview-item,
.interview-card .interview-item {
  flex: none;
  width: 100%;
  max-width: none;
  margin: 0;
  overflow: hidden;
}

.featured-podcast .interview-item::after,
.interview-card .interview-item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(20, 20, 18, 0.08), rgba(20, 20, 18, 0.58));
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.featured-podcast .interview-item.is-active::after,
.interview-card .interview-item.is-active::after {
  opacity: 0;
}

.featured-podcast .overlay-text,
.interview-card .overlay-text {
  z-index: 4;
}

.featured-podcast .overlay-text {
  width: min(88%, 620px);
}

.overlay-kicker {
  display: inline-flex;
  margin-bottom: 0.15rem;
  color: #fffdf6;
  font-size: 0.76rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

html[lang^="ar"] .interviews-section .interviews-eyebrow,
html[lang^="ar"] .interviews-section .featured-podcast__meta,
html[lang^="ar"] .interviews-section .interview-card__meta,
html[lang^="ar"] .interviews-section .overlay-kicker {
  letter-spacing: 0;
  text-transform: none;
}

.featured-podcast__content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.5rem, 2.3vw, 2.3rem);
  background: linear-gradient(145deg, #fbfbfb 0%, #f4efe8 100%);
}

.featured-podcast__content h3,
.interview-card__content h3 {
  margin: 0;
  color: #3c3d37;
  font-family: "PPEditorialNew", sans-serif;
  font-size: clamp(1.25rem, 1.45vw, 1.5rem);
  font-weight: 400;
  line-height: 1.2;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.featured-podcast__content > p:not(.featured-podcast__meta) {
  margin: 1rem 0 0;
  color: #4d4d4d;
  font-size: 1rem;
  font-weight: 200;
  line-height: 1.55;
}

.featured-podcast__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.25rem;
  color: #6b6b66;
  font-size: 0.92rem;
  font-weight: 200;
}

.featured-podcast__footer a {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: #6f542b;
  text-decoration: none;
}

.featured-podcast__footer a:hover {
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

.featured-podcast__footer a:focus-visible {
  outline: 3px solid #6f542b;
  outline-offset: 4px;
}

.interview-archive {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.interview-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(77, 77, 77, 0.13);
  background: #fbfbfb;
  box-shadow: 0 10px 30px rgba(60, 61, 55, 0.06);
}

.interview-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.35rem;
}

.interview-card__content time {
  margin-top: 1.35rem;
  color: #6b6b66;
  font-size: 0.92rem;
  font-weight: 200;
}

.interview-card__content > a {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 1.1rem;
  color: #6f542b;
  font-size: 0.95rem;
  font-weight: 200;
  text-decoration: none;
}

.interview-card__content > a:hover {
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

.interview-card__content > a:focus-visible {
  outline: 3px solid #6f542b;
  outline-offset: 4px;
}

.news-section {
  margin: 6rem 6rem;
}

.news-section h2 {
  color: #9a7336;
  font-size: 1.8rem;
  font-weight: 100;
  width: 60%;
  margin-top: 0;
}

.news-section p {
  color: #4d4d4d;
  font-size: 1.2rem;
  font-weight: 100;
}

.news-wrapper {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 1.25rem;
}

.news-wrapper > a {
  display: flex;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(77, 77, 77, 0.13);
  background: #fbfbfb;
  box-shadow: 0 10px 30px rgba(60, 61, 55, 0.06);
  color: #3c3d37;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.news-wrapper > a:focus-visible {
  outline: 3px solid #6f542b;
  outline-offset: 4px;
}

.news-item {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  width: 100%;
  height: auto;
}

.news-img {
  overflow: hidden;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  background: #e7e1d9;
}

.news-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  transition: transform 0.45s ease;
}

.news-title {
  position: static;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.35rem;
}

.news-title::before {
  content: "Fachartikel";
  margin-bottom: 0.7rem;
  color: #6f542b;
  font-size: 0.76rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.news-title h3 {
  display: block;
  width: 100%;
  margin: 0 0 1.6rem;
  color: #3c3d37;
  font-family: "PPEditorialNew", sans-serif;
  font-size: clamp(1.3rem, 1.55vw, 1.6rem);
  font-weight: 400;
  line-height: 1.25;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.news-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: auto;
  color: #6f542b;
  font-size: 0.95rem;
  font-weight: 200;
  line-height: 1.2;
  white-space: nowrap;
}

.news-cta img {
  display: block;
  transition: transform 0.25s ease;
}

@media (hover: hover) {
  .news-wrapper > a:hover {
    transform: translateY(-4px);
    border-color: rgba(154, 115, 54, 0.35);
    box-shadow: 0 18px 40px rgba(60, 61, 55, 0.12);
  }

  .news-wrapper > a:hover .news-img img {
    transform: scale(1.035);
  }

  .news-wrapper > a:hover .news-cta img {
    transform: translateX(0.3rem);
  }
}

.news-wrapper > a:focus-visible .news-cta img {
  transform: translateX(0.3rem);
}

html[lang^="en"] .services-content::before {
  content: "Practice service";
}

html[lang^="en"] .news-title::before {
  content: "Medical article";
}

html[lang^="es"] .services-content::before {
  content: "Servicio médico";
}

html[lang^="es"] .news-title::before {
  content: "Artículo médico";
}

html[lang^="zh"] .services-content::before {
  content: "诊疗服务";
}

html[lang^="zh"] .news-title::before {
  content: "医学文章";
}

html[lang^="ar"] .services-content::before {
  content: "خدمة طبية";
}

html[lang^="ar"] .news-title::before {
  content: "مقال طبي";
}

html[lang^="ar"] .product-home-kicker,
html[lang^="ar"] .services-content::before,
html[lang^="ar"] .news-title::before {
  letter-spacing: 0;
  text-transform: none;
}

html[dir="rtl"] .product-home-footer span {
  text-align: right;
}

html[dir="rtl"] .product-home-footer img {
  transform: rotate(180deg);
}

html[dir="rtl"] .news-cta img {
  transform: rotate(180deg);
}

html[dir="rtl"] .services-cta img,
html[dir="rtl"] .services-link img {
  transform: rotate(180deg);
}

html[dir="rtl"] .featured-podcast__footer a img,
html[dir="rtl"] .interview-card__content > a img {
  transform: rotate(180deg);
}

html[dir="rtl"] .services-cards > a:hover .services-cta img,
html[dir="rtl"] .services-cards > a:focus-visible .services-cta img {
  transform: translateX(-0.3rem) rotate(180deg);
}

html[dir="rtl"] .news-wrapper > a:hover .news-cta img,
html[dir="rtl"] .news-wrapper > a:focus-visible .news-cta img {
  transform: translateX(-0.3rem) rotate(180deg);
}

.faq-section {
  margin: 6rem 6rem;
}

.faq-section h2 {
  color: #cca152;
  font-size: 1.8rem;
  font-weight: 100;
  width: 60%;
  margin-top: 0;
}

.faq-section p {
  color: #4d4d4d;
  font-size: 1.2rem;
  font-weight: 100;
}

.accordion-layout {
  display: flex;
  flex-direction: column;
}

.accordion-layout {
  width: 100%;
}

.accordion-item {
  display: flex;
  align-items: center;
  height: 80px;
  width: 100%;
  cursor: pointer;
  border-bottom: 1px solid #eae4dd;
}

.question-box {
  display: flex;
  align-items: center;
  width: 100%;
  height: 80px;
}

.question-box h4 {
  font-size: 1.2rem;
  font-weight: 100;
  color: #4d4d4d;
}

.cross-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 80px;
}

.cross-box img {
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.cross-box img.rotated {
  transform: rotate(225deg);
}

.answer-item {
  padding-left: 10px;
  padding-top: 2rem;
  padding-right: 100px;
  transition: height 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow: hidden;
  height: 0;
}

.answer-item p {
  color: #4d4d4d;
  font-size: 1.2rem;
  font-weight: 100;
}

.answer-item a {
  color: #cca152;
  font-size: 1.2rem;
  font-weight: 100;
  text-decoration: none;
}

.answer-item ul {
  padding: 0 0 0 20px;
}

.contact-section {
  margin: 6rem 6rem;
}

.contact-section h2 {
  color: #cca152;
  font-size: 1.8rem;
  font-weight: 100;
  width: 60%;
  margin-top: 0;
}

.contact-section p {
  color: #4d4d4d;
  font-size: 1.2rem;
  font-weight: 100;
}

.contact-layout {
  display: flex;
  justify-content: space-between;
  gap: 6rem;
}

.contact-layout h3 {
  color: #4d4d4d;
  font-weight: 400;
  font-size: 1.33rem;
}

.muc,
.aschheim {
  width: 50%;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.contact-item img {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex-shrink: 0;
}

.contact-item a {
  color: #4d4d4d;
  font-size: 1.2rem;
  font-weight: 100;
  text-decoration: none;
  line-height: 1.4;
}

.line-contact {
  width: 80%;
  height: 1px;
  background-color: #4d4d4d;
}

.contact-hours {
  display: flex;
  align-items: flex-start;
}

.contact-hours p {
  display: flex;
  align-items: flex-start;
  margin-top: 0;
}

.hours-left {
  width: 8rem;
}

.map-wrapper {
  width: 100%;
  height: 450px;
  margin-top: 4rem;
  position: relative;
}

#map {
  width: 100%;
  height: 100%;
}

.overlay-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.overlay-img img {
  filter: brightness(50%);
  object-fit: cover;
  width: 100%;
  height: 450px;
}

#map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff6ec;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 10;
}

#map-overlay p {
  font-size: 1.1rem;
  font-weight: 100;
  margin-bottom: 20px;
  padding: 0 20px;
  color: #fff6ec;
}

#map-overlay a {
  font-size: 1rem;
  font-weight: 100;
  color: #fff6ec;
  text-decoration: underline;
  text-underline-offset: 2px;
}

#accept-map {
  width: 140px;
  height: 45px;
  font-size: 1rem;
  font-weight: 200;
  font-family: "Inter", sans-serif !important;
  background-color: #fff6ec;
  color: #080808;
  border: none;
  cursor: pointer;
  margin-top: 1rem;
}

.map-iw {
  font-family: Inter, Arial, sans-serif;
  padding: 14px 16px;
  line-height: 1.45;
  min-width: 260px;
  max-width: 320px;
}

.map-iw__title {
  margin: 0 0 6px 0;
  font-size: 16px;
  font-weight: 600;
  color: #4d4d4d;
}

.map-iw__addr {
  margin: 0 0 8px 0;
  font-style: normal;
  font-size: 14px;
  font-weight: 100;
  color: #4d4d4d;
}

.map-iw__link {
  display: inline-block;
  font-size: 13px;
  color: #1a73e8;
  text-decoration: none !important;
}

.map-iw__link:hover,
.map-iw__link:focus {
  text-decoration: underline;
}

.gm-style .gm-ui-hover-effect {
  top: 8px !important;
  right: 8px !important;
  border-radius: 50%;
}

.gm-style .gm-style-iw-c {
  border-radius: 8px;
  padding: 0 !important;
}

.gm-style .gm-style-iw-d {
  overflow: visible !important;
}

footer {
  background-color: #3c3d37;
  padding: 4rem 6rem 0.8rem 6rem;
}

.logo-footer {
  width: 180px;
  height: auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
}

.footer-top p {
  color: #fffdf6;
  font-weight: 100;
  font-size: 1rem;
}

.footer-social-icons {
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
}

.footer-social-icons img {
  width: 40px;
  cursor: pointer;
}

.footer-newsletter {
  max-width: 520px;
  padding: 0;
  background: transparent;
  color: #fff;
}

.footer-newsletter__text {
  margin: 0 0 0.8rem;
}

.footer-newsletter__text h3 {
  margin: 0 0 0.25rem;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  color: #fffdf6;
  font-size: 1.4rem;
}

.footer-newsletter__text p {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-size: 0.92rem;
  line-height: 1.4;
  letter-spacing: 0.15px;
  color: #fffdf6;
}

.footer-newsletter .layout_form {
  margin: 0;
}

.footer-newsletter .cr_body {
  padding: 0;
  background: none;
}

.footer-newsletter .editable_content {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-newsletter .cr_form-component {
  margin: 0;
}

.footer-newsletter .cr_form-component--email {
  flex: 1 1 420px;
  min-width: 340px;
}

.footer-newsletter .submit_container {
  flex: 0 0 auto;
}

.footer-newsletter .cr_form-inputgroup {
  position: relative;
}

.footer-newsletter label {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.footer-newsletter .cr_form-input,
.footer-newsletter .cr_button {
  font-family: "Roboto", sans-serif !important;
  letter-spacing: 0.15px;
  font-weight: 200;
}

.footer-newsletter .cr_form-input {
  width: 100%;
  height: 44px;
  padding: 0 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(234, 228, 221, 0.92);
  color: rgba(18, 18, 18, 0.92);
  font-size: 1rem;
  font-family: "Roboto", sans-serif !important;
  font-weight: 200;
}

.footer-newsletter .cr_form-input::placeholder {
  color: rgba(18, 18, 18, 0.48);
  font-weight: 400;
}

.footer-newsletter .cr_form-input:focus {
  outline: none;
  border-color: rgba(210, 170, 100, 0.65);
}

.footer-newsletter .cr_button {
  height: 44px;
  padding: 0 1.45rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  font-family: "Roboto", sans-serif !important;
  font-weight: 200;
  cursor: pointer;
  white-space: nowrap;
}

.footer-newsletter .cr_button:hover {
  border-color: rgba(210, 170, 100, 0.75);
  color: rgba(255, 255, 255, 0.98);
}

.footer-newsletter .cr_button:focus-visible {
  outline: none;
  border-color: rgba(210, 170, 100, 0.85);
}

@media (max-width: 560px) {
  .footer-newsletter .editable_content {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
  }

  .footer-newsletter .cr_form-component--email {
    min-width: 0;
    flex: 1 1 auto;
  }

  .footer-newsletter .cr_button {
    width: 100%;
  }
}

.social-links-footer {
  display: flex;
  justify-content: flex-start;
  gap: 0.8rem;
}

.social-links-footer img {
  width: 40px;
  cursor: pointer;
}

.footer-line {
  margin-top: 2rem;
  width: 100%;
  height: 1px;
  background-color: #4d4d4d;
}

.footer-layout {
  display: flex;
  justify-content: space-between;
}

.footer-layout h3 {
  font-weight: 300;
  color: #fffdf6;
  font-size: 1.4rem;
}

.contact-item-footer {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-layout ul {
  padding: 0;
}

.footer-layout ul li {
  list-style: none;
}

.footer-layout a {
  color: #fffdf6;
  font-weight: 100;
  text-decoration: none;
  line-height: 1.6rem;
}

.location-item-footer {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
}

.location-item-footer img {
  margin-top: 3px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: #fffdf6;
  font-weight: 100;
  font-size: 0.9rem;
  margin-bottom: 0;
}

.credits {
  color: #fffdf6;
  text-decoration: none;
}

@media (max-width: 900px) {
  .footer-top {
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-social-icons {
    justify-content: flex-start;
  }

  .footer-newsletter {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .pop-up-layout {
    grid-template-columns: 1fr;
  }
  .pop-up-text {
    padding: 18px 18px 22px;
  }

  .pop-up-text p {
    font-size: 1rem;
  }

  .rmv-m {
    display: none;
  }

  .pop-up-text h3 {
    font-size: 1.4rem;
  }

  .pop-up-img img {
    max-height: 200px;
  }

  .sidebar {
    display: none;
  }

  .mobile-header {
    display: flex !important;
  }

  .mobile-header nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .logo-mobile {
    width: 120px;
  }

  .page-body {
    width: 100%;
    margin-left: 0;
  }

  .hero-text {
    width: 95%;
  }

  .hero-img-wrapper {
    height: 95vh;
  }

  h1 {
    font-size: 2rem;
    line-height: 2.2rem;
  }

  .hero-text p {
    font-size: 1.1rem;
  }

  .footer-newsletter .editable_content {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-newsletter .cr_button {
    width: 100%;
  }

  .intro-section,
  .products-section,
  .services-section,
  .interviews-section,
  .news-section,
  .faq-section,
  .contact-section,
  .immunologie-section {
    margin: 4rem 1rem;
  }

  .intro-section h2 {
    width: 100%;
    font-size: 1.6rem;
  }

  .products-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }

  .products-heading h2,
  .products-heading p {
    width: 100%;
  }

  .products-heading h2 {
    font-size: 1.6rem;
  }

  .products-layout,
  .product-home-feature,
  .product-home-small {
    grid-template-columns: 1fr;
  }

  .product-home-feature {
    min-height: 0;
  }

  .product-home-feature .product-home-img,
  .product-home-small .product-home-img {
    height: 260px;
  }

  .product-home-content {
    padding: 1rem;
  }

  .product-home-feature h3,
  .product-home-card h3 {
    font-size: 1.35rem;
  }

  .product-home-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.7rem;
  }

  .product-home-footer span {
    text-align: left;
  }

  .intro-layout {
    flex-direction: column-reverse;
    gap: 0;
  }

  .intro-img {
    width: 100%;
  }

  .intro-img img {
    width: 100%;
    object-position: cover;
  }

  .intro-text {
    width: 100%;
  }

  .intro-btn {
    display: none;
  }

  .immunologie-section h2 {
    width: 100%;
    font-size: 1.6rem;
  }

  .services-section h2 {
    width: 100%;
    font-size: 1.6rem;
  }

  .services-cards {
    grid-template-columns: 1fr;
  }

  .services-item {
    height: 400px;
  }

  .interviews-section h2 {
    width: 100%;
    font-size: 1.6rem;
  }

  .overlays-wrapper {
    display: grid;
  }

  .interview-item {
    flex: 1 1 100%;
    max-width: 100%;
    margin-bottom: 2rem;
  }

  .news-section h2 {
    width: 100%;
    font-size: 1.6rem;
  }

  .news-wrapper {
    flex-direction: column;
  }

  .news-item {
    height: 400px;
  }

  .faq-section h2 {
    width: 100%;
    font-size: 1.6rem;
  }

  .cross-box {
    width: 20px;
  }

  .answer-item {
    padding-right: 0;
  }

  .contact-section h2 {
    width: 100%;
    font-size: 1.6rem;
  }

  .contact-layout {
    flex-direction: column;
    gap: 2rem;
  }

  .muc,
  .aschheim {
    width: 100%;
  }

  .line-contact {
    width: 100%;
  }

  .overlay-img img {
    width: 100%;
    height: 500px;
  }

  footer {
    padding: 4rem 1rem 0.8rem 1rem;
  }

  .footer-top {
    flex-direction: column;
  }

  .footer-social-icons {
    justify-content: flex-start;
    gap: 0.8rem;
  }

  .footer-layout,
  .footer-bottom {
    flex-direction: column;
  }

  .footer-bottom {
    text-align: center;
  }
}

@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .sidebar {
    display: none;
  }

  .mobile-header {
    display: flex !important;
  }

  .mobile-header nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .logo-mobile {
    width: 120px;
  }

  .page-body {
    width: 100%;
    margin-left: 0;
  }

  .hero-text {
    width: 95%;
  }

  .hero-img-wrapper {
    height: 95vh;
  }

  h1 {
    font-size: 2rem;
    line-height: 2.2rem;
  }

  .hero-text p {
    font-size: 1.1rem;
  }

  .intro-section,
  .products-section,
  .services-section,
  .interviews-section,
  .news-section,
  .faq-section,
  .contact-section,
  .immunologie-section {
    margin: 4rem 1rem;
  }

  .intro-section h2 {
    width: 100%;
    font-size: 1.6rem;
  }

  .products-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }

  .products-heading h2,
  .products-heading p {
    width: 100%;
  }

  .products-heading h2 {
    font-size: 1.6rem;
  }

  .products-layout {
    grid-template-columns: 1fr;
  }

  .product-home-side {
    grid-template-columns: 1fr 1fr;
  }

  .product-home-small {
    grid-template-columns: 1fr;
  }

  .product-home-small .product-home-img {
    height: 260px;
  }

  .product-home-feature {
    min-height: 420px;
  }

  .intro-layout {
    gap: 2rem;
  }

  .intro-img {
    width: 100%;
  }

  .intro-img img {
    width: 100%;
    object-position: cover;
  }

  .intro-text {
    width: 100%;
  }

  .intro-btn {
    display: none;
  }

  .immunologie-section h2 {
    width: 100%;
    font-size: 1.6rem;
  }

  .services-section h2 {
    width: 100%;
    font-size: 1.6rem;
  }

  .services-cards {
    grid-template-columns: 1fr 1fr;
  }

  .services-item {
    height: 400px;
  }

  .interviews-section h2 {
    width: 100%;
    font-size: 1.6rem;
  }

  .overlays-wrapper {
    display: grid;
  }

  .interview-item {
    flex: 1 1 100%;
    max-width: 100%;
    margin-bottom: 2rem;
  }

  .news-section h2 {
    width: 100%;
    font-size: 1.6rem;
  }

  .news-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .news-item {
    height: 400px;
  }

  .faq-section h2 {
    width: 100%;
    font-size: 1.6rem;
  }

  .cross-box {
    width: 20px;
  }

  .answer-item {
    padding-right: 0;
  }

  .contact-section h2 {
    width: 100%;
    font-size: 1.6rem;
  }

  .contact-layout {
    gap: 2rem;
  }

  .muc,
  .aschheim {
    width: 100%;
  }

  .line-contact {
    width: 100%;
  }

  .overlay-img img {
    width: 100%;
    height: 500px;
  }

  footer {
    padding: 4rem 1rem 0.8rem 1rem;
  }

  .footer-top {
    flex-direction: column;
  }

  .footer-social-icons {
    justify-content: flex-start;
    gap: 0.8rem;
  }

  .footer-layout,
  .footer-bottom {
    flex-direction: column;
  }

  .footer-bottom {
    text-align: center;
  }
}

@media (min-width: 1200px) and (max-width: 1600px) {
  .hero-text {
    width: 80%;
  }

  .intro-section,
  .products-section,
  .services-section,
  .interviews-section,
  .news-section,
  .faq-section,
  .contact-section,
  .immunologie-section {
    margin: 6rem 2rem;
  }

  .overlay-text {
    width: 94%;
  }

  .overlay-img img {
    width: 100%;
    height: 500px;
  }

  footer {
    padding: 4rem 2rem 0.8rem 2rem;
  }
}

.interview-card .overlay-text p {
  margin: 0 0 0.75rem;
  font-size: clamp(0.78rem, 0.85vw, 0.92rem);
  line-height: 1.35;
}

.interview-card .overlay-text a {
  font-size: inherit;
}

.interview-card .overlay-text button {
  min-height: 40px;
  padding: 0.55rem 0.8rem;
  font-size: 0.88rem;
}

.overlays-wrapper .interview-item {
  width: 100%;
  min-width: 0;
  margin-bottom: 0;
}

.overlays-wrapper .overlay-text {
  width: 94%;
}

.overlays-wrapper .overlay-text p {
  margin: 0 0 0.65rem;
  font-size: clamp(0.72rem, 0.9vw, 0.88rem);
  line-height: 1.3;
}

.overlays-wrapper .overlay-text a {
  font-size: inherit;
}

.overlays-wrapper .overlay-text button {
  min-height: 40px;
  padding: 0.5rem 0.8rem;
  font-size: 0.86rem;
}

@media (max-width: 1399px) {
  .services-cards,
  .news-wrapper,
  .interview-archive,
  .overlays-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .interviews-heading,
  .featured-podcast {
    grid-template-columns: 1fr;
  }

  .interviews-heading {
    gap: 1rem;
  }

  .featured-podcast__content {
    min-height: 0;
  }
}

@media (min-width: 1025px) and (max-width: 1199px) {
  .intro-section,
  .products-section,
  .services-section,
  .interviews-section,
  .news-section,
  .faq-section,
  .contact-section,
  .immunologie-section {
    margin: 5rem 2rem;
  }

  .products-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .doctolib-floating-cta {
    display: none !important;
  }

  .services-item,
  .news-item {
    height: auto;
  }

  .interviews-heading,
  .featured-podcast {
    grid-template-columns: 1fr;
  }

  .interviews-heading {
    gap: 1rem;
  }

  .featured-podcast__content {
    min-height: 0;
  }
}

@media (max-width: 768px) {
  .services-cards,
  .news-wrapper,
  .interview-archive,
  .overlays-wrapper {
    grid-template-columns: 1fr;
  }

  .services-img,
  .news-img {
    aspect-ratio: 16 / 8;
  }

  .services-content,
  .news-title,
  .interview-card__content {
    padding: 1.15rem;
  }

  .featured-podcast__content {
    min-height: 0;
    padding: 1.35rem;
  }

  .featured-podcast__footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.75rem;
  }

  .featured-podcast .overlay-text p {
    margin: 0.35rem 0 0.8rem;
    font-size: clamp(0.78rem, 3.2vw, 0.95rem);
    line-height: 1.35;
  }

  .interview-card .overlay-text p {
    font-size: clamp(0.78rem, 3.2vw, 0.95rem);
  }
}

@media (max-width: 420px) {
  .featured-podcast .overlay-kicker {
    display: none;
  }

  .featured-podcast .overlay-text {
    width: 95%;
  }

  .overlays-wrapper .overlay-text {
    width: 96%;
  }

  .featured-podcast .overlay-text p,
  .interview-card .overlay-text p,
  .overlays-wrapper .overlay-text p {
    margin: 0 0 0.55rem;
    font-size: 0.72rem;
    line-height: 1.25;
  }

  .featured-podcast .overlay-text button,
  .interview-card .overlay-text button,
  .overlays-wrapper .overlay-text button {
    min-height: 44px;
    padding: 0.55rem 0.7rem;
    font-size: 0.84rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-home-card,
  .product-home-img img,
  .services-cards > a,
  .services-img img,
  .services-cta img,
  .interview-item .interview-poster,
  .interview-item > img,
  .interview-item .overlay-text,
  .featured-podcast .interview-item::after,
  .interview-card .interview-item::after,
  .news-wrapper > a,
  .news-img img,
  .news-cta img {
    transition: none;
  }

  .product-home-card:hover,
  .product-home-card:hover .product-home-img img,
  .services-cards > a:hover,
  .services-cards > a:hover .services-img img,
  .services-cards > a:hover .services-cta img,
  .services-cards > a:focus-visible .services-cta img,
  .news-wrapper > a:hover,
  .news-wrapper > a:hover .news-img img,
  .news-wrapper > a:hover .news-cta img,
  .news-wrapper > a:focus-visible .news-cta img {
    transform: none;
  }

  html[dir="rtl"] .services-cards > a:hover .services-cta img,
  html[dir="rtl"] .services-cards > a:focus-visible .services-cta img,
  html[dir="rtl"] .news-wrapper > a:hover .news-cta img,
  html[dir="rtl"] .news-wrapper > a:focus-visible .news-cta img {
    transform: rotate(180deg);
  }
}
