.project-archive {
  margin-top: 0;
  padding: 34px 0 44px;
}

.projects-header {
  background: linear-gradient(135deg, #fbfde9 0%, #f7f9f1 100%);
  border-radius: 16px;
  padding: 42px 24px;
}

.projects-kicker {
  color: #6f8500;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.6px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.projects-header h1 {
  color: #313a44;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  margin-bottom: 0;
}

.projects-header p:last-child {
  color: #515b64;
  font-size: 17px;
  line-height: 1.7;
  margin: 16px auto 0;
  max-width: 680px;
}

.project-years {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.project-year-card {
  background: linear-gradient(135deg, #fbfde9 0%, #f7f9f1 100%);
  border: 1px solid rgba(49, 58, 68, 0.08);
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(49, 58, 68, 0.08);
  padding: 24px;
}

.featured-year {
  border-color: rgba(203, 235, 0, 0.6);
}

.project-year-heading {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.project-year-heading span {
  color: #313a44;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}

.project-year-heading small {
  background-color: #cbeb00;
  border-radius: 999px;
  color: #313a44;
  font-size: 12px;
  font-weight: 800;
  padding: 7px 12px;
  text-transform: uppercase;
}

.project-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.project-list li {
  margin-bottom: 10px;
}

.project-list li:last-child {
  margin-bottom: 0;
}

.project-list a {
  align-items: center;
  background-color: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(49, 58, 68, 0.08);
  border-radius: 14px;
  color: #313a44;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.project-list a span {
  font-size: 16px;
  font-weight: 750;
}

.project-list a small {
  color: #5f6871;
  font-size: 13px;
  text-align: right;
}

.project-list a:hover {
  background-color: #ffffff;
  border-color: #cbeb00;
  color: #313a44;
  transform: translateY(-1px);
}

@media (max-width: 767px) {
  .project-archive {
    padding: 24px 0 32px;
  }

  .projects-header {
    border-radius: 12px;
    padding: 34px 18px;
  }

  .projects-header h1 {
    font-size: 34px;
  }

  .project-year-card {
    border-radius: 12px;
    padding: 18px;
  }

  .project-year-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .project-list a {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .project-list a small {
    text-align: left;
  }
}
