/* Work */

@media screen and (min-width: 1200px) {
  .work {
    margin-top: 16rem;
  }
}

.project {
  margin-bottom: 5rem;
}

.project-category {
  color: #b1b9c8;
  font-family: "MaisonNeue_Mono";
  font-weight: normal;
  font-size: 0.75rem;
}

.project-title {
  color: #edeff2;
  font-family: "GooperLight_Italic";
  font-weight: normal;
  font-size: 1.5rem;
  line-height: 2rem;
  margin-top: 0.25rem;
  margin-bottom: 1rem;
}

.project-description {
  color: #b1b9c8;
  display: flex;
  flex-direction: row;
  gap: 5rem;
}

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

.project-paragraph a {
  color: #b1b9c8;
}

.project-paragraph a:hover {
  color: #41c7f1;
}

.project-paragraph a:focus {
  color: #41c7f1;
}

@media screen and (max-width: 768px) {
  .project-description {
    flex-direction: column;
    gap: 1rem;
  }
}

.project-team {
  flex-grow: 1;
  flex-shrink: 0;
  width: 15rem;
}

.project-team h2 {
  font-family: "MaisonNeue_Mono";
  font-weight: normal;
  font-size: 0.75rem;
  color: #edeff2;
  margin-bottom: 0.5rem;
}

.project-team li {
  font-family: "MaisonNeue_Book";
  font-weight: normal;
  font-size: 0.875rem;
  color: #9ca6b9;
  margin-bottom: 0.3rem;
}
/* 
.project-gallery {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 1rem;
  height: auto;
}

.project-gallery > img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  margin-top: 2rem;
} */

.carousel {
  display: flex;
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: relative;
  padding: 0;
  margin: 2rem 0rem;
}

.carousel-list {
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
  display: flex;
  flex: 1 1 100%;
  width: 100%;
  height: 100%;
  gap: 12px;
  align-items: center;
  flex-direction: row;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  border-radius: 1rem;
}

.carousel-list-item {
  scroll-snap-align: center;
  flex-shrink: 0;
  scroll-snap-stop: always;
  width: calc(100% - 0px);
}

.carousel-list-item-container {
  width: 100%;
}

.carousel-list-item-video {
  cursor: auto;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background-color: rgba(0, 0, 0, 0);
  object-position: 50% 50%;
}

.carousel-list-item-image {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-position: center;
  object-fit: cover;
  image-rendering: auto;
}

.carousel-btn-set {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  border: 0;
  padding: 20px;
  margin: 0;
  flex-direction: row;
}

.carousel-btn-previous {
  border: none;
  display: block;
  place-content: center;
  place-items: center;
  overflow: hidden;
  background: transparent;
  margin: 0;
  padding: 0;
  background-color: rgba(20, 20, 26, 0.2);
  width: 32px;
  height: 32px;
  border-radius: 99rem;
  cursor: default;
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.carousel-btn-previous:hover {
  transform: scale(0.9) rotate(0deg) translateZ(0px);
  background-color: rgba(20, 20, 26, 0.5);
}

.carousel-btn-next {
  border: none;
  display: block;
  place-content: center;
  place-items: center;
  overflow: hidden;
  background: transparent;
  margin: 0;
  padding: 0;
  background-color: rgba(20, 20, 26, 0.2);
  width: 32px;
  height: 32px;
  border-radius: 99rem;
  cursor: pointer;
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.carousel-btn-next:hover {
  transform: scale(0.9) rotate(0deg) translateZ(0px);
  background-color: rgba(20, 20, 26, 0.5);
}