.product-banner {
  width: 100%;
  height: 768px;
}
.product-banner > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.divider-x {
  height: 94px;
  width: 1px;
  background-color: #0f0f0f1a;
}

.project-info {
  padding-block: 40px;
  border-bottom: 1px solid #0f0f0f1a;
}
.product-grid {
  margin-top: 80px;
}
.span-down {
  margin-top: 80px;
}
.item {
  width: 100%;
  height: 640px;
  background-color: #0f0f0f1a;
  margin-top: 32px;
}
.divider-y {
  margin-block: 80px;
  width: 100%;
  height: 1px;
  background-color: #0f0f0f1a;
}
.list {
  list-style-type: disc;
  list-style-position: inside;
  padding: 16px 8px;
}
.list > li{
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 16px;
}

.next-project-wrapper {
  width: 100%;
  position: relative;
  cursor: pointer;
  border: none;
  outline: none;
  z-index: 10;
}

.next-project-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.8));
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 1;
  transition: all 0.3s ease;
}

.next-project-wrapper:hover::after {
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.85));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.next-project-image {
  width: 100%;
  height: 600px;
  position: relative;
}

.next-project-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  -webkit-object-fit: cover;
}

.next-project-content {
  padding-inline: 80px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  display: flex;
  align-items: center;
  text-align: left;
  justify-content: space-between;
  color: #ffffff;
  z-index: 2;
}

.next-project-content svg {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  padding: 20px;
  transition: all 0.3s ease;
}

.next-project-wrapper:hover .next-project-content svg {
  background: rgba(255, 255, 255, 0.2);
  transform: translate(5px, -5px);
}

/* Responsive styles */
@media screen and (max-width: 768px) {
  .next-project-content {
    padding-inline: 24px;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    text-align: center;
  }

  .next-project-content p {
    font-size: 3rem;
  }

  .next-project-content svg {
    width: 60px;
    height: 60px;
    padding: 15px;
  }

  .next-project-image {
    height: 400px;
  }
}

@media screen and (max-width: 480px) {
  .next-project-content p {
    font-size: 2rem;
  }

  .next-project-content svg {
    width: 48px;
    height: 48px;
    padding: 12px;
  }

  .next-project-image {
    height: 300px;
  }
}