 @media (min-width: 1024px) {
    .max-w-desktop {
      max-width: 1500px;
    }
  }


  #mainImage {
    height: 100%;
    object-fit: cover;
  }

   @media (max-width: 767px) {
      .timeline-mobile { margin-top: 0.25rem; }

      .timeline-row{
        display: grid;
        grid-template-columns: 72px 1px 1fr; /* day | line | content */
        column-gap: 12px;
        align-items: start;
      }

      .timeline-day{
        font-size: 0.78rem;
        line-height: 1.1;
        letter-spacing: 0.08em;
        font-weight: 500;          /* slightly lighter than the right side */
        text-transform: uppercase;
        color: rgba(0,0,0,.75);
        padding-top: 2px;          /* aligns baseline like screenshot */
        white-space: nowrap;
      }

      .timeline-line{
        width: 1px;
        height: 100%;
        background: rgba(0,0,0,.35); /* subtle divider like screenshot */
        margin-top: 2px;
      }

      .timeline-content{
        padding-right: 4px;
      }

      .timeline-title{
        font-size: 0.86rem;
        line-height: 1.15;
        letter-spacing: 0.02em;
        font-weight: 800;          /* heavier emphasis like screenshot */
        text-transform: uppercase;
        color: rgba(0,0,0,.88);
      }

      .timeline-list{
        margin-top: 2px;
        display: grid;
        gap: 2px;                  /* keep spacing tight */
        font-size: 0.86rem;
        line-height: 1.15;
        letter-spacing: 0.02em;
        font-weight: 800;
        text-transform: uppercase;
        color: rgba(0,0,0,.88);
      }

      /* Tighten vertical rhythm between rows */
      .timeline-mobile > * + * { margin-top: 14px !important; }
    }

@media (max-width: 767px) {
  .timeline-list{
    margin-top: 2px;
    display: grid;
    gap: 2px;
    font-size: 0.86rem;
    line-height: 1.15;
    letter-spacing: 0.02em;
    font-weight: 800;
    text-transform: uppercase;
    color: rgba(0,0,0,.88);
  }

  .timeline-li{
    display: grid;
    grid-template-columns: 16px 1fr; /* "+" column | text column */
    align-items: start;
  }

  .timeline-plus{
    width: 16px;
    text-align: left;   /* keeps plus snug on left */
    line-height: 1.15;
  }

  .timeline-li-text{
    display: block;
    line-height: 1.15;
  }
}

.galleryImage {
  border: 1px solid #000;
}
.timeline-title, .timeline-li-text{
  font-weight: bolder;
}
  /* ===== MOBILE (unchanged) ===== */
  @media (max-width: 767px) {
    .timeline-row{
      display: grid;
      grid-template-columns: 72px 1px 1fr; /* day | line | content */
      column-gap: 12px;
      align-items: start;
    }


    .timeline-day{
      font-size: 0.78rem;
      line-height: 1.1;
      letter-spacing: 0.08em;
      font-weight: 500;
      text-transform: uppercase;
      color: rgba(0,0,0,.75);
      padding-top: 2px;
      white-space: nowrap;
    }

    /* mobile: simple per-row divider line */
    .timeline-marker{
      width: 1px;
      height: 100%;
      background: rgba(0,0,0,.35);
      margin-top: 2px;
    }

    .timeline-title{
      font-size: 0.86rem;
      line-height: 1.15;
      letter-spacing: 0.02em;
      font-weight: 800;
      text-transform: uppercase;
      color: rgba(0,0,0,.88);
    }

    .timeline-list{
      margin-top: 2px;
      display: grid;
      gap: 2px;
      font-size: 0.86rem;
      line-height: 1.15;
      letter-spacing: 0.02em;
      font-weight: 800;
      text-transform: uppercase;
      color: rgba(0,0,0,.88);
    }

    .timeline-li{
      display: grid;
      grid-template-columns: 16px 1fr; /* "+" column | text column */
      column-gap: 8px;
      align-items: start;
    }

    .timeline-plus{ width:16px; text-align:left; }
  }

 /* ===== DESKTOP (md+) ===== */
@media (min-width: 768px) {

  .timeline-desktop{
    position: relative;
  }

  /* vertical timeline line */
  .timeline-desktop::before{
    content:"";
    position:absolute;
    top:10px;
    bottom:10px;
    left:132px;
    width:1px;
    background:rgba(0,0,0,.25);
  }

  .timeline-row{
    display:grid;
    grid-template-columns:110px 44px 1fr;
    column-gap:22px;
    align-items:start;
    position:relative;
  }

  .timeline-day{
    font-size:0.95rem;
    line-height:1.1;
    letter-spacing:0.06em;
    font-weight:500;
    text-transform:uppercase;
    color:rgba(0,0,0,.75);
    text-align:right;
    white-space:nowrap;
  }

  /* marker column */
  .timeline-marker{
    position:relative;
  }

  /* dot exactly on the vertical line */
  .timeline-marker::before{
    content:"";
    position:absolute;
    left:-4px;              /* shift onto the line */
    top:6px;
    width:8px;
    height:8px;
    border-radius:999px;
    background:#f5f0e7;
    border:1px solid rgba(0,0,0,.35);
  }

}