.project-section {
  max-width: 1440px;
  width: 100%;
  padding-top: 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.project-landing {
  width: 100%;
  max-width: 1440px;
  display: flex;
  flex-direction: row;
  padding: 5rem 0rem;
  padding-bottom: 10rem;
}

.project-landing-text {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.project-landing-label {
}
.project-landing-header {
  display: flex;
  flex-direction: column;
}

.project-landing-title {
  font-size: 4.5vw;
  padding: 1rem 0rem;
  padding-right: 2rem;
  font-family: "Major Mono Display", monospace;
}

.project-landing-summary {
  font-size: 1.2rem;
  padding-right: 2rem;
  font-weight: 300;
  padding-top: 1rem;
  line-height: 2rem;
}

.project-details {
  display: flex;
  flex-direction: column;
}

.project-details-row {
  display: flex;
  font-size: 0.9rem;
}

.project-details-text {
  width: 50%;
  padding: 1.5rem 0rem;
  border-bottom: 1px solid var(--white);
}

.project-details-text-right {
  width: 45%;
  padding: 1.5rem 0rem;
  padding-left: 0.5rem;
  border-bottom: 1px solid var(--white);
}

.project-landing-image-container {
  width: 50%;
  overflow: hidden;
  display: inline-block;
  padding-left: 1rem;
  pointer-events: none;
}

.project-landing-image {
  display: block;
  width: 100%;
  height: auto;
}

.project-text-section {
  padding: 4rem 0rem;
  display: flex;
  width: 100%;
  max-width: 1440px;
}

.project-text-section ul{
  padding-left: 2rem;
}

.project-text-title {
  width: 50%;
  font-size: 5vw;
  font-family: "Major Mono Display", monospace;
}

@media (min-width: 1440px) {
  .project-text-title {
    width: 50%;
    font-size: 4.5rem;
    font-family: "Major Mono Display", monospace;
  }
}

.project-text-paragraph {
  width: 50%;
  font-size: 1.1rem;
  line-height: 1.8rem;
  font-weight: 200;
  padding: 0rem 1rem;
  
}


.project-text-paragraph li{
  padding-bottom: 1rem;
}

.project-text-paragraph p{
  padding-bottom: 1rem;
}

.project-image-section {
  width: 100%;
  max-width: 1440px;
  display: flex;
  z-index: 5;
  padding: 3rem 0rem;
  justify-content: center;
}

.small-image{
  max-width: 720px;
}

.project-image {
  width: 100%;
}

.project-image-padded {
  padding: 3rem 14vw
}

.project-page-link {
  padding: 1rem 0rem;
  display: flex;
  gap: 0.5rem;
  padding-top: 2rem;
  color: rgb(223, 188, 255);
}

.link-under{
  padding-top: 0;
}

.project-page-link:hover {
  text-decoration: underline;
}

.prev-next-container {
  display: flex;
  justify-content: space-between;
  padding-top: 3rem;
  padding-bottom: 10rem;
}

.next-button {
  font-family: "Major Mono Display", monospace;
  font-size: 3rem;
  position: relative;
  text-decoration: none;
  color: #ccc;
  transition: color 0.3s ease;
}

.inactive{
  pointer-events: none;
  opacity: .3;
}

.next-button::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #fff;
  transition: width 0.3s ease;
}

.next-button:hover {
  color: #fff;
}

.next-button:hover::after {
  width: 100%;
}

.fade-slide-up-s {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-slide-up-s.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 860px) {

  .project-landing-summary {
    font-size: 1rem;
    padding-bottom: 1rem;
  }

.project-image-padded {
  padding: 0rem 0rem
}
  .project-landing {
    flex-direction: column;
    gap: 5rem;
  }
  .project-landing-text {
    width: 100%;
  }

  .project-landing-image-container {
    width: 100%;
    padding-left: 0;
  }

  .project-landing-title{
    font-size: 11vw;
  }

  .project-text-section{
    flex-direction: column;
    gap: 2rem;
    padding: 0rem;

  }
  .project-text-title{
    width: 100%;
    padding: 0rem;
  }

  .project-text-paragraph{
    width: 100%;
    padding: 0;
  }

  .project-details-text-right{
    font-size: .8rem;
  }

  .next-button{
    font-size: 2rem;
  }
}

@media (min-width: 1440px) {

      .project-landing-title{
    font-size: 3.9rem;
  }
}
