

.impx-tabsec {
  padding-top: clamp(28px, 4vw, 48px);
}

.impx-tabs {
  margin-top: 0;
}

.impx-block + .impx-block {
  margin-top: clamp(56px, 8vw, 96px);
}

.impx-block .lead + .node-label {
  margin-top: 14px;
}

.impx-block {
  display: block;
}

.impx-tabs > .apply-tabnav {
  gap: 12px;
}

.impx-tabs > .apply-tabnav > .apply-tab {
  padding: 14px 28px;
  font-size: 1.06rem;
}

.impx-tabs > .apply-panel {
  padding-top: clamp(28px, 4vw, 44px);
}

@media (max-width: 560px) {
  .impx-tabs > .apply-tabnav > .apply-tab {
    padding: 12px 14px;
    font-size: 0.98rem;
  }
}

.fpx-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

@media (max-width: 760px) {
  .fpx-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

.fpx-card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  text-align: left;
  font: inherit;
  color: inherit;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  box-shadow: 0 9px 24px rgba(61, 85, 39, 0.08), 0 1px 4px rgba(61, 85, 39, 0.05);
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.fpx-card::before {
  content: "";
  position: absolute;
  right: 22px;
  top: -6px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--path);
  z-index: 3;
  pointer-events: none;
}

.fpx-card:hover {
  border-color: var(--leaf-700);
  box-shadow: 0 16px 34px rgba(61, 85, 39, 0.14), 0 2px 6px rgba(61, 85, 39, 0.06);
  transform: translateY(-2px);
}

.fpx-card:focus-visible {
  outline: 2px solid var(--leaf-700);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .fpx-card { transition: none; }
  .fpx-card:hover { transform: none; }
}

.fpx-photo {
  display: block;
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--honey);
  overflow: hidden;
}

.fpx-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.fpx-card:hover .fpx-photo img {
  transform: scale(1.04);
}

@media (prefers-reduced-motion: reduce) {
  .fpx-photo img,
  .fpx-card:hover .fpx-photo img { transition: none; transform: none; }
}

.fpx-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px 22px 22px;
}

.fpx-tag {
  align-self: flex-start;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--sun);
  color: var(--deep);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.3;
}

.fpx-name {
  margin-top: 12px;
  font-size: 1.16rem;
  font-weight: 800;
  line-height: 1.5;
  color: var(--deep);
}

.fpx-cue {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 16px;
  color: var(--leaf-700);
  font-size: 0.94rem;
  font-weight: 700;
}

.fpx-arrow {
  transition: transform 180ms ease;
}

.fpx-card:hover .fpx-arrow {
  transform: translateX(4px);
}

@media (prefers-reduced-motion: reduce) {
  .fpx-arrow, .fpx-card:hover .fpx-arrow { transition: none; transform: none; }
}

.idx-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.idx-item {
  position: relative;
}

.idx-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  list-style: none;
  cursor: pointer;
  padding: 15px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--deep);
  font-size: 1rem;
  font-weight: 700;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.idx-chip::-webkit-details-marker {
  display: none;
}

.idx-chip::after {
  content: "i";
  flex: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--sun);
  color: var(--deep);
  font-family: var(--font-en);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 20px;
  text-align: center;
}

.idx-item:hover .idx-chip,
.idx-item[open] .idx-chip {
  background: var(--honey);
  border-color: var(--leaf-700);
  color: var(--leaf-700);
}

.idx-chip:focus-visible {
  outline: 2px solid var(--leaf-700);
  outline-offset: 3px;
}

.idx-pop {
  position: absolute;
  z-index: 14;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid var(--leaf-700);
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: 0 16px 34px rgba(61, 85, 39, 0.18);
}

.idx-pop p {
  margin: 0;
  color: var(--ink);
  font-size: 0.94rem;
  line-height: 1.85;
}

@media (hover: hover) and (pointer: fine) {
  .idx-item:hover::details-content {
    content-visibility: visible;
  }
}

@media (max-width: 640px) {
  .idx-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .idx-pop {
    position: static;
    margin-top: 8px;
    box-shadow: none;
  }
}

