:root {
  --lcx-ink: #08192c;
  --lcx-navy: #12355b;
  --lcx-blue: #1463d2;
  --lcx-sky: #d6e8fb;
  --lcx-green: #0f766e;
  --lcx-mint: #d6eee5;
  --lcx-coral: #d1495b;
  --lcx-line: #d5e0ec;
  --lcx-paper: #f6f9fc;
  --lcx-muted: #52677d;
  --lcx-shadow: 0 24px 70px rgba(8, 25, 44, .18);
}

* {
  letter-spacing: 0;
}

body.lcx-body {
  margin: 0;
  min-height: 100vh;
  color: var(--lcx-ink);
  background: var(--lcx-paper);
  font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", Manrope, sans-serif;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 800;
}

.btn-primary {
  border-color: var(--lcx-blue);
  background: var(--lcx-blue);
}

.btn-soft {
  border: 1px solid rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .14);
  color: #fff;
  backdrop-filter: blur(14px);
}

.btn-soft:hover,
.btn-soft:focus {
  border-color: rgba(255, 255, 255, .5);
  background: rgba(255, 255, 255, .24);
  color: #fff;
}

.lcx-kicker {
  color: var(--lcx-blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.lcx-site-header {
  position: absolute;
  z-index: 5;
  inset: 0 0 auto;
  padding: 18px 0;
}

.lcx-header-inner,
.lcx-header-actions,
.lcx-brand {
  display: flex;
  align-items: center;
}

.lcx-header-inner {
  justify-content: space-between;
  gap: 18px;
}

.lcx-header-actions {
  gap: 10px;
}

.lcx-brand {
  min-width: 0;
  gap: 12px;
  color: #fff;
  text-decoration: none;
}

.lcx-brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(168px, 18vw, 244px);
  height: clamp(82px, 9vw, 112px);
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, .68);
  border-radius: 8px;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 22px 58px rgba(8, 25, 44, .34);
}

.lcx-brand img {
  display: block;
  max-width: calc(100% - 28px);
  max-height: calc(100% - 22px);
}

.lcx-hero {
  position: relative;
  min-height: min(920px, 100svh);
  overflow: hidden;
  color: #fff;
  background: #08192c;
}

.lcx-hero-media,
.lcx-hero-media::after {
  position: absolute;
  inset: 0;
}

.lcx-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .36;
  filter: saturate(1.08);
}

.lcx-hero-media::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 25, 44, .97), rgba(8, 25, 44, .76) 52%, rgba(8, 25, 44, .42)),
    linear-gradient(180deg, rgba(8, 25, 44, .18), #08192c 96%);
}

.lcx-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  min-height: min(920px, 100svh);
  padding-top: 124px;
  padding-bottom: clamp(80px, 12vh, 132px);
}

.lcx-hero-copy {
  max-width: 760px;
}

.lcx-hero .lcx-kicker {
  color: #96d9cf;
  margin-bottom: 14px;
}

.lcx-hero h1 {
  margin: 0;
  max-width: 840px;
  font-size: clamp(42px, 7vw, 92px);
  line-height: .98;
}

.lcx-hero p {
  max-width: 690px;
  margin: 20px 0 0;
  color: #e0eaf6;
  font-size: clamp(16px, 2vw, 21px);
  line-height: 1.55;
}

.lcx-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.lcx-hero-signal {
  position: absolute;
  right: 12px;
  bottom: 36px;
  display: grid;
  grid-template-columns: repeat(3, minmax(128px, 1fr));
  width: min(100%, 520px);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(18px);
}

.lcx-hero-signal div {
  min-height: 108px;
  padding: 22px;
  border-left: 1px solid rgba(255, 255, 255, .16);
}

.lcx-hero-signal div:first-child {
  border-left: 0;
}

.lcx-hero-signal strong,
.lcx-hero-signal span {
  display: block;
}

.lcx-hero-signal strong {
  font: 700 32px "Space Grotesk", sans-serif;
}

.lcx-hero-signal span {
  color: #d8e7f7;
  font-size: 13px;
}

.lcx-band {
  position: relative;
  z-index: 2;
  margin-top: -26px;
  padding-bottom: 36px;
}

.lcx-path-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.lcx-path,
.lcx-step-card,
.lcx-record-panel {
  border: 1px solid var(--lcx-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--lcx-shadow);
}

.lcx-path {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  padding: clamp(20px, 3vw, 32px);
}

