/**
 * Document
 */

.document-push {
  background-color: var(--color-primary-xlight);
  border-radius: 5px;
  padding: 1rem 2rem;
  margin: 0.5rem 0;
}
.document-push__title {
  font-size: var(--title-s);
  color: var(--color-primary-dark);
  font-weight: 700;
  margin-bottom: 0.5rem;
  max-width: 550px;
}
.document {
  color: var(--color-neutral-dark);
}
.document:hover {
  text-decoration: none;
}
.document__download {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  color: var(--color-link);
  text-decoration: underline;
  align-items: center;
}
.document__download::after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background-image: url("../../images/push/arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.1s;
}
.document:hover .document__download::after {
  transform: translateX(5px);
}
.document__download-text {
  flex: 1;
}
.document__size {
  font-size: var(--text-s);
  line-height: normal;
}
.document__date {
  font-size: var(--text-s);
  line-height: normal;
}
