body > main > header#slider__newsletter {
  background: transparent url("/img/newsletter-slider-min.jpg");
}

#latest-newsletter {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px;
}
#latest-newsletter article {
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.16), 0 0 0 1px rgba(0, 0, 0, 0.08);
  text-align: center;
}
#latest-newsletter article a > * {
  padding: 2%;
}
#latest-newsletter article a h3 {
  margin: 0;
  display: block;
  font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 1.4em;
}
#latest-newsletter article a figure {
  margin: 0;
  padding: 0;
  max-height: 275px;
  overflow: hidden;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.25);
}
#latest-newsletter article a p {
  color: var(--font-color);
}
#latest-newsletter article:hover, #latest-newsletter article:active {
  background: #fafafa;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease-in-out;
}
#latest-newsletter article:hover h3, #latest-newsletter article:active h3 {
  background: var(--green);
  color: white;
}

#archive-newsletter {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 10px;
}
#archive-newsletter article h4 {
  display: block;
  font-size: 1.3em;
  text-align: center;
}
#archive-newsletter article article a {
  display: grid;
  grid-template-columns: 1fr auto;
  border-bottom: 1px solid #ebebeb;
  padding: 0 2%;
}
#archive-newsletter article article a p {
  display: grid;
  align-content: center;
  color: var(--font-color);
}
#archive-newsletter article article a p i {
  font-size: 2em;
  color: var(--dkblue);
}
#archive-newsletter article article a:hover, #archive-newsletter article article a:active {
  background: #fafafa;
  transition: all 0.3s ease-in-out;
}
#archive-newsletter article article a:hover p i, #archive-newsletter article article a:active p i {
  color: var(--green);
}

@media only screen and (min-width: 768px) {
  #latest-newsletter,
#archive-newsletter {
    grid-template-columns: repeat(3, 1fr);
  }

  #latest-newsletter > article > a > figure {
    max-height: none;
    overflow: visible;
    box-shadow: none;
  }
}

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