/* ============================================================
   Methodology page (pc-meth-* namespace). Loaded directly on
   page-methodology.hbs, so it is not processed by purgecss.
   ============================================================ */

.pc-meth {
  background: #fbf8f2;
}

/* ---- Part divider: a numbered, ruled header that splits the page
   into its two halves (the Index, the Forward Calls). ---- */
.pc-meth-part {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(56px, 7vw, 96px) 32px clamp(20px, 3vw, 32px);
}
.pc-meth-part__rule {
  display: flex;
  align-items: baseline;
  gap: 22px;
  padding-bottom: 22px;
  border-bottom: 2px solid #0a2540;
}
.pc-meth-part__num {
  font-family: var(--pc-serif, "Minion Pro", Georgia, serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 500;
  line-height: 0.9;
  color: #ec6659;
  font-variant-numeric: tabular-nums;
}
.pc-meth-part__heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pc-meth-part__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #586173;
}
.pc-meth-part__title {
  font-family: var(--pc-serif, "Minion Pro", Georgia, serif);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #0a2540;
  margin: 0;
}
.pc-meth-part__lead {
  max-width: 64ch;
  margin: 22px 0 0;
  font-size: 17px;
  line-height: 1.6;
  color: #425466;
}

/* ---- Generic content block within a part ---- */
.pc-meth-block {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(28px, 3.5vw, 44px) 32px;
}
.pc-meth-block__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ec6659;
  margin: 0 0 18px;
}
.pc-meth-block__h {
  font-family: var(--pc-serif, "Minion Pro", Georgia, serif);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 500;
  line-height: 1.15;
  color: #0a2540;
  margin: 0 0 18px;
}

/* ---- 2x2 components grid ---- */
.pc-meth-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.pc-meth-card {
  background: #fff;
  border: 1px solid #e3ebf0;
  border-radius: 12px;
  padding: 28px 30px;
  box-shadow: 0 1px 2px rgba(10, 37, 64, 0.04);
}
.pc-meth-card__num {
  font-family: var(--pc-serif, "Minion Pro", Georgia, serif);
  font-size: 15px;
  font-weight: 600;
  color: #ec6659;
  font-variant-numeric: tabular-nums;
}
.pc-meth-card__h {
  font-family: var(--pc-serif, "Minion Pro", Georgia, serif);
  font-size: 22px;
  font-weight: 500;
  color: #0a2540;
  margin: 8px 0 10px;
}
.pc-meth-card__p {
  font-size: 15px;
  line-height: 1.6;
  color: #425466;
  margin: 0;
}

/* ---- Two-column split (prose + ordered steps) ---- */
.pc-meth-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  /* Center the shorter right-hand list against the taller left column. */
  align-items: center;
  background: #f4f0e7;
  border: 1px solid #e3ebf0;
  border-radius: 16px;
  padding: clamp(28px, 3.5vw, 48px);
}
.pc-meth-split__body p {
  font-size: 16px;
  line-height: 1.65;
  color: #425466;
  margin: 0 0 16px;
}
.pc-meth-split__body p:last-child {
  margin-bottom: 0;
}
.pc-meth-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: step;
}
.pc-meth-steps li {
  position: relative;
  padding: 0 0 18px 46px;
  margin: 0;
  font-size: 15.5px;
  line-height: 1.5;
  color: #0a2540;
  border-bottom: 1px solid rgba(10, 37, 64, 0.1);
}
.pc-meth-steps li + li {
  padding-top: 18px;
}
.pc-meth-steps li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.pc-meth-steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #0a2540;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.pc-meth-steps li + li::before {
  top: 18px;
}

/* ---- Plain principle list ---- */
.pc-meth-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 70ch;
}
.pc-meth-list li {
  position: relative;
  padding: 16px 0 16px 26px;
  border-top: 1px solid #e3ebf0;
  font-size: 16px;
  line-height: 1.55;
  color: #425466;
}
.pc-meth-list li:last-child {
  border-bottom: 1px solid #e3ebf0;
}
.pc-meth-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ec6659;
}
.pc-meth-list strong {
  color: #0a2540;
  font-weight: 600;
}

/* ---- Closing CTA ---- */
.pc-meth-cta {
  background: radial-gradient(120% 130% at 80% 0%, #143655, #0a2540 60%);
  color: #fff;
}
.pc-meth-cta__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(56px, 6vw, 84px) 32px;
}
.pc-meth-cta__h {
  font-family: var(--pc-serif, "Minion Pro", Georgia, serif);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 500;
  color: #fff;
  margin: 12px 0 14px;
}
.pc-meth-cta__p {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.76);
  max-width: 56ch;
  margin: 0 0 28px;
}
.pc-meth-cta__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 760px) {
  .pc-meth-grid {
    grid-template-columns: 1fr;
  }
  .pc-meth-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
