.photographyRow {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(10px, 2.4vw, 29.257px);
  width: 100%;
  min-width: 0;
}

.photographyCard {
  appearance: none;
  display: block;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  min-width: 0;
  text-align: left;
}

.photographyCard--interactive {
  cursor: pointer;
  transition:
    transform 120ms ease,
    box-shadow 120ms ease;
}

.photographyCard--interactive:hover:not(:active) {
  transform: translateY(-1px);
  box-shadow: 0 0 var(--glow-blur-panel) var(--glow);
}

.photographyCard--interactive:active {
  transform: translateY(0);
}

.photographyCard--01,
.photographyCard--02 {
  flex: 0 1 165.66px;
  width: min(100%, 165.66px);
}

.photographyCard--03 {
  flex: 0 1 222px;
  width: min(100%, 222px);
}

.photographyCard--04 {
  flex: 0 1 333.633px;
  width: min(100%, 333.633px);
}

.photographyRow .collectionMediaPlaceholder {
  border-radius: clamp(4px, 0.7vw, 6.824px);
  font-size: clamp(6px, 1.6vw, 10px);
}

.photographyCard--01 .collectionMediaPlaceholder {
  aspect-ratio: 454 / 605;
  border-radius: 10px;
}

.photographyCard--02 .collectionMediaPlaceholder {
  aspect-ratio: 165.66 / 220.88;
}

.photographyCard--03 .collectionMediaPlaceholder {
  aspect-ratio: 1 / 1;
}

.photographyCard--04 .collectionMediaPlaceholder {
  aspect-ratio: 333.633 / 220.983;
}

.photographyRow .collectionMediaPlaceholder.is-missing {
  min-height: 0;
}

.photographyRow .collectionMediaPlaceholder.is-loaded {
  width: 100%;
  height: auto;
  aspect-ratio: unset;
}

.photographyCard--01 .collectionMediaPlaceholder.is-loaded {
  aspect-ratio: 454 / 605;
  overflow: hidden;
}

.photographyRow .collectionMediaPlaceholder.is-loaded img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: inherit;
  object-fit: cover;
}

.photographyCard--01 .collectionMediaPlaceholder.is-loaded img {
  height: 100%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .collectionDetail--photography.projectDetailScroll {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
    overflow: auto;
  }

  .collectionDetail--photography .photographyBody {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: 0;
    padding: 20px;
    border: 1px solid var(--text);
    border-radius: var(--radius);
    background: rgba(0, 0, 0, 0.25);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.75) inset;
    box-sizing: border-box;
  }

  .photographyGalleryFrame {
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    justify-content: center;
    min-height: 0;
    padding: 20px;
    border: 1px solid var(--text);
    border-radius: var(--radius);
    background: rgba(0, 0, 0, 0.25);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.75) inset;
    box-sizing: border-box;
  }

  .photographyGalleryFrame .photographyRow {
    width: 100%;
  }

  .collectionDetail--photography .postersIntro {
    flex: 0 0 auto;
    width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 1279px) {
  .photographyRow {
    flex-wrap: nowrap;
    justify-content: center;
    gap: clamp(8px, 1.2vw, 16px);
  }

  .photographyCard {
    min-width: 0;
  }

  .photographyCard--01,
  .photographyCard--02 {
    flex: 165.66 1 0;
    width: auto;
    max-width: none;
  }

  .photographyCard--03 {
    flex: 222 1 0;
    width: auto;
    max-width: none;
  }

  .photographyCard--04 {
    flex: 333.633 1 0;
    width: auto;
    max-width: none;
  }
}

@media (min-width: 1280px) {
  .photographyRow {
    flex-wrap: nowrap;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .photographyGalleryFrame {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-height: 0;
    padding: 10px;
    border: 1px solid var(--text);
    border-radius: var(--radius);
    background: rgba(0, 0, 0, 0.25);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.75) inset;
    box-sizing: border-box;
    overflow: hidden;
  }

  .collectionDetail--photography.projectDetailScroll {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
    overflow: hidden;
  }

  .collectionDetail--photography .aboutStickyBar {
    flex: 0 0 auto;
  }

  .collectionDetail--photography .photographyBody {
    flex: 1 1 auto;
    min-height: 0;
    gap: 10px;
    padding: 10px;
    overflow: hidden;
  }

  .collectionDetail--photography .photographyRow {
    flex: 1 1 auto;
    min-height: 0;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 10px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    scrollbar-width: none;
  }

  .collectionDetail--photography .photographyRow::-webkit-scrollbar {
    display: none;
  }

  .collectionDetail--photography .photographyCard,
  .collectionDetail--photography .photographyCard--01,
  .collectionDetail--photography .photographyCard--02,
  .collectionDetail--photography .photographyCard--03,
  .collectionDetail--photography .photographyCard--04 {
    width: 100%;
    max-width: none;
    flex: 0 0 auto;
  }

  .collectionDetail--photography .photographyCard .collectionMediaPlaceholder {
    width: 100%;
  }

  .collectionDetail--photography .photographyRow .collectionMediaPlaceholder {
    border-radius: 8px;
    font-size: 8px;
  }

  .collectionDetail--photography .photographyCard--01 .collectionMediaPlaceholder {
    border-radius: 10px;
  }

  .collectionDetail--photography .postersIntro {
    flex: 0 0 auto;
    gap: 4px;
  }

  .collectionDetail--photography .postersIntro__title {
    font-size: 20px;
    line-height: 1.15;
  }

  .collectionDetail--photography .postersIntro__text {
    font-size: 14px;
    line-height: 1.35;
  }

  .collectionDetail--photography .postersIntro__textSuffix {
    display: none;
  }
}
