
body.fp-clx {
  /* soft layered card shadows (the only literal colors allowed here) */
  --clx-shadow:        0 1px 2px rgba(15, 23, 42, .04),
                       0 8px 24px -12px rgba(15, 23, 42, .12);
  --clx-shadow-hover:  0 2px 4px rgba(15, 23, 42, .05),
                       0 22px 48px -20px rgba(29, 78, 216, .28);
  --clx-shadow-pill:   0 6px 18px -6px rgba(29, 78, 216, .45);
  --clx-card-radius:   18px;
  --clx-pad:           clamp(20px, 2.4vw, 26px);
  --clx-measure:       68ch;
  --clx-ease:          cubic-bezier(.22, .61, .36, 1);
}

body.fp-clx main {
  position: relative;
  isolation: isolate;          /* contains the ::before stacking */
  overflow: clip;              /* aurora never produces h-scroll */
}

body.fp-clx main::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: clamp(420px, 52vh, 680px);
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(58% 70% at 22% -8%,
      color-mix(in srgb, var(--brand) 16%, transparent) 0%,
      transparent 60%),
    radial-gradient(46% 64% at 92% 4%,
      color-mix(in srgb, var(--brand) 11%, transparent) 0%,
      transparent 58%),
    linear-gradient(180deg,
      color-mix(in srgb, var(--brand) 4%, transparent) 0%,
      transparent 70%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 55%, transparent 100%);
          mask-image: linear-gradient(180deg, #000 0%, #000 55%, transparent 100%);
}

body.fp-clx main::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: clamp(380px, 48vh, 620px);
  z-index: -1;
  pointer-events: none;
  opacity: .5;
  background-image:
    radial-gradient(circle at 1px 1px,
      color-mix(in srgb, var(--ink) 7%, transparent) 1px, transparent 0);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(70% 60% at 50% 0%, #000 0%, transparent 72%);
          mask-image: radial-gradient(70% 60% at 50% 0%, #000 0%, transparent 72%);
}

body.fp-clx .ed-hero {
  position: relative;
  z-index: 1;
  padding-top: clamp(40px, 6vw, 76px);
  padding-bottom: clamp(20px, 3vw, 34px);
}

/* eyebrow / kicker → small pill */
body.fp-clx .ed-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--pill, 999px);
  border: 1px solid color-mix(in srgb, var(--brand) 24%, var(--line));
  background: color-mix(in srgb, var(--brand) 8%, var(--paper));
  color: var(--brand);
  font-family: var(--display);
  font-weight: 700;
  font-size: .76rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1;
  box-shadow: 0 1px 0 rgba(255, 255, 255, .6) inset;
}

/* a small leading dot inside the kicker for editorial flavor */
body.fp-clx .ed-kicker::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 22%, transparent);
}

/* big Fraunces serif headline, responsive */
body.fp-clx .ed-hero .ed-h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.1rem, 1.2rem + 3.4vw, 3.55rem);
  line-height: 1.05;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 18px 0 0;
  text-wrap: balance;
}

/* muted lead with a comfortable measure */
body.fp-clx .ed-hero .ed-lead {
  margin-top: 16px;
  max-width: 58ch;
  color: var(--muted);
  font-size: clamp(1.02rem, .98rem + .35vw, 1.18rem);
  line-height: 1.62;
}

body.fp-clx .ed-hero .ed-lead a {
  color: var(--brand);
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--brand) 38%, transparent);
  transition: border-color .18s var(--clx-ease);
}
body.fp-clx .ed-hero .ed-lead a:hover {
  border-bottom-color: var(--brand);
}

/* the inline hero meta row (careers/press) → quiet, refined */
body.fp-clx .ed-hero-meta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  color: var(--muted);
  font-family: var(--display);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
body.fp-clx .ed-hero-meta span:not(:first-child) {
  position: relative;
  padding-left: 18px;
}
body.fp-clx .ed-hero-meta span:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  margin-top: -2px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--brand) 60%, var(--line));
}

body.pl-blog .ed-hero .ed-lead,
body.pl-blog [data-blog-list] > .ed-hero .ed-lead {
  margin-left: auto;
  margin-right: auto;
  max-width: 60ch;
}


/* scroll container for the pill rows */
body.fp-clx [data-blog-cats],
body.fp-clx [data-careers-depts],
body.fp-clx [data-press-cats] {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: clamp(20px, 2.6vw, 30px) 0 clamp(18px, 2vw, 26px);
}

/* on narrow screens, let pills scroll horizontally instead of wrapping tall */
@media (max-width: 640px) {
  body.fp-clx [data-blog-cats],
  body.fp-clx [data-careers-depts],
  body.fp-clx [data-press-cats] {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
    margin-left: calc(-1 * var(--gut, 16px));
    margin-right: calc(-1 * var(--gut, 16px));
    padding-left: var(--gut, 16px);
    padding-right: var(--gut, 16px);
  }
  body.fp-clx [data-blog-cats]::-webkit-scrollbar,
  body.fp-clx [data-careers-depts]::-webkit-scrollbar,
  body.fp-clx [data-press-cats]::-webkit-scrollbar { display: none; }
  body.fp-clx [data-blog-cats] > *,
  body.fp-clx [data-careers-depts] > *,
  body.fp-clx [data-press-cats] > * { scroll-snap-align: start; flex: 0 0 auto; }
}

body.fp-clx [data-blog-cats] .ed-pill,
body.fp-clx [data-blog-cats] button,
body.fp-clx [data-careers-depts] button,
body.fp-clx [data-press-cats] button,
body.fp-clx .clx-pill {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 17px;
  border-radius: var(--pill, 999px);
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink-2);
  font-family: var(--display);
  font-size: .87rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  letter-spacing: .005em;
  transition:
    background-color .18s var(--clx-ease),
    border-color .18s var(--clx-ease),
    color .18s var(--clx-ease),
    box-shadow .2s var(--clx-ease),
    transform .12s var(--clx-ease);
}

/* hover → brand-tinted */
body.fp-clx [data-blog-cats] .ed-pill:hover,
body.fp-clx [data-blog-cats] button:hover,
body.fp-clx [data-careers-depts] button:hover,
body.fp-clx [data-press-cats] button:hover,
body.fp-clx .clx-pill:hover {
  border-color: color-mix(in srgb, var(--brand) 42%, var(--line));
  background: color-mix(in srgb, var(--brand) 8%, var(--paper));
  color: var(--brand);
}

body.fp-clx [data-blog-cats] .ed-pill[aria-pressed="true"],
body.fp-clx [data-blog-cats] button[aria-pressed="true"],
body.fp-clx [data-press-cats] button[aria-selected="true"],
body.fp-clx [data-careers-depts] button[data-active="true"],
body.fp-clx .clx-pill.is-active,
body.fp-clx .clx-pill[aria-pressed="true"],
body.fp-clx .clx-pill[aria-selected="true"] {
  background: var(--brand) !important;
  border-color: var(--brand) !important;
  color: #fff !important;
  box-shadow: var(--clx-shadow-pill);
}
body.fp-clx [data-blog-cats] .ed-pill[aria-pressed="true"]:hover,
body.fp-clx [data-blog-cats] button[aria-pressed="true"]:hover,
body.fp-clx [data-press-cats] button[aria-selected="true"]:hover,
body.fp-clx .clx-pill.is-active:hover {
  background: color-mix(in srgb, var(--brand) 92%, #000) !important;
  color: #fff !important;
}

body.pl-careers [data-careers-depts] button[style*="var(--ink)"] {
  background: var(--brand) !important;
  border-color: var(--brand) !important;
  color: #fff !important;
  box-shadow: var(--clx-shadow-pill);
}

/* loading placeholder pill */
body.fp-clx [data-blog-cats] .ed-pill[aria-hidden="true"] {
  cursor: default;
  pointer-events: none;
}

body.fp-clx [data-blog-grid],
body.fp-clx [data-careers-list],
body.fp-clx [data-press-list] {
  position: relative;
  z-index: 1;
}

body.fp-clx .clx-card,
body.fp-clx [data-blog-grid] > .ed-card,
body.fp-clx [data-careers-list] > .ed-card,
body.fp-clx [data-press-list] > .ed-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: var(--clx-pad);
  border-radius: var(--clx-card-radius);
  border: 1px solid var(--line);
  background: var(--paper);
  text-decoration: none;
  color: inherit;
  box-shadow: var(--clx-shadow);
  overflow: hidden;
  isolation: isolate;
  transition:
    transform .26s var(--clx-ease),
    box-shadow .26s var(--clx-ease),
    border-color .26s var(--clx-ease);
}

/* top accent bar — brightens on hover */
body.fp-clx .clx-card::before,
body.fp-clx [data-blog-grid] > .ed-card::before,
body.fp-clx [data-careers-list] > .ed-card::before,
body.fp-clx [data-press-list] > .ed-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  z-index: 2;
  background: linear-gradient(90deg,
    var(--brand),
    color-mix(in srgb, var(--brand) 55%, transparent));
  opacity: 0;
  transform: scaleX(.4);
  transform-origin: left center;
  transition: opacity .26s var(--clx-ease), transform .3s var(--clx-ease);
}

/* hover lift + deeper shadow + accent */
body.fp-clx .clx-card:hover,
body.fp-clx [data-blog-grid] > .ed-card:hover,
body.fp-clx [data-careers-list] > .ed-card:hover,
body.fp-clx [data-press-list] > .ed-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--clx-shadow-hover);
  border-color: color-mix(in srgb, var(--brand) 30%, var(--line));
}
body.fp-clx .clx-card:hover::before,
body.fp-clx [data-blog-grid] > .ed-card:hover::before,
body.fp-clx [data-careers-list] > .ed-card:hover::before,
body.fp-clx [data-press-list] > .ed-card:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

body.fp-clx .clx-card:focus-visible,
body.fp-clx [data-blog-grid] > .ed-card:focus-visible,
body.fp-clx [data-careers-list] > .ed-card:focus-visible,
body.fp-clx [data-press-list] > .ed-card:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

/* skeleton placeholders shipped in the static HTML: keep them quiet, no lift */
body.fp-clx [data-blog-grid] > .ed-card[aria-hidden="true"],
body.fp-clx [data-careers-list] > .ed-card[aria-hidden="true"],
body.fp-clx [data-press-list] > .ed-card[aria-hidden="true"] {
  box-shadow: none;
  pointer-events: none;
  background: var(--band);
}
body.fp-clx [data-blog-grid] > .ed-card[aria-hidden="true"]::before,
body.fp-clx [data-careers-list] > .ed-card[aria-hidden="true"]::before,
body.fp-clx [data-press-list] > .ed-card[aria-hidden="true"]::before { display: none; }
body.fp-clx [data-blog-grid] > .ed-card[aria-hidden="true"]:hover,
body.fp-clx [data-careers-list] > .ed-card[aria-hidden="true"]:hover,
body.fp-clx [data-press-list] > .ed-card[aria-hidden="true"]:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--line);
}


/* slim category pill at top */
body.fp-clx .clx-cat {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 11px;
  border-radius: var(--pill, 999px);
  border: 1px solid color-mix(in srgb, var(--brand) 22%, var(--line));
  background: color-mix(in srgb, var(--brand) 7%, var(--paper));
  color: var(--brand);
  font-family: var(--display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  line-height: 1;
}

/* legacy: the .ed-pill the controllers drop inside cards as a category chip */
body.fp-clx [data-blog-grid] > .ed-card > .ed-pill,
body.fp-clx [data-press-list] > .ed-card .ed-pill,
body.fp-clx [data-careers-list] > .ed-card .ed-pill {
  align-self: flex-start;
  padding: 4px 11px;
  border-radius: var(--pill, 999px);
  border: 1px solid color-mix(in srgb, var(--brand) 22%, var(--line));
  background: color-mix(in srgb, var(--brand) 7%, var(--paper));
  color: var(--brand);
  font-family: var(--display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1;
}

/* strong title */
body.fp-clx .clx-title,
body.fp-clx [data-blog-grid] > .ed-card > .ed-h2,
body.fp-clx [data-press-list] > .ed-card > .ed-h2,
body.fp-clx [data-careers-list] > .ed-card > .ed-h2 {
  margin: 2px 0 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.24rem;
  line-height: 1.28;
  letter-spacing: -0.01em;
  color: var(--ink);
  /* keep titles to two lines for an even grid */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .2s var(--clx-ease);
}
body.fp-clx .clx-card:hover .clx-title,
body.fp-clx [data-blog-grid] > .ed-card:hover > .ed-h2,
body.fp-clx [data-press-list] > .ed-card:hover > .ed-h2,
body.fp-clx [data-careers-list] > .ed-card:hover > .ed-h2 {
  color: var(--brand);
}

/* muted, 3-line-clamped excerpt */
body.fp-clx .clx-excerpt,
body.fp-clx [data-blog-grid] > .ed-card > p,
body.fp-clx [data-press-list] > .ed-card > p {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.58;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* meta row of small icon chips */
body.fp-clx .clx-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin-top: 6px;
}

body.fp-clx .clx-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--muted);
  font-family: var(--display);
  font-size: .8rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}
