.projects-scroll {
  margin: calc(var(--padding) * -1);
}

.ps-project {
  height: 200vh;
}

.ps-sticky {
  display: flex;
  height: 100vh;
  overflow: hidden;
  border-bottom: 1px solid var(--color-light);
  will-change: transform;
}

.ps-left {
  flex: 0 0 55%;
  position: relative;
  overflow: hidden;
  background: var(--color-light);
}

.ps-cover {
  position: absolute;
  inset: 0;
  background: var(--color-black);
}

.ps-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ps-right {
  flex: 0 0 45%;
  display: flex;
  align-items: center;
  padding: 4rem 3rem;
  box-sizing: border-box;
  background: var(--color-background);
}

.ps-info-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}

.ps-counter {
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--color-grey);
}

.ps-title {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-top: .25rem;
}

.ps-title a {
  text-decoration: none;
  color: inherit;
}

.ps-subheading {
  margin-top: .4rem;
  font-size: .9rem;
}

.ps-text {
  font-size: .85rem;
  line-height: 1.7;
  color: #444;
}

.ps-view-link {
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-grey);
  text-decoration: none;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-light);
  transition: color .2s;
}

.ps-view-link:hover {
  color: var(--color-black);
}

@media screen and (max-width: 60rem) {
  .ps-project { height: auto; }
  .ps-sticky {
    flex-direction: column;
    height: auto;
    overflow: visible;
  }
  .ps-left {
    flex: none;
    height: 60vh;
    width: 100%;
  }
  .ps-cover { transform: none !important; }
  .ps-right {
    flex: none;
    border-left: none;
    border-top: 1px solid var(--color-light);
    padding: 2.5rem 1.5rem;
  }
}
