/* Gestore Pronostici Bridge — base stabile. I temi specifici sono aggiunti come CSS isolato per contenuto. */
.gp-published-content,
.gp-published-box {
  box-sizing: border-box;
  max-width: 100%;
}
.gp-published-content *,
.gp-published-box * {
  box-sizing: border-box;
}
.gp-published-content img,
.gp-published-box img {
  max-width: 100%;
  height: auto;
}
.gp-box-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 1.25rem;
  align-items: stretch;
}
.gp-home-box-fallback {
  padding: 1.25rem;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  background: #fff;
  color: #111827;
}
.gp-home-box-fallback .gp-box-top {
  display: flex;
  justify-content: space-between;
  gap: .75rem;
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
}
.gp-home-box-fallback a {
  display: inline-flex;
  margin-top: .75rem;
  padding: .65rem .9rem;
  border-radius: .65rem;
  background: #6d28d9;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}
@media (max-width: 640px) {
  .gp-box-grid { grid-template-columns: 1fr; }
}
