body {
  overflow: hidden;
}

#container {
  overflow: hidden;
  margin: 0;
}

.current-issue.post {
  text-align: center;
}

.issue-cover.post a {
  max-width: 25rem;
}
.issue-cover .type {
  font-family: 'Gentium', serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
}

.column {
  overflow-y: scroll;
  height:100%;
}

.column#left {
  padding: 2rem 0 0 0;
  width:75%;
}

.column#left .content {
  margin:0 4rem 0 4rem;
}

.column#right {
  padding: 2rem 0 0 0;
  width:25%;
  background-color: var(--gray);
  border-left: 1px solid var(--red);
}

.column#right .content {
  margin:0 4rem 0 4rem;
}

.column#full-width {
  width: 100%;
  padding: 0 4rem;
}



.content {
  padding-bottom: 6rem;
  max-width: none;
}

.post {
  width:100%;
  max-width: 50rem;
  text-align: center;
  margin: 0 auto 4rem auto;
}

.top-article {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 4rem;
}

.grid {
  display:grid;
  grid-template-columns: repeat(2, minmax(24rem, 1fr));
  grid-column-gap: 40px;
  grid-row-gap: 2rem;
  margin-bottom:4rem;
}

.featured-articles {
/*  display: flex;
  justify-content: center;
  margin-bottom: 6rem;
  grid-column-gap: 40px;
  flex-wrap: wrap; */
  display:grid;
  grid-template-columns: repeat(2, minmax(24rem, 1fr));
  grid-column-gap: 40px;
  grid-row-gap: 2rem;
  margin-bottom:8rem;
}

.featured-articles .post {
  max-width: 50rem;
/*  margin: 0 0 4rem 0;
  max-width: 40%; */
}

.grid .post .title {
  letter-spacing: 0.1em;
}


.grid .post .author, .top-article .post .author {
  margin-bottom:1em;
  font-size: 1.5rem;
}

.more-articles {
  grid-template-columns: repeat(auto-fit, minmax(24rem, 1fr));
  margin-bottom:8rem;
  grid-row-gap:3em;
}


.more-articles .title {
  font-size: 2.5rem;
}

.more-articles .author {
  font-size: 1.5rem;
  margin-top: 0.3em;
}

.banner-wrapper {
  width:100%;
  margin: 0 0 8rem 0;
  display: flex;
  justify-content: center;
}

.banner {
  max-width:50rem;
}

.banner-heading {
  letter-spacing: 0.1em;
  margin-bottom: 0.5em;
  text-align: center;
}

.logo {
  display: flex;
  justify-content: center;
  padding-bottom: 0;
}

.logo img {
  transform: translateX(23px);
}

.address {
    margin-top:3rem;
    text-align: center;
}

@media screen and (max-width: 1024px) {
  body {
    overflow:auto;
  }
  #container {
    display: block;
    height:auto;
  }
  .column#left, .column#right {
    width: 100%;
  }
  .post, .top-article .post, .featured-articles .post {
    max-width: none;
    width:100%;
    margin: 2rem 0 4rem 0;
  }
  .content {
    padding-bottom: 4rem;
  }
}

@media screen and (max-width: 800px) {
  #container {
    margin:0;
  }
  .column#left .content {
    margin: 20px 20px 40px 20px;
  }
  h1 {
    font-size: 2rem;
  }
  .grid {
    grid-template-columns: 1fr;
  }
  .more-articles .title h4 {
    font-size: 1.5rem;
  }

  .more-articles .author {
    font-size: 1.125rem;
    margin-top: 0.3em;
  }
  ul {
    margin-bottom: 2rem;
  }
}
