/* 합격전략 · 홈과 같은 사진 히어로 + 직무별 패널. 문서 골격 아님. */
body.gd {
  --ink: #0b1f3a;
  --text: #3d4a5c;
  --muted: #5c6b7a;
  --blue: #1560bd;
  --line: #e0e4ea;
  --soft: #f4f7fb;
  --paper: #f3f6fa;
  --card: #fff;
  --mist: #e8eef6;
  color: var(--text);
  background: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.65;
}
.ps-ink {
  font-family: Pretendard, "Noto Sans KR", sans-serif;
  font-weight: 800;
  font-style: normal;
  letter-spacing: 0.04em;
  line-height: 1.2;
  color: var(--blue);
}
body.gd h1, body.gd h2, body.gd h3, body.gd h4 {
  color: var(--ink);
  letter-spacing: -0.03em;
  word-break: keep-all;
}
.gd-skip {
  position: absolute; left: 12px; top: -40px; z-index: 80;
  padding: 8px 12px; background: var(--blue); color: #fff; border-radius: 6px; font-weight: 700;
}
.gd-skip:focus { top: 12px; }

.ps-jobs {
  position: sticky;
  top: 84px;
  z-index: 40;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.ps-jobs .inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.ps-lane {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}
.ps-lane:hover { border-color: var(--blue); color: var(--blue); }
.ps-lane[aria-selected="true"] {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.ps-hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  min-height: 600px;
  height: min(720px, calc(320px + 40vw));
  background-color: #0b1f3a;
  background-size: cover;
  background-position: center 22%;
  background-repeat: no-repeat;
  scroll-margin-top: 140px;
}
.ps-hero__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(100deg, rgba(6, 22, 48, 0.94) 0%, rgba(6, 22, 48, 0.88) 40%, rgba(6, 22, 48, 0.42) 68%, rgba(6, 22, 48, 0.12) 100%);
}
.ps-hero--teacher .ps-hero__overlay,
.ps-hero--gate .ps-hero__overlay {
  background:
    linear-gradient(100deg, rgba(6, 22, 48, 0.94) 0%, rgba(6, 22, 48, 0.88) 40%, rgba(6, 22, 48, 0.42) 68%, rgba(6, 22, 48, 0.12) 100%);
}
.ps-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--inner);
  margin: 0 auto;
  padding: 48px 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 420px);
  gap: 36px;
  align-items: center;
  box-sizing: border-box;
}
.ps-hero__kicker {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #9ec9f5;
}
.ps-hero--teacher .ps-hero__kicker { color: #b7f0c8; }
.ps-hero--gate .ps-hero__kicker { color: #ffd7b0; }
body.gd .ps-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(36px, 4.6vw, 46px);
  font-weight: 900;
  line-height: 1.22;
  color: #fff;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.28);
}
.ps-hero__copy {
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.55);
}
.ps-hero__lead {
  margin: 0 0 24px;
  max-width: 38rem;
}
.ps-hero__lead p {
  margin: 0;
  font-size: 20px;
  line-height: 1.7;
  font-weight: 600;
  color: #dceeff;
  word-break: keep-all;
}
.ps-hero__lead p + p { margin-top: 6px; }
.ps-hero__how {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
  max-width: 40rem;
}
.ps-hero__how li {
  position: relative;
  padding-left: 18px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  color: #f3f6fa;
  word-break: keep-all;
}
.ps-hero__how li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7eb6ff;
}
.ps-hero__how b {
  display: inline;
  margin-right: 4px;
  color: #7eb6ff;
  font-weight: 800;
}

.ps-panel {
  background: #10243f;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  padding: 20px 20px 16px;
}
.ps-hero--teacher .ps-panel,
.ps-hero--gate .ps-panel {
  border-color: rgba(255, 255, 255, 0.34);
}
.ps-panel__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 8px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}
body.gd .ps-panel__head b {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}
body.gd .ps-panel__head span {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  text-align: right;
}

