/* Isolated article styles. Does not supply the site quiz, header or footer. */
.rp-normalized {
  --rp-green: #0d4639;
  --rp-green-2: #1c6652;
  --rp-green-soft: #eef5f1;
  --rp-gold: #bd861d;
  --rp-gold-soft: #fbf4e5;
  --rp-ink: #17342d;
  --rp-muted: #667973;
  --rp-line: #d6e1dc;
  --rp-paper: #ffffff;
  --rp-page: #f3f7f5;
  --rp-reading: 790px;
  --rp-feature: 940px;
}

.rp-normalized, .rp-normalized * { box-sizing: border-box; }

.rp-normalized {
  margin: 0;
  color: var(--rp-ink);
  background: var(--rp-page);
  font-family: Inter, Arial, sans-serif;
}

.rp-normalized a { color: var(--rp-green-2); text-underline-offset: 0.18em; }


.rp-normalized {
  width: min(calc(100% - 32px), 1320px);
  margin: 28px auto 80px;
  padding: 48px 24px 72px;
  background: var(--rp-paper);
}

.rp-normalized__meta,
.rp-normalized__title {
  width: min(100%, var(--rp-feature));
  margin-right: auto;
  margin-left: auto;
}
.rp-normalized__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  margin-bottom: 20px;
  color: var(--rp-muted);
  font-size: 14px;
}
.rp-normalized__category {
  color: var(--rp-gold);
  font-weight: 800;
  text-transform: uppercase;
}
.rp-normalized__author a { font-weight: 700; }
.rp-normalized__title {
  margin-top: 0;
  margin-bottom: 34px;
  color: var(--rp-green);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(46px, 5.2vw, 78px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.rp-normalized__cover,
.rp-normalized__summary {
  width: min(100%, var(--rp-feature));
  margin-right: auto;
  margin-left: auto;
}
.rp-normalized__cover {
  aspect-ratio: 16 / 9;
  margin-top: 0;
  margin-bottom: 28px;
  overflow: hidden;
  border: 1px solid var(--rp-line);
  border-radius: 18px;
  background: var(--rp-green-soft);
  box-shadow: 0 18px 52px rgba(13, 70, 57, 0.11);
}
.rp-normalized__cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rp-normalized__summary {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 22px;
  align-items: start;
  margin-bottom: 54px;
  padding: 26px 30px;
  border-top: 3px solid var(--rp-gold);
  background: var(--rp-gold-soft);
}
.rp-normalized__summary-label {
  padding-top: 3px;
  color: var(--rp-gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.rp-normalized__summary p { margin: 0; font-size: 20px; line-height: 1.55; }

.rp-article-layout {
  position: relative;
  width: 100%;
  min-height: 600px;
}
.rp-article-layout__aside {
  position: absolute;
  top: 0;
  left: calc(50% + 410px);
  width: 200px;
}
.rp-article-toc {
  position: sticky;
  top: 24px;
  padding: 22px 20px;
  border: 1px solid var(--rp-line);
  border-radius: 14px;
  background: #f7faf8;
}
.rp-article-toc__title {
  margin: 0 0 16px;
  color: var(--rp-green);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.rp-article-toc ol,
.rp-article-toc-mobile ol { margin: 0; padding: 0; list-style: none; }
.rp-article-toc li + li,
.rp-article-toc-mobile li + li { margin-top: 11px; }
.rp-article-toc a,
.rp-article-toc-mobile a {
  color: #31554b;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.32;
  text-decoration: none;
}
.rp-article-toc a:hover { color: var(--rp-gold); }
.rp-article-toc-mobile { display: none; }

.rp-article {
  width: min(100%, var(--rp-reading));
  margin: 0 auto;
}
.rp-article-content { font-size: 19px; line-height: 1.72; }
.rp-article-content p { margin: 0 0 28px; }
.rp-article-content h2 {
  margin: 62px 0 22px;
  color: var(--rp-green);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(34px, 3.5vw, 48px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.025em;
  scroll-margin-top: 26px;
}
.rp-article-content h3 {
  margin: 36px 0 12px;
  color: var(--rp-green);
  font-size: 22px;
  line-height: 1.25;
}
.rp-article-content ul,
.rp-article-content ol { margin: 0 0 32px; padding-left: 26px; }
.rp-article-content li { margin: 8px 0; padding-left: 5px; }
.rp-article-lead {
  margin-bottom: 34px !important;
  font-size: 24px;
  line-height: 1.58;
}
.rp-article-lead::first-letter {
  float: left;
  margin: 0.04em 0.1em 0 0;
  color: var(--rp-green);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 4.4em;
  line-height: 0.72;
}
.rp-article-lead__accent { font-weight: 800; }
.rp-article-figure {
  margin: 38px 0 44px;
}
.rp-article-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 14px 38px rgba(13, 70, 57, 0.09);
}
.rp-article-figure figcaption {
  margin-top: 10px;
  color: var(--rp-muted);
  font-size: 13px;
  line-height: 1.45;
}
.rp-article-callout {
  margin: 38px 0;
  padding: 26px 30px;
  border-left: 4px solid var(--rp-green-2);
  border-radius: 0 14px 14px 0;
  background: var(--rp-green-soft);
}
.rp-article-callout p:last-child { margin-bottom: 0; }

.rp-route-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 30px 0 36px;
}
.rp-route-card {
  padding: 24px;
  border: 1px solid var(--rp-line);
  border-radius: 14px;
  background: #f8fbf9;
}
.rp-route-card__label {
  display: block;
  margin-bottom: 8px;
  color: var(--rp-gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.rp-route-card h3 {
  margin: 0 0 10px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 27px;
  font-weight: 500;
}
.rp-route-card p {
  margin: 0;
  color: #31554b;
  font-size: 16px;
  line-height: 1.55;
}
.rp-choice-list {
  padding-left: 0 !important;
  list-style: none;
}
.rp-choice-list li {
  position: relative;
  padding: 13px 0 13px 28px;
  border-bottom: 1px solid var(--rp-line);
}
.rp-choice-list li::before {
  position: absolute;
  top: 19px;
  left: 4px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--rp-gold);
  content: '';
  transform: rotate(45deg);
}

.rp-article-faq { margin-top: 66px; }
.rp-article-faq > h2 { margin-bottom: 24px; }
.rp-article-faq details { border-top: 1px solid var(--rp-line); }
.rp-article-faq details:last-child { border-bottom: 1px solid var(--rp-line); }
.rp-article-faq summary {
  position: relative;
  padding: 20px 42px 20px 0;
  color: var(--rp-green);
  cursor: pointer;
  font-size: 19px;
  font-weight: 800;
  list-style: none;
}
.rp-article-faq summary::-webkit-details-marker { display: none; }
.rp-article-faq summary::after {
  position: absolute;
  top: 17px;
  right: 4px;
  content: '+';
  color: var(--rp-gold);
  font-size: 26px;
}
.rp-article-faq details[open] summary::after { content: '−'; }
.rp-article-faq details p { padding-right: 32px; }

.rp-read-next {
  margin-top: 72px;
  padding-top: 28px;
  border-top: 2px solid var(--rp-gold);
}
.rp-read-next__eyebrow {
  margin: 0 0 8px;
  color: var(--rp-gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.rp-read-next > h2 { margin-top: 0; }
.rp-read-next__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.rp-read-next__item {
  min-height: 126px;
  padding: 20px;
  border: 1px solid var(--rp-line);
  border-radius: 12px;
  color: var(--rp-green);
  text-decoration: none;
}
.rp-read-next__item:hover { border-color: var(--rp-gold); transform: translateY(-1px); }
.rp-read-next__topic {
  display: block;
  margin-bottom: 8px;
  color: var(--rp-gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.rp-read-next__item strong { font-size: 17px; line-height: 1.35; }

.rp-final-cta {
  margin-top: 64px;
  padding: 34px;
  border-radius: 16px;
  color: #fff;
  background: var(--rp-green);
}
.rp-final-cta h2 { margin: 0 0 16px; color: #fff; }
.rp-final-cta p { margin-bottom: 22px; color: #e7f2ed; }
.rp-final-cta__button {
  display: inline-flex;
  padding: 15px 21px;
  border-radius: 8px;
  color: #17342d;
  background: #f5dda4;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 1240px) {
  .rp-article-layout__aside { display: none; }
  .rp-article-toc-mobile {
    display: block;
    width: min(100%, var(--rp-reading));
    margin: 0 auto 34px;
    border: 1px solid var(--rp-line);
    border-radius: 12px;
    background: #f7faf8;
  }
  .rp-article-toc-mobile > summary {
    padding: 17px 20px;
    color: var(--rp-green);
    cursor: pointer;
    font-weight: 800;
  }
  .rp-article-toc-mobile > nav { padding: 0 20px 20px; }
}

@media (max-width: 720px) {
  
  .rp-normalized {
    width: 100%;
    margin: 0;
    padding: 30px 18px 56px;
  }
  .rp-normalized__title { margin-bottom: 24px; font-size: clamp(32px, 11vw, 48px); }
  .rp-normalized__cover { margin-bottom: 20px; border-radius: 12px; }
  .rp-normalized__summary {
    display: block;
    margin-bottom: 38px;
    padding: 20px;
  }
  .rp-normalized__summary-label { display: block; margin-bottom: 10px; }
  .rp-normalized__summary p { font-size: 17px; }
  .rp-article-content { font-size: 17px; line-height: 1.68; }
  .rp-article-lead { font-size: 20px; }
  .rp-article-content h2 { margin-top: 48px; font-size: 34px; }
  .rp-article-content h3 { font-size: 20px; }
  .rp-article-callout,
  .rp-final-cta { padding: 23px 20px; }
  .rp-route-grid { grid-template-columns: 1fr; }
  .rp-route-card { padding: 21px; }
  .rp-read-next__grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  
  .rp-normalized, .rp-normalized * { transition: none !important; }
}

.rp-sources {
  margin-top: 58px;
  padding: 0 22px;
  border: 1px solid var(--rp-line);
  border-radius: 14px;
  background: #f8fbf9;
}
.rp-sources summary {
  padding: 19px 0;
  color: var(--rp-green);
  cursor: pointer;
  font-weight: 800;
}
.rp-sources ul { margin-top: 0; padding-bottom: 4px; }
.rp-sources li { font-size: 15px; line-height: 1.5; }
.rp-sources__note { color: var(--rp-muted); font-size: 14px; }

.rp-table-scroll{overflow-x:auto;margin:30px 0;border:1px solid var(--rp-line);border-radius:12px}.rp-table-scroll table{width:100%;border-collapse:collapse;font-size:17px;line-height:1.5}.rp-table-scroll th,.rp-table-scroll td{padding:16px;text-align:left;vertical-align:top;border-bottom:1px solid var(--rp-line)}.rp-table-scroll th{background:var(--rp-green-soft);font-weight:700}
@media(max-width:600px){.rp-table-scroll th,.rp-table-scroll td{padding:10px;font-size:14px}.rp-normalized__title{font-size:clamp(30px,10vw,46px);overflow-wrap:break-word}.rp-final-cta{padding:24px}.rp-final-cta__button{max-width:100%;text-align:center}}
