<?php
/**
 * UGC 9:16 stills (swap later via data-video-src).
 *
 * @package Foliora
 */

$reels = array(
	array( 'reel-01.jpg', 'Personalized Book Embosser' ),
	array( 'reel-02.jpg', 'Vintage Book Sleeve' ),
	array( 'reel-03.jpg', 'Annotation Kit' ),
	array( 'reel-04.jpg', 'Clip-on Reading Light' ),
);
?>
<section class="section reels" id="reels" aria-labelledby="reels-title">
	<div class="wrap">
		<header class="section-head" data-reveal>
			<h2 id="reels-title">Seen in reading rooms everywhere</h2>
		</header>
		<ul class="reels__row">
			<?php foreach ( $reels as $reel ) : ?>
				<li class="reel" data-reveal data-video-src="">
					<div class="reel__frame">
						<img class="kenburns-slow" src="<?php echo esc_url( foliora_image_uri( $reel[0] ) ); ?>" alt="" width="720" height="1280">
						<span class="reel__cap"><?php echo esc_html( $reel[1] ); ?></span>
					</div>
				</li>
			<?php endforeach; ?>
		</ul>
	</div>
</section>
