@media (max-width: 768px) {

  /* GLOBAL RESET */

    
  .side-nav {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 220px;
    padding: 60px 20px;
    background: #f3f5f6;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1000;
  }

  .mobile-nav-toggle {
    position: fixed;
    top: 5px;
    left: 5px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #241010;
    z-index: 1100;
    cursor: pointer;
      display: block;
  }

  .side-nav.open {
    transform: translateX(0);
  }

.content {
    width: auto;
    margin: 0 auto;
    padding-top: 80px;
    margin-left: 10px;
    margin-right:10px; 
}

  /* MAIN TEXT — mobile reading standard */
  .textcopy, .subcopy,
  .textcopy-local {
    font-size: 16px;        /* 👈 standard readable size */
    line-height: 1.3;      /* 👈 comfortable reading */
    letter-spacing: -0.5px;
    padding-left: 18px;    /* 👈 standard mobile gutter */
    padding-right: 18px;
    width: 100%;
    box-sizing: border-box;
  }

  /* headings scale naturally */
  .headline {
    font-size: 36px;
    line-height: 1.;
    padding-left: 18px;
    padding-right: 18px;
    letter-spacing: -3px;
  }

  /* text fills screen */


  /* kill float behavior */
  .float-image {
    float: none;
    width: 100%;
    margin: 20px 0;
    text-align: left;
    padding-left: 18px;
    padding-right: 18px;
  }

  /* image fills screen width */
  .float-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  /* caption centered and readable */
  .float-image .caption {
    font-size: 13px;
    text-align: center;
    margin: 8px auto 0;
    line-height: 1.4;
  }

}

.image-strip {
  position: relative;
width:auto;
  margin-bottom:7px;
  margin-top:7px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgb(168, 224, 214),
    transparent
  );
}

.image-strip::before {
  width:100px;
  content: "";
  position: absolute;
  left: -100vw;
  right: -100vw;
  top: 0;
  bottom: 0;
  background: inherit;
  z-index: -1;
}