:root {
  color-scheme: light;
  --site-blue: #008ec5;
  --site-blue-strong: #006f99;
  --site-blue-soft: #d8eef7;
  --site-ink: #0f172a;
  --site-muted: #5f6b7a;
  --site-line: #d9e2ec;
  --site-surface: #f4f7fb;
  --site-surface-strong: #eef3f8;
  --site-white: #ffffff;
  --site-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
  --site-hover-border: rgba(0, 142, 197, 0.36);
  --site-hover-surface: rgba(0, 142, 197, 0.08);
  --site-hover-card-surface: var(--site-hover-surface);
  --site-hover-shadow: 0 18px 36px rgba(0, 142, 197, 0.11);
  --site-radius: 1.25rem;
}

html {
  scroll-behavior: smooth;
  overflow-y: scroll;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Segoe UI Variable Text", "Segoe UI", "Helvetica Neue", sans-serif;
  color: var(--site-ink);
  background:
    linear-gradient(180deg, rgba(0, 142, 197, 0.08), rgba(0, 142, 197, 0) 18rem),
    linear-gradient(180deg, #ffffff, var(--site-surface));
}

a {
  color: inherit;
}

.site-shell {
  min-height: 100vh;
}

.border-site {
  border-color: var(--site-line) !important;
}

.navbar {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  --bs-navbar-toggler-border-color: rgba(15, 23, 42, 0.12);
  --bs-navbar-toggler-focus-width: 0.2rem;
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2815, 23, 42, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand-mark img {
  width: 2.9rem;
  height: auto;
  object-fit: contain;
}

.brand-name {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-subtitle {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--site-muted);
}

.nav-link-site {
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--site-ink);
}

.nav-link-site:hover,
.nav-link-site:focus {
  color: var(--site-blue-strong);
}

.status-pill,
.state-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.status-pill {
  color: var(--site-blue-strong);
  background: rgba(0, 142, 197, 0.1);
  border: 1px solid rgba(0, 142, 197, 0.16);
}

.status-idle {
  color: var(--site-blue-strong);
  background: rgba(0, 142, 197, 0.1);
  border: 1px solid rgba(0, 142, 197, 0.16);
}

.status-ok {
  color: #13653f;
  background: #def7e8;
  border: 1px solid rgba(19, 101, 63, 0.18);
}

.status-error {
  color: #9f1239;
  background: #ffe3eb;
  border: 1px solid rgba(159, 18, 57, 0.16);
}

.state-idle {
  color: #8a5a00;
  background: #fff5d7;
}

.state-ok {
  color: #13653f;
  background: #def7e8;
}

.state-busy {
  color: var(--site-blue-strong);
  background: rgba(0, 142, 197, 0.1);
}

.state-error {
  color: #9f1239;
  background: #ffe3eb;
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 5vw, 5rem) 0 3rem;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 1.5rem auto auto 52%;
  width: min(34rem, 44vw);
  height: min(34rem, 44vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 142, 197, 0.18), rgba(0, 142, 197, 0));
  pointer-events: none;
  transform: translateX(-10%);
}

.hero-copy,
.login-panel {
  position: relative;
  z-index: 1;
}

.hero-copy {
  padding: 1rem 0;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--site-blue-strong);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-copy h1,
.section-intro h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  max-width: 14ch;
}

.section-intro h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.lead,
.section-intro p {
  margin: 1.5rem 0 0;
  max-width: 44rem;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--site-muted);
}

.lead-hero {
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  color: var(--site-ink);
}

.hero-actions {
  margin-top: 2rem;
}

.btn-site,
.btn-site-danger,
.btn-outline-site,
.btn-link-site {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.65rem;
  font-weight: 600;
  border-radius: 999px;
  padding-inline: 1.35rem;
}

.btn-site {
  color: #ffffff;
  background: linear-gradient(180deg, var(--site-blue), var(--site-blue-strong));
  border: 1px solid var(--site-blue-strong);
  box-shadow: 0 16px 30px rgba(0, 142, 197, 0.16);
}

.btn-site:hover,
.btn-site:focus {
  color: #ffffff;
  background: linear-gradient(180deg, var(--site-blue-strong), #005f85);
}

.btn-site-danger {
  color: #ffffff;
  background: linear-gradient(180deg, #d9485f, #b4233d);
  border: 1px solid #b4233d;
  box-shadow: 0 16px 30px rgba(180, 35, 61, 0.16);
}

.btn-site-danger:hover,
.btn-site-danger:focus {
  color: #ffffff;
  background: linear-gradient(180deg, #c43851, #921d32);
}

.btn-outline-site {
  color: var(--site-ink);
  background: #ffffff;
  border: 1px solid var(--site-line);
}

.btn-outline-site:hover,
.btn-outline-site:focus {
  color: var(--site-blue-strong);
  border-color: rgba(0, 142, 197, 0.28);
  background: rgba(0, 142, 197, 0.04);
}

.btn-link-site {
  color: var(--site-blue-strong);
  text-decoration: none;
}

.btn-link-site:hover,
.btn-link-site:focus {
  color: var(--site-blue);
  text-decoration: underline;
}

.auth-helper {
  padding-top: 0.25rem;
}

.metric-card,
.feature-card,
.detail-card,
.session-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--site-line);
  border-radius: var(--site-radius);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
  backdrop-filter: blur(10px);
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease;
}

.metric-card::before,
.feature-card::before,
.detail-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 0.3rem;
  background: linear-gradient(90deg, rgba(0, 142, 197, 0.95), rgba(107, 199, 235, 0.72));
}

.metric-card::after,
.feature-card::after,
.detail-card::after {
  content: "";
  position: absolute;
  inset: -3.4rem -2.8rem auto auto;
  width: 8.4rem;
  height: 8.4rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 142, 197, 0.12), rgba(0, 142, 197, 0));
  pointer-events: none;
}

.metric-card:hover,
.metric-card:focus-within,
.feature-card:hover,
.feature-card:focus-within,
.detail-card:hover,
.detail-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(0, 142, 197, 0.24);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.09);
}

.metric-card {
  height: 100%;
  padding: 1.25rem 1.25rem 1.15rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 251, 0.92));
}

.metric-card strong {
  display: block;
  font-size: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.landing-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.9rem;
}

.landing-card-glyph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: var(--site-blue-strong);
}

.landing-card-glyph svg {
  width: 100%;
  height: 100%;
  display: block;
}

