.project-cover {
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  background: #0c0f12;
}

.project-cover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.project-art {
  width: 100%;
}

.project-grid-all {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.project-grid-all .project-card-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.65fr);
}

.project-grid-all .project-card-featured .project-cover {
  min-height: 430px;
  aspect-ratio: auto;
}

.project-grid-all .project-card-featured .project-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 48px);
}

.featured-label {
  margin: 0 0 14px !important;
  color: var(--blue) !important;
  font-size: 10px !important;
  font-weight: 800;
  letter-spacing: 0.12em;
}

@media (max-width: 760px) {
  .project-grid-all {
    grid-template-columns: 1fr;
  }

  .project-grid-all .project-card-featured {
    grid-column: auto;
    display: block;
  }

  .project-grid-all .project-card-featured .project-cover {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .project-grid-all .project-card-featured .project-body {
    display: block;
    padding: 21px;
  }
}
