/*There is a left and right margin of 4 rem for most content on this page*/


.collapsible {
  color: #201e1e;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: right;
  outline: none;
  font-size: 15px;
}
.active, .collapsible:hover {
   background-color: #ccc;
}
.content {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

div.content ol li{
  text-align: right;
  cursor: pointer;
}
div.content ol li:hover{
  border-bottom: 2px solid #906060;
}
button{
  display: block; 
  width:90%;
  letter-spacing: 0.1em;
}
.quote{
  color: gray; 
  font-style: italic;
  font-size: 0.8em;
  line-height: 0.2em;
}




.card{
  border-radius: 3pt;
  margin:10px;
  text-align: left;
  padding:10px;
  border:1px solid #7a7575;
 
  box-shadow:2px 2px 2px black;
 
}
.details{
  color: gray;
}

.FeaturedNewslettersParentDiv{
  display: flex;
  margin-left: 4em;
  margin-right: 4em;
  margin-bottom: 4em;
  flex-direction: row;
  background-color: #fffafa;
  border-radius: 5px;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.35);
}
.filterSection{
  flex:1;
  padding: 20pt;
}


.ArchivedParentDiv{
  display: flex;
  margin-left: 4em;
  margin-right: 4em;
  margin-bottom: 4em;
  flex-direction: row;
  background-color: #fafaff;
  border-radius: 5px;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.35);
}
.archiveFilter{
  flex:1;
  padding: 20pt;
}
.archiveResults{
  flex:2;
}
.EditionsOverflowDiv{
  background-color: #e1d9d5;
  max-width: auto;
  width: 37em;
  height: 40em;
  border: 1px solid black;
  margin-right: 2em;
  margin-left: 2em;
  overflow-y: scroll;
  margin-top: 4em;
}
.EditionsImg{
  max-width: auto;
  width: 90%;
  height: auto;
  border-radius: 3pt;
  display: block;
  margin-left: auto;
  margin-right: auto;
 
}



/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
  .FeaturedNewslettersParentDiv{
    flex-direction: column;
    margin-left: 1em;
    margin-right: 1em;
  }
  .ArchivedParentDiv{
    flex-direction: column;
    margin-left: 1em;
    margin-right: 1em;
  }
  
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .FeaturedNewslettersParentDiv,.EditionsOverflowDiv{
    margin-left: 0.7em;
    margin-right: 0.7em;
  }
  .archiveFilter{
    padding-left: 0.7em;
  }
  .EditionsOverflowDiv{
    background-color: #e1d9d5;
    width: 20em;
    height: auto;
    border: 1px solid black;
    margin-top: 0.5em;
  }
  .EditionsImg{
    max-width: 500px;
    width: 92%;
    height: auto;
    border-radius: 3pt;
  }

  
}