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

  body {

    font-family: 'Univers', 'Helvetica Neue', Arial, sans-serif;
    font-weight: normal;
    /* font: normal 13px / 1.2 "Avenir", sans-serif; */
    /* font: 13px "Optima", "Helvetica", "Arial", sans-serif; */
    /* font: normal 14px / 16px Avenir, sans-serif; */
    background: #fff;
    /* color: #333; */
    color: #666;
    /* color: #666; */
    /* line-height: 1.6; */
  }

  /* h1 {
      font-weight: 900;
      font-size: 18px;
      line-height: 18px;
      color: #000;
      margin-bottom: 5px;
    } */

  h1 {
    font-size: 26px;
    font-family: "CandalRegular", "Helvetica", "Arial", sans-serif;
    margin-top: 40px;
    /* margin-bottom: -6px; */
    /* font-weight: normal; */
    color: #600;
    text-align: center;
  }

  /* h3 {
      font-weight: 300;
      font-size: 13px;
      line-height: 13px;
      color: #777;
      margin-bottom: 16px;
    } */

  h2 {
    /* margin-top: 40px; */
    margin-bottom: 15px;
    font-size: 16px;
    /* font-family: "CandalRegular", "Helvetica", "Arial", sans-serif; */
    /* font-weight: normal; */
    color: #600;
    /* border: none; */
    line-height: 1.2;
    /* text-align: center; */
  }

  h3 {
    color: #777;
    margin-bottom: 30px;
    font-size: 10px;
    font-weight: normal;
    text-align: center;
  }

  .portfolio-spread {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
    padding: 20px 100px;
  }

  /* Left Page */
  .left-page {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .hero-image {
    width: 100%;
    /* height: 400px; */
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    /* border-radius: 2px; */
    position: relative;
    overflow: hidden;
  }

  .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .figure-label {
    position: absolute;
    top: 15px;
    left: 15px;
    color: white;
    font-size: 11px;
    font-style: italic;
  }

  .text-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    position: relative;
  }

  .text-section::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 40px;
    bottom: 40px;
    width: 1px;
    background: #ccc;
    transform: translateX(-50%);
  }

  .brief,
  .description {
    font-size: 13px;
    text-align: justify;
  }

  .brief h3,
  .description h3 {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 12px;
    /* text-transform: uppercase; */
    letter-spacing: 0.5px;
  }

  .brief p {
    font-style: italic;
    margin-bottom: 15px;
  }

  .description p {
    margin-bottom: 12px;
  }

  .description strong {
    font-weight: bold;
  }

  .page-number {
    text-align: center;
    font-size: 12px;
    margin-top: 20px;
    color: #666;
  }

  /* Right Page */
  .right-page {
    /* display: grid; */
    /* grid-template-columns: 1fr 1fr;
      grid-template-rows: repeat(3, 1fr);
      gap: 20px; */
  }

  .image-box {
    background: #000;
    border-radius: 2px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
  }


  .caption {
    /* grid-column: 1 / -1; */
    /* text-align: right; */
    font-size: 11px;
    font-style: italic;
    color: #666;
    /* margin-top: -10px; */
  }

  .caption strong {
    display: block;
    font-weight: bold;
    font-style: normal;
  }

  /* Project Info Styles */
  /* Project Info Styles */
  .project-details {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #ccc;
  }

  .info-section {
    margin-bottom: 25px;
  }

  .info-section h3 {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 8px;
  }

  .info-section p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 4px;
  }

  .year {
    font-style: italic;
  }

  .tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 8px;
  }

  .tool-category {
    padding-left: 20px;
    border-right: 1px solid #000;
  }

  .tool-category:last-child {
    border-right: none;
  }

  .tool-category h4 {
    font-size: 13px;
    font-weight: normal;
    text-decoration: underline;
    margin-bottom: 8px;
  }

  .tool-category ul {
    list-style: none;
    font-size: 13px;
    line-height: 1.6;
  }

  .tool-category li {
    margin-bottom: 2px;
  }

  .info-section ul {
    list-style: none;
    font-size: 13px;
    line-height: 1.6;
  }

  .info-section ul li {
    margin-bottom: 2px;
  }

  .page-number {
    text-align: center;
    font-size: 12px;
    margin-top: 20px;
    color: #666;
  }

  .steps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* gap: 32px; */
    margin-bottom: 20px;
    max-width: 480px;
  }

  .step-column {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    gap: 12px;
  }

  .selflink {
    color: #666;
    text-decoration: none;
}


a {
    text-decoration: none;
    color: #933;
    border: none;
}


  .step-column img {
    /* width: 100%; */
    height: auto;
    object-fit: contain;
    border-radius: 2px;
  }

  .step-column .caption {
    text-align: left;
    font-size: 10px;
    color: #222;
    /* #666; */
    /* margin-top: 0px; */
    font-style: italic;
    width: 100%;
    padding-left: 2px;
  }

  .step-column .caption strong {
    display: block;
    font-weight: bold;
    font-style: normal;
    margin-bottom: 2px;
  }

  /* Responsive */
  @media (max-width: 1024px) {
    .portfolio-spread {
      grid-template-columns: 1fr;
    }

    .right-page {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 640px) {
    .text-section {
      grid-template-columns: 1fr;
    }

    .right-page {
      grid-template-columns: 1fr;
    }
  }