.kids-hero {
  position: relative;
  padding: 94px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 16%, rgba(255, 255, 255, .52), transparent 22%),
    linear-gradient(115deg, #f4d57c, #f1d6c8);
}

.kids-hero::after {
  position: absolute;
  right: -100px;
  bottom: -190px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(139, 68, 82, .15);
  border-radius: 50%;
  box-shadow: 0 0 0 38px rgba(139, 68, 82, .03);
  content: "";
}

.kids-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 64px;
  align-items: center;
}

.paper-scene {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(139, 68, 82, .13);
  border-radius: 45% 55% 48% 52%;
  background:
    url("../images/illustrations/family-lamp.svg") center 58% / 72% auto no-repeat,
    rgba(255, 253, 248, .72);
  box-shadow: var(--shadow-sm);
}

.paper-scene span {
  position: absolute;
  padding: 11px 15px;
  border: 1px solid rgba(47, 112, 109, .12);
  border-radius: 999px;
  background: var(--teal-light);
  font-size: .76rem;
  font-weight: 850;
}

.paper-scene span:nth-child(1) { top: 16%; left: 12%; }
.paper-scene span:nth-child(2) { top: 22%; right: 10%; background: var(--rose-light); }
.paper-scene span:nth-child(3) { bottom: 18%; left: 14%; background: #dff2ff; }
.paper-scene span:nth-child(4) { right: 16%; bottom: 10%; background: #e3f4df; }

.kids-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}

.kids-mosaic a {
  position: relative;
  min-height: 210px;
  padding: 27px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--charcoal);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

.kids-mosaic a::after {
  position: absolute;
  right: 22px;
  bottom: 18px;
  color: var(--rose);
  content: "→";
}

.kids-mosaic a:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
  color: var(--plum);
}

.kids-mosaic .kids-feature {
  grid-row: span 2;
  background:
    radial-gradient(circle at 80% 15%, rgba(255, 255, 255, .55), transparent 25%),
    var(--saffron-wash);
}

.kids-mosaic small {
  color: var(--rose);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.kids-safety {
  background: var(--teal-light);
}