.ps-facts {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
}
.ps-facts li {
  padding: 12px 0 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
.ps-facts li:last-child { border-bottom: 0; padding-bottom: 2px; }
.ps-facts__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.ps-facts__row span {
  font-size: 18px;
  font-weight: 800;
  color: #d7e8ff;
  flex: 0 0 auto;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}
body.gd .ps-facts strong {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  text-align: right;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
}
body.gd .ps-facts p {
  margin: 6px 0 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
  word-break: keep-all;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.ps-body {
  padding: 56px 0 48px;
  background-color: var(--paper);
  background-image:
    radial-gradient(rgba(50, 38, 20, 0.035) 0.7px, transparent 0.7px);
  background-size: 5px 5px;
}
.ps-body .inner { max-width: var(--inner); }
.ps-sect { margin: 0 0 52px; scroll-margin-top: 148px; }
.ps-define { scroll-margin-top: 148px; }
.ps-h {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  margin: 0 0 8px;
  width: max-content;
  max-width: 100%;
  font-size: 30px;
  font-weight: 900;
}
.ps-h .ps-ink {
  display: block;
  font-size: 18px;
  color: var(--blue);
}
.ps-h__t {
  display: inline-block;
  width: max-content;
  max-width: 100%;
  padding-bottom: 6px;
  border-bottom: 3px solid var(--blue);
}
.ps-sect__lead {
  margin: 0 0 22px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.75;
  color: var(--text);
  word-break: keep-all;
}

.ps-define {
  position: relative;
  margin: 0 0 44px;
  padding: 26px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 5px solid var(--blue);
  border-radius: 14px;
}
.ps-define .ps-ink {
  display: block;
  margin: 0 0 6px;
  font-size: 18px;
  color: var(--blue);
}
.ps-define h2 {
  margin: 0 0 10px;
  font-size: 30px;
  font-weight: 900;
}
.ps-define p {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.75;
  word-break: keep-all;
}

.ps-check {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.ps-check li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 10px;
  align-items: start;
  padding: 12px 16px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}
.ps-check li:last-child { border-bottom: 0; }
.ps-check em {
  font-style: normal;
  font-size: 18px;
  font-weight: 800;
  color: var(--blue);
  font-variant-numeric: tabular-nums;
  line-height: 1.45;
  padding-top: 1px;
}
.ps-check h3 {
  margin: 0 0 4px;
  font-size: 20px;
  font-weight: 800;
}
.ps-check p {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--text);
  word-break: keep-all;
}

.ps-drills {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}
.ps-drill {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 4px 16px 16px 16px;
  padding: 26px 28px;
}
.ps-drill__tag {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 800;
  color: var(--blue);
}
.ps-drill h3 {
  margin: 0 0 14px;
  font-size: 24px;
  font-weight: 800;
}
.ps-drill__stem {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.75;
  color: var(--text);
  word-break: keep-all;
}
.ps-drill__choices {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.ps-drill__choices li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 8px;
  padding: 14px 16px;
  background: var(--soft);
  border-radius: 10px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.55;
  color: var(--ink);
  word-break: keep-all;
}
.ps-drill__choices span {
  font-weight: 800;
  color: var(--blue);
}
.ps-drill__ans {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}
.ps-drill__ans summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 800;
  color: var(--blue);
}
.ps-drill__ans p {
  margin: 10px 0 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--text);
  word-break: keep-all;
}

