/* Project Item Block */
.project-item {
  width: 100%;
}

/* Hero Section */
.project-item__hero {
  margin-bottom: 0;
}

.project-item__hero-image {
  width: 100%;
  aspect-ratio: 9/4;
  object-fit: cover;
  display: block;
  margin-bottom: 0;
}

/* Hero Link */
.project-item__hero-link {
  display: block;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.project-item__hero-link:hover {
  opacity: 0.9;
}


.project-item__title-section {
  margin: 3.94rem 0 1.5rem;
}

.project-item__title {
  margin: 0;
  font-family: var(--font-family-calluna);
  font-weight: normal;
  font-size: clamp(1.75rem, 2vw + 1rem, 2rem);
  letter-spacing: 0.6rem;
  text-transform: uppercase;
}

.project-item__content {
  display: block;
}

.project-item__text p {
  font-size: clamp(1rem, 1vw + 0.5rem, 1.125rem);
  line-height: 2rem;
  color: var(--dark-color);
}

.project-item__features {
  list-style: none;
  font-size: clamp(1rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.5rem;
  padding-left: 0;
  border-top: 1px solid var(--border-dark-color);
  margin-top: 2rem;
  padding-top: 2rem;
}

.project-item__feature {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 1.5rem;
}

.project-item__feature::before {
  content: "•";
  position: absolute;
  left: 0;
}

@media (min-width: 1024px) {
  .project-item__content {
    display: grid;
    grid-template-columns: 2fr 1fr;
  }

  .project-item__text {
    padding-right: 3rem;
  }

  .project-item__features {
    border-left: 1px solid var(--border-dark-color);
    padding-left: 3rem;
    padding-top: 0;
    margin-top: 1rem;
    border-top: none;
  }
}

@media (min-width: 1280px) {
  .project-item__text {
    padding-right: 8rem;
  }

  .project-item__features {
    padding-left: 8rem;
  }
}