/* ── Report / Segnalazione Section ── */

.report-scope {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.report-scope [aria-hidden='true'] {
  display: revert !important;
  visibility: revert !important;
}

.report-scope > .grid-bg {
  position: absolute;
  right: 5%;
  bottom: 0%;
  width: 30%;
  max-width: 350px;
  min-width: 170px;
  height: auto;
  pointer-events: none;
  z-index: -1;
}

.report-container {
  max-width: 720px;
  text-align: center;
}

.report-title {
  color: var(--color-primary);
  margin: 0 0 20px;
}

.report-description {
  color: var(--color-gray-700);
  margin: 0 0 32px;
}

.report-description strong {
  font-weight: 700;
}

.report-cta {
  margin: auto;
}

/* ── Mobile ── */
@media (max-width: 480px) {
  .report-container {
    text-align: left;
  }

  .report-description {
    margin-bottom: 24px;
  }

  .report-cta {
    margin: unset;
  }
}