.ps-plan { display: grid; gap: 16px; }
.ps-phase {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 4px 16px 16px 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(50, 36, 12, 0.05);
}
.ps-phase__head {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: start;
  padding: 20px 22px 16px;
  border-bottom: 1px solid var(--line);
  background: #f4f7fb;
}
.ps-phase__head em {
  font-style: normal;
  font-size: 24px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.ps-phase__head h3 {
  margin: 0 0 6px;
  font-size: 24px;
  font-weight: 800;
}
.ps-phase__head p {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.55;
  word-break: keep-all;
}
.ps-phase__weeks {
  margin: 0;
  padding: 8px 22px 16px;
  list-style: none;
  display: grid;
  gap: 0;
}
.ps-phase__weeks li {
  display: grid;
  gap: 4px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.ps-phase__weeks li:last-child { border-bottom: 0; }
.ps-phase__weeks b { font-size: 18px; font-weight: 800; }
.ps-phase__weeks span {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.65;
  color: var(--text);
  word-break: keep-all;
}

.ps-lessons { display: grid; gap: 28px; }
.ps-lesson {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0 0 8px;
}
.ps-lesson__head {
  padding: 26px 28px 10px;
}
.ps-lesson--teacher .ps-lesson__head { background: transparent; }
.ps-lesson__tag {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 800;
  color: var(--blue);
}
.ps-lesson--teacher .ps-lesson__tag { color: var(--blue); }
.ps-lesson__head h3 {
  margin: 0;
  width: max-content;
  max-width: 100%;
  font-size: 24px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.45;
  text-decoration: none;
  border: 0;
  background: none;
}
.ps-lesson__body {
  display: grid;
  gap: 16px;
  padding: 8px 28px 28px;
}
.ps-lesson__body p {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.85;
  color: var(--text);
  word-break: keep-all;
}

.ps-pills {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ps-pills li {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 10px 14px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 18px;
  font-weight: 800;
}
.ps-pills span { font-size: 16px; font-weight: 600; color: var(--ink); }
.ps-pills li.is-major { border-color: var(--blue); box-shadow: inset 3px 0 0 var(--blue); }

.ps-doors {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.ps-doors a {
  display: block;
  height: 100%;
  padding: 18px 18px 16px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 4px 14px 14px 14px;
  color: var(--ink);
}
.ps-doors a:hover { border-color: var(--blue); }
.ps-doors strong {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
}
.ps-doors i {
  display: inline-block;
  margin-left: 6px;
  font-style: normal;
  font-size: 16px;
  font-weight: 700;
  color: var(--blue);
}
.ps-doors em {
  display: block;
  margin-top: 8px;
  font-style: normal;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.55;
  color: var(--text);
  word-break: keep-all;
}

.ps-notice {
  padding: 20px 22px;
  background: #fff;
  border: 1px solid #b8d4f0;
  border-left: 5px solid var(--blue);
  border-radius: 12px;
}
.ps-notice b { display: block; font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.ps-notice p { margin: 0; font-size: 18px; font-weight: 600; line-height: 1.65; word-break: keep-all; }

.ps-offices {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ps-offices a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
}
.ps-offices a:hover { border-color: var(--blue); color: var(--blue); }

.ps-src { font-weight: 700; color: var(--blue); }

.ps-lib {
  margin: 8px 0 32px;
  padding: 20px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 5px solid var(--blue);
  border-radius: 12px;
}
.ps-lib p {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.7;
  color: var(--text);
  word-break: keep-all;
}
.ps-lib p + p { margin-top: 12px; }
.ps-lib a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--blue);
  border-radius: 8px;
  color: var(--blue);
  font-size: 16px;
  font-weight: 800;
}
.ps-lib a:hover { background: var(--blue); color: #fff; }

.ps-howto { padding-top: 28px; }
.ps-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 28px;
}
.ps-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.ps-step__head {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  padding: 18px 20px 8px;
}
.ps-step__head em {
  font-style: normal;
  font-size: 24px;
  font-weight: 900;
  color: var(--blue);
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
}
.ps-step__head h3 {
  margin: 0 0 6px;
  font-size: 24px;
  font-weight: 800;
  word-break: keep-all;
}
.ps-step__head p {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.65;
  color: var(--text);
  word-break: keep-all;
}
.ps-step__site { margin-top: 8px !important; }
.ps-step__site a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.ps-step__pins {
  margin: 0;
  padding: 0 20px 18px 72px;
  list-style: none;
}
.ps-step__pins li {
  position: relative;
  padding: 4px 0 4px 14px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.55;
  color: var(--text);
  word-break: keep-all;
}
.ps-step__pins li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

.ps-screen { margin: 8px 16px 16px; }
.ps-screen__cap {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--muted);
}
.ps-chrome {
  border: 1px solid #c5d0de;
  border-radius: 12px;
  overflow: hidden;
  background: #f7f9fc;
  box-shadow: 0 10px 28px rgba(21, 96, 189, 0.08);
}
.ps-chrome__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: #e8eef6;
  border-bottom: 1px solid #d5deea;
}
.ps-chrome__bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c9d3e0;
}
.ps-chrome__bar em {
  margin-left: 8px;
  font-style: normal;
  font-size: 16px;
  font-weight: 700;
  color: var(--muted);
}
.ps-chrome__head {
  padding: 10px 16px;
  background: var(--blue);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
}
.ps-chrome__search {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 8px;
  align-items: center;
  margin: 14px 16px;
  padding: 8px 10px;
  background: #fff;
  border: 2px solid var(--blue);
  border-radius: 8px;
}
.ps-chrome__search span {
  font-size: 16px;
  font-weight: 800;
  color: var(--blue);
}
.ps-chrome__search b {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
}
.ps-chrome__search em {
  font-style: normal;
  padding: 6px 12px;
  background: var(--blue);
  color: #fff;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 800;
}
.ps-chrome__hits {
  margin: 0 16px 16px;
  padding: 0;
  list-style: none;
}
.ps-chrome__hits li {
  padding: 12px 14px;
  background: #fff;
  border: 1px solid #d5deea;
  border-radius: 8px;
  margin-bottom: 8px;
}
.ps-chrome__hits li:last-child { margin-bottom: 0; }
.ps-chrome__hits strong { display: block; font-size: 18px; font-weight: 800; }
.ps-chrome__hits span { display: block; margin-top: 4px; font-size: 16px; font-weight: 600; color: var(--muted); }

