  /* Projects List */
  .projects-section { max-width: 1280px; margin: 0 auto; padding: 36px 64px 64px; }
  .projects-section__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
  .projects-section__title { font-size: 40px; font-weight: 600; color: var(--green); line-height: 1.2; }
  .projects-section__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

  .projects-section--completed { background: var(--green-light); padding: 56px 0; }
  .projects-section--completed .projects-section__inner { max-width: 1280px; margin: 0 auto; padding: 0 64px; }
  .projects-section--completed .projects-section__title { color: #fff; }

  /* Project Card */
  .project-card { display: flex; flex-direction: column; text-decoration: none; }
  .project-card__image { height: 153px; border-radius: 15px 15px 0 0; overflow: hidden; }
  .project-card__image img { width: 100%; height: 100%; object-fit: cover; }
  .project-card__body { background: var(--green); border-radius: 0 0 20px 20px; padding: 16px 24px 24px; flex: 1; }
  .project-card__name { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 8px; line-height: 1.3; }
  .project-card__desc { font-size: 16px; color: #fff; line-height: 1.5; }

  .projects-section--completed .project-card__body { background: var(--bg); }
  .projects-section--completed .project-card__name { color: var(--green); }
  .projects-section--completed .project-card__desc { color: var(--dark); }

  .btn.btn--green-light { background: var(--green-light); color: #fff; font-weight: 500; font-size: 18px; padding: 16px 32px; border-radius: 10px; border: none; cursor: pointer; display: inline-block; text-align: center; text-decoration: none; }
  .btn.btn--green-light:hover { filter: brightness(1.05); }

  @media (max-width: 960px) {
    .projects-section { padding: 24px 20px 48px; }
    .projects-section__title { font-size: 28px; }
    .projects-section__grid { grid-template-columns: 1fr; }
    .projects-section__header { flex-direction: column; align-items: flex-start; gap: 16px; }
    .projects-section--completed .projects-section__inner { padding: 0 20px; }
  }
