/* ---------- now page ---------- */

.now-term {
  max-width: 860px;
}

.now-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.now-body .line {
  white-space: normal;
}
.now-body .line .k {
  color: var(--green-dim);
}
.now-body .line .t {
  color: var(--text);
  font-weight: 700;
}
.now-body .line.bullet {
  color: var(--text-dim);
  padding-left: 6px;
}
.now-body .line.bullet b {
  color: var(--cyan);
  font-weight: 600;
}
.now-body .line.spacer {
  height: 14px;
}

/* ---------- links ---------- */

.link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  max-width: 860px;
}
.link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 20px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--panel);
  transition: border-color 0.18s ease, transform 0.18s ease;
}
.link:hover {
  border-color: var(--green-dim);
  transform: translateY(-2px);
  border-bottom-color: var(--green-dim);
}
.link-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
}
.link-arrow {
  font-size: 12.5px;
  color: var(--text-dim);
  word-break: break-all;
}
.link:hover .link-arrow {
  color: var(--text);
}
