/* ============================
   Contingut Markdown carregat
============================ */
.contingut-equips {
  flex: 1; /* Ocupa tot l'espai restant */
  padding: 2rem;
  background-color: #f9f9f9;
  color: #222;
  font-family: 'Teko', sans-serif;
  line-height: 1.6;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  overflow-y: auto; /* Scroll intern si és molt llarg */
  max-height: auto;
}

/* Estils per a contingut Markdown */
.contenidor {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.esquerra {
  flex: 1;
}

.dreta {
  flex: 1;
  text-align: left;
}

.grup {
  width: 100%;
  max-width: 600px;
  margin-top: 10px;
  border-radius: 10px;
}

.esquerra h3 {
  font-size: 2rem;
}

.esquerra h3:hover{
  font-size: 2rem;
  background-color: #003366;
  color: #FFD700;
  border-radius: 12px;  /* Arrodoneix les cantonades */
  transition: background-color 0.3s, font-size 0.3s;
}

.contingut-equips h1{
  color: #002244;
  font-size: 5rem;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.contingut-equips h2{
  color: #002244;
  font-size: 3rem;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.contingut-equips h3 {
  color: #002244;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  text-decoration: none;
}

.contingut-equips p {
  font-family: 'Open Sans', sans-serif;
  color: #002244;
  font-size: 1rem;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  text-decoration: none;
  text-align: justify;
}

.foto-seccio {
    width: 49%;       /* Amplada relativa al contenidor */
    border-radius: 15px;  /* Cantonades arrodonides */
    display: block;        /* Permet centrar-la amb margin auto */
    margin: 0 auto;        /* Centrat horitzontalment */
}

.boto-enllac {
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
}

.boto-enllac:hover {
  color: #FFD700;
}

.material-symbols-outlined {
      font-family: 'Material Symbols Outlined';
      font-weight: normal;
      font-style: normal;
      font-size: 48px; /* mida de la icona */
      display: inline-block;
      line-height: 1;
      letter-spacing: normal;
      text-transform: none;
      white-space: nowrap;
      direction: ltr;
      -webkit-font-smoothing: antialiased;

      /* Controls opcionals: omplert, gruix, mida òptica, etc. */
      font-variation-settings:
        'FILL' 0,     /* 0: línia buida, 1: plena */
        'wght' 400,   /* gruix (100-700) */
        'GRAD' 0,     /* gradació */
        'opsz' 24;    /* mida òptica */
    }


/* ============================
   JUGADORS
============================ */
.jugador {
  position: relative;
  display: inline-block;
  margin: 10px;
  width: 278.6px; /* Ajustable segons necessitis */
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.jugador img {
  width: 100%;
  height: auto;
  display: block;
}

.jugador p {
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 0;
  width: 100%;
  padding: 6px 8px;
  background: rgba(0, 0, 0, 0.5); /* Fons fosc translúcid */
  color: #fff;
  font-size: 35px;
  font-family: 'Teko', sans-serif;
  text-align: center;
  font-weight: 500;
}



/* ============================
   Responsive per a mòbils
============================ */
@media (max-width: 768px) {
  .contingut-equips {
    padding: 1rem;
    max-height: none;
  }

  .contenidor {
    flex-direction: column;
    align-items: stretch;
  }

  .esquerra,
  .dreta {
    flex: unset;
    width: 100%;
    text-align: left;
  }

  .contingut-equips h1 {
    font-size: 3rem;
  }

  .contingut-equips h2 {
    font-size: 2rem;
  }

  .esquerra h3 {
    font-size: 1.5rem;
  }

  .esquerra h3:hover {
    font-size: 1.5rem;
  }

  .grup {
    max-width: 100%;
  }

  .foto-seccio{
    width: 95%;
  }
}
