.file-download {
  background-color: var(--color-white);
  min-height: 410px;
  border-radius: 8px;
  overflow: hidden;
  width: 330px;
  position: relative;
  border: 1px solid var(--color-light-grey);
}

.file-download.no_thumbnail {
  min-height: auto;
  width: 100%;
}

.file-download.no_thumbnail .file-download-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.file-download.no_thumbnail .file-download-wrap a {
  position: relative;
  inset: auto;
}

.file-download > img {
  height: 240px;
  width: 100%;
  object-fit: contain;
  object-position: center;
}

.file-download-wrap {
  padding: 20px 25px;
}

.file-download h4 {
  color: var(--color-graphite);
}

.file-download-wrap a {
  width: 48px;
  height: 48px;
  display: block;
  position: absolute;
  bottom: 22px;
  right: 22px;
  border: 1px solid var(--color-graphite);
  border-radius: 50%;
  text-align: center;
  line-height: 56px;
  cursor: pointer;
  transition: var(--transition);
}

.file-download-wrap a:hover,
.file-download-wrap a:focus {
  background-color: var(--color-graphite);
}

.file-download-wrap a img {
  transition: var(--transition);
}

.file-download-wrap a:hover img,
.file-download-wrap a:focus img {
  filter: invert(1);
}

.thumbnail-wrap {
  height: 240px;
  overflow: hidden;
}

.thumbnail-wrap img {
  width: 66%;
  margin: 35px auto 0;
  display: block;
}

.reports-grid .thumbnail-wrap img {
  object-fit: contain;
  height: 170px;
}

@media (min-width: 1471px) {
  .file-download {
    width: 100%;
  }
  .file-download > img {
    object-fit: cover;
  }
  .thumbnail-wrap {
    height: 260px;
  }
}

@media (max-width: 781px) {
  .file-download {
    width: 100%;
  }
}