:root {
  --pl-page: #f6f7f9;
  --pl-surface: #ffffff;
  --pl-ink: #171a1f;
  --pl-muted: #5e6875;
  --pl-border: #d8dee8;
  --pl-blue: #2457a6;
  --pl-green: #207a4c;
  --pl-amber: #b35c00;
  --pl-red: #b42318;
  --pl-soft-blue: #eaf1fb;
  --pl-soft-green: #e8f4ee;
  --pl-soft-amber: #fff4e5;
  --pl-shadow: 0 1px 2px rgba(23, 26, 31, 0.06), 0 8px 24px rgba(23, 26, 31, 0.06);
  --pl-radius: 8px;
  --pl-radius-sm: 6px;
  --pl-shell: min(1120px, calc(100vw - 32px));
  --pl-article: min(720px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--pl-page);
  color: var(--pl-ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.65;
  letter-spacing: 0;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

img {
  display: block;
}

a {
  color: var(--pl-blue);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
}

a:hover {
  color: #163d78;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(36, 87, 166, 0.35);
  outline-offset: 3px;
}

.wp-site-blocks,
.pl-preview {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-main,
.pl-main {
  flex: 1;
}

.pl-shell,
.site-header-shell,
.site-footer-shell {
  width: var(--pl-shell);
  margin-inline: auto;
}

.pl-article {
  width: var(--pl-article);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--pl-border);
  backdrop-filter: blur(12px);
}

.site-header-shell,
.pl-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 24px;
}

.wp-block-site-title,
.pl-brand {
  max-width: min(360px, 42vw);
  margin: 0;
  color: var(--pl-ink);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
}

.wp-block-site-title a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.pl-nav,
.wp-block-navigation__container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 6px 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.9375rem;
  font-weight: 700;
}

.pl-nav a,
.wp-block-navigation a {
  color: var(--pl-ink);
  text-decoration: none;
}

.pl-nav a:hover,
.wp-block-navigation a:hover {
  color: var(--pl-blue);
}

.pl-top-band {
  border-bottom: 1px solid var(--pl-border);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.pl-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 32px;
  align-items: start;
  padding-block: 42px 36px;
}

.pl-kicker,
.pl-eyebrow {
  margin: 0 0 10px;
  color: var(--pl-blue);
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.pl-page-title,
.pl-hero-title,
.pl-post-title {
  max-width: 760px;
  margin: 0;
  color: var(--pl-ink);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.12;
}

.pl-page-title {
  margin-block: 36px 18px;
}

.pl-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  max-width: 760px;
  margin: 30px 0 10px;
  color: var(--pl-muted);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.35;
}

.pl-breadcrumb + .pl-page-title {
  margin-top: 0;
}

.pl-breadcrumb a {
  color: #3f4854;
  text-decoration: none;
}

.pl-breadcrumb a:hover {
  color: var(--pl-blue);
}

.pl-breadcrumb-separator {
  color: #98a2b3;
}

.pl-lede {
  max-width: 70ch;
  margin: 16px 0 0;
  color: #3f4854;
  font-size: 1.125rem;
  line-height: 1.65;
}

.pl-card,
.pl-panel,
.pl-answer-box,
.pl-source-box,
.pl-date-card,
.pl-callout,
.pl-ad-slot {
  background: var(--pl-surface);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius);
  box-shadow: var(--pl-shadow);
}

.pl-card {
  position: relative;
}

.pl-panel,
.pl-answer-box,
.pl-source-box,
.pl-callout {
  padding: 26px;
}

.pl-card,
.pl-date-card {
  padding: 20px;
}

.pl-hero-media,
.pl-card-media,
.pl-article-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #edf2f7;
}

.pl-hero-media {
  margin: -2px 0 22px;
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius);
}

.pl-card-media {
  width: calc(100% + 40px);
  max-width: none;
  margin: -20px -20px 16px;
  border-bottom: 1px solid var(--pl-border);
  border-radius: var(--pl-radius) var(--pl-radius) 0 0;
}

.pl-article-visual {
  margin: 22px 0 0;
}

.pl-article-visual img {
  aspect-ratio: 16 / 7;
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius);
  box-shadow: var(--pl-shadow);
}

.page-id-3 .pl-article-visual,
.page-id-26 .pl-article-visual,
.page-id-27 .pl-article-visual,
.page-id-28 .pl-article-visual,
.page-id-29 .pl-article-visual,
.page-id-31 .pl-article-visual,
.page-id-32 .pl-article-visual {
  display: none;
}

