html.home-page,
html.aurora-page {
  min-height: 100vh;
  background: #020204 !important;
}

@font-face {
  font-family: "HomeGuidanceDust";
  src: url("/static/fonts/SourceHanSansCN-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

body.home-page,
body.aurora-page {
  min-height: 100vh;
  background: url('/static/img/home-bottom-aurora.jpg') center bottom / cover no-repeat fixed !important;
  color: #fff;
  overflow-x: hidden;
}

body.home-page {
  height: 100vh !important;
  overflow-y: hidden;
  --home-compose-text-inset: 25px;
  --home-hero-compose-gap: 10px;
}

body.aurora-page {
  height: auto !important;
  overflow-y: auto;
}

body.home-page.home-overflow-enabled {
  overflow-y: auto;
  height: auto !important;
}

.aurora-page .global-top-nav {
  z-index: 520;
}

.aurora-page main {
  position: relative;
  z-index: 2;
}

#home-aurora-bg {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  display: block;
}

.home-meteor-layer {
  position: fixed;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  mix-blend-mode: screen;
}

.home-meteor {
  position: absolute;
  left: var(--meteor-x);
  top: var(--meteor-y);
  width: var(--meteor-length);
  height: 2px;
  border-radius: 999px;
  opacity: 0;
  transform: translate3d(0, 0, 0) rotate(45deg);
  transform-origin: right center;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0),
    rgba(147, 197, 253, 0.2) 48%,
    rgba(240, 249, 255, 0.92)
  );
  box-shadow:
    0 0 10px rgba(147, 197, 253, 0.5),
    0 0 22px rgba(129, 140, 248, 0.24);
  animation: home-meteor-fall var(--meteor-duration) cubic-bezier(0.25, 0.02, 0.36, 1) forwards;
  will-change: transform, opacity;
}

.home-meteor::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.95);
  box-shadow:
    0 0 12px rgba(255, 255, 255, 0.82),
    0 0 24px rgba(96, 165, 250, 0.5);
}

@keyframes home-meteor-fall {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(45deg) scaleX(0.7);
  }

  14% {
    opacity: var(--meteor-opacity);
    transform: translate3d(0, 0, 0) rotate(45deg) scaleX(1);
  }

  72% {
    opacity: var(--meteor-opacity);
  }

  100% {
    opacity: 0;
    transform: translate3d(var(--meteor-travel), var(--meteor-travel), 0) rotate(45deg) scaleX(0.9);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-meteor-layer {
    display: none;
  }

  .home-guidance-line,
  .home-guidance-line.is-vanishing {
    animation: home-guidance-arrive 0.8s ease forwards;
    filter: none;
    transform: none;
  }

  .home-guidance-dust {
    display: none;
  }
}

body.timeline-page #home-aurora-bg {
  opacity: .5;
}

.echo-event-panel {
  position: relative;
  max-width: 700px;
  padding: 24px 26px 22px;
  overflow: hidden;
  border: 1px solid rgba(253, 224, 71, 0.22);
  background:
    linear-gradient(145deg, rgba(17, 24, 39, 0.98), rgba(7, 12, 24, 0.96)),
    repeating-linear-gradient(105deg, rgba(253, 224, 71, 0.08) 0 1px, transparent 1px 18px);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.58),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 0 34px rgba(253, 224, 71, 0.12);
}

.echo-event-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(253, 224, 71, 0.14), transparent),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 12px),
    repeating-linear-gradient(90deg, rgba(253, 224, 71, 0.035) 0 1px, transparent 1px 22px);
  opacity: .9;
}

.echo-event-panel > * {
  position: relative;
  z-index: 1;
}

.echo-event-panel .modal-head {
  align-items: flex-start;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(253, 224, 71, 0.14);
}

.echo-event-title {
  margin: 0;
  color: #fef3c7;
  font-size: 1.18rem;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 0 18px rgba(253, 224, 71, 0.22);
}

.echo-event-panel .modal-close {
  --close-icon-size: 22px;
  color: rgba(226, 232, 240, 0.74);
  transition: color .16s ease, transform .16s ease, text-shadow .16s ease;
}

.echo-event-panel .modal-close:hover {
  color: #fff7ed;
  transform: scale(1.08);
  text-shadow: 0 0 16px rgba(253, 224, 71, 0.3);
}

.echo-event-summary {
  margin: 6px 0 18px;
  color: #f1f5f9;
  font-size: 1.04rem;
  line-height: 1.78;
  white-space: pre-line;
}

.echo-event-corrections {
  margin: 0 0 16px;
}

.echo-event-corrections-list {
  display: grid;
  gap: 9px;
}

.echo-event-correction-button {
  width: 100%;
  border: 1px solid rgba(253, 224, 71, 0.22);
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.74);
  color: #fef3c7;
  padding: 10px 12px;
  text-align: left;
  font: inherit;
  font-size: .88rem;
  font-weight: 800;
  cursor: pointer;
  transition: border-color .16s ease, background .16s ease, color .16s ease;
}