.metric-glyph,
.section-glyph {
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 0.95rem;
  background: linear-gradient(180deg, rgba(0, 142, 197, 0.14), rgba(0, 142, 197, 0.04));
  border: 1px solid rgba(0, 142, 197, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.metric-glyph {
  margin-top: -0.1rem;
}

.metric-card span {
  display: block;
  margin-top: 0.5rem;
  color: var(--site-muted);
  line-height: 1.55;
  max-width: 18rem;
}

.login-panel {
  min-height: 100%;
}

.panel-glow {
  position: absolute;
  inset: auto -2rem -2rem auto;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 142, 197, 0.16), rgba(0, 142, 197, 0));
  pointer-events: none;
}

.shadow-site {
  box-shadow: var(--site-shadow);
}

.card {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--site-radius) + 0.1rem);
  background: rgba(255, 255, 255, 0.94);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 0.35rem;
  background: linear-gradient(90deg, var(--site-blue), #6bc7eb);
}

.form-label {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--site-ink);
}

.form-control {
  border-color: var(--site-line);
  border-radius: 0.95rem;
  height: 2.65rem;
  min-height: 2.65rem;
  padding: 0.45rem 0.9rem;
  line-height: 1.3;
}

.form-select {
  height: 2.65rem;
  min-height: 2.65rem;
  padding: 0.45rem 2.5rem 0.45rem 0.9rem;
  border-color: var(--site-line);
  border-radius: 0.95rem;
  line-height: 1.3;
}

.form-control-lg,
.form-select-lg {
  min-height: 2.9rem;
  padding-top: 0.78rem;
  padding-bottom: 0.78rem;
  font-size: 1rem;
}

.form-control:focus {
  border-color: rgba(0, 142, 197, 0.48);
  box-shadow: 0 0 0 0.25rem rgba(0, 142, 197, 0.14);
}

.form-hint {
  color: var(--site-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.session-card {
  padding: 1rem 1.1rem;
  background: var(--site-surface);
}

.session-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.72rem 0;
  border-bottom: 1px solid rgba(95, 107, 122, 0.12);
}

.session-row:last-of-type {
  border-bottom: 0;
}

.session-row span {
  color: var(--site-muted);
}

.session-row strong {
  text-align: right;
  font-weight: 600;
}

.content-section {
  padding: 1.5rem 0 3rem;
}

.section-head {
  max-width: 44rem;
  margin-bottom: 2rem;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.section-head p:last-child {
  margin: 1rem 0 0;
  color: var(--site-muted);
  line-height: 1.7;
}

.surface-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(238, 243, 248, 0.92));
}

.feature-card,
.detail-card {
  padding: 1.5rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 251, 0.92));
}

.feature-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(0, 142, 197, 0.14), rgba(0, 142, 197, 0.06));
  border: 1px solid rgba(0, 142, 197, 0.12);
  color: var(--site-blue-strong);
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.feature-card h3,
.detail-card h3 {
  margin: 1.1rem 0 0.8rem;
  font-size: 1.18rem;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.feature-card .landing-card-head {
  align-items: center;
}

.feature-card .section-glyph,
.detail-card .section-glyph {
  width: 3rem;
  height: 3rem;
}

.feature-card p,
.detail-card p {
  margin: 0;
  color: var(--site-muted);
  line-height: 1.7;
}

.detail-card {
  min-height: 100%;
}

.site-footer {
  background: rgba(255, 255, 255, 0.9);
}

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  color: var(--site-muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
}

.footer-link {
  color: var(--site-blue);
  font-weight: 700;
  text-decoration: none;
}

.footer-link:hover,
.footer-link:focus-visible {
  color: var(--site-blue-dark);
  text-decoration: underline;
}

.alert {
  border-radius: 1rem;
  border-width: 1px;
}

.portal-body {
  background:
    linear-gradient(180deg, rgba(0, 142, 197, 0.06), rgba(0, 142, 197, 0) 15rem),
    linear-gradient(180deg, #ffffff, var(--site-surface));
}

.auth-page-main {
  padding: 2.75rem 0 3.25rem;
}

.auth-page-section {
  position: relative;
}

.auth-copy {
  padding: 1rem 0;
}

.auth-copy h1 {
  margin: 0;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  max-width: 12ch;
}

.auth-copy-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.75rem;
}

.auth-copy-list div {
  padding: 1rem 1.05rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--site-line);
}

.auth-copy-list strong,
.auth-copy-list span {
  display: block;
}

.auth-copy-list strong {
  margin-bottom: 0.3rem;
  font-size: 1rem;
}

.auth-copy-list span {
  color: var(--site-muted);
  line-height: 1.6;
}

.auth-provider-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.auth-provider-button {
  min-height: 2.95rem;
  padding: 0.46rem 0.9rem;
}

.auth-provider-button-rich {
  display: grid;
  grid-template-columns: 1.18rem minmax(0, max-content);
  align-items: center;
  justify-content: center;
  column-gap: 0.55rem;
  text-align: left;
}

.auth-provider-grid-landing {
  grid-template-columns: 1fr;
}

.auth-provider-button-rich > span:last-child {
  display: block;
  line-height: 1.25;
  text-align: left;
  white-space: nowrap;
}

.auth-provider-icon {
  display: inline-flex;
  width: 1.18rem;
  height: 1.18rem;
  flex: 0 0 auto;
}

.auth-provider-icon svg {
  width: 100%;
  height: 100%;
}

.auth-divider {
  position: relative;
  text-align: center;
}

.auth-divider::before {
  content: "";
  position: absolute;
  inset: 50% 0 auto 0;
  border-top: 1px solid var(--site-line);
}

