.note {
  font-size: 0.95rem;
  color: #555;
  font-style: italic;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

mark.red {
    color:#a90d0d;
    background: none;
}

mark.blue {
    color:#3422b9;
    background: none;
}

.wrap {
  flex-wrap: wrap;
  gap: 1rem;
}

.card {
  background-color: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  padding: 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

#front-title {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  text-align: center;
}

#front-title h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

#front-title p {
  font-size: 1.5rem;
}

.sponsor_banner {
  width: 100%;
  display: flex;
  flex-wrap: wrap;        /* le immagini vanno a capo se serve */
  justify-content: space-evenly;/* centrate orizzontalmente */
  align-items: center;    /* centrate verticalmente */
  gap: 1rem;              /* spazio tra immagini */
  box-sizing: border-box;
  background: transparent; /* opzionale */
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.sponsor_banner img {
  width: auto;                       /* mantiene proporzioni */
  max-width: 100%;
  object-fit: contain;               /* preserva proporzioni interne */
  flex: 0 1 auto;                    /* permette adattamento dinamico */
  display: block;
}

.sponsor_banner img.large {
  max-height: 8rem;
}

.sponsor_banner img.small {
  max-height: 6rem;
}