.projects-section {
  padding: 20px 0 20px;
}

.project-card {
  background: #23272d;
  border-radius: 18px;
  padding: 28px;
  margin-bottom: 35px;
  overflow: hidden;
  transition: .30s;
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
}

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

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(0,0,0,.32);
}

.project-image {
  overflow: hidden;
  border-radius: 14px;
}

.project-image img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  transition: .40s;
}

.project-card:hover .project-image img {
  transform: scale(1.04);
}

.project-content {
  padding-left: 22px;
}

.project-category {
  display: inline-block;
  margin-bottom: 12px;
  color: #f28b30;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.project-content h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 16px;
}

.project-content p {
  color: #c2c8cf;
  line-height: 1.75;
  margin-bottom: 24px;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 24px;
}

.project-tags span {
  background: #313740;
  color: #dfe4ea;
  padding: 7px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
}

.project-buttons {
  display: flex;
  gap: 12px;
}

.project-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  background: #f28b30;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .5px;
  transition: .25s;
}

.project-button:hover {
  background: #ff9f48;
  color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width:991px) {
  .project-content {
    padding-left: 0;
    padding-top: 24px;
  }
}

@media (max-width:768px) {
  .projects-section {
    padding: 20px 0;
  }
}

@media (max-width:768px) {
  .project-card {
    padding: 20px;
    margin-bottom: 35px;
  }
}

@media (max-width:768px) {
  .project-content {
    padding-left: 0;
    padding-top: 24px;
  }
}

@media (max-width:768px) {
  .project-content h2 {
    font-size: 24px;
  }
}

@media (max-width:768px) {
  .project-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
}

@media (max-width:768px) {
  .project-button {
    width: 100%;
  }
}