.echo-event-correction-button:hover:not(:disabled) {
  border-color: rgba(253, 224, 71, 0.54);
  background: rgba(30, 41, 59, 0.88);
}

.echo-event-correction-button.is-applied {
  border-color: rgba(56, 189, 248, 0.48);
  background: rgba(30, 64, 175, 0.32);
  color: #bae6fd;
  cursor: default;
}

.echo-event-meta-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 10px 0 2px;
  border-top: 1px solid rgba(148, 163, 184, 0.13);
}

.echo-event-meta-row #echo-event-meta {
  margin: 0;
  min-width: 0;
  flex: 1 1 auto;
  color: rgba(203, 213, 225, 0.72);
}

.echo-event-relations {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px;
  flex: 0 0 auto;
}

.echo-event-relation-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 26px;
  padding: 4px 5px 4px 9px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.58);
  color: #cbd5e1;
  font-size: .72rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.echo-event-relation-count {
  display: inline-grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: .72rem;
  font-weight: 900;
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.08) inset;
}

.echo-event-relation-badge[data-relation="整合"] {
  border-color: rgba(253, 230, 138, 0.34);
  color: #fde68a;
}

.echo-event-relation-badge[data-relation="整合"] .echo-event-relation-count {
  background: linear-gradient(135deg, #f59e0b, #fde68a);
  color: #422006;
}

.echo-event-relation-badge[data-relation="延续"] {
  border-color: rgba(125, 211, 252, 0.34);
  color: #bae6fd;
}

.echo-event-relation-badge[data-relation="延续"] .echo-event-relation-count {
  background: linear-gradient(135deg, #0284c7, #7dd3fc);
  color: #082f49;
}

.echo-event-relation-badge[data-relation="冲突"] {
  border-color: rgba(251, 113, 133, 0.34);
  color: #fecdd3;
}

.echo-event-relation-badge[data-relation="冲突"] .echo-event-relation-count {
  background: linear-gradient(135deg, #e11d48, #fb7185);
  color: #fff1f2;
}

.echo-event-actions {
  justify-content: space-between;
  align-items: flex-start;
  gap: 22px;
  margin-top: 16px;
}

.echo-event-actions-left {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.echo-event-actions button {
  min-width: 132px;
}

.echo-event-talk-block {
  display: grid;
  justify-items: end;
  gap: 6px;
  min-width: 210px;
}

.echo-event-talk-block p {
  margin: 0;
  color: rgba(203, 213, 225, 0.64);
  font-size: .78rem;
  line-height: 1.45;
}

.echo-event-talk {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(14, 165, 233, 0.58) !important;
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 255, 255, 0.22), transparent 30%),
    linear-gradient(135deg, rgba(99, 102, 241, 0.95), rgba(14, 165, 233, 0.9)) !important;
  color: #ffffff !important;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 2px 10px rgba(15, 23, 42, 0.42);
  box-shadow:
    0 12px 28px rgba(59, 130, 246, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.16) inset;
}

.echo-event-talk-icon {
  width: 16px;
  height: 16px;
  display: block;
  flex: 0 0 16px;
}

.echo-event-talk:hover {
  transform: translateY(-1px);
  box-shadow:
    0 18px 38px rgba(59, 130, 246, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.22) inset;
}

@media (max-width: 640px) {
  .echo-event-panel {
    padding: 20px 18px;
  }

  .echo-event-meta-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .echo-event-relations {
    justify-content: flex-start;
  }

  .echo-event-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .echo-event-actions-left,
  .echo-event-talk-block {
    width: 100%;
    justify-items: stretch;
  }

  .echo-event-talk-block p {
    text-align: left;
  }
}

.home-main {
  min-height: 100vh;
  height: 100vh;
  width: 100%;
  padding-top: 108px;
  overflow: hidden;
}

.home-stage {
  position: relative;
  min-height: 100vh;
  height: calc(100vh - 108px);
  padding: 18px 24px 18px;
  overflow: hidden;
  background: transparent;
  display: flex;
  flex-direction: column;
}

body.home-page.home-overflow-enabled .home-stage {
  min-height: 100vh;
  height: auto;
  overflow: visible;
}

body.home-page.home-overflow-enabled .home-main {
  height: auto;
  overflow: visible;
}

body.home-page.home-overflow-enabled .home-center-shell {
  height: auto;
  min-height: calc(100vh - 146px);
}

.home-center-shell {
  position: relative;
  z-index: 2;
  width: min(var(--layout-max-width), calc(100vw - (var(--layout-gutter-desktop) * 2)));
  margin: 0 auto;
  height: calc(100vh - 146px);
  min-height: calc(100vh - 146px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.home-stage::before,
.home-stage::after,
.home-stage .home-center-shell::before {
  content: none;
}

.home-guidance-barrage {
  position: absolute;
  top: 96px;
  bottom: clamp(330px, 42vh, 460px);
  left: 50%;
  width: min(var(--layout-max-width), calc(100vw - (var(--layout-gutter-desktop) * 2)));
  transform: translateX(-50%);
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.45s ease;
}

body.home-overflow-enabled .home-guidance-barrage,
body.home-star-talk-active .home-guidance-barrage,
body.mobile-nav-open .home-guidance-barrage,
body.modal-open .home-guidance-barrage {
  opacity: 0.14;
}

.home-guidance-line {
  position: absolute;
  left: var(--guidance-x);
  top: var(--guidance-y);
  width: max-content;
  max-width: none;
  white-space: nowrap;
  color: rgba(234, 245, 255, var(--guidance-alpha));
  font-size: var(--guidance-size);
  font-family: "HomeGuidanceDust", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
  line-height: 1.45;
  letter-spacing: 0;
  font-weight: 400;
  text-shadow:
    0 0 18px rgba(125, 211, 252, 0.2),
    0 12px 38px rgba(0, 0, 0, 0.56);
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  transform: translate3d(var(--guidance-drift-x), 0, 0) scale(0.98);
  filter: blur(4px);
  will-change: transform, opacity, filter, clip-path, mask-image, -webkit-mask-image;
  animation:
    home-guidance-type-in var(--guidance-type-duration) steps(var(--guidance-steps), end) forwards,
    home-guidance-drift var(--guidance-drift-duration) ease-in-out var(--guidance-type-duration) forwards;
}

.home-guidance-line.is-vanishing {
  animation: none;
  opacity: 1;
  transform: var(--guidance-vanish-transform, translate3d(0, 0, 0) scale(1));
  filter: none;
  clip-path: inset(0 0 0 0);
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0) calc(var(--guidance-dissolve-y, 0%) - 12%),
    rgba(0, 0, 0, 0.34) calc(var(--guidance-dissolve-y, 0%) - 5%),
    rgba(0, 0, 0, 1) calc(var(--guidance-dissolve-y, 0%) + 2%),
    rgba(0, 0, 0, 1) 100%
  );
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0) calc(var(--guidance-dissolve-y, 0%) - 12%),
    rgba(0, 0, 0, 0.34) calc(var(--guidance-dissolve-y, 0%) - 5%),
    rgba(0, 0, 0, 1) calc(var(--guidance-dissolve-y, 0%) + 2%),
    rgba(0, 0, 0, 1) 100%
  );
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-position: 0 0;
  mask-position: 0 0;
}

