/** Shopify CDN: Minification failed

Line 16:16 Unexpected "-->"
Line 27:41 Unexpected "{"
Line 27:50 Expected ":"
Line 27:73 Unexpected "<"
Line 28:39 Unexpected "{"
Line 28:48 Expected ":"
Line 28:70 Unexpected "<"
Line 33:11 Expected identifier but found "%"
Line 34:12 Unexpected "{"
Line 34:13 Expected identifier but found "%"
... and 41 more hidden warnings

**/
      <!-- News -->
      <section class="kc-block">
        <div class="kc-block__head">
          <div class="kc-icon" aria-hidden="true">
            <!-- newspaper-ish -->
            <svg viewBox="0 0 24 24" fill="none">
              <path d="M7 7h10M7 11h10M7 15h6" stroke="currentColor" stroke-width="1.8" stroke-linecap="round"/>
              <path d="M5 4h14a2 2 0 0 1 2 2v14H7a2 2 0 0 1-2-2V4z" stroke="currentColor" stroke-width="1.8" stroke-linejoin="round"/>
            </svg>
          </div>
          <div>
            <h2 class="kc-block__title">{{ section.settings.news_title }}</h2>
            <p class="kc-block__desc">{{ section.settings.news_desc }}</p>
          </div>
        </div>

        <div class="kc-cards">
          {% if news_blog != blank %}
            {% for article in news_blog.articles limit: 4 %}
              {% render 'kc-article-card', article: article %}
            {% endfor %}
          {% else %}
            <div class="kc-empty">Select the “News” blog in this section’s settings.</div>
          {% endif %}
        </div>

        {% if news_blog != blank %}
          <a class="kc-viewall" href="{{ news_blog.url }}">
            {{ section.settings.view_all_label }} <span aria-hidden="true">→</span>
          </a>
        {% endif %}
      </section>

      <!-- Team Results -->
      <section class="kc-block">
        <div class="kc-block__head">
          <div class="kc-icon" aria-hidden="true">
            <!-- trophy -->
            <svg viewBox="0 0 24 24" fill="none">
              <path d="M8 4h8v4a4 4 0 0 1-8 0V4z" stroke="currentColor" stroke-width="1.8" stroke-linejoin="round"/>
              <path d="M6 6H4a2 2 0 0 0 2 4h.5" stroke="currentColor" stroke-width="1.8" stroke-linecap="round"/>
              <path d="M18 6h2a2 2 0 0 1-2 4h-.5" stroke="currentColor" stroke-width="1.8" stroke-linecap="round"/>
              <path d="M12 12v3" stroke="currentColor" stroke-width="1.8" stroke-linecap="round"/>
              <path d="M8 21h8" stroke="currentColor" stroke-width="1.8" stroke-linecap="round"/>
              <path d="M10 15h4a2 2 0 0 1 2 2v2H8v-2a2 2 0 0 1 2-2z" stroke="currentColor" stroke-width="1.8" stroke-linejoin="round"/>
            </svg>
          </div>
          <div>
            <h2 class="kc-block__title">{{ section.settings.team_results_title }}</h2>
            <p class="kc-block__desc">{{ section.settings.team_results_desc }}</p>
          </div>
        </div>

        <div class="kc-cards">
          {% if team_results_blog != blank %}
            {% for article in team_results_blog.articles limit: 4 %}
              {% render 'kc-article-card', article: article %}
            {% endfor %}
          {% else %}
            <div class="kc-empty">Select the “Team Results” blog in this section’s settings.</div>
          {% endif %}
        </div>

        {% if team_results_blog != blank %}
          <a class="kc-viewall" href="{{ team_results_blog.url }}">
            {{ section.settings.view_all_label }} <span aria-hidden="true">→</span>
          </a>
        {% endif %}
      </section>