.ps-chrome__pdf { margin: 0; padding: 8px 0 12px; }
.ps-chrome__pdf > div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 8px;
  padding: 10px 16px;
  border-bottom: 1px solid #e4ebf3;
  background: #fff;
}
.ps-chrome__pdf > div.is-on { background: #e8f1fb; }
.ps-chrome__pdf dt { font-size: 16px; font-weight: 800; color: var(--blue); }
.ps-chrome__pdf dd { margin: 0; font-size: 18px; font-weight: 700; color: var(--ink); word-break: keep-all; }

.ps-chrome__form {
  display: grid;
  gap: 10px;
  padding: 14px 16px 16px;
}
.ps-chrome__form label {
  display: grid;
  gap: 4px;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid #d5deea;
  border-radius: 8px;
}
.ps-chrome__form span { font-size: 16px; font-weight: 800; color: var(--blue); }
.ps-chrome__form b {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  padding: 6px 8px;
  background: #e8f1fb;
  border-radius: 6px;
}
.ps-chrome__form small { font-size: 16px; font-weight: 600; color: var(--muted); }

.ps-chrome__doc { padding: 12px 16px 16px; display: grid; gap: 10px; }
.ps-chrome__doc article {
  padding: 12px 14px;
  background: #fff;
  border: 1px solid #d5deea;
  border-radius: 8px;
}
.ps-chrome__doc h4 { margin: 0 0 6px; font-size: 16px; font-weight: 800; color: var(--blue); }
.ps-chrome__doc p { margin: 0; font-size: 18px; font-weight: 600; line-height: 1.65; color: var(--text); word-break: keep-all; }

.ps-chrome__seq { margin: 0; padding: 12px 16px 16px; list-style: none; display: grid; gap: 8px; }
.ps-chrome__seq li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid #d5deea;
  border-radius: 8px;
}
.ps-chrome__seq em {
  font-style: normal;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: #fff;
  border-radius: 8px;
  font-weight: 800;
}
.ps-chrome__seq span { font-size: 18px; font-weight: 700; word-break: keep-all; }

.ps-field {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 4px 16px 16px 16px;
  padding: 24px;
}
.ps-field h2 { margin-bottom: 6px; }
.ps-topics {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.ps-topics li {
  padding: 16px;
  background: var(--soft);
  border-radius: 12px;
}
.ps-topics b { display: block; font-size: 18px; font-weight: 800; margin-bottom: 6px; }
.ps-topics p { margin: 0; font-size: 16px; font-weight: 500; word-break: keep-all; }
.ps-field-titles { margin: 16px 0 0; padding: 0; list-style: none; }
.ps-field-titles a {
  display: block;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  font-weight: 700;
  color: var(--blue);
}

.ps-cuts {
  margin-top: 16px;
  padding: 16px;
  background: var(--soft);
  border-radius: 12px;
}
.ps-cuts__k {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 800;
  color: var(--blue);
}
.ps-cuts ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px 12px;
}
.ps-cuts li { display: flex; justify-content: space-between; gap: 8px; font-size: 18px; font-weight: 700; color: var(--ink); }
.ps-cuts span { color: var(--blue); font-weight: 800; }

