/* Figma 节点 11008:4 — header 像素级还原 */
.figma-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 52px;
  padding: 0 20px;
  background-color: #000000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .figma-header {
    padding: 0 345px;
  }
}

.figma-header__logo-group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 12px;
  width: auto;
  max-width: calc(100vw - 40px);
  height: 20px;
}

.figma-header__logo {
  position: relative;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.figma-header__logo img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
}

.figma-header__sitename,
.figma-header .site-name {
  flex-shrink: 0;
  margin: 0;
  font-family: 'Lexend', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  color: #8800dd;
  white-space: nowrap;
  word-break: break-word;
}