.lcx-path-icon,
.lcx-complete-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 8px;
  color: var(--lcx-blue);
  background: var(--lcx-sky);
  font-size: 28px;
}

.lcx-path-icon.is-green {
  color: var(--lcx-green);
  background: var(--lcx-mint);
}

.lcx-path h2,
.lcx-process h2,
.lcx-record-panel h2 {
  margin: 8px 0;
  font-size: clamp(24px, 3vw, 34px);
}

.lcx-path p,
.lcx-step-card p,
.lcx-record-panel p {
  margin: 0;
  color: var(--lcx-muted);
  line-height: 1.65;
}

.lcx-process {
  padding: 32px 12px 88px;
}

.lcx-section-head,
.lcx-panel-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.lcx-process .btn-soft,
.lcx-record-body .btn-soft,
.lcx-admin-body .btn-soft {
  border-color: var(--lcx-line);
  background: #fff;
  color: var(--lcx-navy);
}

.lcx-step-card {
  height: 100%;
  padding: 24px;
  box-shadow: none;
}

.lcx-step-card span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--lcx-coral);
  font: 700 28px "Space Grotesk", sans-serif;
}

.lcx-step-card h3 {
  margin: 0 0 9px;
  font-size: 22px;
}

.lcx-footer {
  border-top: 1px solid var(--lcx-line);
  background: #fff;
}

.lcx-footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  color: var(--lcx-muted);
  font-size: 13px;
}

.lcx-modal {
  position: fixed;
  z-index: 20;
  inset: 0;
  display: none;
  place-items: center;
  padding: 20px;
}

.lcx-modal.is-open {
  display: grid;
}

.lcx-modal-open {
  overflow: hidden;
}

.lcx-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(8, 25, 44, .72);
  backdrop-filter: blur(12px);
}

.lcx-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  max-height: min(920px, calc(100svh - 40px));
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 32px 100px rgba(8, 25, 44, .44);
  padding: clamp(22px, 4vw, 38px);
}

.lcx-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--lcx-line);
  border-radius: 8px;
  background: #fff;
  color: var(--lcx-ink);
}

.lcx-modal-head {
  max-width: 610px;
  padding-right: 42px;
}

.lcx-modal-head h2 {
  margin: 8px 0;
  font-size: clamp(27px, 4vw, 40px);
}

.lcx-modal-head p {
  color: var(--lcx-muted);
}

.lcx-start-form {
  display: grid;
  gap: 18px;
  margin-top: 20px;
}

.lcx-mode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  border: 0;
}

.lcx-mode-grid label {
  display: block;
}

.lcx-mode-grid input {
  position: absolute;
  opacity: 0;
}

.lcx-mode-grid span {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 12px;
  align-items: center;
  min-height: 86px;
  border: 1px solid var(--lcx-line);
  border-radius: 8px;
  padding: 16px;
  cursor: pointer;
}

.lcx-mode-grid i {
  grid-row: span 2;
  color: var(--lcx-blue);
  font-size: 24px;
}

.lcx-mode-grid strong,
.lcx-mode-grid small {
  display: block;
}

.lcx-mode-grid small {
  color: var(--lcx-muted);
}

.lcx-mode-grid input:checked + span {
  border-color: var(--lcx-blue);
  background: #eef5ff;
  box-shadow: inset 0 0 0 1px var(--lcx-blue);
}

.form-control,
.form-select {
  min-height: 48px;
  border-radius: 8px;
  border-color: var(--lcx-line);
}

.form-label {
  color: var(--lcx-navy);
  font-size: 13px;
  font-weight: 800;
}

.lcx-form-error {
  display: none;
  border: 1px solid #f1b8bf;
  border-radius: 8px;
  padding: 12px 14px;
  color: #8b1e2e;
  background: #fff0f3;
}

.lcx-form-error.is-visible {
  display: block;
}

.lcx-modal-actions,
.lcx-complete-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.lcx-record-body .lcx-site-header {
  position: static;
  background: var(--lcx-ink);
}

.lcx-record-wrap,
.lcx-complete-wrap {
  padding-top: clamp(34px, 6vw, 72px);
  padding-bottom: 84px;
}

.lcx-record-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
}

.lcx-record-head h1 {
  margin: 7px 0 4px;
  font-size: clamp(32px, 5vw, 60px);
}

.lcx-record-head p {
  margin: 0;
  color: var(--lcx-muted);
}

