.pathway-screen {
  min-height: 85vh;
  display: grid;
  place-items: center;
  padding: 24px 16px;
  box-sizing: border-box;
  background: #edf2ee;
}
.pathway-card {
  width: min(100%, 880px);
  box-sizing: border-box;
  padding: clamp(24px, 5vw, 56px);
  text-align: center;
  background: #fff;
  border: 1px solid #d9dfd9;
  border-radius: 20px;
  box-shadow: 0 16px 48px #173d2520;
  color: #25352d;
}
.pathway-brand { color: #665033; font-weight: 700; }
.pathway-card h1 { font-size: clamp(2rem, 5vw, 3rem); line-height: 1.15; margin: 20px 0; }
.pathway-intro { font-size: clamp(1.25rem, 3vw, 1.65rem); line-height: 1.5; }
.pathway-card > p { margin-bottom: 20px; line-height: 1.5; }
.pathway-options { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; margin-top: 32px; }
.pathway-button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 28px 20px;
  border: 2px solid #245241;
  border-radius: 12px;
  background: #245241;
  color: #fff;
  text-decoration: none;
  font-size: 1.25rem;
  line-height: 1.4;
}
.pathway-button strong { font-size: 1.75rem; }
.pathway-button--employment { background: #f6f1e9; border-color: #80623b; color: #40321f; }
.pathway-action { font-size: 1rem; font-weight: 700; }
.pathway-button:hover { filter: brightness(0.93); }
.pathway-button:focus-visible, .pathway-back:focus-visible { outline: 3px solid #a96e12; outline-offset: 5px; }
.pathway-back { display: inline-block; margin-top: 28px; color: #245241; font-size: 1.1rem; }
@media (max-width: 640px) { .pathway-options { grid-template-columns: 1fr; } }
