/* ================================================
   SEZIONE: SERVIZI (usato anche da Formazione)
   ================================================ */
.servizi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.srv-card {
  background: var(--bianco);
  border-radius: var(--r);
  padding: 26px 22px;
  border: 1px solid var(--bordo);
  box-shadow: var(--ombra-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.srv-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--ombra-md);
  border-color: transparent;
}

.srv-card__icon {
  width: 42px;
  height: 42px;
  background: var(--verde-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: background 0.3s var(--ease);
}

.srv-card:hover .srv-card__icon {
  background: var(--verde-chiaro);
}

.srv-card__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--verde-medio);
  transition: stroke 0.3s var(--ease);
}

.srv-card:hover .srv-card__icon svg {
  stroke: var(--bianco);
}

.srv-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--testo);
  margin-bottom: 8px;
}

.srv-card p {
  font-size: 0.84rem;
  color: var(--testo-l);
  line-height: 1.55;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .servizi-grid { grid-template-columns: 1fr; }
}
