.portu-review-page {
  --portu-green: #12c75a;
  --portu-green-dark: #087d3b;
  --portu-purple: #1d0753;
  --portu-ink: #071c36;
  --portu-muted: #526474;
  --portu-line: #d8e5ed;
  --portu-soft: #f4fbf7;
  --portu-warn: #fff7e8;
  --portu-danger: #fff2f1;
  overflow-wrap: break-word;
}

.portu-review-page .article-hero {
  align-items: start;
}

.portu-review-page .article-sidebar {
  top: 164px;
}

.portu-review-page .article-hero > div:first-child {
  min-width: 0;
}

.portu-review-page .article-hero-card {
  overflow: hidden;
  border-color: #cfe3d8;
  background: linear-gradient(160deg, #ffffff 0%, #f2fcf6 100%);
}

.portu-review-page .article-hero-card > img {
  aspect-ratio: 1198 / 627;
  object-fit: cover;
  background: #fff;
}

.portu-review-page .article-lead strong {
  color: var(--portu-purple);
}

.portu-eyebrow-row,
.portu-chip-row,
.portu-action-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.portu-status-chip,
.portu-chip,
.portu-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: .02em;
}

.portu-status-chip,
.portu-chip {
  gap: 7px;
  padding: 7px 11px;
}

.portu-status-chip {
  border: 1px solid #aee4c3;
  background: #eafbf1;
  color: #086c35;
}

.portu-status-chip::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--portu-green);
  content: "";
}

.portu-chip {
  border: 1px solid #d6e3eb;
  background: #fff;
  color: var(--portu-ink);
}

.portu-kicker {
  margin-bottom: 9px;
  padding: 5px 9px;
  background: #eafbf1;
  color: #08773a;
  text-transform: uppercase;
}

.portu-age-risk {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  margin: 18px 0;
  padding: 14px 16px;
  border: 1px solid #f0d4a5;
  border-left: 5px solid #e19a22;
  border-radius: 8px;
  background: var(--portu-warn);
  color: #5f4215;
}

.portu-age-risk > strong:first-child {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 1rem;
}

.portu-age-risk p,
.portu-affiliate-note p {
  margin: 0;
}

.portu-affiliate-note {
  margin-top: 13px;
  padding: 13px 15px;
  border: 1px solid var(--portu-line);
  border-radius: 8px;
  background: #f7fafc;
  color: #405463;
  font-size: .88rem;
  line-height: 1.55;
}

.portu-evidence-shot {
  overflow: hidden;
  margin: 22px 0 0;
  border: 1px solid var(--portu-line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(7, 28, 54, .07);
}

.portu-evidence-shot > img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #fff;
}

.portu-evidence-shot figcaption {
  padding: 13px 16px;
  border-top: 1px solid var(--portu-line);
  color: #405564;
  font-size: .86rem;
  line-height: 1.55;
}

.portu-evidence-shot figcaption strong {
  color: var(--portu-ink);
}

.portu-hero-score {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 18px;
}

.portu-score-ring {
  --score-value: 90;
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #fff 57%, transparent 58%),
    conic-gradient(var(--portu-green) calc(var(--score-value) * 1%), #dbe7e1 0);
  color: var(--portu-purple);
  font-size: 1.35rem;
  font-weight: 950;
  line-height: 1;
}

.portu-hero-score strong {
  display: block;
  color: var(--portu-ink);
  font-size: 1.05rem;
}

.portu-hero-score p {
  margin: 5px 0 0;
  color: var(--portu-muted);
  font-size: .9rem;
  line-height: 1.5;
}

.portu-quick-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid var(--portu-line);
}

.portu-quick-facts > div {
  min-width: 0;
  padding: 14px 16px;
  border-right: 1px solid var(--portu-line);
  border-bottom: 1px solid var(--portu-line);
}

.portu-quick-facts > div:nth-child(even) {
  border-right: 0;
}

.portu-quick-facts dt {
  margin-bottom: 4px;
  color: var(--portu-muted);
  font-size: .73rem;
  font-weight: 800;
  text-transform: uppercase;
}

.portu-quick-facts dd {
  margin: 0;
  color: var(--portu-ink);
  font-size: .95rem;
  font-weight: 900;
  line-height: 1.35;
}

.portu-sidebar-cta {
  display: grid;
  gap: 9px;
  margin-top: 14px;
}