.home-guidance-dust {
  position: absolute;
  left: var(--dust-x);
  top: var(--dust-y);
  width: var(--dust-size);
  height: var(--dust-size);
  border-radius: 999px;
  background: rgba(230, 247, 255, var(--dust-alpha));
  box-shadow:
    0 0 4px rgba(125, 211, 252, 0.42),
    0 0 8px rgba(99, 102, 241, 0.14);
  opacity: var(--dust-alpha);
  transform: translate3d(0, 0, 0);
  will-change: transform, opacity;
}

@keyframes home-guidance-arrive {
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    filter: blur(0);
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes home-guidance-type-in {
  0% {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    filter: blur(3px);
    transform: translate3d(var(--guidance-drift-x), 0, 0) scale(0.99);
  }

  16% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    filter: blur(0);
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes home-guidance-drift {
  to {
    transform: translate3d(calc(var(--guidance-drift-x) * -1), -8px, 0) scale(1.01);
  }
}

@keyframes home-guidance-vanish {
  0% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    filter: none;
    transform: var(--guidance-vanish-transform, translate3d(0, 0, 0) scale(1));
    -webkit-mask-position: 0 -122%;
    mask-position: 0 -122%;
  }

  82% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    filter: none;
    transform: var(--guidance-vanish-transform, translate3d(0, 0, 0) scale(1));
  }

  100% {
    opacity: 0;
    clip-path: inset(0 0 0 0);
    filter: none;
    transform: var(--guidance-vanish-transform, translate3d(0, 0, 0) scale(1));
    -webkit-mask-position: 0 118%;
    mask-position: 0 118%;
  }
}

.home-glass-nav {
  z-index: 520;
  min-height: 76px;
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(18, 19, 24, 0.72), rgba(12, 13, 17, 0.54));
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.global-top-nav {
  position: fixed;
  top: var(--nav-top-offset);
  left: 50%;
  transform: translateX(-50%);
  width: min(var(--layout-max-width), calc(100vw - (var(--layout-gutter-desktop) * 2)));
}

.home-brand {
  display: inline-flex;
  align-items: center;
  min-width: 172px;
  padding: 6px 0;
}

.home-brand-logo {
  display: block;
  width: auto;
  max-width: 172px;
  height: 34px;
  object-fit: contain;
}

.home-nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 36px;
}

