.sectionPanel--collections {
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: 100%;
  overflow: hidden;
}

.sectionPanel--collections > [hidden] {
  display: none !important;
}

.contentView--collections {
  display: block;
}

.collectionsScroll {
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
}

.collectionsBody {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: stretch;
  justify-content: center;
  min-height: 100%;
  padding: 20px;
  box-sizing: border-box;
}

.collectionBtn {
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 73px;
  margin: 0;
  border: 1px solid var(--stroke);
  border-radius: 13px;
  background: rgba(0, 0, 0, 0.25);
  color: var(--text);
  font-family: var(--font);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-align: center;
  padding: 20px;
  cursor: pointer;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.75) inset;
  transition:
    transform 120ms ease,
    border-color 120ms ease,
    background 120ms ease,
    box-shadow 120ms ease;
}

.collectionBtn:hover:not(:active) {
  transform: translateY(-1px);
  background: rgba(10, 20, 26, 0.5);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.75) inset,
    0 0 var(--glow-blur-panel) var(--glow);
}

.collectionBtn:active {
  transform: translateY(0);
  background: rgba(10, 20, 26, 0.5);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.75) inset,
    inset 0 0 var(--glow-blur-inset) var(--glow);
}

@media (max-width: 767px) {
  .contentView--collections {
    overflow: hidden;
  }

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

  .collectionsBody {
    flex: 1 1 auto;
    min-height: 0;
    gap: 10px;
    padding: 10px;
    justify-content: center;
  }

  .collectionBtn {
    min-height: 64px;
    font-size: 16px;
    padding: 16px;
  }
}

.postersBody {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  box-sizing: border-box;
}

.postersRow {
  display: grid;
  grid-template-columns:
    minmax(0, 193.616fr)
    minmax(0, 184.914fr)
    minmax(0, 183.826fr)
    minmax(0, 376.354fr);
  gap: clamp(6px, 2.5vw, 27px);
  align-items: start;
  width: 100%;
  min-width: 0;
  overflow: visible;
}

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

.postersCard--interactive {
  cursor: pointer;
  border-radius: 11px;
  transition:
    transform 120ms ease,
    box-shadow 120ms ease;
}

.postersRow .collectionMediaPlaceholder {
  border-radius: clamp(4px, 1vw, 11px);
  font-size: clamp(6px, 1.6vw, 10px);
}

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

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

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

.postersCard--static {
  opacity: 0.5;
}

.postersCard--01 .collectionMediaPlaceholder {
  aspect-ratio: 193.616 / 264.764;
}

.postersCard--02 .collectionMediaPlaceholder {
  aspect-ratio: 184.914 / 264.764;
}

.postersCard--03 .collectionMediaPlaceholder {
  aspect-ratio: 183.826 / 264.764;
}

.postersCard--04 .collectionMediaPlaceholder {
  aspect-ratio: 376.354 / 264.764;
}

.collectionMediaPlaceholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 0;
  border: 1px solid var(--stroke-soft);
  border-radius: 11px;
  background: rgba(0, 0, 0, 0.25);
  color: var(--text-dim);
  font-family: var(--font);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.3;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.75) inset;
}

.collectionMediaPlaceholder.is-loaded {
  display: block;
  padding: 0;
  line-height: 0;
}

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

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

.collectionMediaPlaceholder.is-missing {
  min-height: 80px;
}

.postersIntro {
  display: flex;
  flex-direction: column;
  gap: 21px;
  align-items: stretch;
  width: 100%;
  min-width: 0;
}

.postersIntro__title {
  margin: 0;
  font-size: clamp(22px, 3.2vw, 28px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text);
}

.postersIntro__text {
  margin: 0;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.65;
  color: var(--text);
}

.postersIntro__text strong {
  font-weight: 600;
}

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

  .collectionDetail--posters .postersBody {
    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;
  }

  .postersGalleryFrame {
    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;
  }

  .postersGalleryFrame .postersRow {
    width: 100%;
  }

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

@media (max-width: 767px) {
  .postersGalleryFrame {
    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--posters.projectDetailScroll {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
    overflow: hidden;
  }

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

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

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

  .collectionDetail--posters .postersRow::-webkit-scrollbar {
    display: none;
  }

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

  .collectionDetail--posters .postersCard .collectionMediaPlaceholder {
    width: 100%;
  }

  .collectionDetail--posters .postersRow .collectionMediaPlaceholder {
    border-radius: 8px;
    font-size: 8px;
  }

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

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

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

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