.product-photography-container {
  max-width: 1415px;
  margin: 0 auto;
  padding: 0 15px;
}

.product-photography-wrapper {
  display: grid;
  padding: 42px 56px;
  border: 1px solid var(--c-gray-900);
  border-radius: 5px;
  grid-template-columns: 1fr 566px;
  gap: 22px;

  @media (max-width: 1280px) {
    grid-template-columns: 1fr 466px;
    padding: 20px 30px;
  }

  @media (max-width: 1024px) {
    display: flex;
    flex-direction: column;
  }
}

.product-photography-title {
  font-family: var(--ff-secondary);
  font-weight: 700;
  font-size: 75px;
  line-height: 1;
  letter-spacing: -4px;
  color: var(--c-gray-900);
  margin: 0 0 16px 0;

  @media (max-width: 1280px) {
    font-size: 45px;
    letter-spacing: 0;
  }

  @media (max-width: 1024px) {
    font-size: 28px;
    letter-spacing: 0;
  }
}

.product-photography-description {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #000000;
}

.product-photography-images {
  display: flex;
  margin-bottom: 58px;
  position: relative;
  border: 1px solid var(--c-gray-900);
  border-radius: 5px;
  overflow: hidden;
  height: 307px;

  @media (max-width: 1024px) {
    height: 207px;
  }
}

.product-photography-images div {
  width: 100%;

  box-shadow: 52.6425px 64.8282px 33.1453px rgba(0, 0, 0, 0.01), 29.7332px 36.5573px 28.271px rgba(0, 0, 0, 0.03), 13.1606px 16.0852px 20.9595px rgba(0, 0, 0, 0.04), 3.41201px 3.89944px 11.6983px rgba(0, 0, 0, 0.05);
  border-radius: 5px;
}

.product-photography-images img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
}

.product-photography-banner {
  border: 1px solid var(--c-gray-900);
  border-radius: 5px;
  padding: 20px 16px;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  max-width: 385px;
  margin: 0 auto;

  span {
    font-family: var(--ff-fibbl);
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    text-transform: uppercase;
    color: #181818;
  }

  svg {
    min-width: 32px;
    height: 32px;
  }
}