.ps-toc {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  margin: 0 0 36px;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.ps-toc p {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--blue);
}
.ps-toc ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.ps-toc a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}
.ps-toc a:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.ps-h--route .ps-ink,
.ps-h--cal .ps-ink,
.ps-h--read .ps-ink,
.ps-h--exam .ps-ink,
.ps-h--subjects .ps-ink {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin-bottom: 6px;
  padding: 0 10px;
  border-radius: 4px;
  font-size: 15px;
  letter-spacing: 0.06em;
}
.ps-h--route .ps-ink { background: var(--blue); color: #fff; }
.ps-h--cal .ps-ink { background: #0b1f3a; color: #fff; }
.ps-h--read .ps-ink { background: transparent; color: var(--blue); padding: 0; }
.ps-h--exam .ps-ink { background: #e8f1fb; color: var(--blue); }
.ps-h--subjects .ps-ink { background: #fff; border: 1px solid var(--blue); color: var(--blue); }
.ps-h--cal .ps-h__t,
.ps-h--read .ps-h__t,
.ps-h--route .ps-h__t {
  background-image: none;
  padding-bottom: 0;
}
.ps-h--cal .ps-h__t { border-bottom: 4px solid #0b1f3a; padding-bottom: 6px; }
.ps-h--read .ps-h__t { font-size: 36px; }
.ps-h--route .ps-h__t { padding-bottom: 4px; }

.ps-sect--route {
  margin-bottom: 56px;
  padding: 0 0 8px;
}
.ps-route {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  background: transparent;
}
.ps-route > li {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  grid-template-areas:
    "n copy"
    "go go";
  column-gap: 14px;
  row-gap: 12px;
  align-items: start;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.ps-route > li:has(.ps-route__go) {
  padding-bottom: 0;
}
.ps-route__n {
  grid-area: n;
  margin: 0;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.2;
  color: var(--blue);
  font-variant-numeric: tabular-nums;
}
.ps-route__copy { grid-area: copy; padding-bottom: 4px; }
body.gd .ps-route__copy h3 {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 800;
  color: var(--blue);
  word-break: keep-all;
}
.ps-route__copy p {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--text);
  word-break: keep-all;
}
.ps-route__copy ul {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.ps-route__copy ul li {
  padding: 6px 10px;
  background: #e8f1fb;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
  color: #1a4a80;
  word-break: keep-all;
}
.ps-route__go {
  grid-area: go;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: auto;
  height: 56px;
  min-height: 56px;
  margin: 4px -20px 0;
  padding: 0 20px;
  background: var(--blue);
  color: #fff;
  border-radius: 0;
  text-align: left;
  box-sizing: border-box;
  line-height: 1;
}
.ps-route__go span {
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  word-break: keep-all;
}
.ps-route__go em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  height: 32px;
  font-style: normal;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  padding: 0 14px;
  border-radius: 999px;
  background: #fff;
  color: var(--blue);
}
.ps-route__go:hover { filter: brightness(1.06); }

.ps-sect--cal {
  margin: 0 0 56px;
  padding: 28px 24px 24px;
  background: #dfe8f4;
  border-radius: 18px;
}
.ps-sect--cal .ps-sect__lead { color: #1a2430; }
.ps-cal { display: grid; gap: 22px; }
.ps-cal__band header {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  margin-bottom: 12px;
}
.ps-cal__span {
  grid-row: 1 / span 2;
  align-self: start;
  margin: 0;
  padding: 6px 10px;
  background: #0b1f3a;
  color: #fff;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 800;
  white-space: nowrap;
}
.ps-cal__band h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
}
.ps-cal__band header > p:not(.ps-cal__span) {
  grid-column: 2;
  margin: 4px 0 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.55;
  color: #243040;
  word-break: keep-all;
}
.ps-cal__band ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
  gap: 10px;
}
.ps-cal__band li {
  display: grid;
  gap: 6px;
  align-content: start;
  min-height: 148px;
  padding: 14px 14px 16px;
  background: #fff;
  border-radius: 0 0 10px 10px;
  border-top: 4px solid var(--blue);
  box-shadow: 0 4px 14px rgba(11, 31, 58, 0.06);
}
.ps-cal__band li b {
  font-size: 16px;
  font-weight: 800;
  color: var(--blue);
  font-variant-numeric: tabular-nums;
}
.ps-cal__band li strong {
  font-size: 18px;
  font-weight: 800;
  word-break: keep-all;
}
.ps-cal__band li span {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--text);
  word-break: keep-all;
}

.ps-sect--insight {
  margin: 64px 0 72px;
}
.ps-insight-hero {
  max-width: 680px;
  margin: 0 auto 40px;
  text-align: center;
}
.ps-insight-hero h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.03em;
}
.ps-insight-hero p {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.75;
  color: var(--text);
  word-break: keep-all;
}
.ps-insight-label {
  margin: 0 0 22px;
  font-size: 16px;
  font-weight: 700;
  color: var(--muted);
}
.ps-insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px 28px;
}
.ps-insight-grid[hidden],
.ps-insight-label[hidden],
.ps-insight-doc[hidden] {
  display: none !important;
}
.ps-insight__hit {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  text-align: left;
  color: inherit;
  font: inherit;
  cursor: pointer;
}
.ps-insight__hit:hover h3 { color: var(--blue); }
.ps-insight__hit:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
}
.ps-insight__thumb {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  margin-bottom: 16px;
  background: #1a2a40;
  border-radius: 2px;
}
.ps-insight__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.ps-insight__meta {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 600;
  color: #888;
}
.ps-insight__meta span {
  color: var(--blue);
  font-weight: 700;
}
.ps-insight h3,
.ps-insight-doc h3 {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: -0.03em;
  word-break: keep-all;
}
.ps-insight__ex {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: keep-all;
}
.ps-insight__by {
  margin: 16px 0 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--muted);
}
.ps-insight-back {
  margin: 0 0 20px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--blue);
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}
.ps-insight-back:hover { text-decoration: underline; }
.ps-insight-doc {
  max-width: 680px;
  margin: 0 auto;
}
.ps-insight-doc__thumb {
  margin: 0 0 22px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #1a2a40;
  border-radius: 2px;
}
.ps-insight-doc__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.ps-insight-doc__body {
  display: grid;
  gap: 16px;
}
.ps-insight-doc__body p {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.85;
  color: var(--text);
  word-break: keep-all;
}

