/**
 * @file
 * file styles
 */

 .file__wrapper {
  display: flex;
  flex-direction: column;
  margin: 10px 0;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.08);
  background-color: var(--color-neutral--6);
  padding: 1rem 2rem;
  border-radius: 5px;
  max-width: 600px;
  color: #2F2C2C;
}

.file__title {
  margin: 0;
  font-size: 17px;
  font-weight: 800;
}

.file__details {
  display: flex;
  align-items: center;
  margin-top: 5px;
  gap: 15px;
  flex-wrap: wrap;
}

.file__date,
.file__format {
  font-size: 17px;
  border-right: #365665 solid 2px;
  padding-right: 15px;
}

.file__download {
  text-decoration: none;
  font-weight: bold;
  color: #000;
  display: flex;
  align-items: center;
  position: relative;
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
}
.file__download a{
  font-size: 15px;
}
.file__download::before {
  content: '';
  background-image: url(../../images/page/icon-download.svg);
  width: 16px;
  height: 16px;
}

.file__download .icon-download {
  margin-right: 5px;
}

