/* Zone corporale — pagina Afecțiuni (din afectiuni.png) */
.body-item__icon {
  width: 112px;
  height: 112px;
  margin-bottom: 0.85rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  background: var(--yellow-light);
  border: 2px solid var(--gray-200);
  box-shadow: 0 4px 14px rgba(245, 196, 0, 0.15);
  transition:
    border-color 0.3s,
    box-shadow 0.35s,
    transform 0.35s var(--ease-spring);
}

.body-item:hover .body-item__icon {
  border-color: var(--yellow-dark);
  box-shadow: 0 6px 18px rgba(245, 196, 0, 0.28);
  transform: scale(1.04);
}

.body-item__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

.body-grid {
  grid-template-columns: repeat(auto-fill, minmax(172px, 1fr));
  gap: 1.25rem;
}

.body-item {
  min-height: 240px;
  padding: 1.25rem 1rem 1rem;
}

.body-item__label {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.85rem;
}

@media (max-width: 480px) {
  .body-item__icon {
    width: 96px;
    height: 96px;
  }

  .body-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }

  .body-item {
    min-height: 220px;
    padding: 1rem 0.65rem;
  }

  .body-item__label {
    font-size: 0.78rem;
  }
}
