/**
 * Mobile hub / all-listing article cards: 2 columns, compact cover, compact text.
 */
@media (max-width: 767px) {
  .vc-hub-article-grid {
    gap: 0.625rem !important;
  }

  .vc-hub-article-grid > a,
  .vc-hub-article-grid > article.item {
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    transform: none !important;
  }

  .vc-hub-article-grid > a > img,
  .vc-hub-article-grid > article.item > img {
    height: auto !important;
    min-height: 0;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
    border-radius: 1rem 1rem 0 0;
    display: block;
    width: 100%;
  }

  /* Content block */
  .vc-hub-article-grid > a > div,
  .vc-hub-article-grid > article.item > div {
    padding: 0.75rem !important;
  }

  /* Category tag */
  .vc-hub-article-grid > a > div > span.rounded-full,
  .vc-hub-article-grid > article.item span.rounded-full {
    font-size: 0.625rem !important;
    line-height: 1.2 !important;
    padding: 0.125rem 0.375rem !important;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block;
    vertical-align: top;
  }

  /* Date */
  .vc-hub-article-grid > a > div > p.text-xs,
  .vc-hub-article-grid > article.item .text-xs.text-gray-500 {
    font-size: 0.625rem !important;
    line-height: 1.2 !important;
    margin-top: 0.25rem !important;
    margin-bottom: 0 !important;
  }

  /* all.html meta row (tag + date) */
  .vc-hub-article-grid > article.item > div > .flex.items-center {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 0.125rem;
    margin-bottom: 0.25rem !important;
  }

  .vc-hub-article-grid > article.item > div > .flex.items-center .ml-4 {
    margin-left: 0 !important;
  }

  /* Titles */
  .vc-hub-article-grid > a h2,
  .vc-hub-article-grid > article.item h3 {
    font-size: 0.8125rem !important;
    line-height: 1.3 !important;
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Description — hidden on mobile */
  .vc-hub-article-grid > a > div > p.text-gray-600,
  .vc-hub-article-grid > article.item > div > p.text-gray-600 {
    display: none !important;
  }

  /* Hub: "Open guide ->" */
  .vc-hub-article-grid > a > div > span.text-primary {
    font-size: 0.6875rem !important;
    margin-top: 0.25rem !important;
    line-height: 1.2;
  }

  /* all.html: "Learn More" */
  .vc-hub-article-grid > article.item a.text-primary {
    font-size: 0.6875rem !important;
    margin-top: 0 !important;
  }

  .vc-hub-article-grid > article.item a.text-primary svg {
    width: 0.75rem;
    height: 0.75rem;
    margin-left: 0.125rem;
  }
}
