.newsflash-reports-module {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.newsflash-reports-list {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  list-style: none;
  gap: 1rem;
}

.newsflash-reports-list-item {
  padding: 1rem;
  width: calc((100% - 3rem) / 4);
  display: grid;
  grid-template-rows: 100px 1fr;
  background-color: #f5f5f5;
  cursor: pointer;
  transition: 0.3s ease-in;
}

.newsflash-reports-list-item:hover {
  background-color: #002147;
  color: #fff;
}

.newsflash-title-reports-module {
  margin: 0;
  font-weight: bold;
  text-transform: uppercase;
  overflow-y: hidden;
}

@media screen and (max-width: 1000px) {
  .newsflash-reports-list-item {
    width: calc((100% - 3rem) / 2);
  }
}

@media screen and (max-width: 700px) {
  .newsflash-reports-list-item {
    width: 100%;
    margin: 1rem;
    grid-template-rows: max-content 1fr;
  }

  .newsflash-title-reports-module {
    margin-bottom: 1rem;
  }
}