.footer__logo {
  display: block;
  max-width: 229px;
  margin: 16px auto; }
  @media (min-width: 768px) {
    .footer__logo {
      height: 32.99px;
      max-width: 419px; } }

.footer__nav {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0; }
  @supports (display: grid) {
    .footer__nav {
      display: grid;
      grid-template-columns: 1fr; } }
  @media (min-width: 1024px) {
    .footer__nav {
      flex-direction: row; }
      @supports (display: grid) {
        .footer__nav {
          grid-template-columns: repeat(auto-fill, minmax(124px, 1fr));
          grid-column-gap: 32px; } } }
  @media (min-width: 1025px) {
    .footer__nav {
      flex-direction: row; }
      @supports (display: grid) {
        .footer__nav {
          grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
          grid-column-gap: 40px; } } }
  @media (min-width: 1201px) {
    .footer__nav {
      padding: 16px 0; } }

.footer__links {
  display: flex;
  flex-direction: column;
  margin: 16px 0; }
  @media (min-width: 768px) {
    .footer__links {
      flex-direction: row;
      margin: 4px 0; } }
  .footer__links a {
    margin-bottom: 16px; }
    .footer__links a:last-of-type {
      margin-bottom: 0; }
    @media (min-width: 768px) {
      .footer__links a {
        margin-right: 16px; }
        .footer__links a:last-of-type {
          margin-right: 0; } }

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  width: 100%;
  margin: 0 auto;
  padding: 16px;
  z-index: 2;
  transition: 0.4s;
  /*
    &__alt {
        display: flex;
        justify-content: center;
        align-items: center;
        border-bottom: 1px solid #ececec;
        padding: 16px 0;
        background: $white;
    }
    */ }
  @media (min-width: 768px) {
    .header {
      height: 80px; } }
  @media (min-width: 1201px) {
    .header {
      max-width: 1200px;
      padding: 0; } }
  .header__menu-and-search {
    display: flex;
    align-items: center; }
  .header__menu {
    display: flex;
    align-items: center;
    justify-content: center; }
    @media (min-width: 768px) {
      .header__menu {
        cursor: pointer; } }
    @media (min-width: 1025px) {
      .header__menu {
        padding: 0; } }
  .header__menu-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 40px;
    min-width: 80px;
    line-height: 1;
    justify-content: center;
    min-height: 40px;
    min-width: 40px; }
  .header__menu-btn-text {
    display: none;
    color: #ffffff; }
    @media (min-width: 768px) {
      .header__menu-btn-text {
        display: block; } }
  .header__menu-icon {
    height: 16px;
    width: 16px;
    fill: #ffffff; }
    @media (min-width: 768px) {
      .header__menu-icon {
        height: 16px;
        width: 16px;
        margin-right: 8px; } }
    .header__menu-icon .top, .header__menu-icon .middle, .header__menu-icon .bottom {
      transition: .4s; }
    .header__menu-icon.is-active .top {
      transform: rotate(45deg) translateX(1px) translateY(-0.35px);
      transform-origin: 0 0; }
    .header__menu-icon.is-active .middle {
      opacity: 0; }
    .header__menu-icon.is-active .bottom {
      transform: rotate(-45deg) translateX(1px) translateY(1px);
      transform-origin: 0 100%; }
  .header__link {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 50%;
    height: 72px;
    z-index: 2;
    transform: translateX(-50%); }
    @media (min-width: 768px) {
      .header__link {
        top: 4px;
        width: 425px; } }
  .header__logo {
    max-width: 229px;
    height: 100%; }
    @media (min-width: 768px) {
      .header__logo {
        height: 32.99px;
        max-width: 419px; } }
  .header__search-desktop {
    display: none; }
    @media (min-width: 1160px) {
      .header__search-desktop {
        display: block; } }

.popular-stories > .featured__section-header {
  /* margin-top: 32px; */ }

.subheader {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  position: relative;
  height: 56px;
  max-width: 1200px;
  border-bottom: 1px solid #ECECEC;
  padding: 16px;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
  -webkit-user-select: none;
  /*
    &__menu {
        &-icon {
            height: 16px;
            width: 16px;
            fill: $white;
    
            @include mq(medium) {
                height: 16px;
                width: 16px;
                margin-right: 8px;
            }
    
            .top, .middle, .bottom {
                transition: .4s;
            }
    
            &.is-active {
                .top {
                    transform: rotate(45deg) translateX(1px) translateY(-.35px);
                    transform-origin: 0 0;
                }
        
                .middle {
                    opacity: 0;
                }

                .bottom {
                    transform: rotate(-45deg) translateX(1px) translateY(1px);
                    transform-origin: 0 100%;
                }
            }
        }
    
        &-btn {
            @include subheaderLinkStyle(flex);
            justify-content: center;
            min-height: 40px;
            min-width: 40px;
        }
    
        &-btn-text {
            display: none;
        
            @include mq(medium) {
                display: block;
            }
        }
    }
    */
  /*
    &__e-edition {
        @include subheaderLinkStyle(none);
    
        @include mq(large) {
            display: flex;
    
            em {
                margin-right: 4px;
            }
        }
    }
    */
  /*
    &__special-link {
        border-bottom: 2px solid red;
        padding-bottom: 4px;
        font-style: italic;
        font-weight: 700;
        color: red;
        transition: .4s;
    
        &:hover {
            border-bottom: 2px solid $link-color;
        }
    }
    */ }
  .subheader a {
    white-space: nowrap; }
  .subheader::-webkit-scrollbar {
    display: none; }
  .subheader::-webkit-scrollbar-corner {
    background: rgba(0, 0, 0, 0); }
  @media (min-width: 768px) {
    .subheader {
      width: initial;
      margin: 0 auto;
      align-items: inherit; }
      .subheader::-webkit-scrollbar {
        display: initial; } }
  @media (min-width: 1201px) {
    .subheader {
      padding-left: 0;
      padding-right: 0; } }
  .subheader__link {
    margin-right: 16px;
    white-space: nowrap;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: .25px;
    /*
        &--marketplace {
            display: none;
        
            @include mq(medium) {
                display: block;
            }
        }
        */
    /*
        &--school-closings {
            display: none;
            color: red;
        
            @include mq(medium) {
                display: block;
            }
        }
        */ }
    .subheader__link--e-edition {
      display: none;
      margin-right: 16px;
      font-family: "Roboto", sans-serif;
      font-weight: 700;
      font-size: 16px;
      letter-spacing: .25px; }
      .subheader__link--e-edition em {
        margin-right: 4px; }
      @media (min-width: 768px) {
        .subheader__link--e-edition {
          display: block; } }