.ps-sect--read { margin-bottom: 56px; }
.ps-sect--read .ps-lessons {
  display: grid;
  gap: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
}
.ps-sect--read .ps-lesson {
  display: grid;
  grid-template-columns: minmax(108px, 160px) minmax(0, 1fr);
  gap: 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 0;
}
.ps-sect--read .ps-lesson:last-child { border-bottom: 0; }
.ps-sect--read .ps-lesson__head {
  padding: 28px 18px 28px 22px;
  background: #f3f7fb;
  border-right: 1px solid var(--line);
}
.ps-sect--read .ps-lesson__head h3 {
  width: auto;
  font-size: 20px;
  line-height: 1.45;
}
.ps-sect--read .ps-lesson__body { padding: 28px 28px 32px 24px; }

.ps-sect--exam {
  margin-bottom: 56px;
  padding: 8px 0 0;
}
.ps-sect--exam .ps-drill {
  border-radius: 4px 16px 16px 4px;
  border-left: 6px solid #c45c4a;
}
.ps-drill-group { margin: 0 0 28px; }
.ps-drill-group > h3 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 800;
  color: var(--blue);
}
.ps-drill__lanes {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.ps-drill__lanes li {
  display: grid;
  grid-template-columns: 148px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 52px;
  padding: 10px 14px;
  background: #fff;
  border: 1px dashed #c5d0de;
  border-radius: 8px;
}
.ps-drill__lanes b {
  font-size: 16px;
  font-weight: 800;
  color: var(--blue);
  word-break: keep-all;
}
.ps-drill__lanes span {
  font-size: 16px;
  font-weight: 600;
  color: var(--muted);
}
.ps-drill--write,
.ps-drill--essay {
  border-left-color: var(--blue);
  background: #fff;
}
.ps-drill--short {
  border-left-color: #0b1f3a;
  background: #fff;
}
.ps-paper {
  background: #f7f4ee;
  border: 1px solid #d8d0c4;
  border-radius: 4px 16px 16px 4px;
  padding: 20px 22px 24px;
}
.ps-paper .ps-drills { gap: 0; }
.ps-paper .ps-drill[hidden] { display: none !important; }
.ps-paper .ps-drill {
  background: #fff;
  border: 1px solid #d8d0c4;
  box-shadow: none;
}
.ps-paper__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 16px;
}
.ps-paper__nav button {
  min-width: 72px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid #c9c0b2;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}
.ps-paper__nav button:hover:not(:disabled) {
  border-color: var(--blue);
  color: var(--blue);
}
.ps-paper__nav button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.ps-paper__pos {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: #5a5348;
}
.ps-rec {
  margin: 0 0 18px;
  padding: 0;
  background: #fff;
  border: 1px solid #c9c0b2;
  border-radius: 4px;
  overflow: hidden;
}
.ps-rec figcaption {
  margin: 0;
  padding: 8px 12px;
  font-size: 16px;
  font-weight: 800;
  color: #3d372e;
  background: #efe8dc;
}
.ps-rec table {
  width: 100%;
  border-collapse: collapse;
}
.ps-rec th,
.ps-rec td {
  padding: 10px 12px;
  border-top: 1px solid #e4ddd2;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  vertical-align: top;
  word-break: keep-all;
}
.ps-rec th {
  font-size: 16px;
  font-weight: 800;
  color: #6a6256;
  background: #faf7f1;
}
.ps-rec td:nth-child(1),
.ps-rec td:nth-child(2) {
  width: 72px;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.ps-rec td:last-child {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 16px;
  font-weight: 500;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.ps-study {
  margin: 28px 0 0;
  padding: 24px 26px;
  background: #fff;
  color: var(--text);
  border: 1px solid var(--line);
  border-left: 5px solid var(--blue);
  border-radius: 14px;
}
.ps-study .ps-ink {
  margin: 0 0 8px;
  color: var(--blue);
}
body.gd .ps-study h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 800;
}
.ps-study p,
.ps-study li {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--text);
  word-break: keep-all;
}
.ps-study p + p,
.ps-study p + ul { margin-top: 10px; }
.ps-study ul {
  margin: 12px 0 0;
  padding: 0 0 0 18px;
  display: grid;
  gap: 10px;
}
.ps-study a {
  display: inline-block;
  margin-top: 16px;
  color: var(--blue);
  font-weight: 800;
}

.ps-ask {
  background: #0b1f3a;
  color: #fff;
  padding: 40px 0;
}
body.gd .ps-ask h2,
body.gd .ps-ask .ps-ask__title {
  margin: 0;
  color: #fff;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.03em;
}
.ps-ask p { margin: 8px 0 0; font-size: 20px; font-weight: 600; color: rgba(255,255,255,0.92); word-break: keep-all; }
.ps-ask__kicker {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 800;
  color: #9ec9f5;
}
.ps-ask__note { font-size: 16px !important; color: rgba(255,255,255,0.7) !important; }
.ps-ask__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-end;
}
.ps-ask__cta { display: flex; flex-wrap: wrap; gap: 8px; }
.ps-btn-ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
}
.ps-btn-ghost:hover { background: rgba(255,255,255,0.22); }