body.fp-clx .clx-chip svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  color: color-mix(in srgb, var(--brand) 70%, var(--muted));
  opacity: .9;
}
body.fp-clx .clx-chip > span { line-height: 1; }

/* the "Remote" badge on careers cards → a small solid brand-tinted pill */
body.fp-clx .clx-chip--remote {
  padding: 3px 9px 3px 8px;
  border-radius: var(--pill, 999px);
  border: 1px solid color-mix(in srgb, var(--brand) 30%, var(--line));
  background: color-mix(in srgb, var(--brand) 10%, var(--paper));
  color: var(--brand);
}
body.fp-clx .clx-chip--remote svg { color: var(--brand); opacity: 1; }
body.fp-clx .clx-chip--remote::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 22%, transparent);
}
body.fp-clx .clx-chip--remote:has(svg)::before { display: none; }

/* hover affordance: "Read article ->" slides up on hover */
body.fp-clx .clx-go {
  margin-top: auto;
  padding-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--brand);
  font-family: var(--display);
  font-size: .9rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .005em;
  opacity: .85;
  transform: translateY(2px);
  transition: opacity .24s var(--clx-ease), transform .24s var(--clx-ease), gap .24s var(--clx-ease);
}
body.fp-clx .clx-go svg {
  width: 16px;
  height: 16px;
  transition: transform .24s var(--clx-ease);
}
body.fp-clx .clx-card:hover .clx-go {
  opacity: 1;
  transform: translateY(0);
  gap: 10px;
}
body.fp-clx .clx-card:hover .clx-go svg { transform: translateX(3px); }

/* legacy "View role & apply ->" / "Read more" footer affordance */
body.fp-clx [data-careers-list] > .ed-card > div:last-child,
body.fp-clx [data-press-list] > .ed-card > span:last-child {
  margin-top: auto;
}

body.fp-clx .clx-card--lead {
  grid-column: 1 / -1;
  gap: 16px;
  padding: clamp(26px, 3vw, 38px);
  background:
    radial-gradient(120% 140% at 0% 0%,
      color-mix(in srgb, var(--brand) 7%, var(--paper)) 0%,
      var(--paper) 46%),
    var(--paper);
  border-color: color-mix(in srgb, var(--brand) 18%, var(--line));
}

@media (min-width: 860px) {
  body.fp-clx .clx-card--lead {
    grid-column: span 2;
  }
}

body.fp-clx .clx-card--lead .clx-title,
body.fp-clx .clx-card--lead > .ed-h2,
body.fp-clx .clx-card--lead > .ed-h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2.15rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
  -webkit-line-clamp: 3;
}
body.fp-clx .clx-card--lead .clx-excerpt,
body.fp-clx .clx-card--lead > p {
  font-size: 1.05rem;
  line-height: 1.62;
  -webkit-line-clamp: 3;
  max-width: 62ch;
}
body.fp-clx .clx-card--lead .clx-go {
  font-size: .96rem;
}

body.fp-clx .clx-article,
body.fp-clx [data-blog-detail] article,
body.fp-clx [data-careers-detail] article,
body.fp-clx [data-press-detail] article {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

/* back link / breadcrumb */
body.fp-clx .ed-crumb,
body.fp-clx [data-blog-detail] .ed-crumb,
body.fp-clx [data-press-detail] .ed-crumb {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 18px;
  color: var(--muted);
  font-family: var(--display);
  font-weight: 600;
  font-size: .88rem;
  text-decoration: none;
  transition: color .18s var(--clx-ease), gap .18s var(--clx-ease);
}
body.fp-clx .ed-crumb a { color: inherit; text-decoration: none; }
body.fp-clx .ed-crumb:hover,
body.fp-clx .ed-crumb a:hover { color: var(--brand); }
body.fp-clx a.ed-crumb:hover { gap: 10px; }

/* article header block */
body.fp-clx .clx-article-head {
  padding-top: clamp(20px, 3vw, 36px);
  margin-bottom: clamp(20px, 2.4vw, 30px);
}

/* meta row of pills above the title (works for legacy inline-styled rows) */
body.fp-clx .clx-article-head .clx-meta,
body.fp-clx [data-blog-detail] article > div:first-of-type {
  margin-bottom: 16px;
}

/* the .ed-pill chips in the detail meta → brand pills */
body.fp-clx .clx-article-head .ed-pill,
body.fp-clx [data-blog-detail] article .ed-pill,
body.fp-clx [data-careers-detail] article > .ed-pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 13px;
  border-radius: var(--pill, 999px);
  border: 1px solid color-mix(in srgb, var(--brand) 22%, var(--line));
  background: color-mix(in srgb, var(--brand) 7%, var(--paper));
  color: var(--brand);
  font-family: var(--display);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1;
}

/* big Fraunces serif article title */
body.fp-clx .clx-article .ed-h1,
body.fp-clx [data-blog-detail] article .ed-h1,
body.fp-clx [data-careers-detail] article .ed-h1,
body.fp-clx [data-press-detail] article .ed-h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2rem, 1.3rem + 2.6vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 0 0 16px;
  text-wrap: balance;
}

/* lead under the title */
body.fp-clx .clx-article .ed-lead,
body.fp-clx [data-press-detail] article .ed-lead,
body.fp-clx [data-careers-detail] article .ed-lead {
  color: var(--ink-2);
  font-size: 1.18rem;
  line-height: 1.6;
  max-width: var(--clx-measure);
}

body.fp-clx .ed-prose {
  max-width: var(--clx-measure);
  color: var(--ink-2);
  font-size: 1.06rem;
  line-height: 1.78;
}
body.fp-clx .ed-prose > *:first-child { margin-top: 0; }

body.fp-clx .ed-prose p {
  margin: 0 0 1.15em;
  color: var(--ink-2);
  font-size: inherit;
  line-height: 1.78;
}

body.fp-clx .ed-prose h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.55rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 1.9em 0 .55em;
}
body.fp-clx .ed-prose h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.3;
  color: var(--ink);
  margin: 1.7em 0 .5em;
}

body.fp-clx .ed-prose a {
  color: var(--brand);
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--brand) 40%, transparent);
  transition: border-color .18s var(--clx-ease);
}
body.fp-clx .ed-prose a:hover { border-bottom-color: var(--brand); }

body.fp-clx .ed-prose strong { color: var(--ink); font-weight: 700; }

body.fp-clx .ed-prose ul,
body.fp-clx .ed-prose ol {
  margin: 0 0 1.2em;
  padding-left: 1.35em;
}
body.fp-clx .ed-prose li {
  margin: 0 0 .55em;
  line-height: 1.7;
  padding-left: .25em;
}
body.fp-clx .ed-prose ul li::marker { color: var(--brand); }
body.fp-clx .ed-prose ol li::marker { color: var(--brand); font-weight: 700; }

/* styled blockquote */
body.fp-clx .ed-prose blockquote {
  margin: 1.6em 0;
  padding: 6px 0 6px 22px;
  border-left: 3px solid var(--brand);
  color: var(--ink);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.22rem;
  line-height: 1.5;
}
body.fp-clx .ed-prose blockquote p { margin: 0; color: inherit; }

body.fp-clx .ed-prose hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 2em 0;
}

body.fp-clx .ed-prose img {
  max-width: 100%;
  height: auto;
  border-radius: var(--r2, 14px);
  margin: 1.4em 0;
}

body.fp-clx .ed-prose code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .92em;
  background: var(--band);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1px 6px;
}

body.fp-clx [data-careers-detail] article h2.ed-h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}
/* the bullet lists the careers controller emits inside .ed-prose */
body.fp-clx [data-careers-detail] .ed-prose ul {
  list-style: none;
  padding-left: 0;
  margin-top: 14px;
}
body.fp-clx [data-careers-detail] .ed-prose ul li {
  position: relative;
  padding: 2px 0 2px 30px;
  margin: 0 0 12px;
  line-height: 1.62;
  color: var(--ink-2);
}
body.fp-clx [data-careers-detail] .ed-prose ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .42em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background:
    color-mix(in srgb, var(--brand) 14%, var(--paper));
  /* inline-SVG check, CSP-safe (data URI, no script) */
  -webkit-mask: center / 10px 10px no-repeat
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E");
          mask: center / 10px 10px no-repeat
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E");
}
/* draw the check tick in brand by layering a colored span behind the mask */
body.fp-clx [data-careers-detail] .ed-prose ul li::after {
  content: "";
  position: absolute;
  left: 0;
  top: .42em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--brand);
  -webkit-mask: center / 10px 10px no-repeat
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E");
          mask: center / 10px 10px no-repeat
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E");
}

/* careers "Apply for this role" CTA card — make it a standout band */
body.fp-clx [data-careers-detail] article > div:has(> a.ed-btn-fill),
body.fp-clx .clx-apply {
  position: relative;
  overflow: hidden;
  border-radius: var(--clx-card-radius) !important;
  border: 1px solid color-mix(in srgb, var(--brand) 26%, var(--line)) !important;
  background:
    radial-gradient(120% 160% at 100% 0%,
      color-mix(in srgb, var(--brand) 12%, var(--paper)) 0%,
      var(--band) 60%) !important;
  box-shadow: var(--clx-shadow);
}

/* ---- "More articles / Other roles / More updates" grid ------------------ */
body.fp-clx [data-blog-detail] .ed-section,
body.fp-clx [data-press-detail] section {
  position: relative;
  z-index: 1;
}
body.fp-clx [data-blog-detail] .ed-section h2.ed-h2,
body.fp-clx [data-press-detail] section > h2.ed-h2,
body.fp-clx [data-careers-detail] article > h2.ed-h2:last-of-type {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}

/* careers "Other open roles" mini grid cards */
body.fp-clx [data-careers-detail] article a.ed-card {
  border-radius: var(--r2, 14px);
  box-shadow: var(--clx-shadow);
}

body.fp-clx .ed-empty {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: clamp(40px, 6vw, 64px) 20px;
  border-radius: var(--clx-card-radius);
  border: 1px dashed color-mix(in srgb, var(--brand) 22%, var(--line));
  background: color-mix(in srgb, var(--brand) 3%, var(--paper));
}
body.fp-clx .ed-empty strong {
  display: block;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--ink);
  margin-bottom: 6px;
}
body.fp-clx .ed-empty p {
  max-width: 48ch;
  margin: 0 auto 16px;
  color: var(--muted);
  line-height: 1.6;
}
body.fp-clx .ed-empty .ed-h2 {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--ink);
}

@keyframes clx-rise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

