@media only screen and (min-width: 35rem) {
  /* ----- NAV / HEADER ----- */
  button#menu-toggle {
    display: none;
  }

  nav {
    display: block;
    opacity: 1;
    visibility: visible;
    height: auto;
    box-shadow: #101010 0 2px 4px 0;
  }

  nav ul {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    list-style: none;
    margin: 0;
    padding: 0;
    background-color: #141414;
  }

  nav ul li {
    margin: 0;
    padding: 0px;
    font-size: 1.2rem;
  }

  nav ul li a {
    color: #efefef;
    text-decoration: none;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    height: 80px;
    padding: 0 20px;

  }

  nav ul li a h2 {
    margin: 0;
    padding: 0 20px;
    font-size: 1.2rem;
  }

  nav ul li:hover {
    background-color: #222222;
  }

  nav ul li:active {
    background-color: #494949;
    color: #141414;
    transition: 0.3s;
  }

  /* ----- LANDING PAGE HERO ----- */
  main.landing {
    background-size: 160%;
    background-position: 50% 55%;
    height: auto;
    max-width: none;
  }

  /* ----- FILMS / EDITS GRID (VIDEOS) ----- */
  #films-viewer,
  #edits-viewer {
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    gap: 20px;
    width: 100%;
  }

  /* ----- PHOTOGRAPHY GRID ----- */
  #photography-viewer {
    margin: 0 20px;
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    max-width: 100%;
    gap: 0;
  }

  #photography-viewer div {
    margin: 0;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border: 1px solid black;
  }

  #photography-viewer div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  /* ----- BIO PAGE (THIS FIXES YOUR PHOTO DROPPING) ----- */
  .bio-layout {
    display: grid;
    grid-template-columns: 2fr 1fr; /* text left, photo right */
    gap: 40px;
    align-items: start;
  }

  .bio-photo {
    align-self: start;
  }

  /* ----- BLOG / POSTS PAGE ----- */
  .post-images {
    display: grid;
    grid-template-columns: repeat(3, minmax(170px, 1fr));
    gap: 12px;
  }

  div.post-images figure {
    margin: 0;
    width: 100%;
    height: 320px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    figcaption{
      height: fit-content;
    }
  }

  img.post-image {
    width: 100%;
    height: 100%;
    max-height: 270px;
    object-fit: cover;
    object-position: center;
  }

  #writing-viewer {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
}