/* Shared styles for index & archive */
.network-counters {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-left: 1rem;
}
.network-counters .net-toggle {
  font-size: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: var(--panel-bg, rgba(255, 255, 255, 0.04));
  padding: 0.25rem 0.4rem;
  border: 1px solid var(--border-color, #444);
  border-radius: 4px;
}
.char-counter.small {
  font-size: 0.65rem;
  opacity: 0.8;
}
.char-counter.over {
  color: #d55;
  font-weight: 600;
}
.char-counter.near:not(.over) {
  color: #e6a700;
}

/* Archive styling */
.profile-header {
  margin: 1rem 0 1.25rem;
}
.profile-header h2 {
  margin: 0 0 0.25rem;
}

.profile-header .bio {
  font-size: 0.85rem;
  line-height: 1.4;
  white-space: normal;
}
.archive-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.note-archive {
  border: 1px solid var(--border-color, #444);
  padding: 0.65rem 0.75rem;
  border-radius: 4px;
  background: var(--panel-bg, rgba(255, 255, 255, 0.02));
}
.note-archive .text {
  font-size: 0.9rem;
  line-height: 1.4;
}
.note-archive .meta {
  margin-top: 0.4rem;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.8;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}
.note-archive .meta .dot {
  opacity: 0.6;
}

/* Generic */
.hint.ok {
  color: #5c5;
}
.hint.bad {
  color: #d66;
}

/* Note images */
.note-image {
  width: 100%;
  height: auto;
  margin-top: 6px;
  border: 1px solid var(--border);
  display: block;
}
