<!-- Video Embed -->
<div class="video_embed_block">
    <div class="video_embed_block_body">
        <div class="fs-row">
            <div class="fs-cell">
                <div class="video_embed_block_body_inner">
                    <figure class="video_embed_figure">

                        <img class="video_embed_image" srcset="https://images.fastspot.com/vcuarts/1440x810/10 1440w, https://images.fastspot.com/vcuarts/1220x686/10 1220w, https://images.fastspot.com/vcuarts/980x552/10 980w, https://images.fastspot.com/vcuarts/740x416/10 740w, https://images.fastspot.com/vcuarts/500x282/10 500w, https://images.fastspot.com/vcuarts/300x169/10 300w" sizes="(min-width: 740px) 75vw, 98vw" src="https://images.fastspot.com/vcuarts/300x169/10" alt="" loading="lazy" width="300" height="169">

                        <div class="video_embed_lazy_video lazy_video js-video-lazy-load " data-video-lazy-load='{"id":"XPjQhvjQbSM","type":"youtube","title":"Fastspot - Our Methodology","display":"inline","autoplay":false,"playerVars":{}}'>
                            <a class="lazy_video_toggle_btn js-play-btn" href="https://www.youtube.com/watch?v=XPjQhvjQbSM" aria-label="Play Fastspot - Our Methodology">
                                <span class="lazy_video_toggle_btn_icon">
                                    <svg class="icon icon_play">
                                        <use href="/images/icons.svg#play" />
                                    </svg>
                                </span>
                            </a>
                            <div class="lazy_video_iframe_wrap">
                                <div class="lazy_video_iframe_target js-iframe-target"></div>
                            </div>
                        </div>
                    </figure>
                </div>
            </div>
        </div>
    </div>
</div>
<!-- END: Video Embed -->
{#
	{% include '@component-video-embed' with {
		title: 'Title',
		image: '1',
		video: {
			type: '',
			id: '',
			title: ''
		}
	} %}
#}

<!-- Video Embed -->
<div class="video_embed_block">
	{% if title %}
		<div class="video_embed_block_header">
			<div class="fs-row">
				<div class="fs-cell">
					<div class="video_embed_block_header_inner">
						<h2 class="video_embed_block_title">{{ title }}</h2>
					</div>
				</div>
			</div>
		</div>
	{% endif %}
	<div class="video_embed_block_body">
		<div class="fs-row">
			<div class="fs-cell">
				<div class="video_embed_block_body_inner">
					<figure class="video_embed_figure">
						{% include '@partial-image' with {
							class: 'video_embed',
							alt: '',
							image: image,
							loading: 'lazy',
							sources: [
								img.wide.xlrg,
								img.wide.lrg,
								img.wide.med,
								img.wide.sml,
								img.wide.xsml,
								img.wide.xxsml
							],
							sizes: [
								"(min-width: 740px) 75vw",
								"98vw"
							]
						} %}
						{% include "@partial-lazy-video" with {
							class: "video_embed",
							id: video.id,
							type: video.type,
							autoplay: video.autoplay|default(false),
							title: video.title,
							playerVars: {}
						} %}
					</figure>
				</div>
			</div>
		</div>
	</div>
</div>
<!-- END: Video Embed -->

No notes defined.