.doc__list .view-content:not(:last-child) {
  margin-bottom: 30px;
}
.doc__list .view-content:not(.flickity-enabled) {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(285px, 1fr));
  gap: 30px;
}
@media (max-width: 767.98px) {
  .doc__list .view-content:not(.flickity-enabled) {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
}
.doc-teaser {
  font-size: 18px;
  position: relative;
  min-height: 185px;
  padding: 20px;
  background-color: #f1fafa;
  z-index: 1;
}
.doc-teaser__wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1;
}
.doc-teaser__title {
  color: #0d212a;
  font-weight: 400;
  font-size: 23px;
  line-height: 1.2;
  margin-bottom: 0;
  transition: opacity 0.4s;
}
.doc-teaser__date {
  font-weight: 400;
}
.doc-teaser__info {
  font-weight: 300;
}
.doc-teaser__icon path {
  transition: fill 0.4s;
  fill: #00d49d;
}
.doc-teaser__download {
  color: #00d49d;
  justify-self: end;
  font-size: 20px;
  text-align: right;
}
.doc-teaser .node__content {
  margin-bottom: 8px;
}
.doc-teaser:hover {
  cursor: pointer;
}
.doc-teaser:hover .doc-teaser__title {
  opacity: 0.6;
}
.doc-teaser:hover .doc-file__icon path {
  fill: #00d49d;
}
.doc-teaser::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  pointer-events: none;
  z-index: 0;
}
.doc-info {
  display: flex;
  align-items: center;
  gap: 12px;
}