.showcase {
  padding: 80px 60px 100px;
  background: #e5e7eb;
}

.showcase__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.showcase__header h3 {
  font-size: 28px;
  font-weight: 400;
}

.showcase__header .btn {
  font-size: 13px;
  padding: 5px 16px;
  color: #fff;
  background: #1f2937;
  border-color: #1f2937;
}

.showcase_categories .category:first-child {
  margin-bottom: 100px;
}

.category__header {
  display: flex;
  align-items: center;
  justify-content: center;
}

.category__header .category__title,
.category__desc {
  width: 50%;
  display: flex;
  align-items: center;
}

.category__title {
  gap: 12px;
}

.category__title h4 {
  font-size: 22px;
  font-weight: 400;
}

.category__title i {
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.category__desc {
  gap: 40px;
  justify-content: space-between;
}

.category__desc p {
  color: #6b7280;
  font-weight: 500;
}

.category__desc a {
  font-size: 22px;
}

.category__projects {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  display: flex;
  gap: 20px;
}

.project-card {
  position: relative;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.project-card__image {
  width: 100%;
  min-width: 300px;
  border-radius: 10px;
  object-position: top center;
  border: 1px solid #e5e7eb;
  margin-bottom: 20px;
  object-fit: cover;
}

.project-card__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-bottom: 8px;
}

.project-card__info h5 {
  font-size: 17px;
  font-weight: 500;
}

.project-card__info p {
  font-size: 12px;
  color: #6b7280;
  font-weight: 500;
}

.project-card__desc {
  font-size: 13px;
  color: #7a7a7a;
  margin-bottom: 30px;
}

.project-card .btn {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 8px 20px;
  border-radius: 16px 0 10px 0;
  border: none;
  color: #fff;
  background: #1f2937;
}

.project-card .btn:hover {
  background: #000;
}
