.page-introduction {
  margin-top: 32px;
  margin-bottom: 32px;
  text-align: center;
}

.page-introduction > h5, .page-introduction > h6 {
  margin: 0;
}

.page-introduction > h6 {
  text-transform: none;
}

.parts {
  margin-top: 16px;
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: auto auto auto auto;
  gap: 16px;
}

.part {
  width: 356px;
  height: 432px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
}

.part-picture-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 356px;
}

.part-picture {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.part-price {
  width: 112px;
  height: 40px;
  background-color: var(--thirty);
  position: absolute;
  bottom: 76px;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.part-title {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 16px;
  padding: 16px;
  color: var(--sixty);
}

.part-view-overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background-color: rgba(var(--sixty-rgb), 0.5);
}

.part-view {
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  color: var(--sixty);
  overflow: hidden;
  width: 600px;
  height: 702px;
  position: relative;
  user-select: none;
}

.part-view-picture-wrapper {
  width: 100%;
  height: 600px;
}

.part-view-picture {
  width: 100%;
  user-select: none;
}

.part-view-price {
  position: absolute;
  background-color: var(--thirty);
  width: 112px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  right: 0;
  bottom: 102px;
}

.part-view-info {
  padding: 16px;
  font-weight: 600;
  text-transform: uppercase;
}

.part-view-contact-info {
  background-color: var(--ten);
  width: 360px;
  height: 48px;
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  padding: 16px;
  font-size: 1rem;
  font-weight: 600;
}

.part-view-contact-info a {
  text-decoration: none;
  color: var(--thirty);
}

.hidden {
  display: none;
}

@media (max-width: 450px) {
  .parts {
    grid-template-columns: auto;
  }

  .part-view {
    width: 360px;
    height: 472px;
  }

  .part-view-picture-wrapper {
    height: 360px;
  }

  .part-view-price {
    bottom: 112px;
  }
}