.rsx-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

@media (min-width: 1360px) {
  .rsx-grid {
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  }
}

.rsx-tablebox {
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  padding: clamp(14px, 1.6vw, 20px);
}

.rsx-tabletitle {
  margin: 0 0 14px;
  color: var(--deep);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.5;
}

.rsx-swipe {
  display: none;
  margin: -6px 0 12px;
  color: var(--earth);
  font-size: 0.8rem;
  font-weight: 700;
}

@media (max-width: 520px) {
  .rsx-swipe {
    display: block;
  }
}

.rsx-tablewrap {
  min-width: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.rsx-table {
  width: 100%;
  min-width: 400px;
  border-collapse: separate;
  border-spacing: 0;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}

.rsx-table th,
.rsx-table td {
  padding: 11px 8px;
  font-size: 0.88rem;
  line-height: 1.5;
}

.rsx-nb {
  white-space: nowrap;
}

.rsx-table thead th {
  background: var(--deep);
  color: var(--white);
  font-weight: 700;
  text-align: right;
  white-space: normal;
}

.rsx-table thead th:first-child {
  text-align: left;
  border-radius: 10px 0 0 10px;
}

.rsx-table thead th:last-child {
  border-radius: 0 10px 10px 0;
}

.rsx-table tbody th {
  text-align: left;
  white-space: nowrap;
  color: var(--deep);
  font-weight: 800;
}

.rsx-table tbody td {
  text-align: right;
  white-space: nowrap;
  color: var(--ink);
}

.rsx-table tbody th,
.rsx-table tbody td {
  border-bottom: 1px solid var(--line);
}

.rsx-table tbody tr:last-child th,
.rsx-table tbody tr:last-child td {
  border-bottom: 0;
}

.rsx-table tbody tr.is-sig th,
.rsx-table tbody tr.is-sig td {
  background: var(--white);
  border-top: 1.5px solid var(--path);
  border-bottom: 1.5px solid var(--path);
}

.rsx-table tbody tr.is-sig th {
  border-left: 1.5px solid var(--path);
  border-radius: 10px 0 0 10px;
}

.rsx-table tbody tr.is-sig td:last-child {
  border-right: 1.5px solid var(--path);
  border-radius: 0 10px 10px 0;
}

.rsx-table tbody tr.is-sig .rsx-p {
  font-weight: 800;
  color: var(--deep);
}

.rsx-legend {
  margin: 14px 4px 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.7;
}

.rsx-card {
  min-width: 0;
  background: rgba(142, 196, 87, 0.16);
  border: 1px solid rgba(78, 135, 24, 0.3);
  border-radius: var(--card-radius);
  padding: clamp(20px, 3vw, 28px);
}

.rsx-card__lead {
  margin: 0;
  color: var(--deep);
  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1.8;
}

.rsx-card__sub {
  margin: 20px 0 0;
  color: var(--deep);
  font-size: 0.94rem;
  font-weight: 800;
}

.rsx-findings {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.rsx-findings > li {
  background: var(--white);
  border: 1px solid rgba(78, 135, 24, 0.22);
  border-radius: 16px;
  padding: 14px 16px;
}

.rsx-find__name {
  display: block;
  color: var(--leaf-700);
  font-size: 0.95rem;
  font-weight: 800;
}

.rsx-find__desc {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.8;
}

.rsx-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.rsx-chip {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--deep);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.4;
}

.rsx-note {
  margin: 14px 4px 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.85;
}

.rsx-actions {
  margin: 18px 4px 2px;
}
.rsx-actions .button-primary {
  display: inline-flex;
  align-items: center;
}

.impx-block .signal-row {
  margin-top: 34px;
}

.impx-block .story-quote.impact-cite + .signal-row {
  margin-top: 26px;
}

.exit-sign[hidden] { display: none; }

#impact-numbers-title,
#impact-numbers-title + .lead,
#prepost-title + .section-subhead,
.impx-lead-wide,
.impx-cta p {
  max-width: none;
  text-wrap: pretty;
}

@media (min-width: 901px) {
  .impx-block,
  .impx-cta {
    container-type: inline-size;
  }

  .impx-lead-wide {
    font-size: clamp(0.92rem, 2.05cqi, 1.08rem);
  }

  .impx-cta p {
    font-size: clamp(0.93rem, 2.41cqi, 1rem);
  }
}

.rpx-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
  gap: 16px;
  align-items: stretch;
}