.auth-divider span {
  position: relative;
  display: inline-block;
  padding: 0 0.9rem;
  background: rgba(255, 255, 255, 0.94);
  color: var(--site-muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.auth-divider-tight span {
  background: rgba(255, 255, 255, 0.94);
}

.auth-account-type {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.auth-account-option {
  display: block;
  margin: 0;
}

.auth-account-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.auth-account-option span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  border: 1px solid var(--site-line);
  background: rgba(255, 255, 255, 0.88);
  font-weight: 700;
  transition: border-color 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}

.auth-account-option input:checked + span {
  border-color: rgba(0, 142, 197, 0.28);
  background: rgba(0, 142, 197, 0.1);
  color: var(--site-blue-strong);
}

.portal-app-shell {
  display: grid;
  grid-template-columns: minmax(17rem, 18.75rem) minmax(0, 1fr);
  min-height: 100vh;
}

.portal-sidebar {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100vh;
  overflow-y: auto;
  padding: 1.2rem 1rem;
  background: linear-gradient(180deg, rgba(244, 249, 252, 0.98), rgba(235, 243, 248, 0.98));
  border-right: 1px solid var(--site-line);
}

.portal-sidebar-top {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.portal-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.45rem 0.55rem;
  text-decoration: none;
  border-radius: 1rem;
}

.portal-brand:hover,
.portal-brand:focus {
  background: rgba(0, 142, 197, 0.05);
}

.portal-sidebar-bottom {
  padding-top: 1rem;
}

.portal-profile-trigger {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.85rem;
  align-items: center;
  width: 100%;
  padding: 0.9rem;
  border-radius: 1rem;
  border: 1px solid var(--site-line);
  background: rgba(255, 255, 255, 0.95);
  text-align: left;
  transition: border-color 0.15s ease, background-color 0.15s ease, transform 0.15s ease;
}

.portal-profile-trigger:hover,
.portal-profile-trigger:focus {
  border-color: rgba(0, 142, 197, 0.28);
  background: #ffffff;
  transform: translateY(-1px);
}

.portal-profile-trigger::after {
  content: "\22EE";
  justify-self: end;
  color: var(--site-muted);
  font-size: 1.05rem;
  line-height: 1;
}

.portal-account-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--site-blue), var(--site-blue-strong));
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.portal-account-meta {
  min-width: 0;
}

.portal-account-meta strong,
.portal-account-meta span {
  display: block;
}

.portal-account-meta strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.95rem;
}

.portal-account-meta span {
  margin-top: 0.18rem;
  color: var(--site-muted);
  font-size: 0.83rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.portal-workspace {
  min-width: 0;
  padding: 1.4rem;
}

.portal-workspace-inner {
  min-height: calc(100vh - 2.8rem);
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(217, 226, 236, 0.9);
  border-radius: calc(var(--site-radius) + 0.2rem);
  box-shadow: var(--site-shadow);
}

.dashboard-sidebar-head h1,
.dashboard-topbar h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.dashboard-sidebar-head p:last-child,
.dashboard-topbar p:last-child {
  margin: 0.85rem 0 0;
  color: var(--site-muted);
  line-height: 1.7;
}

.dashboard-nav {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.dashboard-nav-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.dashboard-nav-group-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.3rem;
  align-items: center;
}

.dashboard-nav-link {
  display: flex;
  align-items: center;
  min-height: 1.7rem;
  padding: 0.22rem 0.56rem;
  border-radius: 0.68rem;
  color: var(--site-ink);
  font-weight: 600;
  font-size: 0.93rem;
  line-height: 1.15;
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.dashboard-nav-link:hover,
.dashboard-nav-link:focus {
  color: var(--site-blue-strong);
  background: rgba(0, 142, 197, 0.08);
  transform: translateX(2px);
}

.dashboard-nav-link.is-active {
  color: var(--site-blue-strong);
  background: rgba(0, 142, 197, 0.06);
  border: 1px solid rgba(0, 142, 197, 0.14);
  box-shadow: none;
}

.dashboard-nav-toggle {
  width: 1.7rem;
  height: 1.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(217, 226, 236, 0.9);
  border-radius: 0.72rem;
  background: rgba(255, 255, 255, 0.92);
  color: var(--site-muted);
  transition: border-color 0.15s ease, color 0.15s ease, background-color 0.15s ease;
}

.dashboard-nav-toggle:hover,
.dashboard-nav-toggle:focus {
  color: var(--site-blue-strong);
  border-color: rgba(0, 142, 197, 0.2);
  background: rgba(0, 142, 197, 0.05);
}

.dashboard-nav-toggle svg {
  width: 0.95rem;
  height: 0.95rem;
  display: block;
  transition: transform 0.15s ease;
}

.dashboard-nav-group.is-open .dashboard-nav-toggle svg {
  transform: rotate(180deg);
}

.dashboard-nav-children {
  display: none;
  flex-direction: column;
  gap: 0.3rem;
  margin-left: 0.85rem;
  padding-left: 0.8rem;
  border-left: 1px solid rgba(217, 226, 236, 0.9);
}

.dashboard-nav-group.is-open .dashboard-nav-children {
  display: flex;
}

.dashboard-nav-link.is-child {
  min-height: 1.7rem;
  padding: 0.2rem 0.46rem;
  border-radius: 0.58rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--site-muted);
}

.dashboard-nav-link.is-child:hover,
.dashboard-nav-link.is-child:focus {
  color: var(--site-blue-strong);
  background: rgba(0, 142, 197, 0.05);
}

.dashboard-nav-link.is-child.is-active {
  color: var(--site-blue-strong);
  background: rgba(0, 142, 197, 0.08);
  border: 1px solid rgba(0, 142, 197, 0.14);
}

.content-editor-toolbar {
  margin: 1.25rem 0 1rem;
  padding: 1rem 1.05rem;
  border: 1px solid var(--site-line);
  border-radius: 1rem;
  background: var(--site-surface);
}

.content-toolbar-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: end;
}

.content-locale-select {
  min-width: min(20rem, 100%);
}

.content-locale-form {
  min-width: 0;
}

.content-search-wrap {
  min-width: 0;
}

.content-search-input {
  height: 2.65rem;
  padding-right: 2.8rem;
}

.content-cache-form {
  display: flex;
  justify-content: flex-end;
}

.content-search-empty {
  margin-top: 1rem;
}

.content-editor-empty {
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px dashed rgba(95, 107, 122, 0.35);
  color: var(--site-muted);
  line-height: 1.7;
}

.dashboard-inline-note {
  margin: 1.25rem 0 0;
  padding: 1rem 1.05rem;
  border-radius: 1rem;
  background: var(--site-surface);
  color: var(--site-muted);
  line-height: 1.7;
}

.content-editor-group {
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid var(--site-line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.9);
}

.content-editor-group-head h3 {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.content-editor-card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 1rem;
  border: 1px solid rgba(217, 226, 236, 0.9);
  border-radius: 1rem;
  background: var(--site-white);
}

.content-editor-card + .content-editor-card {
  margin-top: 0.85rem;
}

.content-editor-card-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
}

.content-editor-card-head strong,
.content-editor-card-head span {
  display: block;
}

.content-editor-card-head span {
  margin-top: 0.2rem;
  color: var(--site-muted);
  font-size: 0.84rem;
}

.content-editor-format {
  min-width: 10rem;
}

.content-editor-textarea {
  min-height: 10rem;
  font-family: Consolas, "Courier New", monospace;
  overflow-y: hidden;
  resize: none;
}