.lcx-record-status {
  min-width: 194px;
  border: 1px solid var(--lcx-line);
  border-radius: 8px;
  padding: 22px;
  background: #fff;
  text-align: right;
}

.lcx-record-status span,
.lcx-record-status strong {
  display: block;
}

.lcx-record-status span {
  color: var(--lcx-muted);
  font-size: 13px;
  font-weight: 800;
}

.lcx-record-status strong {
  font: 700 34px "Space Grotesk", sans-serif;
}

.lcx-record-status.is-released strong {
  color: var(--lcx-green);
}

.lcx-record-panel {
  padding: clamp(22px, 3vw, 34px);
  box-shadow: none;
}

.lcx-result-summary dl {
  display: grid;
  gap: 0;
  margin: 20px 0;
}

.lcx-result-summary dl div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid var(--lcx-line);
  padding: 12px 0;
}

.lcx-result-summary dt {
  color: var(--lcx-muted);
  font-weight: 700;
}

.lcx-result-summary dd {
  margin: 0;
  font-weight: 900;
  text-align: right;
}

.lcx-table {
  margin: 0;
}

.lcx-table th {
  color: var(--lcx-muted);
  font-size: 12px;
  text-transform: uppercase;
}

.lcx-table td small,
.lcx-admin-table td small,
.lcx-live-table td small {
  display: block;
  color: var(--lcx-muted);
  font-size: 12px;
}

.lcx-feedback-row td {
  border-top: 0;
  padding-top: 0;
}

.lcx-feedback-row strong {
  display: block;
  margin-bottom: 6px;
  color: var(--lcx-navy);
  font-size: 13px;
}

.lcx-feedback-row p {
  margin: 0;
  border: 1px solid var(--lcx-line);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--lcx-muted);
  background: #f6f9fc;
  line-height: 1.6;
}

.lcx-release-note {
  margin-top: 20px;
  border-top: 1px solid var(--lcx-line);
  padding-top: 18px;
}

.lcx-release-note p {
  margin-top: 8px;
}

.lcx-complete-wrap {
  display: grid;
  place-items: center;
  min-height: calc(100svh - 104px);
}

.lcx-complete-panel {
  width: min(100%, 760px);
  text-align: center;
}

.lcx-complete-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  color: var(--lcx-green);
  background: var(--lcx-mint);
}

.lcx-complete-panel h1 {
  margin: 8px 0;
  font-size: clamp(30px, 5vw, 54px);
}

.lcx-complete-actions {
  justify-content: center;
  margin-top: 22px;
}

@media (max-width: 767px) {
  .lcx-site-header {
    padding-top: 14px;
  }

  .lcx-hero {
    min-height: 860px;
  }

  .lcx-hero-inner {
    align-content: start;
    min-height: 860px;
    padding-top: 116px;
  }

  .lcx-hero-signal {
    right: 12px;
    left: 12px;
    bottom: 28px;
    width: auto;
    grid-template-columns: 1fr;
  }

  .lcx-hero-signal div {
    min-height: 0;
    border-top: 1px solid rgba(255, 255, 255, .16);
    border-left: 0;
    padding: 13px 18px;
  }

  .lcx-hero-signal div:first-child {
    border-top: 0;
  }

  .lcx-path-grid,
  .lcx-mode-grid {
    grid-template-columns: 1fr;
  }

  .lcx-path {
    grid-template-columns: 1fr;
  }

  .lcx-section-head,
  .lcx-footer-inner,
  .lcx-record-head {
    align-items: start;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .lcx-footer-inner {
    display: grid;
  }

  .lcx-record-status {
    width: 100%;
    text-align: left;
  }
}

body.lcx-body.lcx-admin-login-body {
  background:
    linear-gradient(122deg, rgba(8, 25, 44, .98), rgba(18, 53, 91, .94) 54%, rgba(15, 118, 110, .78)),
    var(--lcx-ink);
  color: #fff;
}

.lcx-admin-login {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .62fr);
  gap: clamp(22px, 4vw, 52px);
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  min-height: 100svh;
  margin: auto;
  padding: 40px 0;
}

.lcx-login-brand {
  max-width: 650px;
  border-left: 1px solid rgba(255, 255, 255, .2);
  padding-left: clamp(20px, 4vw, 44px);
}

