/* =====  PAGEGRID for newsletter.html 
    corrections made on Monday June 6, 2022
    replaces the previous doc called two-colum-grid.css
    which is still used in contact us.
    TODO: REVISE FOR CONTACTUS.HTML AS WELL.
    */
/* --------------------------------------------------=-----*/
/* ---------  MAIN NEWSLETTER PAGE INDIVIDUAL BUTTONS -----*/
/* --------------------------------------------------------*/
.main-article {
  padding-left: 5%;
  width: inherit;
  border: 0 solid gray;
}

ul.newsletter-btns {
  display: flex;
  grid-area: issue-buttons;
  border: 0 solid green;
  align-self: center;
  margin: 3px auto;
  padding-left: 20%;
}

ul.newsletter-btns li {
  display: inline-block;
  width: 50%;
  background-color: #c6b997;
  outline: 1px black solid;
  list-style: none;
  text-align: center;
  vertical-align: middle;
  margin: 3px;
  padding: 3px;
}

ul.newsletter-btns li a {
  border-bottom: 1px darkslategray solid;
}
ul.newsletter-btns li a:hover {
  border-bottom: 2px darkslategray solid;
}

ul.newsletter-btns li.pdf-btn {
  width: 10%;
  border: 0 black solid;
  margin-left: 0.5em;
}

.fa {
  color: tomato;
  border-color: tomato 1px solid;
}

ul.newsletter-btns a {
  display: inline-block;
  color: rgb(56, 36, 20);
  text-decoration: none;
}

ul.newsletter-btns a:hover {
  background-color: rgba(205, 228, 166, 0.068);
  border-bottom: black 1px solid;
  outline-offset: 2px;
}

/* =================================================== */
/* =====  WIDE SCREENS  SCREENS > 771 PX ------------- */
/* =================================================== */

@media screen and (min-width: 771px) {
  main#content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "aside main";
  }

  ul.newsletter-btns li {
    padding: 1px;
  }

  .explain {
    padding: 0;
    margin-bottom: 0.5em;
  }
}