.content-editor-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.content-ai-modal .modal-dialog {
  max-width: 64rem;
}

.content-ai-modal .modal-body {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-height: min(70vh, 48rem);
}

.content-ai-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
}

.content-ai-thread {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-height: 20rem;
  overflow: auto;
  padding-right: 0.25rem;
}

.content-ai-message {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 0.95rem 1rem;
  border: 1px solid var(--site-line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.94);
}

.content-ai-message.is-source {
  background: rgba(244, 247, 251, 0.92);
}

.content-ai-message.is-result {
  background: rgba(216, 238, 247, 0.42);
  border-color: rgba(0, 142, 197, 0.18);
}

.content-ai-message-head {
  color: var(--site-muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.content-ai-memo {
  min-height: 7.5rem;
  resize: vertical;
  border-radius: 0.95rem;
  background: #ffffff;
  font-family: Consolas, "Courier New", monospace;
  line-height: 1.55;
}

.content-ai-memo[readonly] {
  background: #ffffff;
}

.content-ai-composer {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: stretch;
}

.content-ai-composer-field {
  min-width: 0;
}

.content-ai-composer-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: end;
}

.content-ai-composer-input {
  width: 100%;
  min-height: 3.25rem;
  max-height: 9rem;
  resize: vertical;
}

.content-ai-generate {
  white-space: nowrap;
  min-height: 3.25rem;
}

.content-ai-composer-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.content-ai-status {
  min-height: 1.4rem;
  color: var(--site-muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.content-ai-status.is-error {
  color: #b42318;
}

.content-ai-status.is-success {
  color: #067647;
}

.content-ai-status.is-loading {
  color: var(--site-blue-strong);
}

.portal-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 0.9rem;
}

.portal-info-card {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1rem;
  border: 1px solid var(--site-line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.92);
}

.portal-info-card span {
  color: var(--site-muted);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.portal-info-card strong {
  font-size: 0.98rem;
}

.portal-language-table-wrap {
  border: 1px solid var(--site-line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.94);
  overflow: auto;
}

.portal-language-table {
  min-width: 58rem;
  margin: 0;
}

.portal-language-table thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: rgba(246, 250, 252, 0.98);
  color: var(--site-muted);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--site-line);
}

.portal-language-table td,
.portal-language-table th {
  white-space: nowrap;
  vertical-align: middle;
}

.portal-language-name {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.portal-language-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
}

.portal-language-switch input {
  margin-top: 0;
}

.portal-language-meta {
  display: inline-flex;
  flex-direction: column;
  gap: 0.1rem;
}

.portal-language-meta strong {
  font-size: 0.95rem;
}

.product-card-grid,
.download-card-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-card {
  width: 100%;
  border: 1px solid var(--site-line);
  border-radius: 1.15rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 36px rgba(15, 23, 42, 0.04);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease, background-color 0.15s ease;
  cursor: pointer;
}

.product-card-link {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  height: 100%;
  padding: 1rem;
  color: inherit;
  text-decoration: none;
  border-radius: inherit;
  transition: background-color 0.15s ease;
  cursor: pointer;
}

.product-card:hover,
.product-card:focus-within {
  border-color: var(--site-hover-border);
  background: var(--site-hover-card-surface);
  box-shadow: var(--site-hover-shadow);
  transform: translateY(-2px);
}

.product-card-link:hover,
.product-card-link:focus-visible {
  color: inherit;
  background: var(--site-hover-surface);
}

.product-card-link:focus-visible {
  outline: none;
}

.product-card-icon,
.product-detail-icon {
  flex: 0 0 auto;
  width: 4.25rem;
  height: 4.25rem;
  border-radius: 1rem;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(0, 142, 197, 0.1), rgba(0, 142, 197, 0.02));
}

.product-card-icon svg,
.product-detail-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.product-card-icon img,
.product-detail-icon img,
.product-image-preview img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.product-card-body {
  min-width: 0;
}

.product-card-meta,
.download-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.product-card-meta-secondary {
  margin-top: 0.55rem;
}

.product-card-meta-secondary .portal-table-sub {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.product-card h3,
.product-detail-summary h3 {
  margin: 0.75rem 0 0;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.product-card-short {
  margin: 0.55rem 0 0;
  font-weight: 600;
  color: var(--site-ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-description {
  margin: 0.45rem 0 0;
  color: var(--site-muted);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-footer,
.download-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.95rem;
}

.product-detail-summary {
  padding: 1rem 1.05rem;
  border: 1px solid var(--site-line);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.92);
}

.portal-product-feature-section {
  margin-top: 1.5rem;
}

.portal-product-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
  gap: 1rem;
}

.portal-product-feature-card {
  padding: 1rem 1.05rem;
  border: 1px solid var(--site-line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.04);
}

.portal-product-feature-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.portal-product-feature-card-head strong {
  display: block;
  font-size: 1rem;
  line-height: 1.45;
}

.portal-product-feature-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.8rem;
  color: var(--site-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.portal-product-feature-card-description {
  margin: 0.8rem 0 0;
  color: var(--site-ink);
  line-height: 1.7;
}

.portal-product-feature-card-description-empty {
  color: var(--site-muted);
}

.product-detail-hero {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
}

.product-detail-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1rem;
}

.product-detail-meta div {
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  background: var(--site-surface);
  border: 1px solid rgba(217, 226, 236, 0.9);
}

.product-detail-meta span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--site-muted);
  font-size: 0.85rem;
  font-weight: 600;
}

.download-card {
  padding: 1rem 1.05rem;
  border: 1px solid var(--site-line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.95);
}

.download-card.download-card-clickable {
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease, background-color 0.15s ease;
}

.download-card.download-card-clickable:hover,
.download-card.download-card-clickable:focus-visible {
  border-color: var(--site-hover-border);
  background: var(--site-hover-card-surface);
  box-shadow: var(--site-hover-shadow);
  transform: translateY(-2px);
  outline: none;
}

.download-card-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
}

.download-card-head strong,
.download-card-head span {
  display: block;
}

.download-card-head strong {
  font-size: 1rem;
}

.download-card-head span {
  margin-top: 0.25rem;
  color: var(--site-muted);
}

.download-card p {
  margin: 0.8rem 0 0;
  color: var(--site-muted);
  line-height: 1.65;
}

.portal-more-button {
  min-width: 3rem;
  padding-inline: 0.9rem;
  font-size: 1rem;
  line-height: 1;
}

.portal-more-button svg {
  width: 1rem;
  height: 1rem;
  display: block;
}

