/* ============================================================
   ALTERNITY HEALTHCARE — Perspectives layer
   Index + long-form article styles. Builds on alternity.css.
   Body copy stays sans (system convention); serif is reserved
   for titles, subheads, and pull quotes.
   ============================================================ */

/* ---------------- INDEX ---------------- */
.entries { margin-top: 8px; border-top: 1px solid var(--line); }
.entry {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 48px;
  padding: 46px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.entry-meta { display: flex; flex-direction: column; gap: 10px; padding-top: 7px; }
.entry-topic {
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--slate); margin: 0;
}
.entry-read { font-family: var(--sans); font-size: 12px; letter-spacing: 0.04em; color: var(--ink-46); }
.entry-title { margin: 0; }
.entry-title a {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(26px, 3vw, 38px); line-height: 1.08; letter-spacing: -0.012em;
  color: var(--ink); text-decoration: none; text-wrap: balance;
  transition: color .2s ease;
}
.entry-title a:hover { color: var(--teal); }
.entry-stand {
  font-size: 17px; line-height: 1.62; color: var(--ink-68);
  margin: 16px 0 0; max-width: 620px; text-wrap: pretty;
}
.entry .text-link { margin-top: 22px; }

/* featured lead entry */
.entry--lead { border-top: 0; }
.entry--lead .entry-title a { font-size: clamp(32px, 4vw, 50px); line-height: 1.04; }
.entry--lead .entry-stand { font-size: 19px; max-width: 660px; }
.lead-tag {
  display: inline-block; font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--teal);
  border: 1px solid var(--line); padding: 6px 12px; margin-bottom: 18px;
}

/* ---------------- ARTICLE ---------------- */
.ph-byline {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  margin: 26px 0 0;
  font-family: var(--sans); font-size: 13px; letter-spacing: 0.04em; color: var(--ink-68);
}
.ph-byline .sep { color: var(--ink-46); }
.ph-byline .read { color: var(--ink-46); }

.article { max-width: 720px; margin: 0 auto; }
.article .standfirst {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(21px, 2.3vw, 28px); line-height: 1.42; letter-spacing: -0.008em;
  color: var(--ink-80); margin: 0 0 8px; text-wrap: pretty;
}
.article h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(25px, 2.8vw, 33px); line-height: 1.14; letter-spacing: -0.01em;
  color: var(--ink); margin: 1.7em 0 0.55em; text-wrap: balance;
}
.article h3 {
  font-family: var(--serif); font-weight: 500; font-size: 21px; line-height: 1.2;
  color: var(--ink); margin: 1.5em 0 0.5em;
}
.article p {
  font-size: 18px; line-height: 1.74; color: var(--ink-80);
  margin: 0 0 1.15em; text-wrap: pretty;
}
.article p > a, .article-note a {
  color: var(--teal); text-decoration: none;
  border-bottom: 1px solid rgba(0,111,127,0.35); transition: border-color .2s ease;
}
.article p > a:hover, .article-note a:hover { border-color: var(--teal); }
.article strong { color: var(--ink); font-weight: 600; }
.article em { font-style: italic; }

.pullquote { margin: 44px 0; padding: 34px 0 0; border-top: 1px solid var(--line); }
.pullquote p {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(23px, 2.6vw, 32px); line-height: 1.34; letter-spacing: -0.01em;
  color: var(--ink); margin: 0; text-wrap: pretty;
}
.pullquote cite {
  display: block; font-style: normal; font-family: var(--sans);
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--slate); margin-top: 20px;
}
.article-note {
  font-size: 14.5px; line-height: 1.6; color: var(--ink-46);
  margin: 2.4em 0 0; padding-top: 1.4em; border-top: 1px solid var(--line-soft);
  text-wrap: pretty;
}

/* continue reading */
.more { border-top: 1px solid var(--line); margin-top: 4px; }
.more-row {
  display: grid; grid-template-columns: 160px 1fr; gap: 40px;
  padding: 34px 0; border-bottom: 1px solid var(--line); align-items: baseline;
}
.more-row .entry-topic { padding-top: 4px; }
.more-row a {
  font-family: var(--serif); font-weight: 400; font-size: clamp(22px, 2.3vw, 28px);
  line-height: 1.14; letter-spacing: -0.01em; color: var(--ink); text-decoration: none;
  transition: color .2s ease; text-wrap: balance;
}
.more-row a:hover { color: var(--teal); }

@media (max-width: 720px) {
  .entry { grid-template-columns: 1fr; gap: 12px; }
  .entry-meta { flex-direction: row; gap: 16px; align-items: baseline; padding-top: 0; }
  .more-row { grid-template-columns: 1fr; gap: 8px; }
}
