.photos-page { width: 100%; }

.photos-status{
  margin: 12px 0 16px;
  opacity: 0.9;
  font-size: 14px;
}

.photos-grid {
  column-count: 2;
  column-gap: 12px;
}

/* Skeleton tiles */
.photos-tile{
  border-radius: 14px;
  overflow: hidden;
  min-height: 160px;
  position: relative;
  display: grid;
}


/* Children */
.photos-grid img {
  width: 100%;      /* match column width */
  height: auto;     /* keep aspect ratio */
  display: block;
  break-inside: avoid;
  border-radius: 14px;
  transition: 2s;
  padding: 10px;
}


.photos-grid img:hover {
  scale: 1.1;
}

.photos-tile.is-loaded::after{ display:none; }
.photos-tile.is-error::after{ display:none; }
.photos-tile.is-error{ opacity:0.6; }
