/* Base */
html {
  box-sizing: border-box;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--wp--preset--color--primary-fg);
  background: var(--wp--preset--color--primary-bg);
  line-height: 1.5;
}

.transition-overlay {
  pointer-events: none;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--wp--preset--color--primary-fg);
  z-index: 1000;
}

.transition-overlay .transition-overlay__inner {
  display: block;
  position: relative;
  top: 0;
  left: 1px;
  transform: translateX(-100%);
  height: 100vh;
  z-index: 5;
  aspect-ratio: 3 / 4;
  background: var(--wp--preset--color--primary-fg);
  clip-path: polygon(
    0% 0%,
    100% 0%,
    100% 100%,
    60% 100%,
    60% 45%,
    100% 33%,
    0% 33%
  );
}
