/* SCSS Framework boilerplate from Ristretto: https://github.com/kylelarkin/ristretto */
html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body, select, input, textarea {
  color: #333;
}

::-moz-selection {
  background: #ccc;
  color: #000;
  text-shadow: none;
}

::selection {
  background: #ccc;
  color: #000;
  text-shadow: none;
}

a:link {
  -webkit-tap-highlight-color: #ccc;
}

ins {
  background-color: #ccc;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ccc;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

.recent-issues {
  margin-bottom: 3rem;
}
.recent-issues .recent-issue-heading {
  font-family: "proxima-nova", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 2px;
  line-height: 1.3;
  text-transform: uppercase;
  margin: 0 0 0 0;
  display: inline-block;
}
.recent-issues .issue-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0.75rem 1.5rem;
  margin: 2rem 0 0 0;
}
@media only screen and (min-width: 768px) {
  .recent-issues .issue-list {
    grid-template-columns: repeat(4, 1fr);
  }
}
.recent-issues .issue-list li img {
  transition: all 0.25s ease-out;
}
.recent-issues .issue-list li img:hover {
  transform: translateY(-8px);
}
.recent-issues .issue-list li h4 {
  color: rgb(60, 170, 139);
  font-family: "proxima-nova", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 1rem 0px 0 0;
}
