
.projects-list {
  display: grid;
  gap: 30px;
}

.project-item {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 30px;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: all 0.3s;
}

.project-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

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

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

.project-content {
  padding: 30px;
  position: relative;
}

.project-status {
  position: absolute;
  top: 30px;
  right: 30px;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
}

.project-status.active {
  background: #27ae60;
  color: white;
}

.project-status.planning {
  background: #f39c12;
  color: white;
}

.project-status.completed {
  background: #95a5a6;
  color: white;
}

.project-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
  margin-top: 30px;
}

.project-description {
  color: #7f8c8d;
  line-height: 1.7;
  margin-bottom: 20px;
}

.project-meta {
  display: flex;
  gap: 30px;
  margin-bottom: 20px;
  color: #7f8c8d;
  font-size: 0.95rem;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 5px 12px;
  background: #ecf0f1;
  border-radius: 15px;
  font-size: 0.85rem;
  color: #2c3e50;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.focus-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  transition: all 0.3s;
}

.focus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.focus-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #e67e22, #d35400);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: white;
}

.focus-icon svg {
  width: 30px;
  height: 30px;
}

.focus-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #2c3e50;
}

.focus-card p {
  color: #7f8c8d;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .project-item {
    grid-template-columns: 1fr;
  }
  
  .project-image {
    height: 250px;
  }
}
