.care-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: start;
  background:
    linear-gradient(135deg, rgba(241, 248, 233, 0.96), rgba(248, 251, 243, 0.98)),
    radial-gradient(circle at 85% 15%, rgba(14, 167, 208, 0.12), transparent 18rem);
}

.care-copy p:not(.overline) {
  margin-top: 1.1rem;
  color: var(--muted);
  font-size: 1.07rem;
  line-height: 1.75;
}

.care-steps {
  display: grid;
  gap: 1rem;
}

.care-steps div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 1rem;
  padding: 1.25rem 1.35rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(79, 141, 39, 0.2);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(23, 76, 45, 0.07);
}

.care-steps span {
  display: inline-flex;
  grid-row: span 2;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  color: var(--white);
  background: var(--leaf);
  border-radius: 50%;
  font-weight: 900;
}

.care-steps h3 {
  margin-bottom: 0.35rem;
  color: var(--green-dark);
  font-size: 1.2rem;
}

.care-steps p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 1050px) {
  .care-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .care-section {
    gap: 1.5rem;
  }

  .care-steps div {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .care-steps span {
    grid-row: auto;
    margin-bottom: 0.85rem;
  }

  .care-steps h3 {
    font-size: 1.08rem;
  }
}

@media (max-width: 480px) {
  .care-steps {
    gap: 0.85rem;
  }

  .care-steps span {
    width: 42px;
    height: 42px;
  }
}
