/* 项目区域样式 */
.projects-section {
  width: 100%;
  padding: 10px;
}

.projects-section .container {
  max-width: 1620px;
  margin: 0 auto;
  padding: 0 5px;
}
.projects-header {
  color: #000;
}
.projects-header {
  padding: 0 20px 20px 0;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.project-item {
  position: relative;
  overflow: hidden;
}

.project-image-container {
  position: relative;
  display: block;
}

.project-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}

.project-item:hover .project-image {
  transform: scale(1.03);
}

.project-info {
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  padding: 2rem 2rem 2rem 0.1rem;
  box-sizing: border-box;
}

.project-date {
  font-size: 1rem;
  opacity: 0.9;
  display: block;
  margin-bottom: 0.5rem;
  color: rgb(130, 132, 136);
}

.project-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.75rem;
}

/* 响应式调整 */
@media (max-width: 768px) {
  .projects-grid {
    gap: 15px;
  }
  
  .project-image {
    height: 200px;
    object-fit: cover;
  }

  .project-info {
    padding: 1rem;
  }

  .project-title {
    font-size: 1.2rem;
  }
}