/* Small site-wide additions on top of the theme's built styles */

/* "View all videos" button under Latest work on the homepage */
.home-view-all {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: -1rem 0 2.5rem; /* the video grid above already leaves 2rem */
}

.home-view-all__button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-primary-contrast);
  text-decoration: none;
  background: var(--color-primary);
  border: 2px solid var(--color-primary);
  border-radius: 999px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.home-view-all__button svg {
  width: 1em;
  height: 1em;
  flex: none;
}

.home-view-all__button:hover {
  color: var(--color-primary-contrast);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.home-view-all__button:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 3px;
}
