/* Shortcode Utili - sezione Team
   Shortcode: [su_team]
   Prefisso classi: su-team-
*/

.su-team-section {
  width: 100%;
  margin: 24px auto 32px;
}

.su-team-header {
  margin-bottom: 16px;
}

.su-team-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 4px;
}

.su-team-description {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4b5563;
}

.su-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.su-team-card {
  background: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.18);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.su-team-photo {
  width: 100%;
  /* Rapporto 4:5 verticale: altezza = 1.25 * larghezza */
  padding-top: 125%;
  position: relative;
  overflow: hidden;
}

.su-team-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.su-team-meta {
  padding: 8px 10px 10px;
  text-align: center;
}

.su-team-name {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.su-team-role {
  font-size: 0.8rem;
  color: #4b5563;
}

/* Mobile: una colonna, card larghe */
@media (max-width: 767px) {
  .su-team-section {
    padding: 0 16px;
    margin-top: 16px;
    margin-bottom: 24px;
  }

  .su-team-grid {
    grid-template-columns: 1fr;
  }
}