.pl-card h2,
.pl-card h3,
.pl-panel h2,
.pl-panel h3,
.pl-answer-box h2,
.pl-source-box h2,
.pl-callout h2,
.pl-date-card h3 {
  margin-top: 0;
}

.pl-card h3 a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: var(--pl-radius);
}

.pl-card h3 a:focus-visible {
  outline: none;
}

.pl-card h3 a:focus-visible::after {
  outline: 3px solid rgba(36, 87, 166, 0.35);
  outline-offset: 3px;
}

.pl-stack {
  display: grid;
  gap: 20px;
}

.pl-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.pl-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.pl-section {
  padding-block: 36px;
}

.pl-section + .pl-section {
  border-top: 1px solid var(--pl-border);
}

.pl-section-title {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 12px 20px;
  margin-bottom: 22px;
}

.pl-section-title h2 {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.2;
}

.pl-small-link {
  font-size: 0.9375rem;
  font-weight: 700;
}

.pl-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.pl-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  padding: 4px 9px;
  border: 1px solid var(--pl-border);
  border-radius: 999px;
  background: #ffffff;
  color: #344054;
  font-size: 0.8125rem;
  font-weight: 750;
  line-height: 1.25;
  white-space: nowrap;
}

.pl-badge.is-source {
  border-color: rgba(32, 122, 76, 0.3);
  background: var(--pl-soft-green);
  color: var(--pl-green);
}

.pl-badge.is-deadline {
  border-color: rgba(179, 92, 0, 0.3);
  background: var(--pl-soft-amber);
  color: var(--pl-amber);
}

.pl-badge.is-blue {
  border-color: rgba(36, 87, 166, 0.28);
  background: var(--pl-soft-blue);
  color: var(--pl-blue);
}

.pl-date-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pl-panel > h2 + .pl-date-list {
  margin-top: 14px;
}

.pl-date-item {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-sm);
  background: #ffffff;
}

.pl-date {
  display: grid;
  align-content: center;
  min-height: 72px;
  border-radius: var(--pl-radius-sm);
  background: var(--pl-soft-blue);
  color: var(--pl-blue);
  font-weight: 800;
  text-align: center;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}

.pl-date span:first-child {
  font-size: 0.8125rem;
  text-transform: uppercase;
}

.pl-date span:last-child {
  font-size: 1.5rem;
}

.pl-date-body h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  line-height: 1.3;
}

.pl-date-body p {
  margin: 0;
  color: var(--pl-muted);
  font-size: 0.9375rem;
  line-height: 1.45;
}

.pl-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 10px;
  color: var(--pl-muted);
  font-size: 0.875rem;
  font-weight: 650;
}

.pl-answer-box {
  border-left: 5px solid var(--pl-blue);
}

.pl-answer-box .pl-answer-date {
  margin: 10px 0;
  color: var(--pl-ink);
  font-size: 1.875rem;
  font-weight: 850;
  line-height: 1.15;
  font-variant-numeric: tabular-nums;
}

.pl-source-box {
  border-left: 5px solid var(--pl-green);
}

.pl-source-list {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 1.15em;
}

.pl-source-list a {
  font-weight: 700;
}

.pl-checklist {
  display: grid;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pl-checklist li {
  display: grid;
  grid-template-columns: 1.65rem minmax(0, 1fr);
  column-gap: 1rem;
  align-items: start;
}

.pl-checklist li > span:not(.pl-checkmark) {
  display: block;
  padding-top: 0.02em;
  line-height: 1.55;
}

.pl-checkmark {
  display: inline-grid;
  place-items: center;
  width: 1.65rem;
  height: 1.65rem;
  margin-top: 0.16em;
  border-radius: 999px;
  background: var(--pl-soft-green);
  color: var(--pl-green);
  font-size: 0;
  font-weight: 900;
  line-height: 1;
}

.pl-checkmark::before {
  content: "";
  width: 0.54rem;
  height: 0.3rem;
  border-bottom: 0.16rem solid currentColor;
  border-left: 0.16rem solid currentColor;
  transform: translateY(-0.03rem) rotate(-45deg);
}

.pl-timeline {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pl-timeline li {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--pl-border);
}

.pl-timeline li:last-child {
  border-bottom: 0;
}

.pl-timeline time {
  color: var(--pl-blue);
  font-size: 0.9375rem;
  font-weight: 850;
  font-variant-numeric: tabular-nums;
}

.pl-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius);
  background: #ffffff;
}