.rpx-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 24px 20px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  box-shadow: 0 9px 24px rgba(61, 85, 39, 0.08), 0 1px 4px rgba(61, 85, 39, 0.05);
}

.rpx-card::before {
  content: "";
  position: absolute;
  right: 22px;
  top: -6px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--path);
  pointer-events: none;
}

.rpx-card--sun {
  border-color: rgba(245, 182, 45, 0.6);
}

.rpx-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rpx-no {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--deep);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 34px;
  text-align: center;
}

.rpx-card--sun .rpx-no {
  background: var(--amber);
  color: var(--deep);
}

.rpx-title {
  margin: 0;
  color: var(--deep);
  font-size: 1.14rem;
  font-weight: 800;
  line-height: 1.4;
}

.rpx-delta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin-top: 18px;
}

.rpx-delta__num {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--leaf-700);
  font-size: 1.88rem;
  font-weight: 800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}

.rpx-delta__arrow {
  flex: none;
  width: 20px;
  height: 20px;
}

.rpx-sig {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 2px 6px;
  padding: 6px 10px;
  border: 1px solid var(--leaf-700);
  border-radius: 10px;
  color: var(--deep);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.45;
}

.rpx-card--sun .rpx-sig {
  border-color: var(--wheat);
}

.rpx-sig b {
  font-weight: 800;
  white-space: nowrap; 
}

.rpx-sig i {
  font-style: italic; 
}

.rpx-bars {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px 10px;
  margin-top: 18px;
}

.rpx-bar__label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.rpx-bar__track {
  position: relative;
  height: 16px;
  border-radius: 5px;
  background: rgba(61, 85, 39, 0.08);
  overflow: hidden;
}

.rpx-bar__fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--brand-green); 
}

.rpx-bar__fill--pre {
  background: rgba(142, 196, 87, 0.45); 
}

.rpx-card--sun .rpx-bar__fill {
  background: var(--wheat);
}

.rpx-card--sun .rpx-bar__fill--pre {
  background: var(--sun);
}

.rpx-bar__num {
  color: var(--deep);
  font-size: 0.92rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}

.rpx-axis {
  grid-column: 2;
  display: flex;
  justify-content: space-between;
  margin-top: -3px;
  color: rgba(61, 85, 39, 0.55);
  font-size: 0.68rem;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.rpx-listlead {
  margin: 18px 0 0;
  color: var(--deep);
  font-size: 0.92rem;
  font-weight: 800;
}

.rpx-list {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}

.rpx-list li {
  position: relative;
  padding-left: 16px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.rpx-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--leaf);
}

.rpx-card--sun .rpx-list li::before {
  background: var(--wheat);
}

.rpx-rollup {
  margin-top: 26px;
}

.rpx-rollup > .rollup__body {
  padding: 0 20px 20px;
}

.rpx-rollup .rsx-tablebox {
  border: 0;
  border-radius: 0;
  padding: 0;
}

