body {
    font-family: 'Lato', sans-serif;
    font-size: 17px;
}


body {
    background-color: #E0E0E0 !important;
}

.cajetin {
    border: 2px solid #333;
    background: #f0f0f0;
    padding: 8px;
    margin: 20px 0;
    border-radius: 5px;
}
/*=======PÀGINA DE L'EQUIP========*/

.persones-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.persona-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 120px;
  text-decoration: none;
  color: inherit;
}

.persona-card:hover img {
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.persona-card:hover .persona-nom {
  color: #3a5a2a;
  text-decoration: underline;
}

.persona-card img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  display: block;
  margin-bottom: 8px;
}

.persona-nom {
  font-size: 0.8rem;
  color: #444;
  line-height: 1.3;
}
