.page-hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 1.25rem;
  padding: 1.2rem 1.25rem;
  border: 1px solid rgba(109, 130, 169, 0.22);
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at top right, rgba(37, 125, 255, 0.18), transparent 28rem),
    radial-gradient(circle at left bottom, rgba(14, 165, 233, 0.12), transparent 16rem),
    linear-gradient(135deg, rgba(244, 248, 255, 0.98) 0%, rgba(232, 241, 255, 0.94) 100%);
  box-shadow: 0 18px 42px rgba(31, 58, 120, 0.08);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto -6rem -6rem auto;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 125, 255, 0.16), transparent 68%);
  pointer-events: none;
}

.page-hero-title {
  margin: 0;
  color: #10263c;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.page-hero-subtitle {
  margin: 0.55rem 0 0;
  max-width: 60rem;
  color: #5c6b80;
  font-size: 0.98rem;
  line-height: 1.55;
}

.page-hero-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.page-hero__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.4rem;
  color: #155eef;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.workspace-switcher-compact {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  width: fit-content;
  flex-shrink: 0;
}

.workspace-switcher-compact__form {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  width: fit-content;
}

.workspace-switcher-compact__label {
  color: #354760;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.workspace-switcher-compact__select {
  min-width: 12rem;
  min-height: 2rem;
  border-radius: 0.6rem;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(201, 209, 227, 0.95);
}

.workspace-switcher-compact__hint {
  color: #6c7a92;
  font-size: 0.7rem;
  margin-top: 0.15rem;
}

@media (max-width: 767.98px) {
  .page-hero {
    padding: 1rem;
  }

  .page-hero-actions {
    justify-content: flex-start;
  }

  .page-hero__meta {
    align-items: flex-start;
  }

  .workspace-switcher-compact {
    width: 100%;
  }

  .workspace-switcher-compact__select {
    width: 100%;
    min-width: auto;
  }
}