.home-nav-links a {
  color: rgba(226, 232, 240, 0.78);
  font-size: 15px;
  font-weight: 450;
  line-height: 1;
  letter-spacing: 0.01em;
  padding: 2px 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: color 0.18s, text-shadow 0.18s, font-weight 0.18s;
}

.home-nav-links a:hover,
.home-nav-links a.active {
  background: transparent;
  box-shadow: none;
}

.home-nav-links a:hover {
  color: #eef2ff;
  font-weight: 600;
  text-shadow: 0 0 12px rgba(99, 102, 241, 0.48);
}

.home-nav-links a.active {
  background: var(--accent-grad-main);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(129, 140, 248, 0.2);
}

.home-nav-links .nav-coming-soon {
  color: rgba(148, 163, 184, 0.72);
  font-size: 13px;
  line-height: 1;
  padding: 2px 0;
  cursor: default;
  user-select: none;
}

.mobile-nav-toggle,
.mobile-record-entry,
.mobile-nav-overlay,
.mobile-nav-drawer {
  display: none;
}

.mobile-nav-toggle {
  border: 1px solid rgba(129, 140, 248, 0.28);
  background: rgba(15, 23, 42, 0.7);
  border-radius: 12px;
  width: 42px;
  height: 42px;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.mobile-nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: rgba(226, 232, 240, 0.92);
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 560;
  border: 0;
  background: rgba(2, 6, 23, 0.52);
  cursor: pointer;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 570;
  width: min(82vw, 320px);
  height: 100vh;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(18, 24, 38, 0.62), rgba(8, 12, 22, 0.56));
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px) saturate(118%);
  -webkit-backdrop-filter: blur(20px) saturate(118%);
  padding: 18px 14px 18px;
}

.mobile-nav-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.mobile-nav-drawer-brand {
  display: inline-flex;
  min-width: 0;
}

.mobile-nav-drawer-logo {
  display: block;
  width: auto;
  max-width: 156px;
  height: 30px;
  object-fit: contain;
}

.mobile-nav-close {
  width: 34px;
  height: 34px;
  border-radius: 0;
  border: 0;
  background: transparent;
  color: rgba(226, 232, 240, 0.92);
  padding: 0;
  line-height: 0;
  cursor: pointer;
  box-shadow: none;
}

.mobile-nav-close-icon {
  width: 20px;
  height: 20px;
  display: block;
}

.mobile-nav-drawer-links {
  display: block;
}

.mobile-nav-drawer-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(226, 232, 240, 0.9);
  font-size: 16px;
  line-height: 1.2;
  text-decoration: none;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.32);
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  transition: color 0.18s, opacity 0.18s;
}

.mobile-nav-drawer-links a.active {
  border-bottom-color: rgba(129, 140, 248, 0.58);
  color: #fff;
}

.mobile-nav-soon {
  color: rgba(148, 163, 184, 0.82);
  font-size: 14px;
  line-height: 1.2;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(148, 163, 184, 0.24);
  user-select: none;
}

