/**
 * Always-visible date badge for Instagram feed posts. Positioned as a
 * sibling of Smash Balloon's .sbi_link overlay (not nested inside it),
 * so it is unaffected by that overlay's hover-only opacity transition.
 */
#sb_instagram .sbi_photo_wrap {
	position: relative;
}
#sb_instagram .sbi_always_visible_date {
	position: absolute;
	bottom: 8px;
	left: 50%;
	transform: translateX(-50%);
	background: rgba(0, 0, 0, 0.65);
	color: #fff;
	font-size: 11px;
	line-height: 1;
	padding: 4px 8px;
	border-radius: 3px;
	z-index: 3;
	pointer-events: none;
	white-space: nowrap;
}