.portu-sidebar-cta .button {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.portu-sidebar-note {
  margin: 14px 0 0;
  padding: 13px;
  border: 1px solid #f0d4a5;
  border-radius: 8px;
  background: var(--portu-warn);
  color: #604617;
  font-size: .84rem;
  line-height: 1.52;
}

.portu-verdict,
.portu-tool,
.portu-decision-tool,
.portu-final-cta {
  margin-bottom: 22px;
  border: 1px solid var(--portu-line);
  border-radius: 10px;
  box-shadow: 0 16px 38px rgba(7, 28, 54, .07);
}

.portu-verdict {
  overflow: hidden;
  background: linear-gradient(145deg, #f1fcf5 0%, #fff 58%, #f7f3ff 100%);
}

.portu-verdict-main {
  padding: clamp(20px, 4vw, 32px);
}

.portu-verdict-main h2,
.portu-tool-head h2,
.portu-final-cta h2 {
  margin: 0 0 12px;
  color: var(--portu-ink);
}

.portu-verdict-main > p {
  margin: 0 0 16px;
  color: #334b5c;
  font-size: 1.02rem;
  line-height: 1.7;
}

.portu-verdict-grid,
.portu-audit-grid,
.portu-product-grid,
.portu-risk-grid,
.portu-fit-grid,
.portu-sources-grid,
.portu-score-grid,
.portu-scenario-grid {
  display: grid;
  gap: 14px;
}

.portu-verdict-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--portu-line);
  background: rgba(255, 255, 255, .76);
  padding: 18px;
}

.portu-verdict-card,
.portu-audit-card,
.portu-product-card,
.portu-risk-card,
.portu-fit-card,
.portu-score-card,
.portu-scenario-card {
  min-width: 0;
  border: 1px solid var(--portu-line);
  border-radius: 8px;
  background: #fff;
  padding: 17px;
}

.portu-verdict-card h3,
.portu-audit-card h3,
.portu-product-card h3,
.portu-risk-card h3,
.portu-fit-card h3,
.portu-score-card h3,
.portu-scenario-card h3 {
  margin: 0 0 8px;
  color: var(--portu-ink);
  font-size: 1.02rem;
  line-height: 1.3;
}

.portu-verdict-card p,
.portu-audit-card p,
.portu-product-card p,
.portu-risk-card p,
.portu-fit-card p,
.portu-score-card p,
.portu-scenario-card p {
  margin: 0;
  color: var(--portu-muted);
  font-size: .91rem;
  line-height: 1.58;
}

.portu-audit-grid,
.portu-product-grid,
.portu-risk-grid,
.portu-fit-grid,
.portu-score-grid,
.portu-scenario-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 17px;
}

.portu-audit-card--corrected {
  border-color: #f0c8c4;
  background: #fff8f7;
}

.portu-audit-card--current {
  border-color: #b7e3c8;
  background: #f4fcf7;
}

.portu-fact-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin: 18px 0;
  border: 1px solid var(--portu-line);
  border-radius: 8px;
  background: var(--portu-line);
}

.portu-fact-strip > div {
  min-width: 0;
  padding: 16px;
  background: #fff;
}

