@charset "UTF-8";
:root {
  --header-height: 6.7rem;
}
@media (width > 768px) {
  :root {
    --header-height: 11.2rem;
  }
}

/**
 * Product Landing — minimal header. Placeholder; refine to Figma.
 */
.pl-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: var(--white-main);
  border-bottom: 1px solid var(--grey-line);
}
.pl-header__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 6.4rem;
  padding: 0 2rem;
  direction: rtl;
}
@media (width > 768px) {
  .pl-header__inner {
    height: 8rem;
    padding: 0 8rem;
  }
}
.pl-header__logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.pl-header__logo svg {
  height: 1.8rem;
  width: auto;
}
@media (width > 768px) {
  .pl-header__logo svg {
    height: 2.4rem;
  }
}
