
.publication {
  font-family: Lato, sans-serif;
  display: flex;
  flex-direction: column;
  width: 20vw;
  margin: .5em;
  border: 1px solid #eee;
  position: relative;
}

.publication__image__background {
  position: relative;
  width: 100%;
  height: 40vh;
  opacity: 0.98;
  background-size: contain;
  overflow: hidden;
  background-repeat: no-repeat;
  background-color: #eee;
}

.publication__image {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.publication__information {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: .5em;
  box-sizing: border-box;
  height: 50%;  
}
.publication__information > * {
  margin: .3em;
}

.publication__information__edition {
  padding: .4em;
  margin: .7em;
  font-size: .7em;
  text-transform: uppercase;
  max-width: 200px;
  font-weight: bold;
  background-color: #fc6b01;
  color: white;
  position: absolute;
  z-index: 1;
}

.publication__information__author {
  font-size: .8em;
}

.publication__information__author span {
  font-weight: bold;
}

.publication__information__title {
  font-weight: bold;
}

.publication__information__access a {
  margin: 0;
}


@media screen and (max-width: 1200px) {
  .publication {
    width: 60vw;
    max-width: 200px;
  }

}