.portu-fact-strip span,
.portu-result-card span,
.portu-score-row > span:first-child {
  display: block;
  color: var(--portu-muted);
  font-size: .75rem;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.portu-fact-strip strong {
  display: block;
  margin-top: 5px;
  color: var(--portu-purple);
  font-size: 1.08rem;
  line-height: 1.3;
}

.portu-score-card {
  padding: 19px;
}

.portu-score-card--total {
  display: grid;
  place-items: center;
  text-align: center;
  background: linear-gradient(145deg, #f0fcf5, #fff);
}

.portu-score-card--total .portu-score-ring {
  width: 104px;
  height: 104px;
  margin-bottom: 13px;
  font-size: 1.7rem;
}

.portu-score-list {
  display: grid;
  gap: 14px;
}

.portu-score-row {
  display: grid;
  grid-template-columns: minmax(150px, 190px) minmax(100px, 1fr) 52px;
  gap: 12px;
  align-items: center;
}

.portu-score-row > span:first-child {
  color: var(--portu-ink);
  font-size: .8rem;
  text-transform: none;
}

.portu-score-bar {
  display: block;
  width: 100%;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #e3ebe7;
}

.portu-score-bar i {
  display: block;
  width: var(--portu-score-width, 50%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--portu-green), #6bd78f);
}

.portu-score-row b {
  color: var(--portu-purple);
  text-align: right;
}

.portu-product-card {
  position: relative;
  padding-top: 48px;
}

.portu-product-card > span:first-child,
.portu-scenario-card > span:first-child {
  position: absolute;
  top: 15px;
  left: 17px;
  color: var(--portu-green-dark);
  font-size: .74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.portu-product-card ul,
.portu-fit-card ul,
.portu-risk-card ul {
  margin: 11px 0 0;
  padding-left: 18px;
  color: #405564;
  font-size: .9rem;
  line-height: 1.58;
}

.portu-product-card li + li,
.portu-fit-card li + li,
.portu-risk-card li + li {
  margin-top: 5px;
}

.portu-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 17px 0;
  border: 1px solid var(--portu-line);
  border-radius: 8px;
  background: #fff;
  -webkit-overflow-scrolling: touch;
}

.portu-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  color: #2f4656;
  font-size: .9rem;
}

.portu-table th,
.portu-table td {
  padding: 13px 14px;
  border-right: 1px solid #e3ebf0;
  border-bottom: 1px solid #e3ebf0;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  vertical-align: top;
  line-height: 1.48;
  text-align: left;
}

.portu-table th:last-child,
.portu-table td:last-child {
  border-right: 0;
}

.portu-table tbody tr:last-child td {
  border-bottom: 0;
}

.portu-table thead th {
  background: #f0f7f4;
  color: var(--portu-ink);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.portu-table tbody tr:nth-child(even) {
  background: #fbfdfc;
}

.portu-table strong {
  color: var(--portu-ink);
}

.portu-table small {
  display: block;
  margin-top: 4px;
  color: var(--portu-muted);
  line-height: 1.4;
}

.portu-note,
.portu-warning,
.portu-source-note,
.portu-tax-note {
  margin: 17px 0;
  padding: 15px 17px;
  border: 1px solid var(--portu-line);
  border-left: 5px solid var(--portu-green);
  border-radius: 8px;
  background: var(--portu-soft);
  color: #344c5a;
  line-height: 1.62;
}

.portu-note p,
.portu-warning p,
.portu-source-note p,
.portu-tax-note p {
  margin: 0;
}

.portu-warning {
  border-color: #f0d4a5;
  border-left-color: #e19a22;
  background: var(--portu-warn);
  color: #654718;
}

.portu-tax-note {
  border-color: #cfddef;
  border-left-color: #377ed3;
  background: #f3f8fe;
}

.portu-tool,
.portu-decision-tool {
  overflow: hidden;
  background: #fff;
}

.portu-tool-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
  padding: clamp(19px, 4vw, 28px);
  background: linear-gradient(135deg, var(--portu-purple), #382077);
  color: #fff;
}

.portu-tool-head h2,
.portu-tool-head p {
  color: inherit;
}

.portu-tool-head p {
  max-width: 680px;
  margin: 0;
  opacity: .86;
  line-height: 1.6;
}

.portu-tool-badge {
  flex: 0 0 auto;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  font-size: .75rem;
  font-weight: 900;
  white-space: nowrap;
}

.portu-calculator-body {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(310px, .88fr);
  gap: 0;
}

.portu-calculator-controls,
.portu-calculator-results,
.portu-decision-body {
  padding: clamp(18px, 4vw, 28px);
}

.portu-calculator-controls {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

.portu-field {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.portu-field--wide {
  grid-column: 1 / -1;
}

.portu-field label,
.portu-field legend,
.portu-question legend {
  color: var(--portu-ink);
  font-size: .86rem;
  font-weight: 900;
  line-height: 1.4;
}

.portu-field input,
.portu-field select {
  width: 100%;
  min-height: 46px;
  border: 1px solid #bacbd5;
  border-radius: 7px;
  background: #fff;
  color: var(--portu-ink);
  padding: 9px 11px;
  font: inherit;
}

.portu-field input:focus,
.portu-field select:focus {
  outline: 3px solid rgba(18, 199, 90, .2);
  border-color: var(--portu-green-dark);
}

.portu-field small {
  color: var(--portu-muted);
  font-size: .76rem;
  line-height: 1.42;
}

.portu-calculator-results {
  display: grid;
  align-content: start;
  gap: 12px;
  border-left: 1px solid var(--portu-line);
  background: #f5faf7;
}

.portu-result-card {
  padding: 15px;
  border: 1px solid #d7e5dd;
  border-radius: 8px;
  background: #fff;
}

.portu-result-card--primary {
  border-color: #a9dfbd;
  background: linear-gradient(145deg, #edfbf2, #fff);
}

.portu-result-card strong {
  display: block;
  margin-top: 5px;
  color: var(--portu-purple);
  font-size: clamp(1.2rem, 3vw, 1.55rem);
  line-height: 1.2;
}

.portu-result-card small {
  display: block;
  margin-top: 5px;
  color: var(--portu-muted);
  font-size: .76rem;
  line-height: 1.42;
}

.portu-tool-foot {
  padding: 15px clamp(18px, 4vw, 28px);
  border-top: 1px solid var(--portu-line);
  background: #f8fafb;
  color: #526474;
  font-size: .8rem;
  line-height: 1.55;
}

.portu-tool-foot p {
  margin: 0;
}

.portu-scenario-card {
  position: relative;
  padding-top: 48px;
}

.portu-scenario-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--portu-purple);
  font-size: 1.18rem;
}

.portu-process {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  counter-reset: portu-step;
}

.portu-process-step {
  position: relative;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  counter-increment: portu-step;
}

.portu-process-step::before {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--portu-purple);
  color: #fff;
  content: counter(portu-step);
  font-weight: 900;
}

.portu-process-step > div {
  padding: 2px 0 16px;
  border-bottom: 1px solid var(--portu-line);
}

.portu-process-step:last-child > div {
  border-bottom: 0;
}

.portu-process-step h3 {
  margin: 0 0 7px;
  color: var(--portu-ink);
}

.portu-process-step p {
  margin: 0;
  color: #405564;
  line-height: 1.62;
}

.portu-archive-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.portu-archive-gallery figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--portu-line);
  border-radius: 8px;
  background: #fff;
}