.portal-list-toolbar-wrap {
  margin-bottom: 1rem;
  padding: 1rem 1.05rem;
  border: 1px solid var(--site-line);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.05);
}

.portal-list-toolbar {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.portal-list-toolbar-head {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
  justify-content: space-between;
}

.portal-list-toolbar-search {
  display: block;
  flex: 1 1 24rem;
  min-width: 0;
}

.portal-search-field {
  position: relative;
}

.portal-search-field .form-control {
  height: 2.65rem;
  padding-right: 2.8rem;
}

.portal-search-submit {
  position: absolute;
  inset: 50% 0.7rem auto auto;
  transform: translateY(-50%);
  width: 1.5rem;
  height: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--site-muted);
}

.portal-search-submit:hover,
.portal-search-submit:focus {
  color: var(--site-blue-strong);
}

.portal-search-submit svg {
  width: 1.05rem;
  height: 1.05rem;
  display: block;
}

.portal-list-toolbar-search .form-control {
  min-width: 0;
}

.portal-list-toolbar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: flex-end;
}

.portal-list-toolbar-meta {
  color: var(--site-muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.portal-list-filter-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  padding-top: 0.25rem;
}

.portal-filter-field {
  min-width: 0;
}

.portal-list-toolbar-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
  margin-top: 0.9rem;
}

.portal-entity-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.portal-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
  gap: 1rem;
}

.portal-overview-card {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  min-height: 100%;
  padding: 1rem 1.05rem;
  border: 1px solid var(--site-line);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.05);
  color: inherit;
  text-decoration: none;
  transition: transform 0.15s ease, border-color 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
  cursor: pointer;
}

.portal-overview-card:hover,
.portal-overview-card:focus,
.portal-overview-card:focus-visible {
  color: inherit;
  transform: translateY(-2px);
  border-color: var(--site-hover-border);
  background: var(--site-hover-surface);
  box-shadow: var(--site-hover-shadow);
}

