/* WORK Network — shared site header & brand */

.site-header {
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.site-header--light {
  background: #f8fafc;
  border-bottom: 1px solid #e5e7eb;
  padding: 12px 20px;
  min-height: 68px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
  line-height: 1;
}

.site-brand-mark-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #7c3aed, #4f46e5);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.22);
}

.site-brand-mark {
  width: 24px;
  height: 24px;
  display: block;
}

.site-brand-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.site-brand-top {
  font-weight: 900;
  font-size: clamp(17px, 3.6vw, 22px);
  letter-spacing: 0.5px;
  color: #111827;
}

.site-brand-bottom {
  font-weight: 900;
  font-size: clamp(9px, 2vw, 11px);
  letter-spacing: 2px;
  color: #4b5563;
}

@media (max-width: 768px) {
  .site-header--light {
    min-height: 56px;
    padding: 10px 16px;
  }

  .site-brand {
    gap: 8px;
  }

  .site-brand-mark-wrap {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }

  .site-brand-mark {
    width: 20px;
    height: 20px;
  }
}
