#photo_gallery {
	background:  none;
}

#photo_gallery #pg_gal .item{
	/*display: flex;*/
  flex-direction: column;
  padding: var(--space-1);
	border-radius: 0.8rem;
	background: #ecf9ff;
}


/* Style and position the counter */
#photo_gallery .slider-counter {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  
  /* Layout & Spacing */
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  
  /* Visuals */
  /*background-color: rgba(0, 0, 0, 0.65);*/
  background-color: #ffffff;
  color: var(--color-text);
  border-radius: 20px;
  
  /* Typography */
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 500;
  font-variant-numeric: tabular-nums; /* Prevents shifting when numbers change */
}

/* Make the current page stand out */
#photo_gallery .slider-counter .current {
  font-weight: 700;
  color: var(--color-text);
}

/* Slightly fade the total number */
#photo_gallery .slider-counter .total {
  color: rgba(0, 0, 0, 0.7);
}