.portal-overview-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.portal-overview-card-meta strong {
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.portal-overview-card h3 {
  margin: 0;
  font-size: 1.18rem;
  letter-spacing: -0.02em;
  min-height: 3.05rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.portal-overview-card p {
  margin: 0;
  color: var(--site-muted);
  line-height: 1.65;
  min-height: 3.3rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.portal-entity-card {
  width: 100%;
  border: 1px solid var(--site-line);
  border-radius: 1.15rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.05);
  transition: transform 0.15s ease, border-color 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
}

.portal-entity-link {
  display: flex;
  gap: 1rem;
  height: 100%;
  padding: 1rem 1.05rem;
  color: inherit;
  text-decoration: none;
  border-radius: inherit;
  transition: background-color 0.15s ease;
  cursor: pointer;
}

.portal-entity-card:hover,
.portal-entity-card:focus-within {
  border-color: var(--site-hover-border);
  background: var(--site-hover-card-surface);
  box-shadow: var(--site-hover-shadow);
  transform: translateY(-2px);
}

.portal-entity-link:hover,
.portal-entity-link:focus,
.portal-entity-link:focus-visible {
  color: inherit;
  background: var(--site-hover-surface);
}

.portal-entity-link:focus-visible {
  outline: none;
}

.portal-entity-icon {
  flex: 0 0 auto;
  width: 4rem;
  height: 4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(0, 142, 197, 0.1), rgba(0, 142, 197, 0.03));
  color: var(--site-blue-strong);
  font-size: 1.2rem;
  font-weight: 700;
}

.portal-entity-icon svg,
.portal-entity-icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.portal-entity-body {
  min-width: 0;
  flex: 1 1 auto;
}

.portal-entity-title {
  margin: 0.7rem 0 0;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.portal-entity-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.85rem;
  color: var(--site-muted);
  font-size: 0.92rem;
}

.portal-account-dialog-nav,
.product-detail-tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.portal-account-tab,
.product-detail-tab {
  padding: 0.7rem 0.95rem;
  border: 1px solid var(--site-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  font-weight: 600;
  color: var(--site-ink);
}

.portal-account-tab.is-active,
.product-detail-tab.is-active {
  color: var(--site-blue-strong);
  border-color: rgba(0, 142, 197, 0.22);
  background: rgba(0, 142, 197, 0.08);
}

.portal-account-panel,
.product-detail-panel {
  display: none;
}

.portal-account-panel.is-active,
.product-detail-panel.is-active {
  display: block;
}

.product-detail-tabs {
  margin-top: 1.5rem;
}

.portal-product-feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.portal-form-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

[data-customer-editor][data-customer-account-type="private"] [data-customer-business-only],
[data-customer-editor].is-private [data-customer-business-only] {
  display: none !important;
}

.customer-address-tabs {
  margin-bottom: 0.9rem;
}

.customer-address-panel {
  display: none;
}

.customer-address-panel.is-active {
  display: block;
}

.portal-textarea {
  min-height: 9rem;
  overflow-y: hidden;
  resize: none;
}

.portal-data-table {
  --bs-table-bg: transparent;
  --bs-table-striped-bg: rgba(244, 247, 251, 0.72);
  --bs-table-hover-bg: var(--site-hover-surface);
  margin-bottom: 0;
}

.portal-data-table thead th {
  border-bottom-width: 1px;
  color: var(--site-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.portal-data-table tbody td {
  vertical-align: top;
  border-color: rgba(217, 226, 236, 0.9);
  padding-top: 0.95rem;
  padding-bottom: 0.95rem;
}

.portal-data-table tbody tr:hover > * {
  background-color: var(--site-hover-surface);
}

.portal-table-sub {
  margin-top: 0.35rem;
  color: var(--site-muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.portal-code {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.55rem;
  border-radius: 0.65rem;
  background: rgba(15, 23, 42, 0.06);
  color: var(--site-ink);
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.84rem;
  line-height: 1.4;
  word-break: break-all;
}

.dashboard-topbar {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 1.35rem;
}

.portal-top-meta {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  max-width: 20rem;
  align-items: flex-end;
}

.portal-top-action {
  min-width: 9rem;
}

.portal-top-caption {
  color: var(--site-muted);
  font-size: 0.93rem;
  line-height: 1.6;
  text-align: right;
}

.portal-account-modal .modal-content {
  border: 1px solid var(--site-line);
  border-radius: calc(var(--site-radius) + 0.1rem);
  box-shadow: var(--site-shadow);
}

.portal-account-modal .modal-header,
.portal-account-modal .modal-footer {
  border-color: var(--site-line);
}

.portal-account-modal .modal-body {
  padding-top: 0;
}

.portal-image-dialog .modal-content {
  border: 1px solid var(--site-line);
  border-radius: calc(var(--site-radius) + 0.1rem);
  box-shadow: var(--site-shadow);
}

.portal-image-dialog .modal-header,
.portal-image-dialog .modal-footer {
  border-color: var(--site-line);
}

.product-image-preview {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border-radius: 1.2rem;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(0, 142, 197, 0.08), rgba(0, 142, 197, 0.02));
  border: 1px solid rgba(0, 142, 197, 0.12);
}

.product-image-preview.is-default svg {
  width: 100%;
  height: 100%;
}

.oauth-provider-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.oauth-provider-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  border: 1px solid var(--site-line);
  background: rgba(255, 255, 255, 0.9);
  color: var(--site-ink);
  font-weight: 600;
  text-decoration: none;
}

.oauth-provider-tab:hover,
.oauth-provider-tab:focus {
  color: var(--site-blue-strong);
  background: rgba(0, 142, 197, 0.05);
}

.oauth-provider-tab.is-active {
  color: var(--site-blue-strong);
  border-color: rgba(0, 142, 197, 0.18);
  background: rgba(0, 142, 197, 0.08);
}

.oauth-provider-tab-content {
  padding: 1.1rem;
  border: 1px solid var(--site-line);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.92);
}

.communication-template-detail-shell {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.communication-template-tabs-shell {
  padding: 1.05rem 1.1rem;
  border: 1px solid rgba(0, 142, 197, 0.12);
  border-radius: 1.2rem;
  background:
    radial-gradient(circle at top left, rgba(0, 142, 197, 0.1), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 251, 0.95));
}

.communication-template-tabs {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.85rem;
  margin-bottom: 0;
}

.communication-template-tab {
  display: flex;
  gap: 0.35rem;
  flex-direction: column;
  align-items: flex-start;
  min-height: 0;
  padding: 1rem 1.1rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(0, 142, 197, 0.14);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 24px rgba(12, 29, 51, 0.05);
}

.communication-template-tab-label {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.communication-template-tab-state {
  font-size: 0.76rem;
  color: var(--site-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.communication-template-tab.is-active {
  border-color: rgba(0, 142, 197, 0.22);
  background: linear-gradient(180deg, rgba(0, 142, 197, 0.13), rgba(255, 255, 255, 0.98));
  box-shadow: 0 16px 28px rgba(0, 142, 197, 0.12);
}

.communication-template-tab.is-active .communication-template-tab-state {
  color: var(--site-blue-strong);
}

.communication-template-card-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.9rem;
}

.communication-template-form {
  gap: 1.35rem;
}

.communication-template-switches {
  display: grid;
  gap: 0.85rem;
  padding: 1rem 1.05rem;
  border: 1px solid var(--site-line);
  border-radius: 1rem;
  background: rgba(244, 247, 251, 0.68);
}

.communication-template-switches .form-check {
  margin: 0;
}

.communication-template-switches .form-check-label {
  margin-left: 0.35rem;
  color: var(--site-ink-soft);
}

.communication-template-variables {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.communication-template-variable {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.18rem;
  min-height: 3.2rem;
  padding: 0.8rem 0.95rem;
  border: 1px solid rgba(0, 142, 197, 0.18);
  border-radius: 1rem;
  background: rgba(0, 142, 197, 0.05);
  color: var(--site-ink);
  text-align: left;
}

.communication-template-variable:hover,
.communication-template-variable:focus {
  border-color: rgba(0, 142, 197, 0.34);
  background: rgba(0, 142, 197, 0.1);
  color: var(--site-blue-strong);
}

.communication-template-variable strong {
  font-family: "Consolas", "Courier New", monospace;
  font-size: 0.95rem;
  font-weight: 700;
}

.communication-template-variable span {
  font-size: 0.82rem;
  color: var(--site-muted);
}

.communication-template-variable-empty {
  width: 100%;
}

.communication-template-editor {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.communication-template-editor-shell {
  border: 1px solid rgba(0, 142, 197, 0.14);
  border-radius: 1.2rem;
  background: linear-gradient(180deg, rgba(251, 253, 255, 0.98), rgba(244, 247, 251, 0.95));
  box-shadow: 0 16px 28px rgba(12, 29, 51, 0.05);
  overflow: hidden;
}

.communication-template-editor-toolbar-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid rgba(0, 142, 197, 0.12);
  background: linear-gradient(180deg, rgba(244, 247, 251, 0.98), rgba(239, 245, 249, 0.94));
}

.communication-template-editor-toolbar-meta {
  display: flex;
  flex: 1 1 18rem;
  flex-direction: column;
  gap: 0.18rem;
}

.communication-template-editor-toolbar-meta strong {
  font-size: 0.96rem;
  letter-spacing: -0.02em;
}

.communication-template-editor-toolbar-meta span {
  color: var(--site-muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.communication-template-editor-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(0, 142, 197, 0.12);
  background: rgba(255, 255, 255, 0.92);
}

.communication-template-tool-group {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0.55rem;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(0, 142, 197, 0.12);
  border-radius: 1rem;
  background: rgba(244, 247, 251, 0.76);
}

.communication-template-tool-group:last-child {
  padding-right: 0.9rem;
}

.communication-template-tool-group-label {
  display: flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0 0.2rem 0 0.1rem;
  color: var(--site-muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.communication-template-tool {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
  min-height: 2.75rem;
  padding: 0 0.9rem;
  border: 1px solid rgba(0, 142, 197, 0.14);
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.98);
  color: var(--site-ink);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.communication-template-tool:hover,
.communication-template-tool:focus {
  border-color: rgba(0, 142, 197, 0.34);
  background: rgba(0, 142, 197, 0.08);
  color: var(--site-blue-strong);
  transform: translateY(-1px);
}

.communication-template-tool:disabled {
  opacity: 0.42;
  cursor: not-allowed;
  transform: none;
}

.communication-template-tool-underline {
  text-decoration: underline;
}

.communication-template-tool-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.1rem;
  min-height: 1.7rem;
  padding: 0 0.35rem;
  border-radius: 0.7rem;
  background: rgba(0, 142, 197, 0.08);
  color: var(--site-blue-strong);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.communication-template-tool-label {
  font-size: 0.82rem;
  letter-spacing: -0.01em;
}

.communication-template-editor-view-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.2rem;
  border: 1px solid rgba(0, 142, 197, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 18px rgba(12, 29, 51, 0.05);
}

.communication-template-view-toggle {
  min-height: 2.5rem;
  padding: 0 1rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--site-muted);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.communication-template-view-toggle.is-active {
  background: linear-gradient(180deg, rgba(0, 142, 197, 0.18), rgba(0, 142, 197, 0.1));
  color: var(--site-blue-strong);
}

.communication-template-editor[data-editor-mode="html"] .communication-template-editor-toolbar {
  opacity: 0.62;
}

.communication-template-editor-canvas {
  min-height: 18rem;
  padding: 1.15rem 1.15rem 1.25rem;
  border: 0;
  background: rgba(255, 255, 255, 0.98);
  color: var(--site-ink);
  line-height: 1.7;
  outline: none;
}

.communication-template-editor-canvas[data-empty="1"]::before {
  content: attr(data-placeholder);
  color: var(--site-muted);
}

.communication-template-editor-canvas:focus {
  box-shadow: inset 0 0 0 0.2rem rgba(0, 142, 197, 0.12);
}

.communication-template-editor-canvas p,
.communication-template-editor-canvas ul,
.communication-template-editor-canvas ol,
.communication-template-editor-canvas blockquote,
.communication-template-editor-canvas h1,
.communication-template-editor-canvas h2,
.communication-template-editor-canvas h3,
.communication-template-editor-canvas h4 {
  margin-bottom: 0.85rem;
}

.communication-template-editor-canvas a {
  color: var(--site-blue-strong);
}

.communication-template-editor-source {
  min-height: 18rem;
  padding: 1rem 1.1rem;
  border: 0;
  border-top: 1px solid var(--site-line);
  border-radius: 0;
  background: #112338;
  color: #edf5fb;
  font-family: "Consolas", "Courier New", monospace;
  font-size: 0.9rem;
  line-height: 1.6;
  overflow-y: hidden;
  resize: none;
}

.communication-template-editor-source:focus {
  background: #132944;
  color: #ffffff;
  box-shadow: none;
}

.communication-template-test-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.05rem 1.1rem;
  border: 1px solid rgba(0, 142, 197, 0.14);
  border-radius: 1.2rem;
  background:
    radial-gradient(circle at top right, rgba(0, 142, 197, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(251, 253, 255, 0.98), rgba(244, 247, 251, 0.94));
}

.communication-template-test-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.9rem;
}

.communication-template-test-head strong {
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.communication-template-test-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1rem;
}

.communication-template-test-preview {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  min-height: 100%;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(0, 142, 197, 0.14);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.communication-template-test-preview span {
  color: var(--site-muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.communication-template-test-preview strong {
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.communication-template-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem;
}

.communication-template-textarea {
  min-height: 10rem;
  overflow-y: hidden;
  resize: none;
}

.oauth-provider-form {
  gap: 1.1rem;
}

.portal-modal-links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.portal-modal-link {
  display: block;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  border: 1px solid var(--site-line);
  background: var(--site-white);
  color: var(--site-ink);
  font-size: 0.98rem;
  font-weight: 600;
  text-decoration: none;
}

.portal-modal-link:hover,
.portal-modal-link:focus {
  color: var(--site-blue-strong);
  background: rgba(0, 142, 197, 0.06);
  border-color: rgba(0, 142, 197, 0.24);
}

.dashboard-stat-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 0.95rem 1.05rem;
  background: var(--site-white);
  border: 1px solid var(--site-line);
  border-radius: var(--site-radius);
}

.dashboard-stat-link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.dashboard-stat-link:hover,
.dashboard-stat-link:focus {
  color: inherit;
  text-decoration: none;
}

.dashboard-stat-link .dashboard-stat-card {
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.dashboard-stat-link:hover .dashboard-stat-card,
.dashboard-stat-link:focus .dashboard-stat-card,
.dashboard-stat-link:focus-visible .dashboard-stat-card {
  border-color: var(--site-hover-border);
  background: var(--site-hover-card-surface);
  box-shadow: var(--site-hover-shadow);
  transform: translateY(-2px);
}

.dashboard-stat-card span {
  display: block;
  color: var(--site-muted);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.dashboard-stat-card strong {
  display: block;
  margin-top: 0.45rem;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}

.dashboard-stat-card p {
  margin: 0.45rem 0 0;
  color: var(--site-muted);
  line-height: 1.45;
  min-height: 2.3rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dashboard-sections {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dashboard-section-toolbar {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin-bottom: 0.55rem;
}

.dashboard-section-toolbar-start,
.dashboard-section-toolbar-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.dashboard-section-toolbar-start {
  flex: 0 0 auto;
}

.dashboard-section-toolbar-actions {
  margin-left: auto;
  justify-content: flex-end;
}

.dashboard-section-toolbar-actions > a.btn.btn-site[href$="/edit"] {
  order: 20;
}

.dashboard-section-toolbar-actions > .toolbar-action-delete {
  order: 30;
}

.dashboard-section-card {
  padding: 1.4rem 1.45rem;
  background: var(--site-white);
  border: 1px solid var(--site-line);
  border-radius: var(--site-radius);
}

.dashboard-section-card p:last-child {
  margin-bottom: 0;
  color: var(--site-muted);
  line-height: 1.7;
}

.dashboard-section-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.dashboard-section-side,
.dashboard-section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: flex-start;
  justify-content: flex-end;
}

.dashboard-section-head h2 {
  margin: 0;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.dashboard-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(0, 142, 197, 0.1);
  color: var(--site-blue-strong);
  font-size: 0.82rem;
  font-weight: 700;
}

.dashboard-list {
  display: grid;
  gap: 0.85rem;
}

.dashboard-list div {
  padding: 1rem 1.05rem;
  background: var(--site-surface);
  border: 1px solid var(--site-line);
  border-radius: 1rem;
}

.dashboard-list strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.dashboard-list span {
  color: var(--site-muted);
  line-height: 1.65;
}

.admin-health-grid,
.admin-ring-grid,
.admin-log-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1rem;
}

.admin-ring-grid {
  grid-template-columns: repeat(auto-fit, minmax(12.5rem, 1fr));
  gap: 0.85rem;
}

.admin-health-card,
.admin-ring-card {
  height: 100%;
  padding: 1.2rem 1.25rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 251, 0.96));
  border: 1px solid var(--site-line);
  border-radius: var(--site-radius);
}

.admin-health-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.admin-health-head span {
  display: block;
  color: var(--site-muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.admin-health-head strong {
  display: block;
  margin-top: 0.45rem;
  font-size: 1.05rem;
}

.admin-health-card p {
  margin: 0.9rem 0;
  color: var(--site-muted);
  line-height: 1.65;
  min-height: 4.9rem;
}

.admin-health-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.admin-health-meta span {
  display: block;
  color: var(--site-muted);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.admin-health-meta strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.92rem;
  line-height: 1.45;
}

.admin-status-badge.is-ok {
  background: rgba(49, 133, 83, 0.14);
  color: #2f7d4f;
}

.admin-status-badge.is-warning {
  background: rgba(201, 142, 24, 0.14);
  color: #9a6700;
}

.admin-status-badge.is-error {
  background: rgba(182, 51, 46, 0.14);
  color: #a1322d;
}

.admin-status-badge.is-unknown {
  background: rgba(100, 117, 134, 0.14);
  color: #5d6875;
}

.admin-ring-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem 0.95rem;
}

.admin-ring-visual {
  position: relative;
  width: 6.2rem;
  height: 6.2rem;
}

.admin-ring-chart {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.admin-ring-track,
.admin-ring-value {
  fill: none;
  stroke-width: 12;
  stroke-linecap: round;
}

.admin-ring-track {
  stroke: rgba(0, 142, 197, 0.12);
}

.admin-ring-value.is-good {
  stroke: #318553;
}

.admin-ring-value.is-warn {
  stroke: #c98e18;
}

.admin-ring-value.is-error {
  stroke: #b6332e;
}

.admin-ring-value.is-accent {
  stroke: var(--site-blue);
}

.admin-ring-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.admin-ring-center strong {
  font-size: 1.1rem;
  letter-spacing: -0.04em;
}

.admin-ring-center span {
  color: var(--site-muted);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.admin-ring-card p {
  margin: 0.75rem 0 0;
  color: var(--site-muted);
  line-height: 1.65;
}

.admin-ring-meta {
  margin-top: 0.65rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
}

.admin-log-grid h3 {
  margin: 0;
}

.admin-log-grid .dashboard-list p {
  color: var(--site-muted);
  line-height: 1.6;
}

.admin-log-grid .dashboard-list strong {
  margin-bottom: 0.45rem;
}

.portal-title {
  margin: 0;
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

@media (max-width: 991.98px) {
  .hero-copy h1,
  .section-intro h2 {
    max-width: none;
  }

  .hero-section {
    padding-top: 2.5rem;
  }

  .auth-copy h1 {
    max-width: none;
  }

  .portal-app-shell {
    grid-template-columns: 1fr;
  }

  .portal-sidebar {
    position: static;
    min-height: auto;
    height: auto;
    overflow: visible;
    border-right: 0;
    border-bottom: 1px solid var(--site-line);
  }

  .portal-workspace {
    padding-top: 0;
  }

  .portal-workspace-inner {
    min-height: 0;
  }

  .admin-health-meta {
    grid-template-columns: 1fr;
  }

  .dashboard-topbar {
    flex-direction: column;
  }

  .portal-list-toolbar-head,
  .portal-list-toolbar-search,
  .portal-list-toolbar-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .portal-list-toolbar-actions {
    justify-content: flex-start;
  }

  .portal-list-toolbar-search {
    flex-basis: auto;
  }

  .product-card-link,
  .product-detail-hero,
  .product-detail-meta {
    grid-template-columns: 1fr;
  }

  .content-toolbar-grid {
    grid-template-columns: 1fr;
  }

  .content-toolbar-actions,
  .content-cache-form {
    justify-content: flex-start;
  }

  .content-editor-card-head {
    flex-direction: column;
  }

  .content-editor-format {
    width: 100%;
  }

  .content-ai-composer {
    gap: 0.8rem;
  }

  .content-ai-composer-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .content-ai-composer-row {
    grid-template-columns: 1fr;
  }

  .content-ai-generate {
    width: 100%;
  }

  .portal-top-meta {
    align-items: flex-start;
    max-width: none;
  }

.portal-top-caption {
  text-align: left;
}

.portal-feature-editor,
.portal-license-feature-editor {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.portal-feature-list,
.portal-license-feature-options {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.portal-feature-row,
.portal-license-feature-group {
  border: 1px solid rgba(15, 39, 64, 0.12);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 1rem;
  scroll-margin-top: 8rem;
}

.portal-feature-empty {
  margin: 0;
}

.portal-feature-row.is-focus-target {
  border-color: rgba(0, 142, 197, 0.36);
  background: rgba(0, 142, 197, 0.08);
  box-shadow: 0 16px 28px rgba(0, 142, 197, 0.12);
}

.portal-entity-card.is-focus-target {
  border-color: rgba(0, 142, 197, 0.3);
  background: rgba(0, 142, 197, 0.06);
  box-shadow: 0 16px 28px rgba(0, 142, 197, 0.1);
}

.portal-license-feature-option {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  border: 1px solid rgba(15, 39, 64, 0.08);
  border-radius: 0.85rem;
  padding: 0.9rem 1rem;
  background: rgba(15, 39, 64, 0.03);
}

.portal-license-feature-option input {
  margin-top: 0.2rem;
}

.portal-license-feature-option span {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

@media (max-width: 575.98px) {
  .brand-subtitle {
    font-size: 0.78rem;
  }

  .hero-actions .btn,
  .hero-actions .btn-link-site {
    width: 100%;
    justify-content: center;
  }

  .auth-provider-grid,
  .auth-account-type {
    grid-template-columns: 1fr;
  }

  .session-row {
    flex-direction: column;
    gap: 0.35rem;
  }

  .session-row strong {
    text-align: left;
  }

  .dashboard-section-head {
    flex-direction: column;
  }

  .dashboard-section-toolbar {
    flex-wrap: wrap;
    align-items: stretch;
  }

  .dashboard-section-toolbar-start,
  .dashboard-section-toolbar-actions {
    width: 100%;
  }

  .dashboard-section-toolbar-actions {
    margin-left: 0;
  }

  .portal-list-toolbar-wrap {
    padding: 0.9rem;
  }

  .portal-list-toolbar-foot .btn,
  .portal-list-toolbar-search .btn,
  .portal-list-toolbar-actions .btn,
  .portal-list-toolbar-actions .btn-group {
    width: 100%;
  }

  .portal-workspace {
    padding: 0.75rem;
  }

  .portal-workspace-inner {
    padding: 1rem;
  }

  .portal-account-avatar {
    width: 2.4rem;
    height: 2.4rem;
  }

  .product-card-footer,
  .download-card-footer,
  .download-card-head {
    flex-direction: column;
    align-items: flex-start;
  }
}
