.ssc-library__header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(36, 50, 74, 0.1);
  box-shadow: 0 8px 26px rgba(36, 50, 74, 0.07);
  position: relative;
  z-index: 100;
}

.ssc-library__header-inner {
  align-items: center;
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1160px;
  min-height: 80px;
  padding: 0.85rem 1.25rem;
}

.ssc-library__brand {
  flex: 0 1 310px;
}

.ssc-library__brand img {
  border-radius: 0 !important;
  display: block;
  height: auto;
  max-width: 310px;
  width: 100%;
}

html[data-ssc-theme="dark"] .ssc-library__header {
  background: rgba(29, 35, 48, 0.97);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.2);
}

@media (max-width: 850px) {
  .ssc-library__header-inner {
    align-items: stretch;
    flex-direction: column;
    gap: 0.7rem;
  }

  .ssc-library__brand {
    flex-basis: auto;
    width: min(310px, 82vw);
  }
}