.mobile-nav-link-left {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.mobile-nav-link-icon {
  width: 18px;
  height: 18px;
  color: rgba(226, 232, 240, 0.86);
  flex: 0 0 auto;
}

.mobile-nav-drawer-links a.active .mobile-nav-link-icon {
  color: rgba(224, 231, 255, 0.98);
}

.mobile-star-talk-history {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  border: 1px solid rgba(34, 197, 94, 0.34);
  border-radius: 14px;
  background: rgba(16, 185, 129, 0.12);
  color: rgba(220, 252, 231, 0.96);
  padding: 13px 12px;
  font: inherit;
  font-size: 16px;
  line-height: 1.2;
  cursor: pointer;
}

.mobile-star-talk-history .mobile-nav-link-icon,
.mobile-star-talk-history .mobile-nav-link-arrow {
  color: rgba(187, 247, 208, 0.96);
}

.mobile-star-talk-history-count {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid rgba(134, 239, 172, 0.45);
  background: rgba(22, 101, 52, 0.3);
  color: rgba(220, 252, 231, 0.96);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 500;
}

.mobile-nav-link-arrow {
  color: rgba(148, 163, 184, 0.9);
  width: 18px;
  height: 18px;
  display: block;
  margin-left: 10px;
}

.mobile-record-entry {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  background: rgba(15, 23, 42, 0.68);
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.mobile-record-entry-logo {
  width: 26px;
  height: 26px;
  object-fit: contain;
  display: block;
  transform-origin: 50% 50%;
  animation: mobile-record-logo-pulse-spin 3.8s ease-in-out infinite;
}

@keyframes mobile-record-logo-pulse-spin {
  0% {
    transform: rotate(0deg);
  }

  14% {
    transform: rotate(360deg);
  }

  62% {
    transform: rotate(360deg);
  }

  76% {
    transform: rotate(720deg);
  }

  100% {
    transform: rotate(720deg);
  }
}

body.mobile-nav-open {
  overflow: hidden;
}

.home-hero {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 0 var(--home-hero-compose-gap);
  text-align: left;
  padding-left: var(--home-compose-text-inset);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: none;
}

.home-hero h2 {
  margin: -5px 0 0;
  color: #fff;
  font-size: clamp(28px, 3.8vw, 44px);
  line-height: 1.08;
  text-align: left;
  letter-spacing: 0.02em;
  font-weight: 400;
  text-shadow: 0 18px 58px rgba(0, 0, 0, 0.52);
}

.home-hero .home-hero-kicker {
  position: static;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(14px, 1.3vw, 17px);
  line-height: 1.45;
  letter-spacing: 0.05em;
  text-align: left;
  text-shadow: 0 10px 32px rgba(0, 0, 0, 0.36);
}

.home-hero .home-hero-note {
  margin: 10px 0 0;
  color: rgba(226, 232, 240, 0.82);
  font-size: clamp(13px, 1.18vw, 15px);
  line-height: 1.55;
  letter-spacing: 0.02em;
  text-shadow: 0 10px 32px rgba(0, 0, 0, 0.3);
}


.home-compose-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 0;
}

.home-page .quick-compose-shell {
  position: relative;
}

.home-page .quick-compose-shell textarea {
  padding: 13px;
  min-height: 88px;
  max-height: min(42vh, 420px);
  overflow-y: auto;
}

.home-page .quick-compose-import,
.home-page .quick-compose-history,
.home-page .quick-compose-voice,
.home-page .quick-compose-toggle {
  position: absolute;
  bottom: 10px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
  z-index: 3;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.home-page .quick-compose-import {
  left: 10px;
  right: auto;
  border: 1px solid transparent;
  background: transparent;
  box-shadow: none;
  color: rgba(226, 232, 240, 0.95);
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
}

.home-page .quick-compose-import:hover {
  border-color: rgba(148, 163, 184, 0.35);
  background: rgba(30, 41, 59, 0.92);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.home-page .quick-compose-import svg {
  width: 18.7px;
  height: 18.7px;
  display: block;
}

.home-page .quick-compose-history {
  left: 50px;
  right: auto;
  border: 1px solid transparent;
  background: transparent;
  box-shadow: none;
  color: rgba(226, 232, 240, 0.95);
}

.home-page .quick-compose-history:hover {
  border-color: rgba(251, 191, 36, 0.55);
  background: rgba(217, 119, 6, 0.3);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.home-page .quick-compose-history--talk-history {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  color: rgba(226, 232, 240, 0.95);
}

.home-page .quick-compose-history--talk-history:hover {
  border-color: rgba(148, 163, 184, 0.35);
  background: rgba(30, 41, 59, 0.92);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.home-page .quick-compose-history svg {
  width: 18.36px;
  height: 18.36px;
  display: block;
}

.home-page .quick-compose-voice {
  left: 90px;
  right: auto;
  border: 1px solid rgba(125, 211, 252, 0.22);
  background: rgba(15, 23, 42, 0.9);
  color: rgba(224, 242, 254, 0.98);
  box-shadow: 0 10px 24px rgba(2, 132, 199, 0.2);
}

.home-page .quick-compose-voice:hover {
  border-color: rgba(103, 232, 249, 0.52);
  background: rgba(8, 47, 73, 0.92);
}

.home-page .quick-compose-voice svg {
  width: 17px;
  height: 17px;
  display: block;
}

.home-page .quick-compose-voice.is-recording {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.96), rgba(249, 115, 22, 0.88));
  border-color: rgba(254, 202, 202, 0.58);
  color: #fff7ed;
  box-shadow: 0 0 0 5px rgba(248, 113, 113, 0.14), 0 12px 28px rgba(127, 29, 29, 0.4);
}

.home-page .quick-compose-voice.is-processing {
  background: linear-gradient(135deg, rgba(8, 145, 178, 0.95), rgba(59, 130, 246, 0.88));
  border-color: rgba(147, 197, 253, 0.56);
  color: #eff6ff;
}

.home-page .quick-compose-voice:disabled {
  opacity: 0.46;
  cursor: not-allowed;
  transform: none;
}

.home-page .quick-compose-history-count {
  position: absolute;
  top: -4px;
  right: -6px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  border: 1px solid rgba(125, 211, 252, 0.62);
  background: rgba(8, 47, 73, 0.86);
  color: rgba(224, 242, 254, 0.98);
  font-size: 10px;
  line-height: 14px;
  text-align: center;
  pointer-events: none;
}

.home-page .quick-compose-toggle {
  right: 10px;
}

.home-page .quick-guidance-toggle {
  position: absolute;
  top: -46px;
  right: 10px;
  width: 38px;
  height: 21px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.86);
  padding: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.home-page .quick-guidance-toggle__thumb {
  width: 15px;
  height: 15px;
  border-radius: 999px;
  background: rgba(226, 232, 240, 0.96);
  box-shadow: 0 2px 6px rgba(2, 6, 23, 0.34);
  transition: transform 0.2s ease, background 0.2s ease;
}

.home-page .quick-guidance-toggle.is-active {
  border-color: rgba(103, 232, 249, 0.5);
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.92), rgba(34, 211, 238, 0.8));
}

.home-page .quick-guidance-toggle.is-active .quick-guidance-toggle__thumb {
  transform: translateX(19px);
  background: rgba(240, 249, 255, 0.99);
}

.home-page .quick-compose-menu {
  position: absolute;
  right: 14px;
  bottom: 62px;
  z-index: 8;
  min-width: 150px;
  padding: 8px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.96);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
}