.pl-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 0.9375rem;
  line-height: 1.45;
}

.pl-table th,
.pl-table td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--pl-border);
  text-align: left;
  vertical-align: top;
}

.pl-table th {
  background: #f1f4f8;
  color: #344054;
  font-size: 0.8125rem;
  font-weight: 800;
  text-transform: uppercase;
}

.pl-table tr:last-child td {
  border-bottom: 0;
}

.pl-ad-slot {
  display: grid;
  place-items: center;
  min-height: 250px;
  padding: 16px;
  color: var(--pl-muted);
  font-size: 0.8125rem;
  font-weight: 700;
  text-align: center;
  box-shadow: none;
}

.pl-ad-slot.is-horizontal {
  min-height: 96px;
}

.pl-article-body {
  padding-block: 32px 48px;
}

.pl-article-body > * {
  max-width: var(--pl-article);
  margin-inline: auto;
}

.pl-article-body > .alignwide,
.pl-article-body > .pl-wide {
  max-width: var(--pl-shell);
}

.pl-article-body h2 {
  margin: 2.1em 0 0.72em;
  font-size: 1.625rem;
  line-height: 1.22;
}

.pl-article-body p,
.pl-article-body li {
  font-size: 1.125rem;
  line-height: 1.7;
}

.pl-article-body h2 + .pl-checklist,
.pl-article-body h2 + .pl-table-wrap,
.pl-article-body h2 + .pl-stack,
.pl-article-body h2 + ul,
.pl-article-body h2 + ol,
.pl-article-body h2 + p {
  margin-top: 0;
}

.pl-post-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pl-post-list article,
.pl-post-card {
  padding: 20px;
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius);
  background: #ffffff;
}

.pl-post-card h3,
.pl-post-list h2 {
  margin: 0 0 8px;
  font-size: 1.125rem;
  line-height: 1.3;
}

.pl-post-card p,
.pl-post-list p {
  margin: 0;
  color: var(--pl-muted);
  font-size: 0.9375rem;
  line-height: 1.55;
}

.site-footer {
  margin-top: auto;
  border-top: 1px solid var(--pl-border);
  background: #ffffff;
}

.site-footer-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  padding-block: 28px;
  color: var(--pl-muted);
  font-size: 0.9375rem;
}

.pl-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 16px;
}

.pl-footer-links a {
  color: #344054;
  font-weight: 650;
  text-decoration: none;
}

.pl-footer-links a:hover {
  color: var(--pl-blue);
}

@media (max-width: 860px) {
  body {
    font-size: 17px;
  }

  .site-header {
    position: static;
  }

  .site-header-shell,
  .pl-header-inner,
  .site-footer-shell {
    align-items: flex-start;
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .pl-nav,
  .wp-block-navigation__container,
  .pl-footer-links {
    justify-content: flex-start;
  }

  .wp-block-site-title,
  .pl-brand {
    max-width: 100%;
  }

  .pl-hero-grid,
  .pl-grid-2,
  .pl-grid-3 {
    grid-template-columns: 1fr;
  }

  .pl-hero-title,
  .pl-page-title,
  .pl-post-title {
    font-size: 2rem;
  }

  .pl-date-item,
  .pl-timeline li {
    grid-template-columns: 1fr;
  }

  .pl-date {
    justify-items: start;
    min-height: auto;
    padding: 10px 12px;
    text-align: left;
  }

  .pl-date span:last-child {
    font-size: 1.125rem;
  }

  .pl-answer-box .pl-answer-date {
    font-size: 1.5rem;
  }
}

@media (max-width: 520px) {
  :root {
    --pl-shell: min(100vw - 24px, 1120px);
    --pl-article: min(100vw - 24px, 720px);
  }

  body {
    font-size: 16px;
  }

  .pl-hero-grid {
    padding-block: 28px;
  }

  .pl-panel,
  .pl-answer-box,
  .pl-source-box,
  .pl-callout,
  .pl-card,
  .pl-date-card {
    padding: 20px;
  }

  .pl-card-media {
    width: calc(100% + 40px);
    margin: -20px -20px 16px;
  }

  .pl-hero-title,
  .pl-page-title,
  .pl-post-title {
    font-size: 1.75rem;
  }

  .pl-breadcrumb {
    margin-top: 24px;
    font-size: 0.8125rem;
  }

  .pl-badge {
    white-space: normal;
  }
}
