.project-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }
  
  .project-row {
    display: grid;
    grid-template-columns: minmax(100px, 30%) minmax(0, 1fr);
    column-gap: 1rem;
    align-items: start;
    padding-bottom: 2rem;
    border-bottom: 1px solid #ddd; 
  }
  
  .project-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .project-img {
    display: flex;
    object-position: right;
    height: 250px;
    width: 400px;
    overflow: hidden;
  }
  
  .project-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .project-content{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: start;
  }
  
  .project-content article {
    text-align: start;
  }

  .project-title-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.75rem;
  }

  .project-title-row h2 {
    margin: 0;
  }

  .welfare-guide {
    font-family: 'Noto Sans KR', sans-serif;
    color: #1c1c1c;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  .welfare-guide h1 {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-align: center;
    margin-bottom: 10px;
  }

  .welfare-guide > p:first-of-type {
    text-align: center;
    font-size: 13px;
    color: #888;
    margin-bottom: 56px;
  }

  .welfare-guide h2 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #999;
    margin-top: 48px;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e4e4e0;
  }

  .welfare-guide ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: start;
  }

  .welfare-guide li {
    font-size: 15px;
    color: #2a2a2a;
    padding-left: 16px;
    position: relative;
    text-align: start;
  }

  body.dark-mode .welfare-guide li {
    color: #e6e6e6;
  }

  .welfare-guide li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #c0c0b8;
  }

  .welfare-guide > p:last-of-type {
    text-align: center;
    font-size: 12px;
    color: #bbb;
    margin-top: 72px;
    letter-spacing: 0.1em;
  }

  @media (max-width: 393px) {
    .project-row {
      grid-template-columns: 1fr;
      row-gap: 1rem;
    }
  
    .project-img {
      width: 100%;
      max-width: 100%;
      height: 200px;
    }
  
    .project-title-row {
      flex-wrap: wrap;
    }
  
    .welfare-guide h1 {
      font-size: 22px;
    }
  
    .welfare-guide > p:first-of-type {
      margin-bottom: 36px;
      font-size: 12px;
    }
  
    .welfare-guide h2 {
      margin-top: 32px;
      font-size: 12px;
    }
  
    .welfare-guide li {
      font-size: 14px;
    }
  }