• Large sized cards display larger text to other card types, as well as larger images.
  • Large sized cards should contain images with 16:9 or 3:2 aspect ratios only.
  • Recommended image width is 930px (low-res), 1860px (high-res).
    • high-res examples: 16:9 = 1860px x 1046px, 3:2 = 1860px x 1240px, 1:1 = a bad idea
  • Headlines should be a maximum of 50 characters, and descriptions a maximum of 150 characters.
<section class="mzp-c-card mzp-c-card-large mzp-has-aspect-16-9">
    <a class="mzp-c-card-block-link" href="https://example.com">
        <div class="mzp-c-card-media-wrapper">
            <img class="mzp-c-card-image" src="../../img/image-16-9.jpg" alt="">
        </div>
        <div class="mzp-c-card-content">

            <h2 class="mzp-c-card-title">Card title with about 30-40 characters</h2>
            <p class="mzp-c-card-desc">A description of about 150 characters, give or take. That means we usually only have room for one or two sentences. Here is what that looks like.</p>

        </div>
    </a>
</section>