.stu-schools { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 34px; }
.stu-school { border-radius: var(--card-radius); background: #fff; border: 1px solid var(--line); box-shadow: 0 10px 26px rgba(61, 85, 39, 0.08); overflow: hidden; }

.stu-school-head { list-style: none; cursor: pointer; display: grid; grid-template-columns: minmax(0, 1fr) auto auto; grid-template-areas: "logo count chev"; align-items: center; column-gap: clamp(14px, 1.8vw, 22px); padding: clamp(18px, 2vw, 22px) clamp(16px, 2vw, 24px); }
.stu-school-head::-webkit-details-marker { display: none; }
.stu-school-head:hover { background: rgba(142, 196, 87, 0.08); }
.stu-school-logo { grid-area: logo; display: flex; align-items: center; justify-content: flex-start; height: 52px; }
.stu-school-logo img { display: block; max-height: 100%; max-width: min(250px, 100%); width: auto; height: auto; object-fit: contain; }

.stu-school-logo--tall { height: 64px; }
.stu-school-name { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0; }
.stu-school-head--named { grid-template-columns: auto minmax(0, 1fr) auto auto; grid-template-areas: "logo name count chev"; }
.stu-school-head--named .stu-school-name { grid-area: name; position: static; width: auto; height: auto; margin: 0; overflow: visible; clip: auto; clip-path: none; white-space: normal; font-weight: 800; font-size: clamp(1.12rem, 1.5vw, 1.3rem); line-height: 1.4; letter-spacing: 0.02em; color: var(--deep); }
.stu-school-count { grid-area: count; font-size: 0.82rem; font-weight: 700; line-height: 1; white-space: nowrap; color: var(--deep); background: rgba(142, 196, 87, 0.18); padding: 7px 12px; border-radius: 999px; }
@media (max-width: 600px) {
  .stu-school-head { grid-template-columns: minmax(0, 1fr) auto; grid-template-areas: "logo chev" "count chev"; row-gap: 0; padding-block: 18px; }
  .stu-school-head--named { grid-template-columns: minmax(0, 1fr) auto; grid-template-areas: "logo chev" "name chev" "count chev"; }
  .stu-school-head--named .stu-school-name { margin-top: 10px; }
  .stu-school-logo { height: 44px; }
  .stu-school-logo img { max-width: min(210px, 100%); }
  .stu-school-logo--tall { height: 56px; }
  .stu-school-count { justify-self: start; margin-top: 12px; }
}
.stu-school-chev { grid-area: chev; position: relative; width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line); transition: transform 0.2s ease, background 0.2s ease; }
.stu-school-chev::before { content: ""; position: absolute; left: 50%; top: 50%; width: 8px; height: 8px; border-right: 2px solid var(--leaf-700); border-bottom: 2px solid var(--leaf-700); transform: translate(-50%, -65%) rotate(45deg); }
.stu-school[open] .stu-school-chev { transform: rotate(180deg); background: rgba(142, 196, 87, 0.16); }
.stu-school-body { padding: 0 clamp(16px, 2vw, 22px) clamp(16px, 2vw, 22px); display: grid; gap: 12px; }
.stu-school .stu-voice { border-radius: 14px; background: rgba(142, 196, 87, 0.09); padding: 14px 16px; }
.stu-voice-name { margin: 0 0 2px; font-size: 1rem; color: var(--deep); }
.stu-voice-meta { margin: 0 0 12px; font-size: 0.78rem; line-height: 1.7; color: var(--earth); }
.stu-voice-quote { margin: 0; padding: 0 0 0 12px; border-left: 3px solid var(--leaf); font-size: 0.88rem; line-height: 1.85; color: var(--muted); }

.fp-modal { overflow-y: auto; align-items: flex-start; }
.fp-modal .fp-modal__panel { max-height: none; overflow: visible; margin: auto 0; }

.rpx-statsbtn { margin: 26px 0 0; }

@media (max-width: 760px) {
  .signal-row.impx-h { grid-template-columns: 1fr; gap: 12px; }
  .signal-row.impx-h > div {
    display: grid;
    grid-template-columns: minmax(96px, auto) 1fr;
    column-gap: 16px;
    align-items: center;
    text-align: left;
    min-height: 0;
    aspect-ratio: auto;
  }
  .signal-row.impx-h > div strong { grid-row: 1 / 3; }
  .signal-row.impx-h > div .signal-source { align-self: start; margin-top: 2px; text-align: left; }
  .signal-row.impx-h:not(.signal-row--terms) > div strong { justify-self: start; }

  .rpx-grid { grid-template-columns: 1fr; }
}