.portu-archive-gallery img {
  display: block;
  width: 100%;
  height: auto;
  background: #f5f7f8;
}

.portu-archive-gallery figcaption {
  padding: 10px 12px;
  color: var(--portu-muted);
  font-size: .75rem;
  line-height: 1.45;
}

.portu-compare-winner {
  color: #08773a;
  font-weight: 900;
}

.portu-decision-body {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  gap: 20px;
}

.portu-question-list {
  display: grid;
  gap: 16px;
}

.portu-question {
  min-width: 0;
  margin: 0;
  padding: 0 0 15px;
  border: 0;
  border-bottom: 1px solid var(--portu-line);
}

.portu-question:last-child {
  border-bottom: 0;
}

.portu-choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 9px;
}

.portu-choice-row label {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 40px;
  padding: 8px 11px;
  border: 1px solid #bfd0da;
  border-radius: 7px;
  background: #fff;
  color: #334b5c;
  cursor: pointer;
  font-size: .85rem;
  font-weight: 800;
}

.portu-choice-row label:has(input:checked) {
  border-color: var(--portu-green-dark);
  background: #edfbf2;
  color: #086c35;
}

.portu-choice-row input {
  accent-color: var(--portu-green-dark);
}

.portu-fit-result {
  align-self: start;
  position: sticky;
  top: 92px;
  padding: 20px;
  border: 1px solid #c9dbd1;
  border-radius: 9px;
  background: #f3fbf6;
}

.portu-fit-result[data-fit="mixed"] {
  border-color: #f0d4a5;
  background: var(--portu-warn);
}

.portu-fit-result[data-fit="low"] {
  border-color: #efc6c1;
  background: var(--portu-danger);
}

.portu-fit-result h3 {
  margin: 0 0 8px;
  color: var(--portu-ink);
}

.portu-fit-result > p {
  margin: 0;
  color: #405564;
  line-height: 1.6;
}

.portu-fit-result ul {
  margin: 13px 0 0;
  padding-left: 18px;
  color: #405564;
  font-size: .86rem;
  line-height: 1.56;
}

.portu-pros-cons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

.portu-pros,
.portu-cons {
  padding: 20px;
  border: 1px solid var(--portu-line);
  border-radius: 8px;
  background: #fff;
}

.portu-pros {
  border-top: 5px solid var(--portu-green);
}

.portu-cons {
  border-top: 5px solid #dd7c72;
}

.portu-pros h2,
.portu-cons h2 {
  margin-top: 0;
  color: var(--portu-ink);
}

.portu-pros ul,
.portu-cons ul {
  margin-bottom: 0;
  padding-left: 20px;
  color: #3d5362;
  line-height: 1.65;
}

