.ldf-editions {
  margin: 100px var(--left-space) 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ldf-editions-single {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 50px;
}
.ldf-editions-single a {
  width: 100%;
  height: 370px;
  max-width: 310px;
  display: block;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 40px;
  position: relative;
}
.ldf-editions-single a:hover {
  transition: 0.3s;
}
.ldf-editions-single a:hover .yellow-background {
  opacity: 1;
  transition: 0.3s;
}
.ldf-editions-single a .yellow-background {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: var(--yellow);
  border-radius: 40px;
  opacity: 0;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 30px;
}
.ldf-editions-single a .yellow-background-padding {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.ldf-editions-single a .yellow-background-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.ldf-editions-single a .yellow-background-row h2 {
  font-size: 30px;
  letter-spacing: 6px;
  color: var(--dark);
}
.ldf-editions-single a .yellow-background-row p {
  font-size: 14px;
  letter-spacing: 1.56px;
  color: var(--light-dark);
  padding-left: 0;
}
.ldf-editions-single a .yellow-background-row .thin-arrow {
  display: block;
  background-size: cover;
  background-position: right;
}
.ldf-editions-single p {
  font-size: 20px;
  color: var(--dark);
  letter-spacing: 4px;
  padding-left: 20px;
}

@media only screen and (min-width: 993px) {
  .ldf-editions-single a:hover {
    background-image: none !important;
  }
}
@media only screen and (max-width: 992px) {
  .ldf-editions {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 576px) {
  .ldf-editions {
    grid-template-columns: repeat(1, 1fr);
  }
}

/*# sourceMappingURL=editions.css.map */
