.other-project-page {
  display: flex;
  flex-direction: column;
  padding-block: 1.5rem;
  align-items: start;
  gap: 2rem;
}
.other-project-gallery {
  width: 100%;
}

/* Override product.css square aspect-ratio for project pages */
.other-project-page .main-slider {
  aspect-ratio: unset;
  background-color: transparent;
}

.other-project-page .main-slider .swiper-slide img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: cover;
  display: block;
}

.other-project-page .main-slider .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.other-project-title {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}
.other-project-img {
  width: 100%;
}
.other-project-imgs {
  gap: 2rem;
  display: flex;
  flex-direction: row;
  width: 100%;
}
.other-project-list {
  font-size: 22px;
  & li {
    padding: 1rem;
  }
  & li > span {
    color: black;
    font-weight: 700;
  }
}
.op-big-img {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  & img {
    width: 100%;
  }
}
.project-img {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  object-position: center;
}

.slider-wrapper {
  position: relative;
  width: 100%;
}

.product-actions {
  margin-block: 2rem;
}

.thumb-slider {
  height: 150px;
  padding-top: 1rem;

  img {
    width: 100%;
    height: 100%;
  }
}
.op-ap {
  padding-top: 2rem;
  display: flex;
  max-width: 220px;
  flex-direction: column-reverse;
  position: relative;
}
.white-text {
  font-size: 28px;
  line-height: 30px;
  text-align: center;
  color: #ffeacd;
}
.op-neon {
  background: linear-gradient(180deg, rgba(88, 60, 6, 0) 0%, #583c06 100%);
  position: absolute;
  padding: 1rem;
  width: 100%;
  align-items: center;
  max-width: 220px;
}
.other-project-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #3c3b36;
  width: 100%;

  & ul, & ol {
    padding-left: 1.5rem;
  }

  & li {
    padding: 0.5rem 0;
  }

  & li > strong, & li > b {
    color: #3c3b36;
    font-weight: 700;
  }
}

.other-project-count {
  color: #8c7750;
  font-size: 1rem;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .op-big-img {
    grid-template-columns: repeat(2, 1fr);
  }
  .other-project-title {
    flex-wrap: wrap;
  }
}
