.wgt-reports.reports {
  padding: 3rem 0 9.25rem;
}
.wgt-reports .section-title {
  text-align: center;
  font-weight: 500;
  font-size: clamp(1.5rem, 1.3483rem + 0.6472vw, 2.125rem);
  color: var(--title-color);
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  margin-bottom: 2.625rem;
}
.wgt-reports .section-title span {
  background: linear-gradient(117.83deg, #8b6fff 107.63%, #d8cbfd 115.05%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 400;
  font-style: italic;
}
.wgt-reports .reports-cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem 2.625rem;
}
.wgt-reports .reports-card {
  background: var(--grayscale-color-5);
  border-radius: 10px;
  border: 1px solid #f5f3ff;
  padding: 1.5rem 1.125rem;
  box-shadow: 0px 4px 20px 4px #8390aa14;
}
.wgt-reports .reports-card img {
  margin-bottom: 1.5rem;
}
.wgt-reports .reports-card :is(h1, h2, h3, h4, h5, h6) {
  margin-bottom: 0.875rem;
  color: var(--title-color);
  font-weight: 500;
  font-size: clamp(1.25rem, 1.2045rem + 0.1942vw, 1.4375rem);
}
.wgt-reports .reports-card p {
  font-size: clamp(0.875rem, 0.8447rem + 0.1294vw, 1rem);
  color: var(--description-color);
}
@media screen and (max-width: 992px) {
  .wgt-reports .reports-cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .wgt-reports.reports {
    padding: 1rem 0 5rem;
  }
  .wgt-reports .section-title {
    margin-bottom: 1.5rem;
  }
  .wgt-reports .reports-cards-container {
    grid-template-columns: 1fr;
    gap: 0.875rem;
  }
  .wgt-reports .reports-card {
    padding: 0.875rem;
  }
  .wgt-reports .reports-card img {
    margin-bottom: 0.875rem;
    width: 100%;
    max-width: 38px;
  }
  .wgt-reports .reports-card :is(h1, h2, h3, h4, h5, h6) {
    margin-bottom: 0.5rem;
  }
}
