/* Herald · Jellyfin — app tweaks. Base in glass-core.css. */

.jf-connect {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
  padding: 16px 10px;
}
/* Title detail card (left-aligned, not the centered connect layout). */
.jf-item {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 18px;
  border-radius: var(--r-md);
  background: var(--iri), var(--frost-1);
  border: 1px solid var(--frost-border);
}
.jf-item .jf-h { font-size: 22px; }
.jf-h {
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -0.2px;
  color: var(--text-primary);
}
.jf-p {
  font-size: 14px;
  line-height: 1.45;
  color: var(--text-secondary);
  max-width: 440px;
}
.jf-p.jf-dim {
  font-size: 12.5px;
  color: var(--text-muted);
}
.jf-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 26px;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #aa5cc3, #00a4dc);
  border: 0;
  border-radius: 980px;
  box-shadow: 0 10px 26px rgba(0, 164, 220, 0.32);
}
.jf-btn.ghost {
  color: var(--text-secondary);
  background: var(--frost-1);
  border: 1px solid var(--frost-border);
  box-shadow: none;
  min-height: 46px;
  font-size: 14px;
}
.jf-btn:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--focus-ring), 0 12px 28px rgba(0, 164, 220, 0.4);
  transform: translateY(-1px);
}
.jf-btn.ghost:focus {
  border-color: var(--focus-ring);
  color: var(--text-primary);
}
