/* Reading Notes — Ideamorphic Daily Digest
   Minimal layout only; typography inherits from t9-base.css.
   Items render as flowing paragraphs, not boxed cards. */

/* Container comes from <main> (1200px + its gutter), same as every other
   page type. These used to re-declare a 720px measure and their own
   1.5rem padding, which double-contained them and left reading notes as a
   narrow centred column while the rest of the site filled the width. */

.rn-breadcrumb {
  margin: 1.2rem 0 0;
  font-size: 0.75rem;
  color: var(--grey-500, #6e6e6e);
}

.rn-breadcrumb a {
  text-decoration: none;
  color: var(--grey-600, #666);
}

.rn-breadcrumb a:hover {
  text-decoration: underline;
}

.rn-bc-sep {
  margin: 0 0.4rem;
  color: var(--grey-400, #ccc);
}

.reading-note {
  margin: 2rem 0;
}

.rn-header {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--grey-300, #e8e8e8);
}

.rn-subtitle {
  margin-top: 0.4rem;
  opacity: 0.6;
  font-style: italic;
}

.rn-synthesis {
  margin-bottom: 2.5rem;
}

.rn-stats {
  margin-top: 0.6rem;
  opacity: 0.6;
}

/* Items: flow as paragraphs separated by a thin rule. No border-box, no padding. */
.rn-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.rn-item + .rn-item {
  border-top: 1px solid var(--grey-300, #e8e8e8);
  padding-top: 1.5rem;
}

.rn-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.4rem;
  flex-wrap: wrap;
}

.rn-source {
  opacity: 0.7;
}

/* Score: hide the visual bar; keep the numeric label inline. */
.rn-score {
  display: inline;
}

.rn-score-bar {
  display: none;
}

.rn-score-label {
  opacity: 0.5;
}

/* Override mmi-print.css `section h3` (uppercase + 7pt + border) for items.
   Item titles should look like normal article headings, inheriting from
   t9-base.css's `main h3` rule. */
.rn-item-title,
.rn-items section h3,
.rn-items h3 {
  text-transform: none;
  letter-spacing: normal;
  border-bottom: none;
  padding-bottom: 0;
  font-size: inherit;
  color: inherit;
  margin: 0.2rem 0 0.5rem;
}

.rn-connection {
  margin: 0;
}

.rn-item-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.6rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.rn-read-link {
  text-decoration: underline;
}

.rn-tags {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.rn-tag {
  opacity: 0.6;
}

.rn-empty {
  text-align: center;
  opacity: 0.5;
  font-style: italic;
  padding: 2rem 0;
}

.rn-footer {
  margin-top: 2.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--grey-300, #e8e8e8);
  opacity: 0.5;
}

.rn-serial {
  font-family: monospace;
}
