.brand-mark {
  display: block;
  width: 120px;
  height: 28px;
  background: url("/stateset-logo-blue.svg") center/contain no-repeat;
  font-size: 0;
  letter-spacing: 0;
}
.brand-mark span {
  display: none;
}
.signin-card > .brand-mark {
  top: 36px;
}
.app-header .brand-mark {
  width: 108px;
  height: 26px;
}
.policy-import {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px;
  margin-bottom: 24px;
  border: 1px dashed rgba(26, 98, 255, 0.3);
  border-radius: 16px;
  background: rgba(26, 98, 255, 0.05);
}
.policy-import div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.policy-import small {
  color: #4b5563;
  line-height: 1.45;
}
.notice.success {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.3);
  color: #047857;
}
@media (max-width: 620px) {
  .policy-import {
    align-items: stretch;
    flex-direction: column;
  }
  .policy-import .button {
    width: 100%;
  }
}
.workspace-home {
  padding: 42px;
}
.workspace-home-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
.workspace-home-heading h1 {
  margin: 10px 0 8px;
  font-size: 42px;
  letter-spacing: -0.04em;
}
.workspace-home-heading p {
  margin: 0;
  color: #4b5563;
}
.workspace-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 32px 0;
}
.workspace-stats > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  background: #f9fafb;
}
.workspace-stats strong {
  font-size: 30px;
}
.workspace-stats span {
  color: #4b5563;
  font-size: 13px;
}
.workspace-activity {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  overflow: hidden;
}
.workspace-activity h2 {
  margin: 0;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 16px;
}
.workspace-activity > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.workspace-activity > div:last-child {
  border: 0;
}
.workspace-activity > div > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.workspace-activity small {
  color: #6b7280;
}
.workspace-status {
  padding: 6px 10px;
  border-radius: 999px;
  background: #f3f4f6;
  color: #4b5563;
  font-size: 11px;
  font-weight: 700;
  text-transform: capitalize;
}
.workspace-status.succeeded {
  background: rgba(16, 185, 129, 0.1);
  color: #047857;
}
.workspace-status.running,
.workspace-status.queued {
  background: rgba(26, 98, 255, 0.1);
  color: #1550d8;
}
@media (max-width: 620px) {
  .workspace-home {
    padding: 24px 19px;
  }
  .workspace-home-heading {
    flex-direction: column;
  }
  .workspace-home-heading .button {
    width: 100%;
  }
  .workspace-stats {
    grid-template-columns: 1fr;
  }
  .workspace-home-heading h1 {
    font-size: 34px;
  }
}