.portu-pros li + li,
.portu-cons li + li {
  margin-top: 7px;
}

.portu-faq details {
  border: 1px solid var(--portu-line);
  border-radius: 8px;
  background: #fff;
}

.portu-faq details + details {
  margin-top: 10px;
}

.portu-faq summary {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: center;
  padding: 15px 17px;
  color: var(--portu-ink);
  cursor: pointer;
  font-weight: 900;
  line-height: 1.45;
}

.portu-faq summary::after {
  flex: 0 0 auto;
  color: var(--portu-green-dark);
  content: "+";
  font-size: 1.4rem;
}

.portu-faq details[open] summary::after {
  content: "−";
}

.portu-faq details p {
  margin: 0;
  padding: 0 17px 17px;
  color: #405564;
  line-height: 1.65;
}

.portu-sources-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 17px;
}

.portu-source-link {
  display: grid;
  gap: 6px;
  min-width: 0;
  min-height: 126px;
  padding: 16px;
  border: 1px solid var(--portu-line);
  border-radius: 8px;
  background: #fff;
  color: inherit;
  text-decoration: none;
}

.portu-source-link:hover,
.portu-source-link:focus-visible {
  border-color: var(--portu-green-dark);
  box-shadow: 0 10px 25px rgba(8, 125, 59, .1);
}

.portu-source-link span {
  color: var(--portu-green-dark);
  font-size: .73rem;
  font-weight: 900;
  text-transform: uppercase;
}

.portu-source-link strong {
  color: var(--portu-ink);
  line-height: 1.35;
}

.portu-source-link small {
  color: var(--portu-muted);
  line-height: 1.48;
}

.portu-author-card {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--portu-line);
  border-radius: 8px;
  background: #f8fafb;
}

.portu-author-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.portu-author-card h3 {
  margin: 0 0 5px;
  color: var(--portu-ink);
}

.portu-author-card p {
  margin: 0;
  color: var(--portu-muted);
  font-size: .88rem;
  line-height: 1.55;
}

.portu-final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: clamp(20px, 4vw, 30px);
  border-color: #b5dec4;
  background: linear-gradient(135deg, #edfbf2, #fff 68%);
}

.portu-final-cta p {
  margin: 0;
  color: #405564;
  line-height: 1.6;
}

.portu-mobile-cta {
  display: none;
}

