@layer components {
  .review-pending {
    margin: 0 0 var(--s3);
    font-size: 15px;
    font-weight: 600;
    color: var(--ink-800);
  }

  /* Card content specific to the admin review (the checker grid omits these):
     the photographer line, the checker note, the per-file download links, and
     the keep/reject decision footer. The card shell + grid live in
     review_category.css, shared with the checker grid. */
  .review-card__photographer {
    margin: 0;
    font-size: 14px;
    color: var(--ink-700);
  }

  .review-card__note {
    margin: 0;
    font-size: 13px;
    color: var(--ink-500, var(--ink-400));
    line-height: 1.4;
  }

  .file-link {
    font-size: 13px;
    font-weight: 500;
    color: var(--forest-700);
    text-decoration: none;
    padding: 2px var(--s2);
    border: 1px solid var(--ink-200);
    border-radius: var(--r-sm, 6px);
  }
  .file-link:hover {
    border-color: var(--forest-700);
    background: var(--ink-50);
  }

  .review-card__decision {
    display: flex;
    align-items: center;
    gap: var(--s2);
    padding: var(--s3) var(--s4);
    border-top: 1px solid var(--ink-100);
  }
  /* button_to wraps each button in a form; push the first form (and Reject after
     it) to the right so the decision badge, when present, sits at the left. */
  .review-card__decision form:first-of-type { margin-left: auto; }
}
