/**
 * WPVC Author Display Styles
 * Shows the author name below the contestant title in the grid/list
 * view and inside the contestant details modal.
 */

/* ── Author name (appears below the title) ────────────────────────── */
/* !important guards against theme/reset rules that force title children
   (e.g. "h5 *") back to display:inline; a <br> is also inserted before
   this span in wpvc-author-script.js as a belt-and-braces line break. */
.wpvc_grid_header .wpvc-author-inline {
  display: block !important;
  font-size: 12px;
  color: #666;
  font-style: italic;
  margin-top: 2px;
  line-height: 1.3;
}

/* ── Readable on dark card backgrounds too ────────────────────────── */
.wpvc_card_column .wpvc-author-inline,
.wpvc_card_row .wpvc-author-inline {
  color: #999;
}

/* ── On hover: subtle highlight ───────────────────────────────────── */
.wpvc_card_column:hover .wpvc-author-inline,
.wpvc_card_row:hover .wpvc-author-inline {
  color: #f26e2a;
}

/* ── Modal title ───────────────────────────────────────────────────── */
.wpvc_contestant_popup_title .wpvc-author-inline {
  color: #777;
  margin-top: 4px;
}
