/* Header & Navigation Components */

header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1rem;
  opacity: 0.2;
  transition: opacity 0.3s ease-in-out 2s;
}

header:hover {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

header > a {
  text-decoration: none;
  border: none;
}

header > a:hover {
  text-decoration: none;
  border: none;
}

.header-with-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  gap: 1rem;
}

.header-with-actions h2 {
  margin: 0;
}

.header-with-actions .breadcrumbs {
  font-size: 0.8rem;
  color: var(--clr-surface-tonal-a30);
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 0.25em;
}

.header-with-actions .back-link {
  color: var(--clr-light-a30);
  text-decoration: none;
  border: none;
}

.header-with-actions .back-link:hover {
  text-decoration: none;
  border: none;
  color: var(--clr-light-a0);
}