body.fp-clx [data-blog-grid] > .clx-card,
body.fp-clx [data-careers-list] > .clx-card,
body.fp-clx [data-press-list] > .clx-card,
body.fp-clx [data-blog-grid] > .ed-card:not([aria-hidden="true"]),
body.fp-clx [data-careers-list] > .ed-card:not([aria-hidden="true"]),
body.fp-clx [data-press-list] > .ed-card:not([aria-hidden="true"]) {
  animation: clx-rise .5s var(--clx-ease) both;
}
body.fp-clx [data-blog-grid] > *:nth-child(1),
body.fp-clx [data-careers-list] > *:nth-child(1),
body.fp-clx [data-press-list] > *:nth-child(1) { animation-delay: .02s; }
body.fp-clx [data-blog-grid] > *:nth-child(2),
body.fp-clx [data-careers-list] > *:nth-child(2),
body.fp-clx [data-press-list] > *:nth-child(2) { animation-delay: .07s; }
body.fp-clx [data-blog-grid] > *:nth-child(3),
body.fp-clx [data-careers-list] > *:nth-child(3),
body.fp-clx [data-press-list] > *:nth-child(3) { animation-delay: .12s; }
body.fp-clx [data-blog-grid] > *:nth-child(4),
body.fp-clx [data-careers-list] > *:nth-child(4),
body.fp-clx [data-press-list] > *:nth-child(4) { animation-delay: .17s; }
body.fp-clx [data-blog-grid] > *:nth-child(5),
body.fp-clx [data-careers-list] > *:nth-child(5),
body.fp-clx [data-press-list] > *:nth-child(5) { animation-delay: .22s; }
body.fp-clx [data-blog-grid] > *:nth-child(6),
body.fp-clx [data-careers-list] > *:nth-child(6),
body.fp-clx [data-press-list] > *:nth-child(6) { animation-delay: .27s; }
body.fp-clx [data-blog-grid] > *:nth-child(n + 7),
body.fp-clx [data-careers-list] > *:nth-child(n + 7),
body.fp-clx [data-press-list] > *:nth-child(n + 7) { animation-delay: .3s; }

/* article reveal */
body.fp-clx .clx-article,
body.fp-clx [data-blog-detail] article,
body.fp-clx [data-press-detail] article,
body.fp-clx [data-careers-detail] article {
  animation: clx-rise .5s var(--clx-ease) both;
}

