Arches: Arches

Arches:Arches

Multi Product Brand Style System by the American College of Cardiology

Sub

Source: dist/css/bespoke_all.css, line 1409

3.1.1.1 Product Matrix Item

This component represents a single SAP product within the Product Matrix. It includes a visually distinct header with branding, a title, and clinical focus. Event dates and curriculum topics are presented in vertically stacked sections, and a call-to-action link at the bottom directs users to the full SAP page. Background and text colors reflect clinical identity, aiding recognition and scanning. Grid and spacing utilities ensure responsive behavior across breakpoints.

Use this component inside a larger Product Matrix layout when promoting individual learning tracks. Ideal for overview pages or dashboards where clear segmentation by topic is required.

Example s

NOTE:

This component will render incorrectly if it is not within the parent grid that helps with its spacing and alignments.

<li class="topic-subgrid m_0 p_0 gap_1 gap_2:md relative">
    <div class="bg_acc-n2 grid items_center p_4 relative overflow_hidden isolation_isolate">
        <a href="~/link.aspx?_id=6ED43FF8C308457E9DA84DC0C4FEF02E&amp;_z=z" class="block c_acc-1 expanded-click-area h:c_acc-4 h:undecorated not-link">
            <h4 class="font_medium c_white lh_0 m_0 font-size_up-1 uppercase z_3"><span class="font_xbold c_[modifier class]-2">ProductName</span>SAP</h4>
            <span class="wrap c_white lh_2 font-size_down-1 block">Product Tagline</span>
            <i class="fa-solid fa-arrow-circle-right fa-3x absolute c_inherit h:c_inherit b_n3 r_n2 z_0" aria-hidden="true"></i>
        </a>
    </div>
    <div class="bg_[modifier class]-3 p-x_4 p-y_3 p-y_4:md">
        <ul class="ul_none m_0">
            <li class="relative"><strong>September 13 - 21, 2025</strong></li>
            <li class="relative"><strong>November 15 - 23, 2025</strong></li>
        </ul>
    </div>
    <div class="bg_[modifier class]-3 p-x_4 p-y_3 p-y_4:md">
        <ul class="ul_square m_0 p-l_4">
            <li>Case Selection &amp; Management</li>
        </ul>
    </div>
    <div class="bg_[modifier class]-3  font_n1 p-x_4 p-y_3 p-y_4:md relative">
        <a href="~/link.aspx?_id=6ED43FF8C308457E9DA84DC0C4FEF02E&amp;_z=z" class="grid items_center justify_center text_center c_acc-n1 h:c_acc-n3 expanded-click-area-after bg_white-1 h:bg_white-4 inset_0 absolute"><span> Go to SAP Page</span></a>
    </div>
</li>
Copy Code

Source: dist/css/bespoke_all.css, line 1278

3.2.1.1.1 Price Bento Price Card

The Bento Pricing Card is a flexible pricing presentation component designed for purchase plan options. It supports multiple price tiers and optional notes, accommodating varied member types and durations. This component ensures consistent styling, responsive behavior, and semantic clarity across different purchase contexts.

Use when: you need to visually present one or more pricing options with supporting content like membership type and terms.

Do not use when: displaying simple, single-line prices or ungrouped price information not related to purchasing tiers.

Example s

primary

Used for Member

  • primary

    $900/5 year
    purchase plan

    or

    $300/1 year
    purchase plan

    Annual ABIM MOC fee*
  • secondary

    Used for Non-Member

  • secondary

    $900/5 year
    purchase plan

    or

    $300/1 year
    purchase plan

    Annual ABIM MOC fee*
  • accent

    Used for Any Reduced Pricing

  • accent

    $900/5 year
    purchase plan

    or

    $300/1 year
    purchase plan

    Annual ABIM MOC fee*
  • NOTE:
    This is a strict structured component so all cards must match eachother content models. Keep it Apples to Apples!
    <li data-element="price-card" class="flex flex_column m_0 justify_start br_round bg_[modifier class]-n2 p_5:md p_4 c_white-8 shadow_bevel-bold reading-typography  color_inherit">
        <header item-label="price-tier" class="items_top m-b_3:md m-b_4">
            <h2 data-element="price-card-title" class="font_xbold font_display m-y_0 uppercase font_3:lg font_2:md font_1 lh_0">[modifier class]</h2>
        </header>
        <main class="m-t_auto">
            <div item-label="price-cost-breakdown">
                <h3 class="flex flex_row font_8:lg font_4 font_6:md gap_2 items_center lh_2 nowrap"><span class="font_bold">$900</span><span class="font_light">/</span><span class="font_n1 font_0:lg font_medium lh_0 m-l_2 self_center wrap">5 year <br>purchase plan </span></h3>
            </div>
            <div class="c_inherit flex flex_row font_display font_medium m_0 p-y_3:md p-y_2 opacity_8 m-x_n3">
                <span class="flex_auto grid">
                    <span class="br-t_1 br-tl_radius br_inherit br_solid self_center"></span>
                </span>
                <span class="flex_shrink p-x_3 lh_1 text_center">
                    or
                </span>
                <span class="flex_auto grid">
                    <span class="br-t_1 br-tl_radius br_inherit br_solid self_center"></span>
                </span>
            </div>
            <div item-label="price-cost-breakdown">
                <h3 class="flex flex_row font_8:lg font_4 font_6:md gap_2 items_center lh_2 nowrap"><span class="font_bold">$300</span><span class="font_light">/</span><span class="font_n1 font_0:lg font_medium lh_0 m-l_2 self_center wrap">1 year <br />purchase plan </span></h3>
            </div>
        </main>
        <footer class="m-b_n3:md m-t_auto"><div><i class="fa-solid fa-plus p-r_3" aria-hidden="true"></i>Annual ABIM MOC fee<sup class="font_bold">*</sup></div></footer>
    </li>
    Copy Code