.pcl-page {
  background: #f7fbf8;
  color: #17352a;
}

.pcl-main {
  padding-top: calc(var(--site-header-offset) + 0.5rem);
}

.pcl-shell {
  width: min(100%, 1160px);
  margin: 0 auto;
  padding-inline: clamp(1rem, 4vw, 1.5rem);
}

.pcl-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  color: #60786b;
  font-size: 0.9rem;
}

.pcl-breadcrumb a,
.pcl-next-card,
.pcl-disclosure a {
  color: #176b45;
}

.pcl-hero {
  padding: 0 0 0.8rem;
}

.pcl-hero picture,
.pcl-hero img {
  display: block;
  width: 100%;
}

.pcl-hero img {
  max-height: min(54vw, 520px);
  object-fit: cover;
  border-radius: 1.5rem;
  box-shadow: 0 1.2rem 3rem rgba(27, 79, 55, 0.13);
}

.pcl-section {
  padding: clamp(2.4rem, 6vw, 5rem) 0;
}

.pcl-intro-section {
  padding-top: clamp(2rem, 5vw, 4rem);
}

.pcl-intro-grid,
.pcl-decision-grid,
.pcl-next-grid,
.pcl-method-grid {
  display: grid;
  gap: 1.4rem;
}

.pcl-intro-grid {
  grid-template-columns: minmax(0, 1.6fr) minmax(260px, 0.8fr);
  align-items: start;
}

.pcl-kicker {
  margin: 0 0 0.7rem;
  color: #2f875d;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pcl-page h1,
.pcl-page h2,
.pcl-page h3 {
  color: #17352a;
  line-height: 1.12;
}

.pcl-page h1 {
  max-width: 16ch;
  margin: 0;
  font-size: clamp(2.25rem, 6vw, 4.6rem);
  letter-spacing: -0.045em;
}

.pcl-page h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 3.5vw, 2.7rem);
  letter-spacing: -0.03em;
}

.pcl-page h3 {
  margin: 0 0 0.6rem;
  font-size: 1.18rem;
}

.pcl-lead,
.pcl-section-lead,
.pcl-copy {
  max-width: 70ch;
  margin: 1.1rem 0 0;
  color: #456356;
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
  line-height: 1.7;
}

.pcl-section-lead,
.pcl-copy {
  font-size: 1rem;
}

.pcl-disclosure {
  padding: 1.25rem;
  border: 1px solid #b9dec7;
  border-radius: 1rem;
  background: #eaf7ef;
  color: #315b47;
  line-height: 1.6;
}

.pcl-disclosure strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #155c3b;
}

.pcl-disclosure p {
  margin: 0 0 0.8rem;
}

.pcl-disclosure-wide {
  max-width: 820px;
  margin-bottom: 2.5rem;
}

.pcl-criteria-grid,
.pcl-profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.pcl-card,
.pcl-profile,
.pcl-faq,
.pcl-next-card {
  border: 1px solid #d4e4da;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 0.7rem 2rem rgba(31, 91, 61, 0.06);
}

.pcl-card,
.pcl-profile {
  padding: 1.25rem;
}

.pcl-card p,
.pcl-profile p {
  margin: 0;
  color: #4c6658;
  line-height: 1.65;
}

.pcl-table-section {
  background: #edf7f0;
}

.pcl-table-wrap {
  overflow-x: auto;
  margin-top: 1.5rem;
  border: 1px solid #c9dfd1;
  border-radius: 1rem;
  background: #fff;
}

.pcl-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
  text-align: left;
}

.pcl-table th,
.pcl-table td {
  padding: 1rem;
  border-bottom: 1px solid #e1ede5;
  vertical-align: top;
  color: #456356;
  line-height: 1.55;
}

.pcl-table thead th {
  background: #f4faf6;
  color: #1c4934;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pcl-table tbody th {
  min-width: 150px;
  color: #17352a;
}

.pcl-table tr:last-child th,
.pcl-table tr:last-child td {
  border-bottom: 0;
}

.pcl-decision-section {
  background: #17352a;
  color: #eef9f1;
}

.pcl-decision-section h2,
.pcl-decision-section .pcl-kicker {
  color: #fff;
}

.pcl-decision-grid {
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  align-items: start;
}

.pcl-step-list {
  display: grid;
  gap: 0.9rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: pcl-step;
}

.pcl-step-list li {
  display: grid;
  grid-template-columns: 2.3rem minmax(0, 1fr);
  gap: 0.8rem;
  align-items: start;
  color: #d7ebdd;
  line-height: 1.6;
  counter-increment: pcl-step;
}

.pcl-step-list li::before {
  display: grid;
  width: 2.3rem;
  height: 2.3rem;
  place-items: center;
  border-radius: 50%;
  background: #79c698;
  color: #17352a;
  content: counter(pcl-step);
  font-weight: 800;
}

.pcl-faq-list {
  display: grid;
  gap: 0.75rem;
}

.pcl-faq {
  padding: 1rem 1.2rem;
}

.pcl-faq summary {
  cursor: pointer;
  color: #1e4c36;
  font-weight: 750;
}

.pcl-faq p {
  max-width: 72ch;
  margin: 0.9rem 0 0;
  color: #4c6658;
  line-height: 1.7;
}

.pcl-next-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pcl-next-card {
  display: grid;
  gap: 0.45rem;
  padding: 1.25rem;
  text-decoration: none;
}

.pcl-next-card span {
  color: #698071;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pcl-next-card strong {
  color: #176b45;
  font-size: 1.05rem;
}

.pcl-method-hero {
  padding-top: clamp(2rem, 5vw, 4.5rem);
  background: linear-gradient(135deg, #edf8f0, #f7fbf8 60%);
}

@media (max-width: 760px) {
  .pcl-intro-grid,
  .pcl-decision-grid,
  .pcl-next-grid,
  .pcl-criteria-grid,
  .pcl-profile-grid,
  .pcl-method-grid {
    grid-template-columns: 1fr;
  }

  .pcl-page h1 {
    max-width: none;
  }

  .pcl-hero img {
    max-height: 70vw;
    border-radius: 1rem;
  }
}