body.fp-clx [data-blog-grid] > .clx-card:not(.clx-card--lead):nth-child(3n + 2) .clx-cat,
body.fp-clx [data-press-list] > .clx-card:nth-child(3n + 2) .clx-cat {
  border-color: color-mix(in srgb, var(--brand) 16%, var(--line));
  background: color-mix(in srgb, var(--brand) 5%, var(--paper));
}
body.fp-clx [data-blog-grid] > .clx-card:nth-child(4n + 3)::before,
body.fp-clx [data-press-list] > .clx-card:nth-child(4n + 3)::before,
body.fp-clx [data-careers-list] > .clx-card:nth-child(4n + 3)::before {
  background: linear-gradient(90deg,
    color-mix(in srgb, var(--brand) 78%, #0a3aa8),
    color-mix(in srgb, var(--brand) 45%, transparent));
}


body.pl-blog [data-blog-grid] {
  margin-top: clamp(6px, 1vw, 14px);
}

body.pl-careers [data-careers-list] {
  margin-top: clamp(4px, 1vw, 12px);
}
/* careers role-card meta row spacing (legacy inline META_ROW) */
body.pl-careers [data-careers-list] > .ed-card > div {
  color: var(--muted);
}

body.pl-press [data-press-list] .ed-card [style*="text-transform"] {
  letter-spacing: .06em;
}

@media (max-width: 860px) {
  body.fp-clx .clx-card--lead { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  body.fp-clx .clx-card,
  body.fp-clx [data-blog-grid] > .ed-card,
  body.fp-clx [data-careers-list] > .ed-card,
  body.fp-clx [data-press-list] > .ed-card {
    padding: 20px;
    border-radius: 16px;
  }
  body.fp-clx .clx-title,
  body.fp-clx [data-blog-grid] > .ed-card > .ed-h2,
  body.fp-clx [data-press-list] > .ed-card > .ed-h2,
  body.fp-clx [data-careers-list] > .ed-card > .ed-h2 { font-size: 1.16rem; }

  body.fp-clx .clx-card--lead .clx-title,
  body.fp-clx .clx-card--lead > .ed-h2 { font-size: 1.5rem; }

  body.fp-clx .ed-prose { font-size: 1.02rem; }
  body.fp-clx .ed-prose blockquote { font-size: 1.1rem; }
}

@media (max-width: 380px) {
  body.fp-clx .ed-hero .ed-h1 { font-size: 1.95rem; }
  body.fp-clx .clx-article .ed-h1,
  body.fp-clx [data-blog-detail] article .ed-h1,
  body.fp-clx [data-careers-detail] article .ed-h1,
  body.fp-clx [data-press-detail] article .ed-h1 { font-size: 1.8rem; }
}

@media (prefers-reduced-motion: reduce) {
  body.fp-clx *,
  body.fp-clx *::before,
  body.fp-clx *::after {
    animation: none !important;
    transition: none !important;
  }
  body.fp-clx .clx-card,
  body.fp-clx [data-blog-grid] > .ed-card,
  body.fp-clx [data-careers-list] > .ed-card,
  body.fp-clx [data-press-list] > .ed-card {
    opacity: 1 !important;
    transform: none !important;
  }
  body.fp-clx .clx-go { opacity: 1 !important; transform: none !important; }
}

body.fp-ed.pl-press {
  --nws-ink: #0a1020;
  --nws-ink-2: #111a30;
  --nws-live: #ef4444;
  --nws-card: var(--paper, #fff);
}
/* kill the inherited .fp-pub mesh under the dark hero zone (press has its own) */
body.fp-ed.pl-press::before,
body.fp-ed.pl-press::after { opacity: 0.35; }

/* ---- full-bleed animated newsroom hero ---- */
body.fp-ed.pl-press .nws-hero {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  margin: 6px 0 30px;
  padding: 64px 30px 0;
  background:
    radial-gradient(130% 120% at 12% -10%, #16223f 0%, transparent 55%),
    radial-gradient(120% 130% at 100% 0%, #0e1830 0%, transparent 60%),
    linear-gradient(180deg, #0a1020 0%, #0b1326 100%);
  color: #fff;
  isolation: isolate;
}
body.fp-ed.pl-press .nws-hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
body.fp-ed.pl-press .nws-orb {
  position: absolute; border-radius: 50%; filter: blur(46px); opacity: 0.55;
  will-change: transform;
}
body.fp-ed.pl-press .nws-orb--a { width: 460px; height: 460px; top: -180px; left: -90px;
  background: radial-gradient(circle, color-mix(in srgb, var(--brand) 90%, #4f6bff) 0%, transparent 68%); animation: nwsFloatA 17s ease-in-out infinite; }
body.fp-ed.pl-press .nws-orb--b { width: 380px; height: 380px; top: -120px; right: -60px;
  background: radial-gradient(circle, #6d4bff 0%, transparent 70%); opacity: 0.4; animation: nwsFloatB 21s ease-in-out infinite; }
body.fp-ed.pl-press .nws-orb--c { width: 300px; height: 300px; bottom: -120px; left: 46%;
  background: radial-gradient(circle, color-mix(in srgb, var(--brand) 70%, #22d3ee) 0%, transparent 72%); opacity: 0.3; animation: nwsFloatA 24s ease-in-out infinite reverse; }
body.fp-ed.pl-press .nws-mesh {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(110% 90% at 50% 0%, #000 30%, transparent 75%);
  mask-image: radial-gradient(110% 90% at 50% 0%, #000 30%, transparent 75%);
  opacity: 0.5; animation: nwsMesh 28s linear infinite;
}
@keyframes nwsFloatA { 0%,100% { transform: translate(0,0); } 50% { transform: translate(40px, 34px); } }
@keyframes nwsFloatB { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-36px, 28px); } }
@keyframes nwsMesh { to { background-position: 46px 46px, 46px 46px; } }

body.fp-ed.pl-press .nws-hero-in { position: relative; z-index: 1; max-width: 880px; margin: 0 auto; padding-bottom: 52px; }
body.fp-ed.pl-press .nws-kick {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase;
  color: #dbe6ff; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14);
  padding: 7px 15px; border-radius: 999px; backdrop-filter: blur(8px); margin-bottom: 20px;
}
body.fp-ed.pl-press .nws-kick-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--nws-live); box-shadow: 0 0 0 0 rgba(239,68,68,0.55); animation: nwsPulse 1.8s ease-out infinite; }
@keyframes nwsPulse { 0% { box-shadow: 0 0 0 0 rgba(239,68,68,0.55); } 70% { box-shadow: 0 0 0 9px rgba(239,68,68,0); } 100% { box-shadow: 0 0 0 0 rgba(239,68,68,0); } }
body.fp-ed.pl-press .nws-title {
  font-family: "Bricolage Grotesque", "Plus Jakarta Sans", sans-serif;
  font-weight: 700; line-height: 1.03; letter-spacing: -0.02em;
  font-size: clamp(2.3rem, 5.4vw, 3.9rem); margin: 0 0 16px;
  background: linear-gradient(180deg, #fff 0%, #c6d3ef 100%); -webkit-background-clip: text; background-clip: text; color: transparent;
}
body.fp-ed.pl-press .nws-lead { font-size: clamp(1.02rem, 1.6vw, 1.2rem); line-height: 1.6; color: #aebbd6; max-width: 660px; margin: 0 0 26px; }
body.fp-ed.pl-press .nws-hero-row { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 20px; }
body.fp-ed.pl-press .nws-cta {
  display: inline-flex; align-items: center; gap: 9px; padding: 12px 22px; border-radius: 12px;
  background: linear-gradient(135deg, var(--brand) 0%, color-mix(in srgb, var(--brand) 60%, #6d4bff) 100%);
  color: #fff; font-weight: 700; font-size: 0.96rem; text-decoration: none;
  box-shadow: 0 14px 34px -14px color-mix(in srgb, var(--brand) 80%, #000); transition: transform .18s ease, box-shadow .18s ease;
}
body.fp-ed.pl-press .nws-cta:hover { transform: translateY(-2px); box-shadow: 0 20px 42px -16px color-mix(in srgb, var(--brand) 85%, #000); }
body.fp-ed.pl-press .nws-cta svg { width: 17px; height: 17px; }
body.fp-ed.pl-press .nws-note { font-size: 0.9rem; color: #8493b4; }
body.fp-ed.pl-press .nws-note a { color: #cdd9f5; text-decoration: underline; text-underline-offset: 2px; }

/* headline ticker pinned to the hero base */
body.fp-ed.pl-press .nws-ticker {
  position: relative; z-index: 1; display: flex; align-items: stretch;
  border-top: 1px solid rgba(255,255,255,0.1); background: rgba(0,0,0,0.22); overflow: hidden;
  margin: 0 -30px; backdrop-filter: blur(4px);
}
body.fp-ed.pl-press .nws-ticker-tag {
  flex: none; display: inline-flex; align-items: center; gap: 7px; padding: 0 16px;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; color: #fff;
  background: var(--nws-live); white-space: nowrap;
}
body.fp-ed.pl-press .nws-ticker-tag::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #fff; animation: nwsBlink 1.1s steps(2,start) infinite; }
@keyframes nwsBlink { 50% { opacity: 0.25; } }
body.fp-ed.pl-press .nws-ticker-vp { overflow: hidden; flex: 1; }
body.fp-ed.pl-press .nws-ticker-track { display: inline-flex; gap: 0; white-space: nowrap; padding: 11px 0; animation: nwsMarquee 34s linear infinite; }
body.fp-ed.pl-press .nws-ticker:hover .nws-ticker-track { animation-play-state: paused; }
body.fp-ed.pl-press .nws-ticker-item { color: #cdd9f5; font-size: 0.88rem; font-weight: 600; padding: 0 26px; position: relative; }
body.fp-ed.pl-press .nws-ticker-item::after { content: "•"; position: absolute; right: -3px; color: var(--brand); }
@keyframes nwsMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---- featured lead story (spotlight) ---- */
body.fp-ed.pl-press .nws-feat {
  display: grid; grid-template-columns: 1.55fr 1fr; gap: 0; align-items: stretch;
  border: 1px solid var(--line); border-radius: 22px; overflow: hidden; background: var(--nws-card);
  margin-bottom: 34px; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
body.fp-ed.pl-press .nws-feat:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--brand) 32%, var(--line)); box-shadow: 0 30px 60px -34px rgba(15,23,42,0.5); }
body.fp-ed.pl-press .nws-feat-main { padding: 34px 34px 30px; display: flex; flex-direction: column; }
body.fp-ed.pl-press .nws-feat-flag { display: inline-flex; align-items: center; gap: 8px; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brand); margin-bottom: 14px; }
body.fp-ed.pl-press .nws-feat-flag::before { content: ""; width: 18px; height: 2px; border-radius: 2px; background: var(--brand); }
body.fp-ed.pl-press .nws-feat-title { font-family: "Bricolage Grotesque","Plus Jakarta Sans",sans-serif; font-weight: 700; letter-spacing: -0.015em; line-height: 1.1; font-size: clamp(1.5rem, 2.8vw, 2.25rem); color: var(--ink); margin: 0 0 12px; }
body.fp-ed.pl-press .nws-feat-dek { color: var(--ink-2, #475569); font-size: 1.02rem; line-height: 1.6; margin: 0 0 18px; max-width: 52ch; }
body.fp-ed.pl-press .nws-feat-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; margin-bottom: 18px; }
body.fp-ed.pl-press .nws-feat-cta { display: inline-flex; align-items: center; gap: 8px; align-self: flex-start; font-weight: 700; font-size: 0.95rem; color: var(--brand); }
body.fp-ed.pl-press .nws-feat-cta svg { width: 16px; height: 16px; transition: transform .18s ease; }
body.fp-ed.pl-press .nws-feat:hover .nws-feat-cta svg { transform: translateX(4px); }
body.fp-ed.pl-press .nws-feat-side {
  position: relative; overflow: hidden; padding: 30px; display: flex; flex-direction: column; justify-content: flex-end; color: #fff;
  background: radial-gradient(120% 120% at 80% 0%, color-mix(in srgb, var(--brand) 65%, #6d4bff) 0%, #0c1530 70%);
}
body.fp-ed.pl-press .nws-feat-side::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px); background-size: 30px 30px; -webkit-mask-image: radial-gradient(80% 80% at 80% 10%, #000, transparent 75%); mask-image: radial-gradient(80% 80% at 80% 10%, #000, transparent 75%); }
body.fp-ed.pl-press .nws-feat-cat2 { position: relative; font-size: 0.9rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: #cdd9f5; margin-bottom: 10px; }
body.fp-ed.pl-press .nws-feat-date { position: relative; font-family: "Bricolage Grotesque", sans-serif; font-weight: 700; font-size: clamp(3.2rem, 6.5vw, 5.4rem); line-height: 0.92; letter-spacing: -0.02em; }
body.fp-ed.pl-press .nws-feat-sub { position: relative; font-size: 1.02rem; color: #aebed4; margin-top: 12px; max-width: 22ch; }

/* ---- section heads + topic bar ---- */
body.fp-ed.pl-press .nws-sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin: 6px 0 16px; }
body.fp-ed.pl-press .nws-sec-title { font-family: "Bricolage Grotesque","Plus Jakarta Sans",sans-serif; font-weight: 700; letter-spacing: -0.01em; font-size: 1.4rem; color: var(--ink); margin: 0; }
body.fp-ed.pl-press .nws-sec-sub { color: var(--muted); font-size: 0.95rem; margin: 0; }
body.fp-ed.pl-press .nws-topics { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 22px; }
body.fp-ed.pl-press .nws-topic {
  font: 600 13px/1 var(--body, "Inter", sans-serif); color: var(--ink-2, #475569);
  background: var(--paper, #fff); border: 1px solid var(--line); border-radius: 999px; padding: 8px 15px; cursor: pointer;
  transition: all .16s ease;
}
body.fp-ed.pl-press .nws-topic:hover { border-color: color-mix(in srgb, var(--brand) 40%, var(--line)); color: var(--ink); }
body.fp-ed.pl-press .nws-topic.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ---- news grid + cards ---- */
body.fp-ed.pl-press .nws-grid-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(296px, 1fr)); gap: 20px; align-items: start; }
body.fp-ed.pl-press .nws-card {
  position: relative; display: flex; flex-direction: column; background: var(--nws-card);
  border: 1px solid var(--line); border-radius: 18px; padding: 24px 22px 20px; overflow: hidden; text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
body.fp-ed.pl-press .nws-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: hsl(var(--cat-h, 222) 78% 56%); opacity: 0.9; transform: scaleX(0.32); transform-origin: left; transition: transform .25s ease; }
body.fp-ed.pl-press .nws-card:hover { transform: translateY(-5px); border-color: color-mix(in srgb, var(--brand) 30%, var(--line)); box-shadow: 0 26px 50px -32px rgba(15,23,42,0.5); }
body.fp-ed.pl-press .nws-card:hover::before { transform: scaleX(1); }
body.fp-ed.pl-press .nws-card-cat { display: inline-flex; align-items: center; align-self: flex-start; gap: 6px; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase; color: hsl(var(--cat-h, 222) 64% 44%); background: hsl(var(--cat-h, 222) 78% 56% / 0.1); padding: 4px 10px; border-radius: 999px; margin-bottom: 13px; }
body.fp-ed.pl-press .nws-card-title { font-family: "Bricolage Grotesque","Plus Jakarta Sans",sans-serif; font-weight: 700; line-height: 1.2; letter-spacing: -0.01em; font-size: 1.18rem; color: var(--ink); margin: 0 0 9px; }
body.fp-ed.pl-press .nws-card-dek { color: var(--ink-2, #475569); font-size: 0.95rem; line-height: 1.55; margin: 0 0 16px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
body.fp-ed.pl-press .nws-card-meta { display: flex; flex-wrap: wrap; gap: 7px; margin-top: auto; padding-top: 4px; }
body.fp-ed.pl-press .nws-chip { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: var(--muted); }
body.fp-ed.pl-press .nws-chip svg { width: 14px; height: 14px; flex: none; }
body.fp-ed.pl-press .nws-go { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-size: 0.86rem; font-weight: 700; color: var(--brand); }
body.fp-ed.pl-press .nws-go svg { width: 15px; height: 15px; transition: transform .18s ease; }
body.fp-ed.pl-press .nws-card:hover .nws-go svg { transform: translateX(4px); }

/* skeletons */
body.fp-ed.pl-press .nws-skel { border: 1px solid var(--line); border-radius: 18px; padding: 24px 22px; background: var(--nws-card); }
body.fp-ed.pl-press .nws-skel span { display: block; border-radius: 7px; background: linear-gradient(90deg, var(--band) 25%, #efece6 50%, var(--band) 75%); background-size: 200% 100%; animation: ed-skel 1.5s ease-in-out infinite; }
/* nwsShim retired — press skeleton now uses the canonical moving-highlight ed-skel shimmer (editorial.css) instead of an opacity pulse */

/* ---- media-kit band ---- */
body.fp-ed.pl-press .nws-kit { margin-top: 46px; padding-top: 36px; border-top: 1px solid var(--line); }
body.fp-ed.pl-press .nws-kit-head { max-width: 680px; margin: 0 0 24px; }
body.fp-ed.pl-press .nws-kit-kick { display: inline-block; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brand); margin-bottom: 10px; }
body.fp-ed.pl-press .nws-kit-title { font-family: "Bricolage Grotesque","Plus Jakarta Sans",sans-serif; font-weight: 700; letter-spacing: -0.01em; font-size: clamp(1.5rem, 2.6vw, 1.95rem); color: var(--ink); margin: 0 0 8px; }
body.fp-ed.pl-press .nws-kit-sub { color: var(--muted); font-size: 1rem; line-height: 1.6; margin: 0; }
body.fp-ed.pl-press .nws-kit-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(248px, 1fr)); gap: 18px; margin-top: 24px; }
body.fp-ed.pl-press .nws-kit-card { background: var(--nws-card); border: 1px solid var(--line); border-radius: 18px; padding: 26px 24px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
body.fp-ed.pl-press .nws-kit-card:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--brand) 30%, var(--line)); box-shadow: 0 24px 46px -28px rgba(15,23,42,0.5); }
body.fp-ed.pl-press .nws-kit-ic { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 13px; background: color-mix(in srgb, var(--brand) 12%, transparent); color: var(--brand); margin-bottom: 16px; }
body.fp-ed.pl-press .nws-kit-ic svg { width: 23px; height: 23px; }
body.fp-ed.pl-press .nws-kit-ctitle { font-size: 1.1rem; font-weight: 700; color: var(--ink); margin: 0 0 9px; }
body.fp-ed.pl-press .nws-kit-body { color: var(--ink-2, #475569); font-size: 0.97rem; line-height: 1.62; margin: 0; }

/* ---- article reader (detail view) ---- */
body.fp-ed.pl-press .nws-back { display: inline-flex; align-items: center; gap: 7px; color: var(--muted); font-weight: 600; font-size: 0.92rem; margin: 4px 0 22px; text-decoration: none; }
body.fp-ed.pl-press .nws-back:hover { color: var(--ink); }
body.fp-ed.pl-press .nws-back svg { width: 15px; height: 15px; }
body.fp-ed.pl-press .nws-art { max-width: 760px; margin: 0 auto; }
body.fp-ed.pl-press .nws-art-head { padding-bottom: 22px; margin-bottom: 26px; border-bottom: 1px solid var(--line); }
body.fp-ed.pl-press .nws-art-cat { display: inline-flex; align-items: center; gap: 7px; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: hsl(var(--cat-h, 222) 64% 44%); background: hsl(var(--cat-h, 222) 78% 56% / 0.1); padding: 5px 12px; border-radius: 999px; margin-bottom: 16px; }
body.fp-ed.pl-press .nws-art-title { font-family: "Bricolage Grotesque","Plus Jakarta Sans",sans-serif; font-weight: 700; letter-spacing: -0.018em; line-height: 1.08; font-size: clamp(2rem, 4.2vw, 2.9rem); color: var(--ink); margin: 0 0 14px; }
body.fp-ed.pl-press .nws-art-dek { font-size: 1.16rem; line-height: 1.6; color: var(--ink-2, #334155); margin: 0 0 16px; }
body.fp-ed.pl-press .nws-art-meta { display: flex; flex-wrap: wrap; gap: 10px 16px; }
body.fp-ed.pl-press .nws-more { max-width: 1200px; margin: 54px auto 0; padding-top: 34px; border-top: 1px solid var(--line); }
body.fp-ed.pl-press .nws-more-title { font-family: "Bricolage Grotesque","Plus Jakarta Sans",sans-serif; font-weight: 700; font-size: 1.3rem; color: var(--ink); margin: 0 0 18px; }

@media (max-width: 760px) {
  body.fp-ed.pl-press .nws-feat { grid-template-columns: 1fr; }
  body.fp-ed.pl-press .nws-feat-side { flex-direction: row; align-items: center; justify-content: space-between; gap: 14px; padding: 22px 24px; }
  body.fp-ed.pl-press .nws-feat-date { font-size: clamp(2.6rem, 12vw, 3.4rem); }
}
@media (max-width: 560px) {
  body.fp-ed.pl-press .nws-hero { padding: 44px 20px 0; }
  body.fp-ed.pl-press .nws-grid-cards { grid-template-columns: 1fr; }
  body.fp-ed.pl-press .nws-ticker-tag { padding: 0 12px; }
}
@media (prefers-reduced-motion: reduce) {
  body.fp-ed.pl-press .nws-orb,
  body.fp-ed.pl-press .nws-mesh,
  body.fp-ed.pl-press .nws-ticker-track,
  body.fp-ed.pl-press .nws-kick-dot,
  body.fp-ed.pl-press .nws-ticker-tag::before,
  body.fp-ed.pl-press .nws-skel span { animation: none; }
  body.fp-ed.pl-press .nws-feat, body.fp-ed.pl-press .nws-card, body.fp-ed.pl-press .nws-kit-card { transition: none; }
}


body.fp-ed.pl-careers {
  --car-brand:   var(--brand, #2563eb);
  --car-brand-d: var(--brand-2, #1d4ed8);
  --car-tint:    var(--lz-blu-t, #eaf1fe);
  --car-soft:    var(--lz-blu-soft, #d3e2fc);
  --car-grn:     var(--lz-grn, #0d9b66);
  --car-line:    var(--line, #e7e5df);
  --car-line-2:  var(--line-2, #d9d7cf);
  --car-ink:     var(--ink, #0b0b0c);
  --car-ink-2:   var(--ink-2, #2b2b2d);
  --car-muted:   var(--muted, #6d6d72);
  --car-paper:   var(--paper, #fff);
  --car-rad:     16px;
  --car-rad-sm:  11px;
  --car-stick:   72px;   /* sticky .ed-header is top:0 ~64px + 8px gap */
  --car-ease:    cubic-bezier(.22, .61, .36, 1);
}

body.fp-ed.pl-careers [data-careers-depts] {
  display: block !important; flex-wrap: initial !important; gap: 0 !important; margin: 0 !important;
}
body.fp-ed.pl-careers [data-careers-list] {
  display: block !important; grid-template-columns: none !important; gap: 0 !important;
}

body.fp-ed.pl-careers .car-hero {
  position: relative; isolation: isolate;
  padding: clamp(34px, 6vw, 76px) 0 clamp(30px, 4vw, 52px);
  margin-bottom: 8px; overflow: clip;
}
body.fp-ed.pl-careers .car-hero-aura {
  position: absolute; inset: -10% -6% auto -6%; height: 320px; z-index: -1; pointer-events: none;
  background:
    radial-gradient(520px 300px at 14% 0%, rgba(37,99,235,.13), transparent 70%),
    radial-gradient(480px 280px at 86% 6%, rgba(29,78,216,.09), transparent 72%),
    radial-gradient(420px 260px at 52% -8%, rgba(13,155,102,.05), transparent 74%);
}
body.fp-ed.pl-careers .car-hero-in { max-width: 820px; }
body.fp-ed.pl-careers .car-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font: 600 12.5px/1 var(--body); letter-spacing: .06em; text-transform: uppercase;
  color: var(--car-brand-d); background: var(--car-tint); border: 1px solid var(--car-soft);
  padding: 7px 13px 7px 11px; border-radius: 999px;
}
body.fp-ed.pl-careers .car-eyebrow-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--car-brand); box-shadow: 0 0 0 3px rgba(37,99,235,.18);
}
body.fp-ed.pl-careers .car-hero-title {
  margin: 18px 0 0; font-family: var(--serif); font-weight: 500;
  font-size: clamp(33px, 5.4vw, 60px); line-height: 1.04; letter-spacing: -0.02em;
  color: var(--car-ink); max-width: 14ch; text-wrap: balance;
}
body.fp-ed.pl-careers .car-hero-lead {
  margin: 18px 0 0; font: 400 clamp(15.5px,1.6vw,18.5px)/1.62 var(--body);
  color: var(--car-ink-2); max-width: 60ch;
}
body.fp-ed.pl-careers .car-values { list-style: none; display: flex; flex-wrap: wrap; gap: 9px; margin: 24px 0 0; padding: 0; }
body.fp-ed.pl-careers .car-value {
  display: inline-flex; align-items: center; gap: 8px;
  font: 600 13.5px/1 var(--body); color: var(--car-ink);
  background: var(--car-paper); border: 1px solid var(--car-line-2); border-radius: 999px; padding: 9px 15px 9px 12px;
}
body.fp-ed.pl-careers .car-value svg { width: 17px; height: 17px; color: var(--car-brand); flex: none; }
body.fp-ed.pl-careers .car-hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin: 28px 0 0; }
body.fp-ed.pl-careers .car-hero-cta { display: inline-flex; align-items: center; gap: 9px; }
body.fp-ed.pl-careers .car-hero-cta svg { width: 18px; height: 18px; transition: transform .22s var(--car-ease); }
body.fp-ed.pl-careers .car-hero-cta:hover svg { transform: translateY(2px); }
body.fp-ed.pl-careers .car-hero-note {
  display: flex; align-items: center; gap: 8px; margin: 20px 0 0;
  font: 500 13.5px/1.4 var(--body); color: var(--car-muted);
}
body.fp-ed.pl-careers .car-hero-note svg { width: 16px; height: 16px; color: var(--car-grn); flex: none; }

body.fp-ed.pl-careers [data-careers-depts].car-filter {
  position: sticky; top: var(--car-stick); z-index: 40;
  display: flex !important; flex-wrap: wrap; gap: 6px !important;
  padding: 8px !important; margin: 6px 0 30px !important; scroll-margin-top: var(--car-stick);
  background: rgba(255,255,255,.82); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border: 1px solid var(--car-line); border-radius: 999px; box-shadow: 0 1px 2px rgba(16,21,33,.04);
}
body.fp-ed.pl-careers #openroles { scroll-margin-top: calc(var(--car-stick) + 8px); }
body.fp-ed.pl-careers .car-pill {
  appearance: none; cursor: pointer; font: 600 13.5px/1 var(--body);
  color: var(--car-ink-2); background: transparent; border: 0; border-radius: 999px;
  padding: 9px 16px; white-space: nowrap; transition: color .18s var(--car-ease), background .18s var(--car-ease);
}
body.fp-ed.pl-careers .car-pill:hover { color: var(--car-ink); background: var(--car-tint); }
body.fp-ed.pl-careers .car-pill:focus-visible { outline: none; box-shadow: 0 0 0 2px var(--car-paper), 0 0 0 4px var(--car-brand); }
body.fp-ed.pl-careers .car-pill.is-active,
body.fp-ed.pl-careers .car-pill[aria-pressed="true"] {
  color: #fff; background: var(--car-brand); box-shadow: 0 1px 6px rgba(37,99,235,.28);
}
/* mobile: pills scroll horizontally instead of wrapping tall (graft from B) */
@media (max-width: 640px) {
  body.fp-ed.pl-careers [data-careers-depts].car-filter {
    flex-wrap: nowrap; overflow-x: auto; overflow-y: hidden; scrollbar-width: none;
    scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch; border-radius: 18px;
  }
  body.fp-ed.pl-careers [data-careers-depts].car-filter::-webkit-scrollbar { display: none; }
  body.fp-ed.pl-careers .car-pill { flex: 0 0 auto; scroll-snap-align: start; }
}

body.fp-ed.pl-careers .car-roles {
  border: 1px solid var(--car-line); border-radius: var(--car-rad); background: var(--car-paper); overflow: hidden;
}
body.fp-ed.pl-careers .car-role {
  position: relative; display: grid; grid-template-columns: minmax(0,1fr) auto;
  align-items: center; gap: 28px; padding: 22px clamp(18px,2.4vw,26px);
  text-decoration: none; color: inherit; border-top: 1px solid var(--car-line); transition: background .18s var(--car-ease);
}
body.fp-ed.pl-careers .car-role:first-child { border-top: 0; }
body.fp-ed.pl-careers .car-role::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--car-brand); transform: scaleY(0); transform-origin: top; transition: transform .2s var(--car-ease);
}
body.fp-ed.pl-careers .car-role:hover,
body.fp-ed.pl-careers .car-role:focus-visible { background: var(--car-tint); outline: none; }
body.fp-ed.pl-careers .car-role:hover::before,
body.fp-ed.pl-careers .car-role:focus-visible::before { transform: scaleY(1); }
body.fp-ed.pl-careers .car-role:focus-visible { box-shadow: inset 0 0 0 2px var(--car-soft); }
body.fp-ed.pl-careers .car-role-main { min-width: 0; }
body.fp-ed.pl-careers .car-role-dept {
  display: inline-block; font: 600 11.5px/1 var(--body); letter-spacing: .05em;
  text-transform: uppercase; color: var(--car-brand-d);
}
body.fp-ed.pl-careers .car-role-title {
  margin: 9px 0 0; font: 600 clamp(18px,2vw,21px)/1.25 var(--body); letter-spacing: -0.01em; color: var(--car-ink);
}
body.fp-ed.pl-careers .car-role-excerpt {
  margin: 6px 0 0; font: 400 14.5px/1.55 var(--body); color: var(--car-ink-2); max-width: 64ch;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
body.fp-ed.pl-careers .car-role-aside { display: flex; align-items: center; gap: 18px; justify-self: end; }
body.fp-ed.pl-careers .car-meta { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 7px; max-width: 320px; }
body.fp-ed.pl-careers .car-chip {
  display: inline-flex; align-items: center; gap: 6px; font: 600 12.5px/1 var(--body);
  color: var(--car-ink-2); background: var(--car-paper); border: 1px solid var(--car-line-2);
  border-radius: 999px; padding: 6px 11px; white-space: nowrap;
}
body.fp-ed.pl-careers .car-chip svg { width: 14px; height: 14px; color: var(--car-muted); flex: none; }
body.fp-ed.pl-careers .car-chip--remote,
body.fp-ed.pl-careers .car-chip--wm-remote {
  color: var(--car-grn); background: rgba(13,155,102,.08); border-color: rgba(13,155,102,.22);
}
body.fp-ed.pl-careers .car-chip--remote svg,
body.fp-ed.pl-careers .car-chip--wm-remote svg { color: var(--car-grn); }
/* work-mode chip variants — on-site (amber) & hybrid (blue) */
body.fp-ed.pl-careers .car-chip--wm-onsite {
  color: #b45309; background: rgba(245,158,11,.10); border-color: rgba(245,158,11,.26);
}
body.fp-ed.pl-careers .car-chip--wm-onsite svg { color: #b45309; }
body.fp-ed.pl-careers .car-chip--wm-hybrid {
  color: #1d4ed8; background: rgba(59,130,246,.10); border-color: rgba(59,130,246,.26);
}
body.fp-ed.pl-careers .car-chip--wm-hybrid svg { color: #1d4ed8; }
/* salary / compensation chip — green, money emphasis */
body.fp-ed.pl-careers .car-chip--sal {
  color: var(--car-grn); background: rgba(13,155,102,.08); border-color: rgba(13,155,102,.22); font-weight: 700;
}
body.fp-ed.pl-careers .car-chip--sal svg { color: var(--car-grn); }
body.fp-ed.pl-careers .car-role-arrow {
  flex: none; width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; border: 1px solid var(--car-line-2); background: var(--car-paper); color: var(--car-ink);
  transition: background .2s var(--car-ease), border-color .2s var(--car-ease), color .2s var(--car-ease);
}
body.fp-ed.pl-careers .car-role-arrow svg { width: 19px; height: 19px; transition: transform .22s var(--car-ease); }
body.fp-ed.pl-careers .car-role:hover .car-role-arrow,
body.fp-ed.pl-careers .car-role:focus-visible .car-role-arrow {
  background: var(--car-brand); border-color: var(--car-brand); color: #fff;
}
body.fp-ed.pl-careers .car-role:hover .car-role-arrow svg,
body.fp-ed.pl-careers .car-role:focus-visible .car-role-arrow svg { transform: translateX(2px); }
/* featured / lead row */
body.fp-ed.pl-careers .car-role.is-lead { background: linear-gradient(180deg, var(--car-tint), rgba(234,241,254,.35)); }
body.fp-ed.pl-careers .car-role.is-lead::before { transform: scaleY(1); }
body.fp-ed.pl-careers .car-role.is-lead:hover { background: var(--car-tint); }
body.fp-ed.pl-careers .car-lead-tag {
  display: inline-flex; align-items: center; gap: 6px; margin-left: 9px; vertical-align: 2px;
  font: 700 10.5px/1 var(--body); letter-spacing: .05em; text-transform: uppercase;
  color: var(--car-brand-d); background: var(--car-paper); border: 1px solid var(--car-soft);
  border-radius: 999px; padding: 4px 9px;
}
/* skeleton rows */
body.fp-ed.pl-careers .car-role-skel {
  display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: center; gap: 28px;
  padding: 24px clamp(18px,2.4vw,26px); border-top: 1px solid var(--car-line);
}
body.fp-ed.pl-careers .car-role-skel:first-child { border-top: 0; }
body.fp-ed.pl-careers .car-skel-line {
  height: 12px; border-radius: 6px;
  /* canonical site-wide shimmer (ed-skel keyframe from editorial.css, loaded on every fp-ed page) */
  background: linear-gradient(90deg, var(--band) 25%, #efece6 50%, var(--band) 75%);
  background-size: 200% 100%; animation: ed-skel 1.5s ease-in-out infinite;
}

body.fp-ed.pl-careers .car-detail { display: block; }
body.fp-ed.pl-careers .car-back {
  display: inline-flex; align-items: center; gap: 7px; font: 600 13.5px/1 var(--body);
  color: var(--car-ink-2); text-decoration: none; padding: 9px 14px 9px 11px;
  border: 1px solid var(--car-line-2); border-radius: 999px; margin-bottom: 22px;
  transition: background .18s var(--car-ease), color .18s var(--car-ease);
}
body.fp-ed.pl-careers .car-back:hover { background: var(--car-tint); color: var(--car-brand-d); }
body.fp-ed.pl-careers .car-back svg { width: 16px; height: 16px; }
body.fp-ed.pl-careers .car-detail-grid {
  display: grid; grid-template-columns: minmax(0,1fr) 340px; gap: clamp(28px,4vw,56px); align-items: start;
}
body.fp-ed.pl-careers .car-article { min-width: 0; }
body.fp-ed.pl-careers .car-article-head { margin-bottom: 26px; }
body.fp-ed.pl-careers .car-detail-cat {
  display: inline-block; font: 600 12px/1 var(--body); letter-spacing: .05em; text-transform: uppercase;
  color: var(--car-brand-d); background: var(--car-tint); border: 1px solid var(--car-soft);
  border-radius: 999px; padding: 6px 13px;
}
body.fp-ed.pl-careers .car-detail-title {
  margin: 16px 0 0; font-family: var(--serif); font-weight: 500;
  font-size: clamp(28px,4vw,44px); line-height: 1.07; letter-spacing: -0.02em; color: var(--car-ink); text-wrap: balance;
}
body.fp-ed.pl-careers .car-article-head .car-meta { justify-content: flex-start; margin: 16px 0 0; max-width: none; }
body.fp-ed.pl-careers .car-detail-lead { margin: 16px 0 0; font: 400 17px/1.6 var(--body); color: var(--car-ink-2); max-width: 62ch; }
body.fp-ed.pl-careers .car-sec-h {
  margin: 38px 0 0; padding-top: 24px; border-top: 1px solid var(--car-line);
  font: 600 21px/1.2 var(--body); letter-spacing: -0.01em; color: var(--car-ink);
}
/* checklist bullets fed as .ed-prose > ul.car-checklist */
body.fp-ed.pl-careers .car-article .car-checklist { margin: 16px 0 0; padding: 0; list-style: none; }
body.fp-ed.pl-careers .car-article .car-checklist li {
  position: relative; margin: 0 0 12px; padding-left: 30px; line-height: 1.62; color: var(--car-ink-2); font-size: 15.5px;
}
body.fp-ed.pl-careers .car-article .car-checklist li > p { margin: 0; display: inline; }
body.fp-ed.pl-careers .car-article .car-checklist li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 18px; height: 18px; border-radius: 50%;
  background: var(--car-tint);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231d4ed8' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 11px 11px;
}
/* sticky side-card */
body.fp-ed.pl-careers .car-side { position: sticky; top: calc(var(--car-stick) + 14px); }
body.fp-ed.pl-careers .car-side-card {
  border: 1px solid var(--car-line); border-radius: var(--car-rad); background: var(--car-paper);
  padding: 22px; box-shadow: 0 18px 40px -28px rgba(16,21,33,.4);
}
body.fp-ed.pl-careers .car-side-h {
  font: 600 12px/1 var(--body); letter-spacing: .05em; text-transform: uppercase; color: var(--car-muted); margin: 0 0 4px;
}
body.fp-ed.pl-careers .car-facts { list-style: none; margin: 12px 0 0; padding: 0; }
body.fp-ed.pl-careers .car-fact { display: flex; align-items: center; gap: 11px; padding: 12px 0; border-top: 1px solid var(--car-line); }
body.fp-ed.pl-careers .car-fact:first-child { border-top: 0; padding-top: 4px; }
body.fp-ed.pl-careers .car-fact-ic {
  flex: none; width: 34px; height: 34px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--car-rad-sm); background: var(--car-tint); color: var(--car-brand-d);
}
body.fp-ed.pl-careers .car-fact-ic svg { width: 17px; height: 17px; }
body.fp-ed.pl-careers .car-fact-txt { min-width: 0; }
body.fp-ed.pl-careers .car-fact-k {
  display: block; font: 600 11.5px/1 var(--body); letter-spacing: .04em; text-transform: uppercase; color: var(--car-muted);
}
body.fp-ed.pl-careers .car-fact-v { display: block; margin-top: 4px; font: 600 14.5px/1.3 var(--body); color: var(--car-ink); }
body.fp-ed.pl-careers .car-side-card .car-apply-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; margin-top: 18px;
}
body.fp-ed.pl-careers .car-side-card .car-apply-cta svg { width: 16px; height: 16px; }
body.fp-ed.pl-careers .car-side-note {
  display: flex; align-items: flex-start; gap: 8px; margin: 14px 0 0; font: 500 12.5px/1.5 var(--body); color: var(--car-muted);
}
body.fp-ed.pl-careers .car-side-note svg { width: 15px; height: 15px; color: var(--car-grn); flex: none; margin-top: 1px; }
/* inline Apply block under the article */
body.fp-ed.pl-careers .car-apply {
  margin-top: 34px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px;
  padding: 24px clamp(20px,3vw,30px); border-radius: var(--car-rad);
  background: linear-gradient(120deg, var(--car-tint), rgba(255,255,255,.6)); border: 1px solid var(--car-soft);
}
body.fp-ed.pl-careers .car-apply-copy strong { display: block; font: 600 19px/1.25 var(--body); color: var(--car-ink); }
body.fp-ed.pl-careers .car-apply-copy span { display: block; margin-top: 5px; font: 400 14.5px/1.55 var(--body); color: var(--car-ink-2); max-width: 52ch; }
/* "Other open roles" reuses the rows under the article */
body.fp-ed.pl-careers .car-more-h { margin-top: 44px; }
body.fp-ed.pl-careers .car-more { margin-top: 18px; }

body.fp-ed.pl-careers [data-careers-empty] .ed-empty,
body.fp-ed.pl-careers [data-careers-detail] .ed-empty {
  max-width: 560px; margin: 8px auto 0; padding: clamp(36px,5vw,56px) 24px; border-radius: var(--car-rad);
  border: 1px dashed var(--car-soft); background: var(--car-tint); text-align: center;
}

@media (max-width: 980px) {
  body.fp-ed.pl-careers .car-detail-grid { grid-template-columns: 1fr; }
  body.fp-ed.pl-careers .car-side { position: static; order: -1; }   /* facts + Apply lead on mobile */
  body.fp-ed.pl-careers .car-side-card { box-shadow: none; }
}
@media (max-width: 760px) {
  body.fp-ed.pl-careers .car-role,
  body.fp-ed.pl-careers .car-role-skel { grid-template-columns: 1fr; gap: 16px; }
  body.fp-ed.pl-careers .car-role-aside { justify-self: stretch; justify-content: space-between; gap: 12px; }
  body.fp-ed.pl-careers .car-meta { justify-content: flex-start; max-width: none; }
}
@media (max-width: 420px) {
  body.fp-ed.pl-careers .car-hero-actions .ed-btn { width: 100%; justify-content: center; }
  body.fp-ed.pl-careers .car-apply { flex-direction: column; align-items: stretch; }
  body.fp-ed.pl-careers .car-apply .car-apply-cta { width: 100%; justify-content: center; }
  body.fp-ed.pl-careers .car-role-arrow { width: 38px; height: 38px; }
}

@media (prefers-reduced-motion: reduce) {
  body.fp-ed.pl-careers .car-skel-line { animation: none; background: var(--band); }
  body.fp-ed.pl-careers .car-pill,
  body.fp-ed.pl-careers .car-role,
  body.fp-ed.pl-careers .car-role::before,
  body.fp-ed.pl-careers .car-role-arrow,
  body.fp-ed.pl-careers .car-role-arrow svg,
  body.fp-ed.pl-careers .car-hero-cta svg,
  body.fp-ed.pl-careers .car-back { transition: none !important; }
  body.fp-ed.pl-careers .car-hero-cta:hover svg,
  body.fp-ed.pl-careers .car-role:hover .car-role-arrow svg,
  body.fp-ed.pl-careers .car-role:focus-visible .car-role-arrow svg { transform: none; }
}

/* carShimmer retired — careers skeleton now uses the canonical ed-skel keyframe (editorial.css) */

body.fp-ed.pl-careers .car-applyform {
  position: fixed; inset: 0; z-index: 1200; display: grid; place-items: center; padding: 20px;
  opacity: 0; transition: opacity .26s ease;
}
body.fp-ed.pl-careers .car-applyform[hidden] { display: none; }
body.fp-ed.pl-careers .car-applyform.is-open { opacity: 1; }
body.fp-ed.pl-careers .car-applyform-backdrop {
  position: absolute; inset: 0; background: rgba(12, 20, 33, .5); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
body.fp-ed.pl-careers .car-applyform-card {
  position: relative; width: 100%; max-width: 620px; max-height: calc(100vh - 40px); overflow: auto;
  background: var(--car-paper, #fff); border: 1px solid var(--car-line, #e7e5df); border-radius: 20px;
  box-shadow: 0 50px 110px -45px rgba(16, 21, 33, .55);
  transform: translateY(16px) scale(.97); transition: transform .32s cubic-bezier(.2, .9, .3, 1.2);
}
body.fp-ed.pl-careers .car-applyform.is-open .car-applyform-card { transform: translateY(0) scale(1); }
body.fp-ed.pl-careers .car-applyform-x {
  position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--car-line-2, #d9d7cf); background: var(--car-paper, #fff); color: var(--car-muted, #6d6d72);
  font-size: 20px; line-height: 1; cursor: pointer; display: inline-flex; align-items: center; justify-content: center;
  transition: background .18s, color .18s;
}
body.fp-ed.pl-careers .car-applyform-x:hover { background: var(--car-tint, #eaf1fe); color: var(--car-ink, #0b0b0c); }
body.fp-ed.pl-careers .car-applyform-head {
  padding: 26px clamp(20px, 4vw, 32px) 18px; border-bottom: 1px solid var(--car-line, #e7e5df);
  background: linear-gradient(180deg, var(--car-tint, #eaf1fe), transparent);
}
body.fp-ed.pl-careers .car-applyform-eyebrow {
  display: inline-block; font: 600 11.5px/1 var(--body); letter-spacing: .06em; text-transform: uppercase; color: var(--car-brand-d, #1d4ed8);
}
body.fp-ed.pl-careers .car-applyform-title { margin: 8px 0 0; font: 600 clamp(20px, 3vw, 25px)/1.18 var(--body); letter-spacing: -.01em; color: var(--car-ink, #0b0b0c); }
body.fp-ed.pl-careers .car-applyform-sub { margin: 7px 0 0; font: 400 14px/1.55 var(--body); color: var(--car-ink-2, #2b2b2d); }
body.fp-ed.pl-careers .car-applyform-body { padding: 20px clamp(20px, 4vw, 32px) 26px; display: grid; gap: 15px; }
body.fp-ed.pl-careers .car-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
body.fp-ed.pl-careers .car-field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
body.fp-ed.pl-careers .car-field label { font: 600 13px/1.2 var(--body); color: var(--car-ink, #0b0b0c); }
body.fp-ed.pl-careers .car-field label span[aria-hidden] { color: var(--car-brand, #2563eb); }
body.fp-ed.pl-careers .car-field-opt { font-weight: 400; color: var(--car-muted, #6d6d72); }
body.fp-ed.pl-careers .car-field input,
body.fp-ed.pl-careers .car-field select,
body.fp-ed.pl-careers .car-field textarea {
  width: 100%; font: 400 14.5px/1.45 var(--body); color: var(--car-ink, #0b0b0c);
  background: var(--car-paper, #fff); border: 1px solid var(--car-line-2, #d9d7cf); border-radius: 11px;
  padding: 11px 13px; transition: border-color .16s, box-shadow .16s; box-sizing: border-box;
}
body.fp-ed.pl-careers .car-field textarea { resize: vertical; min-height: 96px; }
body.fp-ed.pl-careers .car-field input:focus,
body.fp-ed.pl-careers .car-field select:focus,
body.fp-ed.pl-careers .car-field textarea:focus {
  outline: none; border-color: var(--car-brand, #2563eb); box-shadow: 0 0 0 3px rgba(37, 99, 235, .14);
}
body.fp-ed.pl-careers .car-field input[readonly] { background: var(--car-tint, #eaf1fe); color: var(--car-ink-2, #2b2b2d); cursor: default; }
body.fp-ed.pl-careers .car-field-hint { font: 400 12px/1.4 var(--body); color: var(--car-muted, #6d6d72); }
body.fp-ed.pl-careers .car-field-count { font: 500 11.5px/1 var(--body); color: var(--car-muted, #6d6d72); align-self: flex-end; }
body.fp-ed.pl-careers .car-applyform-file {
  display: flex; align-items: center; gap: 10px; cursor: pointer; font: 500 14px/1.3 var(--body); color: var(--car-ink-2, #2b2b2d);
  background: var(--car-tint, #eaf1fe); border: 1px dashed var(--car-soft, #d3e2fc); border-radius: 11px; padding: 12px 14px;
  transition: border-color .16s, background .16s;
}
body.fp-ed.pl-careers .car-applyform-file:hover { border-color: var(--car-brand, #2563eb); }
body.fp-ed.pl-careers .car-applyform-file.is-set { color: var(--car-brand-d, #1d4ed8); border-style: solid; }
body.fp-ed.pl-careers .car-applyform-file svg { width: 20px; height: 20px; color: var(--car-brand, #2563eb); flex: none; }
body.fp-ed.pl-careers .car-applyform-err {
  margin: 0; font: 500 13px/1.45 var(--body); color: #b42318; background: #fef3f2; border: 1px solid #fda29b;
  border-radius: 10px; padding: 10px 13px;
}
body.fp-ed.pl-careers .car-applyform-err[hidden] { display: none; }
body.fp-ed.pl-careers .car-applyform-actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 4px; }
body.fp-ed.pl-careers .car-applyform-actions .ed-btn[disabled] { opacity: .6; pointer-events: none; }

/* applied-state CTA (after a successful application) */
body.fp-ed.pl-careers .car-apply-cta.is-applied {
  background: rgba(13, 155, 102, .1) !important; color: var(--car-grn, #0d9b66) !important;
  border: 1px solid rgba(13, 155, 102, .35) !important; pointer-events: none;
}
body.fp-ed.pl-careers .car-apply-cta.is-applied svg { display: none; }

body.fp-ed.pl-careers .car-done {
  position: fixed; inset: 0; z-index: 1300; display: grid; place-items: center; padding: 20px;
  background: rgba(8, 20, 12, .46); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  opacity: 0; transition: opacity .28s ease;
}
body.fp-ed.pl-careers .car-done[hidden] { display: none; }
body.fp-ed.pl-careers .car-done.is-open { opacity: 1; }
body.fp-ed.pl-careers .car-done-card {
  position: relative; max-width: 440px; width: 100%; text-align: center; padding: 40px 32px 30px;
  background: var(--car-paper, #fff); border-radius: 24px; border: 1px solid rgba(13, 155, 102, .2);
  box-shadow: 0 40px 90px -40px rgba(7, 60, 30, .5);
  transform: translateY(14px) scale(.96); transition: transform .34s cubic-bezier(.2, .9, .3, 1.2);
}
body.fp-ed.pl-careers .car-done.is-open .car-done-card { transform: translateY(0) scale(1); }
body.fp-ed.pl-careers .car-done-check { width: 76px; height: 76px; margin: 0 auto 18px; }
body.fp-ed.pl-careers .car-done-check svg { width: 100%; height: 100%; }
body.fp-ed.pl-careers .car-done-ring { fill: none; stroke: #16a34a; stroke-width: 3; stroke-dasharray: 152; stroke-dashoffset: 152; }
body.fp-ed.pl-careers .car-done.is-open .car-done-ring { animation: carDoneRing .5s ease forwards; }
body.fp-ed.pl-careers .car-done-tick { fill: none; stroke: #16a34a; stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 48; stroke-dashoffset: 48; }
body.fp-ed.pl-careers .car-done.is-open .car-done-tick { animation: carDoneTick .35s .42s ease forwards; }
body.fp-ed.pl-careers .car-done-title { margin: 0; font: 600 24px/1.2 var(--body); letter-spacing: -.01em; color: var(--car-ink, #0b0b0c); }
body.fp-ed.pl-careers .car-done-text { margin: 10px 0 0; font: 400 14.5px/1.6 var(--body); color: var(--car-ink-2, #2b2b2d); }
body.fp-ed.pl-careers .car-done-actions { display: flex; justify-content: center; gap: 10px; margin-top: 22px; flex-wrap: wrap; }
body.fp-ed.pl-careers .car-done-burst { position: absolute; inset: 0; pointer-events: none; overflow: hidden; border-radius: 24px; }
body.fp-ed.pl-careers .car-done-burst i {
  position: absolute; top: 46px; left: 50%; width: 8px; height: 8px; border-radius: 2px; opacity: 0;
}
body.fp-ed.pl-careers .car-done-burst i:nth-child(1) { background: #16a34a; }
body.fp-ed.pl-careers .car-done-burst i:nth-child(2) { background: #2563eb; }
body.fp-ed.pl-careers .car-done-burst i:nth-child(3) { background: #f59e0b; }
body.fp-ed.pl-careers .car-done-burst i:nth-child(4) { background: #16a34a; }
body.fp-ed.pl-careers .car-done-burst i:nth-child(5) { background: #2563eb; }
body.fp-ed.pl-careers .car-done-burst i:nth-child(6) { background: #f59e0b; }
body.fp-ed.pl-careers .car-done.is-open .car-done-burst i:nth-child(1) { animation: carBurst .8s .35s ease-out forwards; --bx: -70px; --by: -34px; }
body.fp-ed.pl-careers .car-done.is-open .car-done-burst i:nth-child(2) { animation: carBurst .8s .38s ease-out forwards; --bx: 64px; --by: -40px; }
body.fp-ed.pl-careers .car-done.is-open .car-done-burst i:nth-child(3) { animation: carBurst .8s .40s ease-out forwards; --bx: -40px; --by: -56px; }
body.fp-ed.pl-careers .car-done.is-open .car-done-burst i:nth-child(4) { animation: carBurst .8s .42s ease-out forwards; --bx: 46px; --by: -58px; }
body.fp-ed.pl-careers .car-done.is-open .car-done-burst i:nth-child(5) { animation: carBurst .8s .44s ease-out forwards; --bx: -14px; --by: -64px; }
body.fp-ed.pl-careers .car-done.is-open .car-done-burst i:nth-child(6) { animation: carBurst .8s .46s ease-out forwards; --bx: 18px; --by: -62px; }
@keyframes carDoneRing { to { stroke-dashoffset: 0; } }
@keyframes carDoneTick { to { stroke-dashoffset: 0; } }
@keyframes carBurst { 0% { opacity: 1; transform: translate(-50%, 0) scale(1); } 100% { opacity: 0; transform: translate(calc(-50% + var(--bx)), var(--by)) scale(.4); } }

@media (max-width: 560px) {
  body.fp-ed.pl-careers .car-field-row { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  body.fp-ed.pl-careers .car-applyform,
  body.fp-ed.pl-careers .car-applyform-card,
  body.fp-ed.pl-careers .car-done,
  body.fp-ed.pl-careers .car-done-card { transition: none; }
  body.fp-ed.pl-careers .car-done.is-open .car-done-ring,
  body.fp-ed.pl-careers .car-done.is-open .car-done-tick,
  body.fp-ed.pl-careers .car-done.is-open .car-done-burst i { animation: none; }
  body.fp-ed.pl-careers .car-done-ring,
  body.fp-ed.pl-careers .car-done-tick { stroke-dashoffset: 0; }
}


body.fp-ed.pl-blog {
  --blg-ink: #14110c;
  --blg-soft: #6c6359;
  --blg-line: rgba(31,24,16,0.10);
  --blg-paper: #fbf8f3;
  --blg-card: #ffffff;
  --blg-accent: var(--brand, #2f6df6);
  --blg-warm: #f2683b;
  --blg-serif: "Fraunces", Georgia, "Times New Roman", serif;
  --blg-sans: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  background: var(--blg-paper);
}
body.fp-ed.pl-blog main { font-family: var(--blg-sans); }
body.fp-ed.pl-blog .ed-container { max-width: min(1180px, 94vw); }

body.fp-ed.pl-blog .blg-hero {
  position: relative; overflow: hidden; isolation: isolate;
  margin: 18px 0 30px; padding: clamp(46px, 7vw, 86px) clamp(22px, 5vw, 64px) clamp(40px, 6vw, 70px);
  border-radius: 30px; border: 1px solid var(--blg-line);
  background: radial-gradient(120% 130% at 8% 0%, #fff 0%, #fdf6ee 46%, #f7eee2 100%);
  box-shadow: 0 40px 90px -56px rgba(40,28,14,0.40);
}
body.fp-ed.pl-blog .blg-hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
body.fp-ed.pl-blog .blg-orb { position: absolute; border-radius: 50%; filter: blur(46px); opacity: 0.55; mix-blend-mode: multiply; }
body.fp-ed.pl-blog .blg-orb--a { width: 440px; height: 440px; top: -150px; left: -80px; background: radial-gradient(circle, rgba(47,109,246,0.42), transparent 68%); animation: blgDrift 17s ease-in-out infinite alternate; }
body.fp-ed.pl-blog .blg-orb--b { width: 380px; height: 380px; top: -90px; right: -70px; background: radial-gradient(circle, rgba(242,104,59,0.40), transparent 68%); animation: blgDrift 21s ease-in-out infinite alternate-reverse; }
body.fp-ed.pl-blog .blg-orb--c { width: 320px; height: 320px; bottom: -150px; left: 44%; background: radial-gradient(circle, rgba(120,86,255,0.30), transparent 70%); animation: blgDrift 25s ease-in-out infinite alternate; }
body.fp-ed.pl-blog .blg-grain { position: absolute; inset: -2px; opacity: 0.5;
  background-image: radial-gradient(rgba(31,24,16,0.05) 1px, transparent 1px); background-size: 5px 5px; }
@keyframes blgDrift { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(38px, 30px) scale(1.12); } }

body.fp-ed.pl-blog .blg-hero-in { position: relative; z-index: 1; max-width: 760px; }
body.fp-ed.pl-blog .blg-kick {
  display: inline-flex; align-items: center; gap: 9px; padding: 7px 15px; border-radius: 999px;
  background: rgba(255,255,255,0.7); border: 1px solid var(--blg-line); backdrop-filter: blur(6px);
  font-family: var(--blg-sans); font-size: 12px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blg-ink);
}
body.fp-ed.pl-blog .blg-kick-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blg-warm); box-shadow: 0 0 0 0 rgba(242,104,59,0.5); animation: blgPulse 2s ease-out infinite; }
@keyframes blgPulse { 0% { box-shadow: 0 0 0 0 rgba(242,104,59,0.45); } 70% { box-shadow: 0 0 0 10px rgba(242,104,59,0); } 100% { box-shadow: 0 0 0 0 rgba(242,104,59,0); } }
body.fp-ed.pl-blog .blg-title {
  font-family: var(--blg-serif); font-optical-sizing: auto; font-weight: 600;
  font-size: clamp(2.5rem, 6.2vw, 4.6rem); line-height: 1.02; letter-spacing: -0.02em; color: var(--blg-ink);
  margin: 20px 0 0;
}
body.fp-ed.pl-blog .blg-title em { font-style: italic; color: var(--blg-accent); }
body.fp-ed.pl-blog .blg-lead { font-size: clamp(1.04rem, 1.7vw, 1.26rem); line-height: 1.62; color: var(--blg-soft); max-width: 620px; margin: 20px 0 0; }
body.fp-ed.pl-blog .blg-hero-foot { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 18px; margin-top: 26px; }
body.fp-ed.pl-blog .blg-hero-note { font-size: 13px; color: var(--blg-soft); }
body.fp-ed.pl-blog .blg-hero-cta {
  display: inline-flex; align-items: center; gap: 8px; padding: 11px 20px; border-radius: 999px;
  background: var(--blg-ink); color: #fff; font-weight: 700; font-size: 14px; text-decoration: none; transition: transform .15s, box-shadow .15s;
}
body.fp-ed.pl-blog .blg-hero-cta:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -14px rgba(20,17,12,0.6); }
body.fp-ed.pl-blog .blg-hero-cta svg { width: 16px; height: 16px; }

body.fp-ed.pl-blog .blg-featured { margin: 0 0 30px; }
body.fp-ed.pl-blog .blg-feat {
  display: grid; grid-template-columns: 1.55fr 1fr; gap: 0; text-decoration: none; overflow: hidden;
  border-radius: 24px; border: 1px solid var(--blg-line); background: var(--blg-card);
  box-shadow: 0 30px 70px -50px rgba(40,28,14,0.5); transition: transform .18s, box-shadow .18s;
}
body.fp-ed.pl-blog .blg-feat:hover { transform: translateY(-3px); box-shadow: 0 40px 80px -46px rgba(40,28,14,0.55); }
body.fp-ed.pl-blog .blg-feat-main { padding: clamp(26px, 3.4vw, 44px); display: flex; flex-direction: column; }
body.fp-ed.pl-blog .blg-feat-flag { font-size: 11px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blg-warm); }
body.fp-ed.pl-blog .blg-feat-title { font-family: var(--blg-serif); font-weight: 600; font-size: clamp(1.7rem, 3.2vw, 2.6rem); line-height: 1.08; letter-spacing: -0.015em; color: var(--blg-ink); margin: 12px 0 0; }
body.fp-ed.pl-blog .blg-feat-dek { font-size: 1.02rem; line-height: 1.6; color: var(--blg-soft); margin: 14px 0 0; max-width: 52ch; }
body.fp-ed.pl-blog .blg-feat-meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0 0; }
body.fp-ed.pl-blog .blg-feat-cta { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 22px; font-weight: 700; color: var(--blg-accent); font-size: 14px; }
body.fp-ed.pl-blog .blg-feat-cta svg { width: 17px; height: 17px; transition: transform .15s; }
body.fp-ed.pl-blog .blg-feat:hover .blg-feat-cta svg { transform: translateX(4px); }
body.fp-ed.pl-blog .blg-feat-side {
  position: relative; padding: clamp(26px, 3vw, 40px); display: flex; flex-direction: column; justify-content: flex-end; gap: 6px; color: #fff; overflow: hidden;
  background: linear-gradient(150deg, hsl(var(--cat-h,222) 70% 42%), hsl(calc(var(--cat-h,222) + 36) 72% 30%));
}
body.fp-ed.pl-blog .blg-feat-side::before { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 80% at 80% 10%, rgba(255,255,255,0.28), transparent 60%); }
body.fp-ed.pl-blog .blg-feat-cat2 { position: relative; font-size: 12px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.92; }
body.fp-ed.pl-blog .blg-feat-date { position: relative; font-family: var(--blg-serif); font-size: clamp(3rem, 6vw, 5rem); font-weight: 600; line-height: 0.95; letter-spacing: -0.01em; margin: 6px 0 2px; }
body.fp-ed.pl-blog .blg-feat-sub { position: relative; font-size: 12.5px; opacity: 0.82; }

body.fp-ed.pl-blog .blg-chip { display: inline-flex; align-items: center; gap: 6px; padding: 5px 11px; border-radius: 999px; background: rgba(31,24,16,0.05); border: 1px solid var(--blg-line); font-size: 12px; font-weight: 600; color: var(--blg-soft); }
body.fp-ed.pl-blog .blg-chip svg { width: 13px; height: 13px; }

body.fp-ed.pl-blog .blg-topics { display: flex; flex-wrap: wrap; gap: 9px; align-items: center; margin: 0 0 22px; padding-bottom: 18px; border-bottom: 1px solid var(--blg-line); }
body.fp-ed.pl-blog .blg-topics-lbl { font-size: 12px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blg-soft); margin-right: 4px; }
body.fp-ed.pl-blog .blg-topic { padding: 8px 15px; border-radius: 999px; border: 1px solid var(--blg-line); background: var(--blg-card); font-family: var(--blg-sans); font-size: 13.5px; font-weight: 600; color: var(--blg-ink); cursor: pointer; transition: .15s; }
body.fp-ed.pl-blog .blg-topic:hover { border-color: rgba(31,24,16,0.3); }
body.fp-ed.pl-blog .blg-topic.is-active { background: var(--blg-ink); color: #fff; border-color: var(--blg-ink); }

body.fp-ed.pl-blog .blg-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(312px, 1fr)); gap: 22px; align-items: stretch; }
body.fp-ed.pl-blog .blg-card {
  position: relative; display: flex; flex-direction: column; text-decoration: none; padding: 24px 24px 20px;
  border-radius: 20px; border: 1px solid var(--blg-line); background: var(--blg-card); overflow: hidden;
  transition: transform .16s, box-shadow .16s, border-color .16s;
}
body.fp-ed.pl-blog .blg-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, hsl(var(--cat-h,222) 72% 52%), hsl(calc(var(--cat-h,222) + 40) 74% 56%)); }
body.fp-ed.pl-blog .blg-card:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -40px rgba(40,28,14,0.5); border-color: rgba(31,24,16,0.18); }
body.fp-ed.pl-blog .blg-card-cat { align-self: flex-start; font-size: 11px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: hsl(var(--cat-h,222) 60% 42%); }
body.fp-ed.pl-blog .blg-card-title { font-family: var(--blg-serif); font-weight: 600; font-size: 1.32rem; line-height: 1.2; letter-spacing: -0.01em; color: var(--blg-ink); margin: 11px 0 0; }
body.fp-ed.pl-blog .blg-card-dek { font-size: 0.95rem; line-height: 1.55; color: var(--blg-soft); margin: 10px 0 0; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
body.fp-ed.pl-blog .blg-card-meta { display: flex; flex-wrap: wrap; gap: 7px; margin: 16px 0 0; }
body.fp-ed.pl-blog .blg-go { display: inline-flex; align-items: center; gap: 7px; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--blg-line); font-size: 13px; font-weight: 700; color: var(--blg-accent); }
body.fp-ed.pl-blog .blg-go svg { width: 15px; height: 15px; transition: transform .15s; }
body.fp-ed.pl-blog .blg-card:hover .blg-go svg { transform: translateX(4px); }

body.fp-ed.pl-blog .blg-hl { margin: 44px 0 10px; padding: clamp(28px, 4vw, 48px); border-radius: 26px; border: 1px solid var(--blg-line); background: linear-gradient(160deg, #fff, #f7eee2); }
body.fp-ed.pl-blog .blg-hl-kick { font-size: 12px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blg-warm); }
body.fp-ed.pl-blog .blg-hl-title { font-family: var(--blg-serif); font-weight: 600; font-size: clamp(1.6rem, 3vw, 2.3rem); line-height: 1.1; color: var(--blg-ink); margin: 8px 0 0; }
body.fp-ed.pl-blog .blg-hl-sub { font-size: 1rem; line-height: 1.6; color: var(--blg-soft); max-width: 620px; margin: 12px 0 0; }
body.fp-ed.pl-blog .blg-hl-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; margin-top: 26px; }
body.fp-ed.pl-blog .blg-hl-card { padding: 22px; border-radius: 18px; border: 1px solid var(--blg-line); background: rgba(255,255,255,0.7); }
body.fp-ed.pl-blog .blg-hl-ic { width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center; background: var(--blg-ink); color: #fff; }
body.fp-ed.pl-blog .blg-hl-ic svg { width: 21px; height: 21px; }
body.fp-ed.pl-blog .blg-hl-ctitle { font-weight: 800; font-size: 1.04rem; color: var(--blg-ink); margin: 14px 0 0; }
body.fp-ed.pl-blog .blg-hl-body { font-size: 0.92rem; line-height: 1.55; color: var(--blg-soft); margin: 8px 0 0; }

body.fp-ed.pl-blog .blg-back { display: inline-flex; align-items: center; gap: 8px; margin: 12px 0 26px; font-weight: 700; font-size: 14px; color: var(--blg-soft); text-decoration: none; }
body.fp-ed.pl-blog .blg-back:hover { color: var(--blg-ink); }
body.fp-ed.pl-blog .blg-back svg { width: 17px; height: 17px; }
body.fp-ed.pl-blog .blg-art { max-width: 760px; margin: 0 auto; }
body.fp-ed.pl-blog .blg-art-cat { font-size: 12px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: hsl(var(--cat-h,222) 60% 42%); }
body.fp-ed.pl-blog .blg-art-title { font-family: var(--blg-serif); font-weight: 600; font-size: clamp(2rem, 5vw, 3.3rem); line-height: 1.07; letter-spacing: -0.02em; color: var(--blg-ink); margin: 12px 0 0; }
body.fp-ed.pl-blog .blg-art-dek { font-size: 1.18rem; line-height: 1.55; color: var(--blg-soft); margin: 16px 0 0; }
body.fp-ed.pl-blog .blg-art-meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0 0; padding-bottom: 26px; border-bottom: 1px solid var(--blg-line); }
body.fp-ed.pl-blog .blg-prose { font-size: 1.08rem; line-height: 1.75; color: #2c261d; margin-top: 28px; }
body.fp-ed.pl-blog .blg-prose > *:first-child { margin-top: 0; }
body.fp-ed.pl-blog .blg-prose h2 { font-family: var(--blg-serif); font-weight: 600; font-size: 1.7rem; line-height: 1.2; color: var(--blg-ink); margin: 38px 0 12px; }
body.fp-ed.pl-blog .blg-prose h3 { font-weight: 800; font-size: 1.28rem; color: var(--blg-ink); margin: 30px 0 10px; }
body.fp-ed.pl-blog .blg-prose p { margin: 0 0 18px; }
body.fp-ed.pl-blog .blg-prose ul, body.fp-ed.pl-blog .blg-prose ol { margin: 0 0 18px; padding-left: 22px; }
body.fp-ed.pl-blog .blg-prose li { margin: 0 0 8px; }
body.fp-ed.pl-blog .blg-prose a { color: var(--blg-accent); text-decoration: underline; text-underline-offset: 2px; }
body.fp-ed.pl-blog .blg-prose blockquote { margin: 24px 0; padding: 4px 0 4px 22px; border-left: 3px solid var(--blg-warm); font-family: var(--blg-serif); font-style: italic; font-size: 1.25rem; color: var(--blg-ink); }
body.fp-ed.pl-blog .blg-more { margin: 56px auto 0; max-width: 1100px; }
body.fp-ed.pl-blog .blg-more-title { font-family: var(--blg-serif); font-weight: 600; font-size: 1.7rem; color: var(--blg-ink); margin: 0 0 20px; }

body.fp-ed.pl-blog .blg-empty { text-align: center; padding: 60px 16px; }
body.fp-ed.pl-blog .blg-empty h3 { font-family: var(--blg-serif); font-weight: 600; font-size: 1.5rem; color: var(--blg-ink); margin: 0 0 8px; }
body.fp-ed.pl-blog .blg-empty p { color: var(--blg-soft); max-width: 480px; margin: 0 auto; }
body.fp-ed.pl-blog .blg-empty a { color: var(--blg-accent); }

body.fp-ed.pl-blog .blg-skel { border-radius: 20px; border: 1px solid var(--blg-line); background: linear-gradient(90deg, var(--band) 25%, #efece6 50%, var(--band) 75%); background-size: 200% 100%; animation: ed-skel 1.5s ease-in-out infinite; min-height: 220px; }

@media (max-width: 860px) {
  body.fp-ed.pl-blog .blg-feat { grid-template-columns: 1fr; }
  body.fp-ed.pl-blog .blg-feat-side { flex-direction: row; align-items: center; justify-content: space-between; flex-wrap: wrap; }
}
@media (prefers-reduced-motion: reduce) {
  body.fp-ed.pl-blog .blg-orb, body.fp-ed.pl-blog .blg-kick-dot, body.fp-ed.pl-blog .blg-skel { animation: none !important; }
}
