/** Shopify CDN: Minification failed

Line 128:0 Expected "}" to go with "{"

**/
@media screen and (max-width: 480px) {
  .blog__post.grid.grid--mobile {
    row-gap: 0 !important;
    grid-auto-rows: auto !important;
  }

  .blog__post-item:first-child {
    display: block;
    padding-bottom: 16px !important;
    border-bottom: 1px solid var(--hairline);
  }

  .blog__post-item:not(:first-child) {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin: 0 !important;
    padding: 16px 0 !important;
    min-height: 0 !important;
    height: auto !important;
    align-self: start !important;
    border-bottom: 1px solid var(--hairline);
  }

  .blog__post-item:not(:first-child) .blog__post-image-link {
    flex: 0 0 120px;
    width: 120px;
    height: 120px;
    min-width: 120px;
    padding-bottom: 0 !important;
    border-radius: 8px;
    overflow: hidden;
    --image-height: 0% !important;
  }

  .blog__post-item:not(:first-child) .blog__post-image-link .blog__post-image {
    width: 120px !important;
    height: 120px !important;
    padding-bottom: 0 !important;
    background-size: cover !important;
    background-position: center !important;
  }

  .blog__post-item:not(:first-child) .blog__post-content {
    flex: 1;
    padding: 0 !important;
    margin: 0 !important;
    min-width: 0;
  }

  .blog__post-item:not(:first-child) .blog__post-title {
    font-size: 1.05rem;
    margin-top: 0 !important;
    margin-bottom: 4px !important;
  }

  .blog__post-item:not(:first-child) .blog__post-meta {
    margin-top: 0 !important;
    margin-bottom: 4px !important;
  }

  .blog__post-item:not(:first-child) .blog__post-meta small:first-child {
    display: none;
  }

  .blog__post-item:not(:first-child) .blog__post-excerpt-link {
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0 !important;
  }

  .blog__post-item:not(:first-child) .blog__post-excerpt-link .rte {
    font-size: 0.8rem;
    margin: 0 !important;
  }

  .blog__post-item:not(:first-child) .blog__post-tags {
    margin-bottom: 2px !important;
  }

  .blog__post-title {
    font-size: 1.05rem;
  }

  .blog__post-excerpt-link .rte {
    font-size: 0.82rem;
  }
}
/* Remove the divider line from the very last post item */
  .blog__post-item:last-child {
    border-bottom: none !important;
    padding-bottom: 0 !important;
    margin-bottom: -20px !important;
  }

/* Change Tag Display to one scrollable row on mobile */
  @media screen and (max-width: 480px) {
  .blog__tags {
    flex-wrap: nowrap !important;
    overflow-x: auto;
    justify-content: flex-start !important;
    padding-left: var(--gutter-mobile, 20px);
    padding-right: var(--gutter-mobile, 20px);
    scrollbar-width: none;
    gap: 8px;
  }

  .blog__tags::-webkit-scrollbar {
    display: none;
  }

  .blog__tags-list {
    flex-wrap: nowrap !important;
    gap: 8px;
  }

  .blog__tags .btn {
    white-space: nowrap;
  }