.lcx-login-brand .lcx-brand-mark {
  width: clamp(226px, 24vw, 316px);
  height: clamp(116px, 12vw, 154px);
  margin-bottom: 32px;
  border-color: rgba(255, 255, 255, .84);
  box-shadow:
    0 28px 74px rgba(2, 13, 28, .42),
    inset 0 1px 0 rgba(255, 255, 255, .96);
}

.lcx-login-brand .lcx-brand-mark img {
  max-width: calc(100% - 42px);
  max-height: calc(100% - 32px);
}

.lcx-login-brand .lcx-kicker {
  color: #9dd9d2;
}

.lcx-login-brand h1 {
  margin: 10px 0;
  font-size: clamp(42px, 6vw, 74px);
}

.lcx-login-brand p {
  max-width: 580px;
  color: #d8e7f7;
  font-size: 18px;
  line-height: 1.65;
}

.lcx-login-panel,
.lcx-admin-panel,
.lcx-admin-section,
.lcx-metric-grid article {
  border: 1px solid var(--lcx-line);
  border-radius: 8px;
  background: #fff;
}

.lcx-login-panel {
  border-color: rgba(255, 255, 255, .78);
  padding: clamp(24px, 4vw, 38px);
  color: var(--lcx-ink);
  box-shadow: 0 34px 90px rgba(2, 13, 28, .42);
}

.lcx-login-panel h2 {
  margin: 8px 0 20px;
  font-size: 34px;
}

.lcx-login-back {
  display: inline-flex;
  margin-top: 18px;
  color: var(--lcx-muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
}

.lcx-admin-body {
  background: #edf3f8;
}

.lcx-admin-shell {
  display: grid;
  grid-template-columns: 286px minmax(0, 1fr);
  min-height: 100svh;
}

.lcx-admin-sidebar {
  position: sticky;
  top: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 28px;
  height: 100svh;
  padding: 24px 18px;
  color: #fff;
  background: var(--lcx-ink);
}

.lcx-admin-brand {
  display: grid;
  align-items: start;
}

.lcx-admin-brand .lcx-brand-mark {
  width: 100%;
  height: 112px;
  border-color: rgba(255, 255, 255, .84);
  box-shadow:
    0 24px 58px rgba(2, 13, 28, .4),
    inset 0 1px 0 rgba(255, 255, 255, .96);
}

.lcx-admin-brand .lcx-brand-mark img {
  max-width: calc(100% - 42px);
  max-height: calc(100% - 30px);
}

.lcx-admin-nav {
  display: grid;
  align-content: start;
  gap: 6px;
}

.lcx-admin-nav a {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 11px 13px;
  color: #dce9f6;
  text-decoration: none;
  font-weight: 800;
}

.lcx-admin-nav a:hover,
.lcx-admin-nav a.is-active {
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .12);
  color: #fff;
}

.lcx-admin-user {
  display: grid;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  padding: 16px;
  color: #dce9f6;
}

.lcx-admin-user span,
.lcx-admin-user small {
  font-size: 12px;
}

.lcx-admin-user strong {
  color: #fff;
}

.lcx-admin-user .btn {
  margin-top: 9px;
}

.lcx-admin-main {
  min-width: 0;
  padding: clamp(18px, 3vw, 38px);
}

.lcx-admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.lcx-admin-topbar h1 {
  margin: 6px 0 0;
  font-size: clamp(30px, 4vw, 48px);
}

.lcx-admin-section {
  margin-bottom: 18px;
  padding: clamp(18px, 2.6vw, 30px);
}

.lcx-admin-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.lcx-admin-section h2,
.lcx-admin-panel h2 {
  margin: 7px 0 0;
  font-size: clamp(24px, 2.8vw, 36px);
}

.lcx-admin-panel {
  height: 100%;
  padding: clamp(18px, 2.4vw, 28px);
}

.lcx-admin-panel h3 {
  margin: 0 0 14px;
  font-size: 24px;
}

.lcx-admin-panel p,
.lcx-console-hint {
  color: var(--lcx-muted);
}

.lcx-metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.lcx-metric-grid article {
  min-height: 130px;
  padding: 22px;
}

.lcx-metric-grid span,
.lcx-metric-grid strong {
  display: block;
}

.lcx-metric-grid span {
  color: var(--lcx-muted);
  font-weight: 800;
}

.lcx-metric-grid strong {
  margin-top: 12px;
  font: 700 clamp(34px, 4vw, 54px) "Space Grotesk", sans-serif;
}

