.nanny-risk-banner {
  background: #f2e9dc;
  border-radius: 16px;
  padding: 18px 20px;
  margin: 18px 0 24px;
  width: 100%;
  box-sizing: border-box;
}

.nanny-risk-banner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
  align-items: start;
}

.nanny-risk-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.nanny-risk-icon {
  margin-bottom: 8px;
  color: #844e6d;
  line-height: 0;
}

.nanny-risk-icon svg {
  width: 22px;
  height: 22px;
  display: block;
  fill: currentColor;
}

.nanny-risk-text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 3px;
  color: #000;
  line-height: 1.3;
}

.nanny-risk-text span {
  display: block;
  font-size: 13px;
  color: #2f2f2f;
  line-height: 1.35;
}

@media (max-width: 767px) {
  .nanny-risk-banner {
    padding: 12px 10px;
    border-radius: 14px;
    margin: 14px 0 18px;
  }

  .nanny-risk-banner-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .nanny-risk-icon {
    margin-bottom: 6px;
  }

  .nanny-risk-icon svg {
    width: 18px;
    height: 18px;
  }

  .nanny-risk-text strong {
    font-size: 12px;
    line-height: 1.25;
  }

  .nanny-risk-text span {
    font-size: 11px;
    line-height: 1.25;
  }
}