.home-page .quick-compose-menu button {
  width: 100%;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #e5e7eb;
  padding: 10px 11px;
  text-align: left;
  font: inherit;
  font-size: .9rem;
  font-weight: 800;
  cursor: pointer;
}

.home-page .quick-compose-menu button:hover {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.18), rgba(14, 165, 233, 0.16));
  color: #dbeafe;
}

.home-page .quick-compose-status {
  position: absolute;
  right: 60px;
  bottom: 18px;
  left: auto;
  z-index: 2;
  display: block;
  margin: 0;
  min-height: 0;
  width: min(420px, calc(100% - 124px));
  padding: 0;
  color: rgba(226, 232, 240, 0.86);
  font-size: 12px;
  line-height: 1.2;
  text-align: right;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  pointer-events: none;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.home-page .quick-compose-status--voice {
  right: 60px;
  bottom: 36px;
  color: rgba(191, 219, 254, 0.94);
}

.home-page .quick-compose-toggle--ai {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.95), rgba(14, 165, 233, 0.9));
}

.home-page .quick-compose-toggle--manual {
  background: rgba(71, 85, 105, 0.92);
}

.home-page .quick-compose-toggle--talk {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.96), rgba(34, 197, 94, 0.92));
}

.home-page .quick-compose-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.34);
}

.home-page .quick-guidance-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.34);
  border-color: rgba(148, 163, 184, 0.68);
}

.home-page .quick-compose-toggle-logo {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
  pointer-events: none;
  transition: transform 0.28s ease, filter 0.28s ease;
}

.home-page .quick-compose-toggle:hover .quick-compose-toggle-logo {
  transform: scale(1.08) rotate(-10deg);
  filter: drop-shadow(0 0 8px rgba(129, 140, 248, 0.45));
}

.home-page .quick-compose-toggle.is-loading .quick-compose-toggle-logo {
  animation: quick-compose-spin 0.9s linear infinite;
}

body.home-star-talk-active .home-hero {
  display: none;
}

body.home-star-talk-active .home-center-shell {
  justify-content: flex-end;
}

body.home-star-talk-active .record-compose-details,
body.home-star-talk-active .record-submit-actions,
body.home-star-talk-active #article-compose-panel {
  display: none !important;
}

.home-star-talk-stream {
  width: 100%;
  max-height: min(54vh, 520px);
  margin: 0 0 18px;
  padding: 4px 8px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  overflow: auto;
  scroll-behavior: smooth;
}

.home-star-talk-stream[hidden] {
  display: none !important;
}

.home-star-talk-stream .star-talk-message {
  display: flex;
}

.home-star-talk-stream .star-talk-message--user {
  justify-content: flex-end;
}

.home-star-talk-stream .star-talk-message--assistant {
  justify-content: flex-start;
}

.home-star-talk-stream .star-talk-bubble {
  width: fit-content;
  max-width: min(640px, 78%);
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 18px;
  padding: 13px 15px;
  line-height: 1.75;
  word-break: break-word;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.home-star-talk-stream .star-talk-message--user .star-talk-bubble {
  border-color: rgba(34, 197, 94, 0.42);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.82), rgba(34, 197, 94, 0.74));
  color: #fff;
}

.home-star-talk-stream .star-talk-message--assistant .star-talk-bubble {
  background: rgba(15, 23, 42, 0.58);
  color: #e5e7eb;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.home-star-talk-stream .star-talk-bubble p {
  margin: 0;
  white-space: pre-wrap;
}

.home-star-talk-empty {
  align-self: center;
  margin: 18px 0;
  color: rgba(226, 232, 240, 0.78);
  font-size: 14px;
  text-align: center;
}

.star-talk-history-panel {
  width: min(560px, calc(100vw - 32px));
  max-width: 100%;
}

.star-talk-history-total {
  font-size: 13px;
  color: rgba(148, 163, 184, 0.9);
  font-weight: 400;
}

.star-talk-history-list {
  display: grid;
  gap: 10px;
  max-height: min(62vh, 520px);
  overflow: auto;
}

