  /* Top Article */

  .top-article-container {
    padding-top: 20px;
    background: rgb(255,255,255);
    background: linear-gradient(360deg, rgba(255,255,255,1) 50%, rgba(244,247,249,1) 50%);
  }

  .top-article {
    display: flex;
    width: 100% !important;
    /* padding: 20px; */
    background-color: #ffffff;
    border: 1px solid #EBEBEB;
  }

  .ta-image {
    display: flex;
    width: 48%;
    align-items: center;
    justify-content: center;
  }

  .ta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .ta-summary {
    display: flex;
    flex-direction: column;
    width: 48%;
    padding: 20px;
    padding-left: 35px;
  }

  .top-article-author-date {
    display: flex;
    flex-wrap: wrap;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .top-article-author-date p {
    margin-right: 10px;
    opacity: 0.6;
  }

  .top-article-divider {
    background-color: #E6E9EB;
    border: none;
    height: 1px;
  }

  .top-article-desc {
    padding-top: 10px;
  }

  .top-social {
    padding-left: 0;
    padding-top: 20px;
  }

  /* End Top Article */

  /* Newsletter Signup */

  .newsletter-signup {
    display: flex;
    background-color: #F4F7F9;
    padding-top: 50px;
    padding-bottom: 50px;
    margin-top: 90px;
  }

  .ns-header-desc-container {
    width: 50%;
  }

  .ns-header {
    font-weight: 800;
    font-size: 28px;
    letter-spacing: 0.05em;
  }

  .ns-desc {
    font-weight: normal;
    font-size: 14px;
    color: #7A7A7A;
    padding-top: 10px;
  }

  .ns-input-submit-container {
    width: 50%;
  }

  /* End Newsletter Signup */

  .section-header {
    text-align: center;
  }

  #mc-embedded-subscribe {
    color: #ffffff !important;
  }

  /********************* Media Queries **********************/

  /*************** Smaller Screens and Lower *******************/

  @media only screen and 
  (max-width: 1100px) {

  /* Top Article */

  .top-article {
    flex-direction: column;
    padding: 20px;
  }

  .ta-image {
    width: 100%;
  }

  .ta-summary {
    width: 98%;
    padding: 0;
  }

  .top-article-author-date {
    padding-bottom: 20px;
  }

  .top-article-author-date p {
    padding-right: 0;
  }

  .top-social {
    padding-top: 40px;
  }

  /* End Top Article */

  /* Newsletter Signup */

  .newsletter-signup {
    flex-direction: column;
  }

  .ns-header-desc-container {
    width: 98%;
  }

  .ns-input-submit-container {
    width: 98%;
    padding-top: 30px;
  }

  .sort {
    display: flex;
    align-items: center;
  }

  }

  /* Smaller Screens */

  @media only screen and 
  (max-width: 1100px) and
  (min-width: 850px) {

  }

  /* Tablet */

  @media only screen and 
  (max-width: 850px) and
  (min-width: 451px) {

    .top-article{
      width: 93%;
    }

    .ta-summary {
      width: 93%;
    }

  }

  /* Mobile */

  @media only screen and (max-width: 450px) {

    .top-article {
      padding: 20px;
    }

    .ta-summary {
      width: 90%;
    }

  }