.portu-transfer-lab {
  display: grid;
  gap: 17px;
  margin-top: 22px;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid #b5dec4;
  border-left: 5px solid var(--portu-green);
  border-radius: 10px;
  background: linear-gradient(145deg, #eefbf3, #fff 72%);
}

.portu-transfer-lab h3,
.portu-transfer-lab p {
  margin-top: 0;
}

.portu-transfer-lab h3 {
  margin-bottom: 8px;
  color: var(--portu-ink);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
}

.portu-transfer-lab > div:first-child > p {
  margin-bottom: 0;
  color: var(--portu-muted);
}

.portu-transfer-form,
.portu-transfer-results {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.portu-transfer-form .portu-field {
  background: #fff;
}

.portu-transfer-results {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.portu-transfer-results > div {
  min-width: 0;
  padding: 15px;
  border: 1px solid #cfe3d8;
  border-radius: 8px;
  background: #fff;
}

.portu-transfer-results span,
.portu-transfer-results strong {
  display: block;
}

.portu-transfer-results span {
  color: var(--portu-muted);
  font-size: .76rem;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.portu-transfer-results strong {
  margin-top: 6px;
  color: var(--portu-purple);
  font-size: clamp(1.1rem, 2.4vw, 1.45rem);
  line-height: 1.2;
}

.portu-transfer-note {
  margin-bottom: 0;
  padding-top: 13px;
  border-top: 1px solid #cfe3d8;
  color: #405564;
  font-size: .84rem;
  line-height: 1.55;
}

.portu-review-page section[id],
.portu-review-page form[id] {
  scroll-margin-top: 164px;
}

@media (max-width: 1040px) {
  .portu-verdict-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portu-fact-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portu-calculator-body,
  .portu-decision-body {
    grid-template-columns: 1fr;
  }

  .portu-calculator-results {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--portu-line);
    border-left: 0;
  }

  .portu-result-card--primary {
    grid-column: 1 / -1;
  }

  .portu-fit-result {
    position: static;
  }
}

@media (min-width: 841px) {
  .portu-table th:first-child,
  .portu-table td:first-child {
    min-width: 128px;
  }
}

@media (max-width: 840px) {
  .portu-table-wrap {
    overflow: visible;
    border: 0;
    background: transparent;
  }

  .portu-stack-table {
    min-width: 0;
    border-collapse: separate;
    border-spacing: 0 10px;
  }

  .portu-stack-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .portu-stack-table tbody,
  .portu-stack-table tr,
  .portu-stack-table td {
    display: block;
    width: 100%;
  }

  .portu-stack-table tr {
    overflow: hidden;
    border: 1px solid var(--portu-line);
    border-radius: 8px;
    background: #fff;
  }

  .portu-stack-table td {
    display: grid;
    grid-template-columns: minmax(100px, 36%) minmax(0, 1fr);
    gap: 10px;
    border-right: 0;
    text-align: left;
  }

  .portu-stack-table td::before {
    color: var(--portu-muted);
    content: attr(data-label);
    font-size: .72rem;
    font-weight: 900;
    line-height: 1.4;
    text-transform: uppercase;
  }

  .portu-stack-table td:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 760px) {
  .portu-review-page {
    padding-bottom: 68px;
  }

  .portu-review-page section[id],
  .portu-review-page form[id] {
    scroll-margin-top: 148px;
  }

  .portu-eyebrow-row,
  .portu-chip-row,
  .portu-action-row {
    align-items: stretch;
  }

  .portu-action-row .button,
  .portu-review-page .article-actions .button {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .portu-age-risk {
    align-items: start;
  }

  .portu-verdict-grid,
  .portu-audit-grid,
  .portu-product-grid,
  .portu-risk-grid,
  .portu-fit-grid,
  .portu-score-grid,
  .portu-scenario-grid,
  .portu-sources-grid,
  .portu-pros-cons,
  .portu-archive-gallery,
  .portu-calculator-controls,
  .portu-calculator-results,
  .portu-transfer-form,
  .portu-transfer-results {
    grid-template-columns: 1fr;
  }

  .portu-result-card--primary,
  .portu-field--wide {
    grid-column: auto;
  }

  .portu-tool-head {
    display: grid;
  }

  .portu-tool-badge {
    white-space: normal;
  }

  .portu-score-row {
    grid-template-columns: minmax(0, 1fr) 48px;
    gap: 7px 10px;
  }

  .portu-score-bar {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .portu-score-row b {
    grid-column: 2;
    grid-row: 1;
  }

  .portu-final-cta {
    grid-template-columns: 1fr;
  }

  .portu-author-card {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .portu-author-card img {
    width: 60px;
    height: 60px;
  }

  .portu-mobile-cta {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    align-items: center;
    padding: 9px max(12px, env(safe-area-inset-right)) calc(9px + env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-left));
    border-top: 1px solid #b9d5c3;
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 -8px 28px rgba(7, 28, 54, .14);
    backdrop-filter: blur(10px);
  }

  .portu-mobile-cta .button {
    min-height: 44px;
    padding: 9px 12px;
    justify-content: center;
    text-align: center;
  }

  .portu-mobile-cta a:last-child {
    color: var(--portu-purple);
    font-size: .8rem;
    font-weight: 900;
  }
}

@media (max-width: 440px) {
  .portu-quick-facts,
  .portu-fact-strip {
    grid-template-columns: 1fr;
  }

  .portu-quick-facts > div {
    border-right: 0;
  }

  .portu-hero-score {
    grid-template-columns: 70px minmax(0, 1fr);
  }

  .portu-score-ring {
    width: 68px;
    height: 68px;
  }

  .portu-stack-table td {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .portu-review-page *,
  .portu-review-page *::before,
  .portu-review-page *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .portu-review-page .site-header,
  .portu-review-page .site-footer,
  .portu-review-page .article-sidebar,
  .portu-review-page .article-actions,
  .portu-review-page .portu-sidebar-cta,
  .portu-review-page .portu-mobile-cta,
  .portu-review-page .portu-choice-row,
  .portu-review-page .button {
    display: none !important;
  }

  .portu-review-page .article-layout,
  .portu-review-page .article-hero,
  .portu-review-page .portu-calculator-body,
  .portu-review-page .portu-decision-body {
    display: block !important;
  }

  .portu-review-page .article-card-box,
  .portu-review-page .portu-tool,
  .portu-review-page .portu-verdict {
    break-inside: avoid;
    box-shadow: none;
  }
}
