/* Refinements for the curated Favourite Photos collection. */
.photo-showcase-header {
  padding-bottom: 2.8rem;
}

.photo-showcase-gallery .microblog_collection {
  gap: 1.15rem;
}

.photo-showcase-gallery .microblog_collection img {
  width: 100% !important;
  height: auto !important;
  max-width: none !important;
  margin: 0 !important;
}

.photo-showcase-gallery .microblog_collection img.is-featured-landscape {
  grid-column: span 2;
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.photo-showcase-gallery .microblog_collection img.is-featured-panorama {
  grid-column: 1 / -1;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: auto;
  object-fit: contain;
}

@media (max-width: 700px) {
  .photo-showcase-header {
    padding-bottom: 2.2rem;
  }

  .photo-showcase-gallery .microblog_collection {
    gap: 0.9rem;
  }

  .photo-showcase-gallery .microblog_collection img.is-featured-landscape {
    grid-column: span 2;
  }
}

@media (max-width: 460px) {
  .photo-showcase-gallery .microblog_collection img.is-featured-landscape,
  .photo-showcase-gallery .microblog_collection img.is-featured-panorama {
    grid-column: auto;
    height: auto !important;
    aspect-ratio: auto;
    object-fit: contain;
  }
}