.pflegehinweise-page .care-hero {
  display: grid;
  gap: 24px;
  padding: clamp(70px, 10vw, 140px) clamp(18px, 5vw, 72px);
  background: var(--black);
  color: var(--white);
}

.pflegehinweise-page .care-hero h1 {
  max-width: 980px;
  margin-bottom: 0;
}

.pflegehinweise-page .care-hero p {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.5;
  color: #ddd;
}

.pflegehinweise-page .care-layout {
  display: grid;
  grid-template-columns: minmax(180px, 280px) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 76px);
  padding: clamp(50px, 8vw, 110px) clamp(18px, 5vw, 72px);
}

.pflegehinweise-page .care-toc {
  position: sticky;
  top: 112px;
  align-self: start;
  display: grid;
  gap: 10px;
  padding: 22px;
  background: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.pflegehinweise-page .care-toc a {
  text-decoration: none;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0, 0, 0, .2);
}

.pflegehinweise-page .care-content {
  display: grid;
  gap: clamp(34px, 5vw, 68px);
}

.pflegehinweise-page .care-block {
  padding: clamp(24px, 4vw, 52px);
  background: var(--white);
  border: 1px solid var(--line);
}

.pflegehinweise-page .care-block:nth-child(even) {
  transform: translateX(clamp(-34px, -3vw, -12px));
}

.pflegehinweise-page .care-block h2 {
  margin: 10px 0 30px;
  font-size: clamp(30px, 4vw, 56px);
}

.pflegehinweise-page .care-block h3 {
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.pflegehinweise-page .care-block p,
.pflegehinweise-page .care-block li {
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.65;
}

.pflegehinweise-page .care-block ul,
.pflegehinweise-page .care-block ol {
  display: grid;
  gap: 10px;
  padding-left: 1.35em;
}

.pflegehinweise-page .care-block ol {
  gap: 16px;
}

.pflegehinweise-page .care-note {
  margin-top: 34px;
  padding: 20px;
  background: var(--paper);
  border-left: 7px solid var(--yellow);
}

.pflegehinweise-page .care-icons {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  padding-left: 0 !important;
}

.pflegehinweise-page .care-icons li {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 86px;
  padding: 18px;
  background: var(--paper);
  border-left: 5px solid var(--yellow);
  font-weight: 700;
}

.pflegehinweise-page .care-icons img,
.pflegehinweise-page .wash-symbol {
  width: 44px;
  height: 44px;
  object-fit: contain;
  justify-self: center;
}

.pflegehinweise-page .wash-symbol {
  display: inline-grid;
  place-items: center;
  border: 3px solid var(--black);
  border-top: 0;
  border-radius: 0 0 12px 12px;
  color: var(--black);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
}

@media (max-width: 900px) {
  .pflegehinweise-page .care-layout {
    grid-template-columns: 1fr;
  }

  .pflegehinweise-page .care-block:nth-child(even) {
    transform: none;
  }

  .pflegehinweise-page .care-toc {
    position: static;
  }

  .pflegehinweise-page .care-icons {
    grid-template-columns: 1fr;
  }
}
