body:has(craverz-layout) {
  --background: #f4f4f4;
  --text: #000;
  --font: 'Figtree', 'Inter', sans-serif;
  --dark: color-mix(in srgb, #201f1e, white 15%);
  display: flex;
}

craverz-layout {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: auto;
  max-width: 640px;
  flex-grow: 1;
}

craverz-layout [branding] {
  width: 180px;
  height: 180px;
  object-fit: contain;
}

craverz-layout [links] {
  position: relative;
  display: flex;
  gap: 13px;
  padding: 0.5rem 1.5rem;
  align-items: center;
  justify-content: center;
  margin-top: -2rem;
}

craverz-layout [links] [divider] {
  width: 1px;
  height: 11px;
  background: currentColor;
}

craverz-layout [links] a {
  text-decoration: none;
  color: currentColor;
  font-size: 1rem;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all ease 300ms;
}

craverz-layout [links] a[active] {
  font-weight: 600;
}
craverz-layout [links] a:not([active]) {
  opacity: 0.6;
}

craverz-layout [links] a:hover {
  opacity: 1;
}

craverz-layout site-footer {
  padding: 3rem 0;
}

craverz-layout :not(> site-footer),
craverz-layout :not(> [links]),
craverz-layout :not(> a) {
  flex-grow: 1;
}