.collab-h2 { max-width: 30em; font-size: clamp(1.28rem, 2.2vw, 1.72rem); line-height: 1.65; }
.collab-blocks { display: grid; gap: clamp(20px, 3vw, 30px); margin-top: clamp(24px, 4vw, 40px); }
.collab-block {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  padding: clamp(22px, 3.6vw, 40px);
  box-shadow: 0 10px 26px rgba(61, 85, 39, 0.06);
}
.collab-head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 10px; margin: 0 0 10px; }
.collab-title { margin: 0; font-size: clamp(1.16rem, 2vw, 1.42rem); line-height: 1.5; color: var(--deep); }
.collab-dur { font-size: 0.78em; font-weight: 700; color: var(--sunset); letter-spacing: 0.02em; }
.collab-desc { margin: 0 0 18px; max-width: 42em; font-size: 0.95rem; line-height: 1.9; color: var(--muted); }
.collab-flow { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 14px; margin: 0 0 20px; }
.collab-flow-label { margin: 0; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.08em; color: var(--leaf-700); }
.collab-steps { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 10px; margin: 0; padding: 0; }
.collab-steps li {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 14px; border-radius: 999px;
  background: var(--honey); color: var(--deep);
  font-size: 0.85rem; font-weight: 700;
}
.collab-steps li::before { content: "✔"; color: var(--path); font-size: 0.82em; }
.collab-cases { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.collab-case {
  display: flex; flex-direction: column;
  border: 1px solid var(--line);
  border-radius: calc(var(--card-radius) - 6px);
  overflow: hidden; background: #fff;
}
.collab-case-photo { margin: 0; aspect-ratio: 16 / 10; overflow: hidden; background: var(--honey); }
.collab-case-photo img { display: block; width: 100%; height: 100%; object-fit: cover; }

.collab-case-link { display: block; }
.collab-case-link img { transition: transform 0.25s ease; }
.collab-case-link:hover img { transform: scale(1.03); }
.collab-case-link:focus-visible { outline: 2px solid var(--leaf-700); outline-offset: -2px; }
.collab-case-body { padding: 14px 18px 18px; display: flex; flex-direction: column; gap: 6px; }
.collab-case-no {
  align-self: flex-start; padding: 2px 10px; border-radius: 999px;
  background: var(--deep); color: #fff;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em;
}
.collab-case-name { font-size: 0.98rem; color: var(--deep); line-height: 1.55; }
.collab-case-line { margin: 0; font-size: 0.85rem; line-height: 1.75; color: var(--muted); }
.collab-case-line b { color: var(--leaf-700); font-weight: 800; }
.collab-case--nophoto .collab-case-body { padding-top: 18px; }

@media (max-width: 760px) {
.collab-cases { grid-template-columns: 1fr; }
}

.signal-row.impx-stats4 { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }

.signal-row.impx-stats4 > div { container-type: inline-size; aspect-ratio: 256 / 210; min-height: 0;  padding: clamp(10px, 10cqi, 32px) clamp(6px, 8cqi, 24px) clamp(9px, 9cqi, 28px); display: flex; flex-direction: column; align-items: center; justify-content: center; }
.signal-row.impx-stats4:not(.signal-row--terms) > div strong { font-size: clamp(1.05rem, 22cqi, 2.6rem); white-space: nowrap; }
.signal-row.impx-stats4 > div span { font-size: clamp(0.62rem, 9.5cqi, 0.92rem); line-height: 1.5; }

@media (max-width: 700px) {
  .signal-row.impx-stats4 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 12px; }
  .signal-row.signal-row--tag.impx-stats4 > div { aspect-ratio: auto; min-height: 0; padding: 18px 10px 16px; justify-content: flex-start; }
  .signal-row.signal-row--tag.impx-stats4 > div strong { margin: 0; padding: 4px 6px; }
  .signal-row.signal-row--tag.impx-stats4 > div span { margin-top: 6px; line-height: 1.4; }
}

#impact-collab-title.collab-h2 {
  font-size: 1.08rem;
  line-height: 1.9;
  font-weight: 500;
  color: var(--muted);

  max-width: none;
  margin-top: 10px;
}

.rpx-card .rpx-bar__fill { transition: width 1.4s cubic-bezier(0.25, 0.6, 0.3, 1); }
@media (prefers-reduced-motion: reduce) {
  .rpx-card .rpx-bar__fill { transition: none; }
}