.star-talk-history-item {
  display: grid;
  gap: 8px;
  width: 100%;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.58);
  color: inherit;
  padding: 12px 13px;
  text-align: left;
  font-weight: 400;
  cursor: pointer;
  transition: border-color 0.16s ease, background 0.16s ease;
}

.star-talk-history-item:hover,
.star-talk-history-item.is-active {
  border-color: rgba(34, 197, 94, 0.48);
  background: rgba(16, 185, 129, 0.14);
}

.star-talk-history-item-title-input,
.star-talk-history-item-meta {
  display: block;
  max-width: 100%;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.star-talk-history-item-title-input {
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 9px;
  background: rgba(15, 23, 42, 0.38);
  color: #f8fafc;
  padding: 8px 9px;
  color: #f8fafc;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
}

.star-talk-history-item-meta {
  color: rgba(203, 213, 225, 0.78);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 400;
}

.star-talk-history-item-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.star-talk-history-item-actions {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.star-talk-history-action {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(15, 23, 42, 0.44);
  color: rgba(226, 232, 240, 0.94);
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.star-talk-history-action svg {
  width: 16px;
  height: 16px;
  display: block;
}

.star-talk-history-action--enter {
  border-color: rgba(74, 222, 128, 0.52);
  background: rgba(22, 163, 74, 0.22);
  color: rgba(187, 247, 208, 0.98);
}

.star-talk-history-action--danger {
  border-color: rgba(248, 113, 113, 0.4);
  background: rgba(220, 38, 38, 0.2);
  color: rgba(254, 202, 202, 0.98);
}

.star-talk-history-message {
  min-height: 20px;
  margin: 10px 0 0;
}

@keyframes quick-compose-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.home-page .record-compose-card {
  background: linear-gradient(135deg, rgba(20, 25, 40, 0.58), rgba(15, 18, 30, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.55),
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 0 0 1px rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 12px;
}

.home-page .record-layer--title {
  grid-template-columns: minmax(0, 1fr);
}

.home-page .quick-add-form {
  display: grid;
  gap: 12px;
}

.home-page .quick-add-form .field-label {
  display: block;
  margin-bottom: 8px;
}

.home-page .quick-add-form .actions {
  margin-top: 6px;
}

.home-page .record-compose-card .actions {
  gap: 16px;
  padding-top: 0;
}

.home-page .record-layer--meta {
  gap: 12px;
}

.home-page .record-layer--meta .meta-select-field,
.home-page .record-layer--meta .importance-field {
  gap: 10px;
}

.home-page .record-layer--meta .field-title {
  padding-left: 10px;
  font-size: 14px;
}

.home-page .record-layer--meta select,
.home-page .record-layer--meta .star-rating {
  min-height: 46px;
  height: 46px;
  border-radius: 12px;
  font-size: 14px;
}

.home-page .record-layer--meta .star-rating {
  padding: 0 8px;
}

.home-page .record-layer--meta .star-button {
  font-size: 21px;
}

.home-page .record-compose-card textarea,
.home-page .record-compose-card input[type="text"],
.home-page .record-compose-card input[type="password"],
.home-page .record-compose-card select {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 11px;
  color: #f4f4f5;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.home-page .record-compose-card textarea,
.home-page .record-compose-card input[type="text"],
.home-page .record-compose-card input[type="password"] {
  background: rgba(15, 24, 45, 0.6);
}

.home-page .record-compose-card textarea:focus,
.home-page .record-compose-card input[type="text"]:focus,
.home-page .record-compose-card input[type="password"]:focus,
.home-page .record-compose-card select:focus {
  outline: none;
  border-color: rgba(129, 140, 248, 0.42);
  background-color: rgba(9, 16, 34, 0.75);
  box-shadow: 0 0 0 2px rgba(129, 140, 248, 0.12);
}

.home-page .record-compose-card textarea::placeholder,
.home-page .record-compose-card input::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.home-page .import-notes-modal-panel {
  width: min(560px, 96vw);
}

.home-page .import-notes-help {
  margin: 0 0 12px;
}

.home-page .import-notes-preview {
  margin-top: 12px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 14px;
  padding: 12px;
  background: rgba(15, 23, 42, 0.35);
}

.home-page .import-notes-summary {
  margin: 0;
  color: rgba(226, 232, 240, 0.92);
  line-height: 1.55;
}

.home-page .import-notes-actions {
  margin-top: 10px;
}

.home-page #import-notes-message {
  min-height: 20px;
  margin-top: 10px;
}

@media (max-width: 900px) {
  body.home-page {
    background-position: center calc(100% - 50px) !important;
    --home-compose-text-inset: 13px;
  }

  .home-stage {
    padding: 18px 14px 52px;
  }

  .home-guidance-barrage {
    top: 86px;
    right: 14px;
    bottom: clamp(340px, 48vh, 430px);
    left: 14px;
    width: auto;
    transform: none;
  }

  .home-guidance-line {
    width: auto;
    max-width: calc(100vw - 40px);
    white-space: pre-line;
    word-break: break-word;
    overflow-wrap: anywhere;
    text-align: center;
  }

  .home-glass-nav {
    width: 100%;
    min-height: auto;
    padding: 14px 16px;
    flex-wrap: nowrap;
    border-radius: 0;
    gap: 12px;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .mobile-nav-toggle {
    display: inline-flex;
    flex: 0 0 auto;
  }

  .home-brand {
    display: none;
  }

  .mobile-record-entry {
    display: inline-flex;
    margin-left: auto;
  }

  .home-nav-links {
    display: none;
  }

  .mobile-nav-overlay.is-open {
    display: block;
  }

  .mobile-nav-drawer.is-open {
    display: block;
  }

  .home-hero {
    margin: 0 0 var(--home-hero-compose-gap);
    padding-left: var(--home-compose-text-inset);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .home-hero h2 {
    font-size: clamp(30px, 5.2vw, 40px);
    letter-spacing: -0.01em;
  }

  .home-hero .home-hero-kicker {
    position: static;
    order: -1;
    margin: 0 0 8px;
    left: auto;
    top: auto;
    text-align: left;
  }

  .home-hero .home-hero-note {
    margin-top: 10px;
  }

  .home-compose-wrap {
    margin-top: 0;
    padding-bottom: 0;
  }

  .home-page .record-compose-card {
    padding: 7px;
    border-radius: 16px;
  }

  .home-page .quick-compose-shell textarea {
    min-height: 78px;
    padding-left: 6px;
    padding-right: 6px;
    padding-bottom: 22px;
  }

.home-page .quick-compose-import,
.home-page .quick-compose-history,
.home-page .quick-compose-voice,
  .home-page .quick-compose-toggle {
    bottom: 6px;
    width: 32px;
    height: 32px;
  }

  .home-page .quick-compose-import {
    left: 6px;
    right: auto;
    font-size: 22px;
  }

  .home-page .quick-compose-history {
    left: 44px;
    right: auto;
  }

  .home-page .quick-compose-voice {
    left: 82px;
    right: auto;
  }

  .home-page .quick-compose-toggle {
    right: 6px;
  }

  .home-page .quick-guidance-toggle {
    top: -36px;
    right: 6px;
    width: 35px;
    height: 20px;
    padding: 1px;
  }

  .home-page .quick-guidance-toggle__thumb {
    width: 14px;
    height: 14px;
  }

  .home-page .quick-guidance-toggle.is-active .quick-guidance-toggle__thumb {
    transform: translateX(18px);
  }

  .home-page .quick-compose-status {
    right: 50px;
    bottom: 12px;
    width: min(280px, calc(100% - 140px));
    min-height: 0;
    padding: 0;
    font-size: 11px;
    text-align: right;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .home-page .quick-compose-status--voice {
    bottom: 30px;
  }

  .home-page .record-compose-card textarea,
  .home-page .record-compose-card input[type="text"],
  .home-page .record-compose-card input[type="password"],
  .home-page .record-compose-card select {
    border-radius: 10px;
  }

  .home-page .record-layer--meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .home-page .meta-select-field--emotion {
    grid-column: 1;
  }

  .home-page .meta-select-field--expression {
    grid-column: 2;
  }

  .home-page .meta-select-field--visibility {
    grid-column: 1;
  }

  .home-page .meta-select-field--relation {
    grid-column: 2;
  }

  .home-page .importance-field--level {
    grid-column: 1 / -1;
  }

  .home-page .quick-compose-toggle-logo {
    width: 20px;
    height: 20px;
  }

  .home-star-talk-stream {
    max-height: min(58vh, 500px);
    margin-bottom: 12px;
    padding: 0 3px;
    gap: 11px;
  }

  .home-star-talk-stream .star-talk-bubble {
    width: fit-content;
    max-width: min(100%, 640px);
  }
}

@media (max-width: 640px) {
  .home-hero h2 {
    font-size: clamp(28px, 8.5vw, 36px);
    letter-spacing: -0.02em;
  }

  .home-hero .home-hero-kicker {
    font-size: 15px;
    margin: 0 0 8px;
  }

  .home-compose-wrap {
    width: 100%;
  }

  .home-page .record-layer--meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .home-page .record-layer--meta .field-title {
    padding-left: 8px;
    font-size: 13px;
  }

  .home-page .record-layer--meta select,
  .home-page .record-layer--meta .star-rating {
    min-height: 44px;
    height: 44px;
    font-size: 13px;
  }

  .home-page .meta-select-field--emotion {
    grid-column: 1;
  }

  .home-page .meta-select-field--expression {
    grid-column: 2;
  }

  .home-page .meta-select-field--visibility {
    grid-column: 1;
  }

  .home-page .meta-select-field--relation {
    grid-column: 2;
  }

  .home-page .importance-field--level {
    grid-column: 1 / -1;
  }

}