.lcx-admin-table,
.lcx-live-table {
  margin: 0;
}

.lcx-admin-table th,
.lcx-live-table th {
  color: var(--lcx-muted);
  white-space: nowrap;
  font-size: 12px;
  text-transform: uppercase;
}

.lcx-admin-table td,
.lcx-live-table td {
  vertical-align: middle;
}

.lcx-inline-pill,
.lcx-status,
.lcx-risk {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 900;
  text-transform: capitalize;
}

.lcx-inline-pill {
  margin: 2px;
  color: var(--lcx-navy);
  background: #e9f2fb;
}

.lcx-status.active,
.lcx-status.released,
.lcx-risk.is-neutral {
  color: #0b645d;
  background: #d7efe8;
}

.lcx-status.draft,
.lcx-status.reviewed,
.lcx-risk.is-warning {
  color: #8d5600;
  background: #fff0cd;
}

.lcx-status.archived,
.lcx-status.queued,
.lcx-risk.is-danger {
  color: #8b1e2e;
  background: #ffe1e6;
}

.lcx-inline-form,
.lcx-release-actions,
.lcx-back-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.lcx-back-row {
  margin-bottom: 16px;
}

.lcx-review-profile h2 {
  margin-bottom: 18px;
}

.lcx-review-profile dl {
  display: grid;
  gap: 0;
  margin: 0 0 18px;
}

.lcx-review-profile dl div {
  display: grid;
  gap: 5px;
  border-top: 1px solid var(--lcx-line);
  padding: 12px 0;
}

.lcx-review-profile dt {
  color: var(--lcx-muted);
  font-size: 12px;
  text-transform: uppercase;
}

.lcx-review-profile dd {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
  font-weight: 900;
}

.lcx-review-score {
  min-width: 128px;
  border: 1px solid var(--lcx-line);
  border-radius: 8px;
  padding: 14px;
  background: #f7fbff;
  text-align: right;
}

.lcx-review-score span,
.lcx-review-score strong,
.lcx-review-score small {
  display: block;
}

.lcx-review-score span,
.lcx-review-score small {
  color: var(--lcx-muted);
  font-size: 12px;
  font-weight: 800;
}

.lcx-review-score strong {
  color: var(--lcx-blue);
  font: 700 34px "Space Grotesk", sans-serif;
}

.lcx-check-row {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  border: 1px solid var(--lcx-line);
  border-radius: 8px;
  padding: 11px 13px;
  background: #fff;
  cursor: pointer;
  font-weight: 800;
}

.lcx-check-row input {
  width: 18px;
  height: 18px;
}

.lcx-field-hint {
  margin-top: 7px;
  color: var(--lcx-muted);
  font-size: 12px;
  line-height: 1.5;
}

.lcx-general-editor .input-group-text {
  border-color: var(--lcx-line);
  background: #eef5fb;
  color: var(--lcx-muted);
  font-weight: 800;
}

.lcx-question-stack {
  display: grid;
  gap: 14px;
}

.lcx-question-card {
  border: 1px solid var(--lcx-line);
  border-radius: 8px;
  padding: clamp(16px, 2vw, 22px);
  background:
    linear-gradient(180deg, #fff, #fbfdff);
}

.lcx-question-card header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.lcx-question-card header span,
.lcx-question-card header small {
  display: block;
}

.lcx-question-card header span {
  font-weight: 900;
  color: var(--lcx-navy);
}

.lcx-question-card header strong {
  color: var(--lcx-blue);
}

.lcx-question-card header small {
  color: var(--lcx-muted);
  font-size: 12px;
}

.lcx-editor-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  border-top: 1px solid var(--lcx-line);
  margin-top: 18px;
  padding-top: 18px;
}

@media (max-width: 991px) {
  .lcx-admin-login {
    grid-template-columns: 1fr;
    width: min(680px, calc(100% - 32px));
  }

  .lcx-admin-shell {
    grid-template-columns: 1fr;
  }

  .lcx-admin-sidebar {
    position: static;
    height: auto;
    grid-template-rows: auto;
  }

  .lcx-admin-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lcx-metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .lcx-admin-topbar,
  .lcx-admin-section-head,
  .lcx-panel-title {
    align-items: start;
    flex-direction: column;
  }

  .lcx-admin-nav,
  .lcx-metric-grid {
    grid-template-columns: 1fr;
  }
}
