/* Smooth scrolling for in-page anchor links (sidebar Sign Up -> footer form). */
html { scroll-behavior: smooth; }

/* TikTok icon for sidebar social (matches other .sidebar-social green circles). */
.sidebar-social.icon-5 {
  background-image: url('../images/tiktok-icon.svg');
  background-position: 50% 50%;
  background-size: auto 24px;
  background-repeat: no-repeat;
}

/* Front page video cards (.home-video-content). */

/* Clamp title to 3 lines with ellipsis. */
.home-video-content .heading-container h2 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Author + separator + date on one line. */
.home-video-content .article-caption-row {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  gap: 0.4rem !important;
}

.home-video-content .article-caption-row .author,
.home-video-content .article-caption-row .date {
  white-space: nowrap;
}
