main:has(> .tiktok-feed:last-child) .tiktok-feed {
  margin-bottom: 0;
}

main:has(> .tiktok-feed:last-child) + #colophon .footer-cta {
  background: linear-gradient(
    0deg,
    var(--color-navy) 50%,
    var(--color-off-white) 50%
  );
}

.tiktok-feed .container > .d-flex {
  gap: var(--hori-spacing-5);
  align-items: center;
}

.tiktok-feed .content {
  flex: 0 0 20%;
  max-width: 20%;
}

.tiktok-feed .tik-tok-feed-wrapper {
  flex: 1;
  width: 100%;
}

.tiktok-feed .social-icons {
  flex-direction: column;
  gap: 0.8rem;
}

.tiktok-feed .social-icons svg {
  width: 1.4rem;
}

.tiktok-feed .social-icons a {
  display: inline-flex;
  align-items: center;
  color: inherit;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 0.15rem;
  text-underline-offset: 0.2rem;
  transition: var(--transition);
}

.tiktok-feed .social-icons a::after {
  content: "";
  margin-left: 0.8rem;
}

.tiktok-feed .social-icons .facebook a::after {
  content: "Facebook";
}

.tiktok-feed .social-icons .instagram a::after {
  content: "Instagram";
}

.tiktok-feed .social-icons .tiktok a::after {
  content: "TikTok";
}

.tiktok-feed .social-icons svg path {
  fill: var(--color-gold);
  transition: var(--transition);
}

.tiktok-feed .social-icons a:hover {
  text-decoration-color: var(--color-navy);
}

@media (max-width: 800px) {
  .tiktok-feed .container > .d-flex {
    flex-direction: column;
    align-items: flex-start;
  }
  .tiktok-feed .content {
    max-width: unset;
  }
}
