.doc-tile {
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  background-color: #f6f6f6;
  border-radius: 10px;
  padding: 20px;
  overflow: hidden;
  min-height: 124px;
}
.doc-tile::before {
  position: absolute;
  z-index: -1;
  top: -50%;
  left: 0;
  width: 100%;
  height: 200%;
  background-color: #3f4041;
  transform: scaleY(0) skewY(10deg);
  transform-origin: top center;
  transition: transform 0.6s;
  content: "";
}
.doc-tile:hover::before {
  transform: scaleY(1);
  transform-origin: bottom center;
}
@media (min-width: 768px) {
  .doc-tile {
    min-height: 180px;
    padding: 30px;
  }
}
.doc-tile__title {
  font-size: 16px;
  line-height: 1.36;
  color: #3f4041;
  transition: color 0.3s cubic-bezier(0.3, 0.1, 0.26, 1);
}
.doc-tile:hover .doc-tile__title {
  color: #fff;
}
.doc-tile__bottom {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.doc-tile__size {
  font-size: 12px;
  line-height: 1.2;
  font-weight: 500;
  color: #c6c6c6;
}
.doc-tile__icon {
  flex-shrink: 0;
  display: block;
  width: 48px;
  height: 48px;
  transform: translate(10px, 10px);
}
@media (min-width: 768px) {
  .doc-tile__icon {
    width: 54px;
    height: 54px;
  }
}