.ps-container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

/* Breadcrumb */
.ps-breadcrumb {
  padding: 12px 0;
  background: #f5f7fa;
  border-bottom: 1px solid rgba(111, 129, 151, 0.24);
}

.ps-bc-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
}

.ps-bc-list li::after {
  content: "›";
  margin-left: 6px;
  color: #6f8197;
}

.ps-bc-list li:last-child::after {
  display: none;
}

.ps-bc-list a {
  color: #1c375b;
  text-decoration: none;
}

.ps-bc-list a:hover {
  text-decoration: underline;
}

.ps-bc-list [aria-current="page"] {
  color: #6f8197;
}

/* Hero */
.ps-hero {
  position: relative;
  padding: 46px 0;
  background: #1c375b;
  border-bottom: 4px solid #6f8197;
  overflow: hidden;
}

.ps-hero.has-image .ps-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.18;
}

.ps-hero.has-image .ps-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ps-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.ps-eyebrow {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ps-eyebrow a {
  color: #6f8197;
  text-decoration: none;
}

.ps-eyebrow a:hover {
  color: #ffffff;
}

.ps-hero h1 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: clamp(26px, 4.5vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.ps-hero-sub {
  max-width: 640px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  line-height: 1.75;
}

.ps-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ps-btn-primary,
.ps-btn-secondary {
  min-height: 44px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid;
}

.ps-btn-primary {
  color: #1c375b;
  background: #ffffff;
  border-color: #ffffff;
}

.ps-btn-secondary {
  color: #ffffff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
}

.ps-btn-primary:hover {
  background: #6f8197;
  border-color: #6f8197;
  color: #ffffff;
}

.ps-btn-secondary:hover {
  border-color: #ffffff;
}

/* Layout */
.ps-layout {
  padding: 40px 0 52px;
  background: #ffffff;
}

.ps-grid {
  display: grid;
  gap: 30px;
}

/* Main content */
.ps-content-block {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(111, 129, 151, 0.22);
}

.ps-content-block:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.ps-block-header {
  margin-bottom: 16px;
}

.ps-block-header h2 {
  margin: 0 0 6px;
  color: #1c375b;
  font-size: clamp(18px, 2.5vw, 24px);
  line-height: 1.2;
}

.ps-block-header p {
  margin: 0;
  color: #6f8197;
  font-size: 15px;
}

.ps-evidence {
  background: #f5f7fa;
  padding: 22px;
  border: none;
  border-left: 4px solid #1c375b;
}

.ps-support {
  background: rgba(111, 129, 151, 0.07);
  padding: 22px;
  border: none;
  border-left: 4px solid #6f8197;
}

.ps-prose {
  color: #1c375b;
  font-size: 15px;
  line-height: 1.8;
}

.ps-prose h2,
.ps-prose h3 {
  color: #1c375b;
  margin-top: 1.4em;
}

.ps-prose ul,
.ps-prose ol {
  padding-left: 20px;
  line-height: 2;
}

.ps-prose a {
  color: #1c375b;
  text-decoration: underline;
}

/* FAQ */
.ps-faq-list {
  display: grid;
  gap: 8px;
}

.ps-faq-item {
  border: 1px solid rgba(111, 129, 151, 0.28);
}

.ps-faq-q {
  width: 100%;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #1c375b;
  background: #f5f7fa;
  border: none;
  font-size: 15px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
}

.ps-faq-q:hover {
  background: rgba(28, 55, 91, 0.07);
}

.ps-faq-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  position: relative;
}

.ps-faq-icon::before,
.ps-faq-icon::after {
  content: '';
  position: absolute;
  background: #1c375b;
}

.ps-faq-icon::before {
  width: 12px;
  height: 2px;
  top: 8px;
  left: 3px;
}

.ps-faq-icon::after {
  width: 2px;
  height: 12px;
  top: 3px;
  left: 8px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.ps-faq-q[aria-expanded="true"] .ps-faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.ps-faq-a {
  padding: 14px 16px;
  border-top: 1px solid rgba(111, 129, 151, 0.22);
}

.ps-faq-a p {
  margin: 0;
  color: #1c375b;
  font-size: 15px;
  line-height: 1.75;
}

/* Disclaimer */
.ps-disclaimer {
  padding: 14px 16px;
  background: #f5f7fa;
  border-left: 4px solid #6f8197;
  color: #6f8197;
  font-size: 13px;
  line-height: 1.65;
}

.ps-disclaimer strong {
  color: #1c375b;
}

/* Sidebar */
.ps-sidebar {
  display: grid;
  align-content: start;
  gap: 18px;
}

.ps-sidebar-card {
  padding: 20px;
  border: 1px solid rgba(111, 129, 151, 0.28);
  background: #ffffff;
}

.ps-sidebar-card h3 {
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid #1c375b;
  color: #1c375b;
  font-size: 16px;
}

/* Info card */
.ps-info-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.ps-info-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(111, 129, 151, 0.18);
  font-size: 14px;
}

.ps-info-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.ps-info-list span {
  color: #6f8197;
}

.ps-info-list strong {
  color: #1c375b;
  text-align: right;
}

/* CTA card */
.ps-cta-card {
  background: #1c375b;
  border-color: #1c375b;
}

.ps-cta-card h3 {
  color: #ffffff;
  border-bottom-color: rgba(255, 255, 255, 0.22);
}

.ps-cta-card p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.65;
}

.ps-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  color: #1c375b;
  background: #ffffff;
  border: 1px solid #ffffff;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  text-align: center;
}

.ps-cta-btn:hover {
  background: #6f8197;
  border-color: #6f8197;
  color: #ffffff;
}

.ps-cta-note {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  text-align: center;
}

/* Related pathways */
.ps-related-list {
  display: grid;
  gap: 12px;
}

.ps-related-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 10px;
  align-items: start;
  text-decoration: none;
}

.ps-related-item img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  display: block;
}

.ps-related-placeholder {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1c375b;
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  font-weight: 900;
}

.ps-related-item strong {
  display: block;
  color: #1c375b;
  font-size: 14px;
  line-height: 1.3;
}

.ps-related-item p {
  margin: 4px 0 0;
  color: #6f8197;
  font-size: 13px;
  line-height: 1.5;
}

.ps-related-item:hover strong {
  text-decoration: underline;
}

@media (min-width: 860px) {
  .ps-container {
    width: min(1180px, calc(100% - 48px));
  }

  .ps-grid {
    grid-template-columns: 1fr 300px;
    align-items: start;
  }
}

@media (min-width: 1080px) {
  .ps-grid {
    grid-template-columns: 1fr 320px;
    gap: 40px;
  }
}