.file-gallery {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
  row-gap: 1rem;
}
@media (min-width: 48rem) {
  .file-gallery {
    grid-template-columns: repeat(3, 1fr);
    -webkit-column-gap: 2rem;
       -moz-column-gap: 2rem;
            column-gap: 2rem;
    row-gap: 2rem;
  }
}
@media (min-width: 62rem) {
  .file-gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}
.file-gallery__image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-gray);
  height: 150px;
  position: relative;
  margin-bottom: 1rem;
  border-radius: 4px;
}
@media (min-width: 62rem) {
  .file-gallery__image-wrapper {
    height: 250px;
  }
}
.file-gallery__image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.file-gallery__downloadlist {
  list-style: none;
  margin: 0;
  padding: 0;
}
.file-gallery__downloadlist li {
  border-top: 1px solid var(--medium-gray);
}
.file-gallery__downloadlist li:last-of-type {
  border-bottom: 1px solid var(--medium-gray);
}
.file-gallery__downloadlist li a {
  color: var(--dark);
  padding: 0.3rem 0;
  font-size: 0.875rem;
  display: block;
  font-weight: 500;
  display: flex;
}
.file-gallery__downloadlist li a:hover .file-gallery__icon {
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
}
.file-gallery__icon {
  margin-right: 7px;
  font-size: 0.8rem;
  transition: all 0.2s ease;
}
.file-gallery__meta {
  font-weight: 400;
  margin-left: auto;
  text-transform: uppercase;
}

.file-gallery.is-admin .file-gallery__image-wrapper {
  margin: 0 0 1rem 0;
}
.file-gallery.is-admin .file-gallery__downloadlist a {
  pointer-events: none;
}
.file-gallery.is-admin .file-gallery__image {
  height: 100%;
}
