/* Work Page Specific Styles */
html {
  scrollbar-gutter: stable;
}

body {
  background-color: #000;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overscroll-behavior: none;
}

.main-header {
  background: rgba(5, 5, 5, 0.8);
}

.horizontal-gallery {
  height: 100vh;
  width: 100vw;
  position: relative;
  z-index: 2;
  background: #000;
  overflow: hidden;
  padding-top: 15vh;
}

.gallery-inner {
  margin-top: -60px;
}

.project-item {
  position: relative;
}

.project-info {
  position: absolute !important;
  bottom: 2rem !important;
  right: 2rem !important;
  text-align: right !important;
  margin-top: 0 !important;
  z-index: 5;
  pointer-events: none;
}

.project-image-wrapper {
  position: relative;
}

.project-image-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  z-index: 1;
}
