/**
 * wc-ct-content-list.css
 * Shared styles for rights and misconceptions sections.
 * Source: WeConnect-ClinicalTrials_v3-02MAR2026.html lines 144–196
 */

/* ── Section background modifier ── */
.wc-section--grey {
  background: var(--grey-bg);
}

/* ── Rights list ── */
.rights-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.right-item {
  padding: var(--sp-md);
  padding-left: var(--sp-lg);
  border-left: 3px solid var(--salmon);
  background: var(--white);
  border-radius: 0 6px 6px 0;
  position: relative;
}

.right-item-title {
  font-family: 'Playfair Display', serif;
  font-size: var(--t-h3);
  font-weight: 700;
  font-style: italic;
  color: var(--dark);
  margin-bottom: var(--sp-xs);
  line-height: 1.3;
}

.right-item-body {
  font-size: var(--t-small);
  color: var(--body-text);
  line-height: 1.7;
  overflow-wrap: break-word;
}

/* ── Misconceptions list ── */
.misconceptions-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--grey-light);
  border-radius: 6px;
  overflow: hidden;
}

.misconception-card {
  background: var(--white);
  padding: var(--sp-md) var(--sp-lg);
}

.misconception-card:nth-child(even) {
  background: var(--grey-bg);
}

.misconception-quote {
  font-family: 'Playfair Display', serif;
  font-size: var(--t-h3);
  font-weight: 700;
  font-style: italic;
  color: var(--red-mid);
  margin-bottom: var(--sp-xs);
  line-height: 1.35;
}

.misconception-response {
  font-size: var(--t-small);
  color: var(--body-text);
  line-height: 1.7;
  overflow-wrap: break-word;
}

/* ── Gap cards (diversity page) ── */
.gap-cards {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.gap-card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-left: 4px solid var(--red-mid);
  border-radius: 0 6px 6px 0;
  padding: var(--sp-md) var(--sp-lg);
  transition: border-color .2s, box-shadow .2s;
}

.gap-card:hover {
  border-left-color: var(--red-bright);
  box-shadow: 0 2px 12px rgba(69,10,10,.06);
}

.gap-card-title {
  font-size: var(--t-h3);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: var(--sp-xs);
  line-height: 1.3;
}

.gap-card-body {
  font-size: var(--t-body);
  color: var(--body-text);
  line-height: 1.8;
  overflow-wrap: break-word;
}