/* ── Pàgina de suport/col·laborador ─────────────────────── */

.suport-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.suport-page__container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

/* Capçalera */
.suport-header {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.suport-header__logo {
  flex-shrink: 0;
  width: 180px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9f9f9;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 1rem;
}

.suport-header__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.suport-header__info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 0.25rem;
}

.suport-header__tipus {
  display: inline-block;
  background: #cc2929;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2em 0.6em;
  border-radius: 4px;
  width: fit-content;
}

.suport-header__title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  color: #111;
  margin: 0;
}

.suport-header__link {
  color: #555;
  font-size: 0.9rem;
  word-break: break-all;
  text-decoration: none;
}

.suport-header__link:hover {
  color: #cc2929;
  text-decoration: underline;
}

/* Associacions */
.suport-associats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  border-top: 1px solid #e8e8e8;
  padding-top: 2rem;
}

.suport-associats__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid #cc2929;
  display: inline-block;
}

.suport-associats__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.suport-associats__list a {
  color: #333;
  text-decoration: none;
  font-size: 0.95rem;
}

.suport-associats__list a:hover {
  color: #cc2929;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
  .suport-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .suport-header__logo {
    width: 140px;
    height: 100px;
  }

  .suport-header__info {
    align-items: center;
  }

  .suport-associats {
    grid-template-columns: 1fr;
  }
}
