• Small sized cards can contain images with 16:9, 3:2 or 1:1 aspect ratios.
  • The card in this example displays an icon next to the card tag name, to indicate the media type that may be played on click.
  • Recommended image width is 450px (low-res), 900px (high-res).
    • high-res examples: 16:9 = 900px x 506px, 3:2 = 900px x 600px, 1:1 = 900px x 900px
  • Headlines should be a maximum of 50 characters, and descriptions a maximum of 150 characters.
<section class="mzp-c-card mzp-has-aspect-1-1 mzp-has-audio">
    <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-1-1.jpg" alt="">
        </div>
        <div class="mzp-c-card-content">
            <div class="mzp-c-card-tag">Audio</div>
            <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>
            <p class="mzp-c-card-cta"><span class="mzp-c-card-cta-text">This call to action is 37 characters</span></p>

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