* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  body, html {
    height: 100%;
    font-family: "EB Garamond", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
  }
  
  h1 {
    font-size: 1.35rem;
    font-weight: 400;
    color: #000000;
    font-family: "EB Garamond";
    font-style: normal;
    line-height: 1.15;
    letter-spacing: 0;
    display: block;
  }

  .container {
    display: flex;
    width: 100vw;
    height: 100vh;
  }
  
  
  .sidebar {
    width: 25%;
    background-color: #fff;
    padding: 20px;
    position: fixed;
    height: 100%;
    overflow: hidden;
    /* border-right: 1px solid #ccc; */
  }
  
  .sidebar h1 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  
  .sidebar ol {
    list-style: decimal-leading-zero;
    padding-left: 20px;
  }
  
  .sidebar ol li {
    margin-bottom: 0px;
    padding-left: 40px;
  }
  
  .sidebar ol li a {
    text-decoration: none;
    color: black;
  }
  
  .sidebar footer {
    position: absolute;
    bottom: 10px;
    left: 20px;
    font-size: 0.8rem;
  }
  
  .projects {
    margin-left: 50%;     /* Offset by sidebar width */
    padding: 40px 0 40px 40px;  /* No right padding */
    overflow-y: auto;
    flex-grow: 1;         /* Let it take full width */
  }
  
  .project {
    display: grid;
    grid-template-columns: 15% 40% 25% 30%;
    grid-template-rows: auto auto;
    gap: 10px;
    margin-bottom: 60px;
  }
  
  .project .number {
    grid-column: 1;
    grid-row: 1;
    /*font-weight: bold;*/
  }

  .project .title {
    grid-column: 2;
    grid-row: 1;
    /*font-weight: bold;*/

  }

  .project .comment {
    grid-column: 3;
    grid-row: 1;
  }
  
  .project .details {
    grid-column: 2;
    grid-row: 2;
    color:#878787;
    font-family: "Open Sans", sans-serif;
    font-size: small;
    
  }
  
  .project .dimensions {
    grid-column: 3;
    grid-row: 2;
    color:#878787;
    text-align: left;
    font-family: "Open Sans", sans-serif;
    font-size: small;
  }
  
  .project .description {
    grid-column: 2 / span 2;
    grid-row: 3;
  }

  .project .image-with-desc {
    grid-column: 2 / span 2;
    grid-row: 4;
    text-align: right;
  }

  .project .image {
    grid-column: 2 / span 2;
    grid-row: 3;
    text-align: right;
  }
  
  .project img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  /* General layout improvements */
  .page-content {
    padding-right: 0 !important; /* Flush right */
    max-width: none !important;  /* Remove default container width limit */
  }
  
  /* Ensure the full-width grid is used */
  .column-set {
    width: 100%;
  }
  
  /* Optional: refine text alignment */
  .grey-caption {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.4;
  }
  
  /* Optional: remove extra spacing on mobile */
  @media (max-width: 768px) {
    .column-set {
      padding: 0 1rem;
    }
  }

  .project-slideshow {
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  
  .project-slideshow .slides {
    display: flex;
    position: relative;
    width: 100%;
  }
  
  .project-slideshow .slide {
    display: none;
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  
  .project-slideshow .slide.active {
    display: block;
  }
  
  .project-slideshow button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.0);
    border: none;
    padding: 0.5rem 1rem;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 2;
  }
  
  .project-slideshow .prev {
    left: 10px;
  }
  
  .project-slideshow .next {
    right: 10px;
  }
  
  