/* Портфолио: обложки и кадры показываются целиком, без среза верха или низа. */
.portfolio-intro .thumb {
  display: grid;
  place-items: center;
  background: #e5dfd5
}

.portfolio-intro .thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain
}

.home-featured .polaroid-card__image {
  display: grid;
  place-items: center;
  background: #dfd7c9
}

.home-featured .polaroid-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain
}

.home-featured .polaroid-card:hover img {
  transform: none
}

.collection-intro .gallery {
  display: block;
  columns: 2 280px;
  column-gap: 18px
}

.collection-intro .gallery button {
  display: inline-block;
  width: 100%;
  margin: 0 0 18px;
  break-inside: avoid;
  vertical-align: top
}

.collection-intro .gallery button:first-child {
  grid-row: auto
}

.collection-intro .gallery .photo-frame,
.collection-intro .gallery button:first-child .photo-frame {
  height: auto;
  min-height: 0
}

.collection-intro .gallery .photo-frame img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain
}

@media(max-width:760px) {
  .collection-intro .gallery {
    columns: 1
  }
}