@media (max-width: 960px) {
  .ps-jobs { top: 0; }
  .ps-hero {
    height: auto;
    min-height: 0;
  }
  .ps-hero__inner {
    grid-template-columns: 1fr;
    padding: 28px 20px 32px;
  }
  .ps-doors,
  .ps-topics,
  .ps-cuts ul { grid-template-columns: 1fr; }
  .ps-chrome__search { grid-template-columns: 1fr auto; }
  .ps-chrome__search span { grid-column: 1 / -1; }
  .ps-step__pins { padding-left: 20px; }
  .ps-chrome__pdf > div { grid-template-columns: 1fr; }
  .ps-route > li {
    grid-template-columns: 44px 1fr;
    padding: 16px;
  }
  .ps-route > li:has(.ps-route__go) {
    padding-bottom: 0;
  }
  .ps-route__go {
    margin-left: -16px;
    margin-right: -16px;
    min-height: 48px;
    padding: 12px 16px;
  }
  .ps-sect--cal { padding: 20px 16px 16px; }
  .ps-cal__band header { grid-template-columns: 1fr; }
  .ps-cal__span { grid-row: auto; width: max-content; margin-bottom: 6px; }
  .ps-cal__band header > p:not(.ps-cal__span) { grid-column: 1; }
  .ps-cal__band ol { grid-template-columns: 1fr 1fr; }
  .ps-drill__lanes li { grid-template-columns: 1fr; }
  .ps-paper { padding: 16px 14px 18px; }
  .ps-rec td:nth-child(1),
  .ps-rec td:nth-child(2) { width: auto; }
  .ps-sect--read .ps-lesson { grid-template-columns: 1fr; }
  .ps-sect--read .ps-lesson__head {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 20px 20px 12px;
  }
  .ps-insight-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .ps-insight-grid { grid-template-columns: 1fr; }
  .ps-cal__band ol { grid-template-columns: 1fr; }
}
