/* thewizardsapprentice.com — recreated header photo scroller
   (the 2778x75 filmstrip from the original masthead, tweened across a
   350x75 window at its original ~23 px/s) */
.photoscroll {
	width: 350px;
	height: 75px;
	overflow: hidden;
	background: #000;
}
.photoscroll-track {
	display: flex;
	width: 5556px;
	animation: photoscroll 120s linear infinite;
}
.photoscroll-track img {
	display: block;
	flex: none;
}
@keyframes photoscroll {
	from { transform: translateX(0); }
	to   { transform: translateX(-2778px); }
}
@media (prefers-reduced-motion: reduce) {
	.photoscroll-track { animation: none; }
}
