body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #e7d1bb;
    color: #261f1d;
  }
  
  .site-header {
    text-align: center;
    padding: 1.5em 1em 1em 1em;
    border-bottom: 1px solid #261f1d;
  }

  
  .site-title {
    font-size: 2rem;
    font-weight: 300 !important;
    letter-spacing: 0.15rem;
    margin: 0;
  }

  .site-title a {
    text-decoration: none !important;
    color: #261f1d !important;
  }
  
  .main-nav {
    margin-top: 0.5em;
  }
  
  .main-nav a {
    margin: 0 0.5em;
    text-decoration: none;
    color: black;
    font-weight: 500;
    font-size: 1rem;
  }
  
  @media screen and (min-width: 1024px) {
    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 2em 3em 0em 3em;
      z-index: 9999;
      background-color: #e7d1bb;
      border-bottom: 1px solid #261f1d ;
    }
  
    .site-title {
      font-size: 5.2rem !important;
      font-weight: 300 !important;
      margin: 0;
      letter-spacing: 0.25rem;
      position: relative;
      left: -2%;
      white-space: nowrap; /* prevent wrapping */
      text-decoration: none;
    }
  
    .main-nav {
      margin-top: 0;
      margin-right: 5%;
      margin-bottom: -2.8rem;
    }
  
    .main-nav a {
      font-size: 1.5rem !important;
      margin: 0 1em;
    }
    .work-grid {
      padding-top: 20em;
    }
  }

  #sf-time {
    display: none;
  }
  
  @media screen and (min-width: 1024px) {
    #sf-time {
      position: fixed;
      top: 4em;  /* adjust as needed */
      right: 2em;
      font-size: 1rem;
      font-weight: 500;
      font-family: 'Poppins', sans-serif;
      color: #555;
      z-index: 99999;
      display: block;
    }
  }

  .work-row .work-item {
    margin-bottom: 2em;
  }

  
  .work-grid {
    display: flex;
    flex-direction: column;
    gap: 2em;
    padding: 2em 1em;
    padding-bottom: 20em; /* ADD THIS */
  }
  @media screen and (min-width: 1024px) {
    .work-grid {
      padding-top: 22em;
    }
  }
  
  .work-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
  }
  
  .work-item img,
  .work-item video {
    width: 100%;
    max-width: 500px;
    border-radius: 6px;
  }


  @media screen and (min-width: 1024px) {
    .work-item.laundry video,
    .work-item.ladder img, 
    .work-item.yy video,
    .work-item.ms video,
    .work-item.cdv video  {
      max-width: 100vw; /* or 1200px, or whatever large size you want */
      width: 1000px;
    }
  }

  @media screen and (min-width: 1024px) {
    .work-row {
      display: flex;
      justify-content: center;
      gap: 4em; /* spacing between Arthur & Ruby */
      margin-bottom: 2em;
    }
  }

  @media screen and (min-width: 1024px) {
    .work-row video {
      max-width: 500px;  /* try 350px, 300px, etc. as needed */
      width: 100%;
    }
  .work-row img {
    max-width: 455px;  /* try 350px, 300px, etc. as needed */
    width: 100%;
    margin-top: 1em;
  }}

  .cr-container {
    text-align: center;
    position: absolute;
    left: 0%;
    bottom: -300%;
    width: 100%;
    z-index: 100;
  }
  
  .cr {
    font-size: 0.75rem;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    color:#3d181e;
  }

  @media screen and (min-width: 1024px) {
    .cr-container {
      text-align: center;
      position: absolute;
      left: 0%;
      bottom: -600%;
      width: 100%;
    }
  }


  @media screen and (min-width: 1024px) {
    .work-item img,
    .work-item video {
      transition: transform 0.3s ease; /* smooth zoom */
    }
  
    .work-item:hover img,
    .work-item:hover video {
      transform: scale(1.05); /* slight enlarge */
    }
  }
