/*
  nmsr.css — minimal dark/white override for Chirpy theme
*/

/* ─── POST AUTHOR BLOCK ─────────────────────────────────────────── */
.post-author-block {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1rem;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  font-size: 0.82rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
  border-radius: 4px;
}

.author-label {
  color: var(--bs-secondary-color, #6c757d);
  font-size: 0.78rem;
}

.author-handle {
  color: #fff !important;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.author-handle:hover {
  color: #fff !important;
  text-decoration: underline !important;
  text-shadow: none !important;
}

.blink-cursor {
  animation: blink 1s step-end infinite;
  font-size: 0.7em;
  line-height: 1;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

.author-sep  { color: rgba(255,255,255,0.3); }
.author-copy { color: var(--bs-secondary-color, #6c757d); font-size: 0.78rem; }

@media (max-width: 768px) {
  .post-author-block {
    flex-direction: column;
    align-items: flex-start;
  }
}
