/* One Big Future — Page & Screen Styles */

:root {
	--obf-font: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	--obf-gutter: 22px;
	--obf-r-card: 6px;
	--obf-r-input: 6px;
	--obf-max: 390px;
}

@media (min-width: 768px) {
	:root {
		--obf-gutter: 32px;
		--obf-max: 720px;
	}
}

@media (min-width: 1024px) {
	:root {
		--obf-max: 1200px;
	}
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

.obf-page-hero {
  padding: 24px var(--obf-gutter) 18px;
  text-align: left;
}

.obf-page-shell.obf-site {
	max-width: var(--obf-max);
	margin: 0 auto;
	background: var(--obf-surface);
	overflow-x: hidden;
}

/* Desktop: align the static-page container (breadcrumb + hero + body) with the
 * site header, which mirrors the theme's `.container` (max-width 1320, 12px
 * side padding) — so the breadcrumb and content line up under the logo, exactly
 * like the article-detail page. Scoping --obf-gutter to the shell keeps the
 * 12px padding change local to these pages. */
@media (min-width: 992px) {
	.obf-page-shell.obf-site {
		max-width: 1320px;
		--obf-gutter: 12px;
	}
}

/* Elementor boxed sections + default column gaps add extra left padding inside
 * .obf-about-body (and other page bodies). Strip that so prose lines up with
 * the breadcrumb and page hero. */
.obf-page-shell.obf-site .elementor-section.elementor-section-boxed > .elementor-container {
	max-width: none;
	margin-left: 0;
	margin-right: 0;
	width: 100%;
}

.obf-page-shell.obf-site .elementor-column-gap-default > .elementor-column > .elementor-element-populated,
.obf-page-shell.obf-site .elementor-column-gap-narrow > .elementor-column > .elementor-element-populated,
.obf-page-shell.obf-site .elementor-column-gap-extended > .elementor-column > .elementor-element-populated,
.obf-page-shell.obf-site .elementor-column-gap-wide > .elementor-column > .elementor-element-populated,
.obf-page-shell.obf-site .elementor-column-gap-wider > .elementor-column > .elementor-element-populated {
	padding: 0;
}

.obf-about-body,
.obf-mandate-page,
.obf-contact-block,
.obf-form-panel,
.obf-collab-list,
.obf-mandate-panel__inner {
	width: 100%;
}

.obf-page-hero__title {
  margin: 0;
  font: 800 32px/1.1 var(--obf-font);
  letter-spacing: -0.02em;
  color: var(--obf-ink);
  text-wrap: balance;
}

.obf-page-hero__subtitle {
  margin: 10px 0 0;
  font: 300 16px/1.6 var(--obf-font);
  color: var(--obf-body-muted);
}

.obf-theme-hero {
  padding: 26px var(--obf-gutter) 22px;
  border-bottom: 1px solid var(--obf-hairline);
}

.obf-kicker--theme {
  font-size: 11px;
  letter-spacing: 0.14em;
}

.obf-theme-hero__title {
  margin: 12px 0 0;
  font: 800 31px/1.08 var(--obf-font);
  letter-spacing: -0.02em;
  color: var(--obf-ink);
  text-wrap: balance;
}

/* Breadcrumb — matches the article-detail / category breadcrumb style:
 * gray links, chevron separators, bold accent current item, hairline border. */
.obf-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 7px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  white-space: nowrap;
  padding: 13px var(--obf-gutter);
  font: 600 12px/1 var(--obf-sans);
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--obf-gray-40);
  border-bottom: 1px solid var(--obf-hairline);
}

.obf-breadcrumb::-webkit-scrollbar { display: none; }

.obf-breadcrumb a {
  flex: 0 0 auto;
  color: var(--obf-gray-40);
  font-weight: 600;
  text-decoration: none;
}

.obf-breadcrumb a:hover { color: var(--obf-ink); }

.obf-breadcrumb__current {
  flex: 0 0 auto;
  font-weight: 700;
  color: var(--obf-accent);
  max-width: 60vw;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Chevron separator (replaces the "/" glyph) */
.obf-breadcrumb__sep {
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  margin: 0;
  font-size: 0;
  border-right: 2px solid #999;
  border-bottom: 2px solid #999;
  transform: rotate(-45deg);
  opacity: 1;
}

/* Experts directory */
.obf-experts-page__body {
  padding: 0 var(--obf-gutter) 48px;
}

.obf-experts-page__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 36px;
  padding: 24px 32px;
  border: 1px solid var(--obf-hairline, #efeeec);
  border-radius: 4px;
  background: var(--obf-surface, #fff);
}

.obf-expert-row {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  position: relative;
  padding: 14px 0;
  border-bottom: none;
  text-decoration: none;
  color: inherit;
}

/* Hairline after the avatar — avoids missing 1px borders on fractional rows. */
.obf-experts-page__grid .obf-expert-row:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 64px; /* 52px thumb + 12px gap */
  right: 0;
  bottom: 0;
  height: 1px;
  background: #e5e2de;
  pointer-events: none;
}

.obf-expert-row__thumb {
  display: block;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  overflow: hidden;
  background: var(--obf-hairline, #ece9e6);
}

.obf-expert-row__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}

.obf-expert-row__copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.obf-expert-row__name {
  display: block;
  font: 700 14px/1.35 var(--obf-sans, "Public Sans", sans-serif);
  color: var(--obf-ink, #1a1a1a);
}

.obf-expert-row__role {
  display: block;
  font: 500 12px/1.45 var(--obf-sans, "Public Sans", sans-serif);
  color: var(--obf-gray-40, #4a4a4a);
}

.obf-expert-row:hover .obf-expert-row__name {
  color: var(--obf-accent, #ef671f);
}

.obf-experts-page__empty {
  margin: 0;
  padding: 24px 32px;
  border: 1px solid var(--obf-hairline, #efeeec);
  border-radius: 4px;
  font: 400 16px/1.6 var(--obf-sans, "Public Sans", sans-serif);
  color: var(--obf-gray-40, #4a4a4a);
}

/* Team grid */
.obf-team-section-label {
  padding: 22px var(--obf-gutter) 2px;
  font: 700 11px/1 var(--obf-font);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--obf-accent);
}

.obf-team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 14px;
  padding: 14px var(--obf-gutter) 8px;
}

.obf-team-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  text-align: left;
  cursor: pointer;
  color: inherit;
  font: inherit;
}

.obf-team-card__photo {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--obf-r-card);
  background: var(--obf-placeholder);
  border: 1px solid var(--obf-border-input);
}

.obf-team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .35s ease;
}

.obf-team-card:hover .obf-team-card__photo img { transform: scale(1.06); }

.obf-team-card__li {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border-radius: var(--obf-r-pill);
  background: rgba(255,255,255,0.92);
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity .2s ease, transform .2s ease;
}

.obf-team-card:hover .obf-team-card__li {
  opacity: 1;
  transform: translateY(0);
}

.obf-team-card__name {
  display: block;
  padding: 11px 2px 0;
  font: 700 16px/1.25 var(--obf-font);
  color: var(--obf-ink);
}

.obf-team-card__role {
  display: block;
  padding: 0 2px;
  margin-top: 4px;
  font: 300 13px/1.4 var(--obf-font);
  color: var(--obf-gray-60);
}

/* Team member modal */
.obf-team-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.obf-team-modal[hidden] { display: none; }

.obf-team-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 12, 26, 0.55);
  border: none;
  padding: 0;
  cursor: pointer;
}

.obf-team-modal__panel {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 330px;
  max-height: 90vh;
  overflow: hidden;
  background: var(--obf-surface);
  border-radius: 24px;
  box-shadow: 0 24px 60px -18px rgba(0, 0, 0, 0.5);
}

.obf-team-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 32px;
  height: 32px;
  border-radius: var(--obf-r-pill);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--obf-hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--obf-ink);
}

.obf-team-modal__body {
  padding: 20px 22px 24px;
  text-align: left;
  overflow-y: auto;
}

.obf-team-modal__photo {
  display: block;
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--obf-placeholder);
  flex-shrink: 0;
}

.obf-team-modal__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.obf-team-modal__name {
  margin: 0;
  font: 800 22px/1.15 var(--obf-font);
  letter-spacing: -0.01em;
  color: var(--obf-ink);
}

.obf-team-modal__role {
  margin-top: 5px;
  font: 300 14px/1.4 var(--obf-font);
  color: var(--obf-gray-60);
}

.obf-team-modal__social {
  display: flex;
  margin-top: 14px;
}

.obf-team-modal__social[hidden] { display: none; }

.obf-team-modal__linkedin {
  width: 40px;
  height: 40px;
  border-radius: var(--obf-r-pill);
  background: var(--obf-li);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.obf-team-modal__bio {
  margin-top: 18px;
  font: 300 18px/1.68 var(--obf-font);
  color: var(--obf-body-muted);
}

body.obf-team-modal-open {
  overflow: hidden;
}

.obf-collab-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 20px;
  padding: 0 var(--obf-gutter) 28px;
}

.obf-collab-item {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
  border: 1px solid var(--obf-hairline);
  border-radius: var(--obf-r-card);
  background: var(--obf-surface);
}

.obf-collab-logo-wrap {
  position: relative;
  width: 120px;
  height: 120px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--obf-hairline);
  border-radius: var(--obf-r-card);
  padding: 16px;
  background: var(--obf-surface);
  flex-shrink: 0;
  margin: 0 auto;
}

.obf-collab-logo-wrap--red { background: #E30515; }
.obf-collab-logo-wrap--yellow { background: #FED230; }
.obf-collab-logo-wrap--grey { background: #EFEFEF; }

.obf-collab-logo-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.obf-collab-logo-fallback {
  font: 800 28px/1 var(--obf-font);
  color: var(--obf-ink);
}

.obf-collab-body {
  min-width: 0;
  flex: 1;
}

.obf-collab-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.obf-collab-name {
  margin: 0;
  font: 700 20px/1.3 var(--obf-font);
  color: var(--obf-ink);
}

.obf-collab-website {
  flex-shrink: 0;
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--obf-accent);
  text-decoration: none;
  transition: color .15s ease;
}

.obf-collab-website:hover {
  color: #d85a1a;
}

.obf-collab-tagline {
  font: italic 300 13px/1.45 var(--obf-font);
  color: var(--obf-gray-60);
  margin-top: 6px;
}

.obf-collab-desc {
  margin: 12px 0 0;
  font: 300 18px/1.68 var(--obf-font);
  color: var(--obf-gray-70);
}

.obf-collab-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  min-height: 44px;
  font: 600 13px/1 var(--obf-font);
  color: var(--obf-accent);
  text-decoration: none;
}

.obf-collab-link:hover { text-decoration: underline; }

.obf-collab-link__icon {
  flex-shrink: 0;
  color: var(--obf-accent);
}

/* Jobs listing */
.obf-jobs-page {
  padding: 12px var(--obf-gutter) 28px;
}

.obf-jobs-hero {
  text-align: center;
  padding: 12px 0 28px;
}

/* Match the About Us page hero exactly (font / size / colour). */
.obf-jobs-hero__label {
  margin: 0;
  font: 800 32px/1.1 var(--obf-font);
  letter-spacing: -0.02em;
  color: var(--obf-ink);
  text-wrap: balance;
}

.obf-jobs-hero__title {
  margin: 10px 0 0;
  font: 300 16px/1.6 var(--obf-font);
  color: var(--obf-body-muted);
  text-wrap: balance;
}

.obf-jobs-list {
  display: flex;
  flex-direction: column;
  max-width: 640px;
  margin: 6px auto 0;
}

.obf-job-card {
  display: flex;
  flex-direction: column;
  padding: 22px 0;
  border-bottom: 1px solid var(--obf-hairline);
}

.obf-job-card:first-child {
  border-top: 1px solid var(--obf-hairline);
}

.obf-job-card__lead {
  display: flex;
  align-items: center;
  gap: 14px;
}

.obf-job-card__thumb {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--obf-r-border, 6px);
  overflow: hidden;
  background: var(--obf-panel, #f7f5f2);
  border: 1px solid var(--obf-hairline);
}

.obf-job-card__mark {
  display: block;
  width: 100%;
  height: 100%;
  padding: 8px;
  object-fit: contain;
}

.obf-job-card__mark--photo {
  padding: 0;
  object-fit: cover;
}

.obf-job-card__copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.obf-job-card__title {
  margin: 0;
  font: 700 18px/1.25 var(--obf-font);
  letter-spacing: -0.01em;
  color: var(--obf-ink);
}

.obf-job-card__location {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  font: 300 13px/1 var(--obf-font);
  color: var(--obf-gray-60);
}

.obf-job-card__pin {
  flex: 0 0 auto;
  color: #999;
}

.obf-job-apply-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 50px;
  margin-top: 18px;
  border: 0;
  border-radius: 999px;
  box-shadow: inset 0 0 0 2px var(--obf-accent);
  background: transparent;
  color: var(--obf-accent);
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.obf-job-apply-btn:hover {
  background: var(--obf-accent);
  color: #fff;
}

.obf-job-apply-btn__text {
  font: 700 12px/1 var(--obf-font);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: inherit;
}

.obf-job-apply-btn__icon {
  font-size: 15px;
  line-height: 1;
  color: inherit;
}

@media (min-width: 768px) {
  /* Match the About page hero title, which scales to 40px at this breakpoint. */
  .obf-jobs-hero__label {
    font-size: 40px;
  }

  .obf-jobs-list {
    max-width: 940px;
  }

  .obf-job-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 28px;
    padding: 22px 4px;
  }

  .obf-job-card__lead {
    display: contents;
  }

  .obf-job-card__thumb {
    grid-column: 1;
  }

  .obf-job-card__copy {
    grid-column: 2;
  }

  .obf-job-apply-btn {
    grid-column: 3;
    width: auto;
    min-width: 190px;
    margin-top: 0;
    padding: 0 30px;
    height: 48px;
  }
}

/* Contact page */
.obf-contact-block {
  padding: 22px var(--obf-gutter);
  border-top: 1px solid var(--obf-hairline);
}

.obf-contact-block h2 {
  margin: 0 0 12px;
  font: 800 20px/1.15 var(--obf-font);
  letter-spacing: -0.01em;
  color: var(--obf-ink);
}

.obf-bullet-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.obf-bullet-list li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  list-style: none;
  font: 300 18px/1.68 var(--obf-font);
  color: var(--obf-ink-body);
}

.obf-bullet-list li::before {
  content: '';
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  border-radius: var(--obf-r-pill);
  background: var(--obf-accent);
  margin-top: 9px;
}

.obf-email-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  background: var(--obf-row-hover);
  border-radius: var(--obf-r-mid);
}

.obf-email-card a {
  font: 700 16px/1.2 var(--obf-font);
  color: var(--obf-accent);
  text-decoration: none;
}

.obf-address-block {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.obf-address-block:last-child { margin-bottom: 0; }

.obf-form-panel {
  padding: 24px var(--obf-gutter);
  background: var(--obf-panel);
  border-top: 1px solid var(--obf-hairline);
}

.obf-form-panel h2 {
  margin: 0 0 4px;
  font: 800 22px/1.1 var(--obf-font);
  color: var(--obf-ink);
}

.obf-form-panel > p {
  margin: 0 0 20px;
  font: 300 14px/1.5 var(--obf-font);
  color: var(--obf-gray-60);
}

.obf-form { display: flex; flex-direction: column; gap: 16px; position: relative; }

.obf-form-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.obf-field label {
  display: block;
  font: 600 12px/1 var(--obf-font);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--obf-gray-60);
  margin-bottom: 7px;
}

.obf-field input,
.obf-field textarea {
  width: 100%;
  padding: 0 14px;
  border: 1px solid var(--obf-border-input);
  border-radius: var(--obf-r-input);
  background: var(--obf-panel);
  font: 300 14px/1 var(--obf-font);
  color: var(--obf-ink);
}

.obf-field input { height: 48px; }
.obf-field textarea { min-height: 100px; padding: 14px; resize: vertical; }

.obf-form .obf-btn-solid { margin-top: 4px; }

.obf-form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 28px 52px;
  background: #fff9f5;
  border: none;
  border-radius: var(--obf-r-card, 6px);
  margin: 0;
  box-sizing: border-box;
}

.obf-form-success__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--obf-accent, #ef671f);
  color: #fff;
}

.obf-form-success__title {
  margin: 0 0 16px;
  font: 700 22px/1.2 var(--obf-font);
  letter-spacing: -0.01em;
  color: var(--obf-ink, #141414);
}

.obf-form-success__text {
  margin: 0;
  font: 400 15px/1.65 var(--obf-font);
  color: var(--obf-ink, #141414);
}

.obf-form-panel--success {
  padding: 0;
  border: none;
  background: #fff9f5;
}

.obf-form-panel--success .obf-form-success {
  width: 100%;
  min-height: 280px;
  border-radius: var(--obf-r-border, 6px);
}

/* Data listing */
.obf-data-pillar-group {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 2px solid var(--obf-hairline);
}

.obf-data-pillar-head {
  padding: 18px var(--obf-gutter) 14px;
}

.obf-data-pillar-title {
  margin: 0;
  font: 800 19px/1 var(--obf-font);
  letter-spacing: -0.01em;
  color: var(--obf-ink);
}

/* Single article */
.obf-article .obf-breadcrumb {
  padding: 12px 0 16px;
  border-bottom: 0;
}

.obf-article {
  background: var(--obf-surface);
}

.obf-article__shell {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 8px var(--obf-gutter) 0;
}

.obf-article__header {
  padding: 8px 0 24px;
}

.obf-article__title {
  margin: 0;
  font: 700 32px/1.18 var(--obf-font);
  letter-spacing: -0.02em;
  color: var(--obf-ink);
  text-wrap: pretty;
}

.obf-article__deck {
  margin: 16px 0 0;
  font: italic 300 20px/1.6 var(--obf-serif);
  color: var(--obf-ink);
  text-wrap: pretty;
}

.obf-article__byline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}

.obf-article__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  font: 300 18px/1.2 var(--obf-font);
  color: rgba(0, 0, 0, 0.4);
}

.obf-article__meta--desktop {
  display: none;
}

.obf-article__meta-sep {
  padding: 0 4px;
}

.obf-article__byline-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.obf-article__byline-avatar {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--obf-hairline);
}

.obf-article__byline-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.obf-article__byline-name {
  margin: 0;
  font: 400 20px/1.2 var(--obf-font);
  color: rgba(0, 0, 0, 0.6);
}

.obf-article__byline-role {
  margin: 4px 0 0;
  font: italic 400 16px/1.35 var(--obf-font);
  color: var(--obf-gray-40);
  white-space: pre-wrap;
}

.obf-article__hero {
  margin-bottom: 24px;
}

.obf-article__hero .obf-img-wrap--16-9 {
	border-radius: var(--obf-r-img, 6px);
}

.obf-signal-detail__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  font: 600 12px/1 var(--obf-font);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--obf-gray-40);
}

.obf-signal-detail__meta-sep {
  width: 3px;
  height: 3px;
  border-radius: var(--obf-r-pill);
  background: var(--obf-gray-20);
}

.obf-signal-detail__hero {
  margin-bottom: 0;
}

.obf-signal-detail__hero .obf-img-wrap--1-1 {
  border-radius: 0;
}

/* Detail share bar */
.obf-detail-share {
  padding: 14px 0;
  border-bottom: 1px solid var(--obf-hairline);
}

.obf-detail-share__row {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.obf-detail-share__row::-webkit-scrollbar {
  display: none;
}

.obf-detail-share__label {
  flex: 0 0 auto;
  margin-right: 1px;
  font: 600 12px/1 var(--obf-font);
  color: var(--obf-gray-40);
}

.obf-detail-share__btn {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: var(--obf-r-pill);
  cursor: pointer;
  text-decoration: none;
  color: var(--obf-accent);
}

.obf-detail-share__btn--linkedin { background: var(--obf-li); }
.obf-detail-share__btn--x { background: #000; }
.obf-detail-share__btn--facebook { background: var(--obf-fb); }
.obf-detail-share__btn--whatsapp { background: var(--obf-wa); }

.obf-detail-share__btn--outline {
  background: transparent;
  box-shadow: inset 0 0 0 2px var(--obf-accent);
}

.obf-detail-share__btn.is-copied {
  box-shadow: inset 0 0 0 2px var(--obf-accent);
  background: var(--obf-band-soft);
}

/* Detail readable body + text size */
.obf-detail-readable {
  padding: 24px 0;
  border-bottom: 1px solid var(--obf-hairline);
}

.obf-detail-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

/* Listen player */
.obf-detail-listen-panel {
  background: var(--obf-panel);
  border-bottom: 1px solid var(--obf-hairline);
}

.obf-detail-listen-card {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 14px var(--obf-gutter);
  padding: 14px;
  background: var(--obf-surface);
  border: 1px solid var(--obf-hairline);
  border-radius: var(--obf-r-input);
}

.obf-detail-listen__play {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: var(--obf-r-pill);
  background: var(--obf-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.obf-detail-listen__play:hover:not(:disabled) {
  transform: scale(1.03);
}

.obf-detail-listen__play:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.obf-detail-listen__icon-play {
  width: 0;
  height: 0;
  border-left: 14px solid var(--obf-surface);
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  margin-left: 3px;
}

.obf-detail-listen__icon-pause {
  display: none;
  gap: 4px;
}

.obf-detail-listen__icon-pause span {
  display: block;
  width: 4px;
  height: 16px;
  background: var(--obf-surface);
}

.obf-detail-listen__play.is-playing .obf-detail-listen__icon-play {
  display: none;
}

.obf-detail-listen__play.is-playing .obf-detail-listen__icon-pause {
  display: flex;
}

.obf-detail-listen__content {
  flex: 1;
  min-width: 0;
}

.obf-detail-listen__title {
  font: 600 13px/1.3 var(--obf-font);
  color: var(--obf-ink);
}

.obf-detail-listen__progress-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.obf-detail-listen__track {
  flex: 1;
  height: 4px;
  border-radius: var(--obf-r-pill);
  background: var(--obf-border-input);
  overflow: hidden;
}

.obf-detail-listen__fill {
  display: block;
  height: 100%;
  width: 0;
  background: var(--obf-accent);
  transition: width 0.2s linear;
}

.obf-detail-listen__time {
  flex: 0 0 auto;
  font: 600 11px/1 var(--obf-font);
  color: var(--obf-gray-40);
  white-space: nowrap;
}

.obf-detail-text-size {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 22px;
}

.obf-detail-text-size__label {
  font: 600 11px/1 var(--obf-font);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--obf-gray-40);
}

.obf-detail-text-size__group {
  display: flex;
  gap: 6px;
}

.obf-detail-text-size__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--obf-border-input);
  border-radius: var(--obf-r-pill);
  background: var(--obf-surface);
  color: var(--obf-ink);
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
}

.obf-detail-text-size__btn--sm { font-size: 11px; }
.obf-detail-text-size__btn--md { font-size: 13px; }
.obf-detail-text-size__btn--lg { font-size: 15px; }

.obf-detail-text-size__btn.is-active {
  border-color: var(--obf-accent);
  background: var(--obf-band-soft);
  color: var(--obf-accent);
}

.obf-detail-readable .obf-article__body {
  padding: 0;
  border: 0;
}

.obf-prose--signal p {
  font: 300 18px/1.68 var(--obf-font);
  color: var(--obf-ink-body);
}

[data-obf-readable].obf-readable--sm .obf-prose p,
[data-obf-readable].obf-readable--sm .obf-prose li {
  font-size: 18px;
  line-height: 1.68;
}

[data-obf-readable].obf-readable--sm .obf-prose .obf-quote blockquote {
  font-size: 18px;
}

[data-obf-readable].obf-readable--md .obf-prose p,
[data-obf-readable].obf-readable--md .obf-prose li {
  font-size: 18px;
  line-height: 1.68;
}

[data-obf-readable].obf-readable--md .obf-prose .obf-quote blockquote {
  font-size: 18px;
}

[data-obf-readable].obf-readable--lg .obf-prose p,
[data-obf-readable].obf-readable--lg .obf-prose li {
  font-size: 20px;
  line-height: 1.68;
}

[data-obf-readable].obf-readable--lg .obf-prose .obf-quote blockquote {
  font-size: 20px;
}

[data-obf-readable].obf-readable--lg .obf-prose h2 {
  font-size: 32px;
  line-height: 1.2;
}

[data-obf-readable].obf-readable--lg .obf-prose h3 {
  font-size: 24px;
  line-height: 1.3;
}

/* Detail related carousel */
.obf-detail-related {
  margin-top: 0;
  padding: 24px 0 0;
  background: var(--obf-panel);
}

.obf-detail-related__head {
  padding: 0 var(--obf-gutter) 6px;
}

.obf-detail-related__title {
  margin: 0;
  font: 800 22px/1 var(--obf-font);
  letter-spacing: -0.01em;
  color: var(--obf-title-70);
}

.obf-detail-related__lead {
  margin: 8px 0 8px;
  font: 300 14px/1.5 var(--obf-font);
  color: var(--obf-gray-80);
}

.obf-detail-related__row {
  padding: 6px var(--obf-gutter) 4px;
}

.obf-prose {
  color: var(--obf-ink);
  width: 100%;
  max-width: 100%;
}

.obf-page-shell .obf-prose {
  padding: 24px var(--obf-gutter) 40px;
}

.obf-prose p {
  margin: 0 0 16px;
  font: 400 18px/1.33 var(--obf-font);
  text-align: left;
  text-wrap: pretty;
}

.obf-prose li {
  text-align: left;
}

.obf-prose p:last-child {
  margin-bottom: 0;
}

.obf-prose strong {
  font-weight: 700;
  color: var(--obf-ink);
}

.obf-prose em {
  font-style: italic;
}

.obf-prose h2 {
  margin: 32px 0 16px;
  font: 800 32px/1.15 var(--obf-font);
  color: var(--obf-ink);
  text-align: left;
}

.obf-prose h3 {
  margin: 28px 0 12px;
  font: 800 24px/1.2 var(--obf-font);
  color: var(--obf-ink);
  text-align: left;
}

.obf-prose blockquote {
  margin: 0;
  padding: 0;
  border: 0;
}

.obf-quote {
  display: block;
  position: relative;
  isolation: isolate;
  margin: 32px 0;
  padding: 18px 22px 18px 3.85rem;
  border: 1px solid rgba(239, 103, 31, 0.14);
  border-left: 5px solid var(--obf-accent);
  border-radius: 10px;
  background: var(--obf-row-hover);
  box-shadow: 0 1px 2px rgba(20, 20, 20, 0.035), 0 10px 28px rgba(239, 103, 31, 0.07);
  overflow: visible;
}

.obf-quote::before {
  content: "\201C";
  position: absolute;
  left: 0.55rem;
  top: 0.1rem;
  width: 2.85rem;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 4.5rem;
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: var(--obf-accent);
  text-shadow: 0 2px 12px rgba(239, 103, 31, 0.18);
  transform: none;
}

.obf-quote blockquote {
  display: block;
  margin: 0;
}

.obf-quote blockquote,
.obf-quote blockquote em {
  font: 400 italic 19px/1.55 var(--obf-serif);
  letter-spacing: -0.012em;
  color: var(--obf-ink);
  text-wrap: pretty;
}

.obf-quote-mark {
  display: none;
}

.obf-pull-quote {
  display: block;
  position: relative;
  isolation: isolate;
  margin: 32px 0;
  padding: 18px 22px 18px 3.85rem;
  border: 1px solid rgba(239, 103, 31, 0.14);
  border-left: 5px solid var(--obf-accent);
  border-radius: 10px;
  background: var(--obf-row-hover);
  box-shadow: 0 1px 2px rgba(20, 20, 20, 0.035), 0 10px 28px rgba(239, 103, 31, 0.07);
  overflow: visible;
  font: 400 italic 19px/1.55 var(--obf-serif);
  letter-spacing: -0.012em;
  color: var(--obf-ink);
}

.obf-article__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.obf-article__related {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 6px solid var(--obf-separator);
}

.obf-article__related-title {
  margin: 0 0 4px;
  font: 800 20px/1 var(--obf-font);
  color: var(--obf-ink);
}

.obf-article__related-lead {
  margin: 0 0 12px;
  font: 300 14px/1.4 var(--obf-font);
  color: var(--obf-gray-60);
}

.obf-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px var(--obf-gutter);
}

.obf-tag {
  padding: 6px 12px;
  border: 1px solid var(--obf-border-input);
  border-radius: var(--obf-r-pill);
  font: 600 11px/1 var(--obf-font);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--obf-gray-70);
  text-decoration: none;
}

/* NOTE: the `.obf-article-author*` author-row styles live in article-detail.css.
 * A legacy author-card block was removed from here to avoid a class-name clash
 * that overrode the compact author row shown below the featured image. */

.obf-related {
  padding: 20px var(--obf-gutter);
  border-top: 6px solid var(--obf-separator);
}

.obf-related h2 {
  margin: 0 0 4px;
  font: 800 20px/1 var(--obf-font);
  color: var(--obf-ink);
}

.obf-related > p {
  margin: 0 0 16px;
  font: 300 14px/1.5 var(--obf-font);
  color: var(--obf-gray-60);
}

/* Mandate page */
.obf-mandate-page {
  margin-top: 12px;
}

.obf-mandate-page .obf-mandate-tabs-sentinel {
  height: 1px;
  margin-top: -1px;
  pointer-events: none;
}

.obf-mandate-page .obf-mandate-tabs-placeholder {
  display: block;
  height: 0;
}

.obf-mandate-page .obf-mandate-tabs-backdrop {
  display: none;
  position: fixed;
  z-index: 99;
  background: #fff;
  pointer-events: none;
}

.obf-mandate-page .obf-mandate-tabs-backdrop.is-active {
  display: block;
}

.obf-mandate-page .obf-mandate-tabs-wrap {
  position: relative;
  z-index: 45;
  padding: 10px 0 14px;
  background: #fff;
  transition: box-shadow .2s ease;
}

.obf-mandate-page .obf-mandate-tabs-wrap.is-stuck,
.obf-mandate-page .obf-mandate-tabs-wrap.is-fixed {
  background: #fff;
}

.obf-mandate-page .obf-mandate-tabs-wrap.is-fixed {
  position: fixed;
  top: var(--obf-mandate-sticky-top, 0px);
  left: var(--obf-mandate-sticky-left, 0px);
  width: var(--obf-mandate-sticky-width, 100%);
  z-index: 100;
  border-bottom: 1px solid var(--obf-hairline);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateZ(0);
}

.obf-mandate-page .obf-mandate-tabs-wrap.is-fixed .obf-mandate-tabs {
  position: relative;
  z-index: 1;
  background: #fff;
}

.obf-mandate-page .obf-mandate-tabs-wrap.is-stuck:not(.is-fixed) {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.obf-mandate-tabs {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 12px;
  overflow-x: auto;
  padding: 0 var(--obf-gutter) 2px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.obf-mandate-tabs::-webkit-scrollbar {
  display: none;
}

.obf-mandate-tab-wrap {
  position: relative;
  flex: 0 0 auto;
  scroll-snap-align: center;
}

.obf-mandate-tab {
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid #e5e5e5;
  border-radius: var(--obf-r-border, 6px);
  background: var(--obf-surface);
  color: var(--obf-ink);
  font: 500 13px/1.2 var(--obf-font);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}

.obf-mandate-tab:hover {
  border-color: var(--obf-gray-40);
}

.obf-mandate-tab.is-active {
  background: var(--obf-accent);
  border-color: var(--obf-accent);
  color: #fff;
  font-weight: 700;
}

.obf-mandate-tab__caret {
  display: none;
  position: absolute;
  left: 50%;
  top: 100%;
  width: 0;
  height: 0;
  transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 6px solid var(--obf-accent);
}

.obf-mandate-tab-wrap:has(.obf-mandate-tab.is-active) .obf-mandate-tab__caret {
  display: block;
}

/* Mobile — show only the active tab */
@media (max-width: 767px) {
  .obf-mandate-page .obf-mandate-tabs {
    justify-content: center;
    overflow: visible;
    scroll-snap-type: none;
    padding: 0 var(--obf-gutter) 4px;
  }

  .obf-mandate-page .obf-mandate-tab-wrap {
    display: none;
    flex: 1 1 auto;
    max-width: min(100%, 320px);
  }

  .obf-mandate-page .obf-mandate-tab-wrap.is-visible {
    display: block;
  }

  .obf-mandate-page .obf-mandate-tab-wrap.is-visible .obf-mandate-tab {
    width: 100%;
    text-align: center;
  }

  .obf-mandate-page .obf-mandate-tabs-wrap.is-fixed {
    padding-top: 12px;
    padding-bottom: 16px;
  }
}

.obf-mandate-panels {
  padding-top: 4px;
}

.obf-mandate-panel {
  scroll-margin-top: var(--obf-mandate-scroll-offset, 120px);
}

.obf-mandate-panel__inner {
  margin: 0;
  padding: 40px var(--obf-gutter);
  text-align: left;
}

.obf-mandate-panel__title {
  margin: 0 0 14px;
  font: 800 24px/1.25 var(--obf-font);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #111;
}

.obf-mandate-panel__title::after {
  content: "";
  display: block;
  width: 46px;
  height: 3px;
  margin-top: 12px;
  background: var(--obf-accent);
  border-radius: 3px;
}

.obf-mandate-panel__content {
  text-align: left;
}

.obf-mandate-panel__content p {
  margin: 0;
  font: 400 18px/1.78 var(--obf-font);
  letter-spacing: 0.04em;
  color: #141414;
  text-align: left;
}

.obf-mandate-panel--band,
.obf-mandate-panel--band .obf-mandate-panel__inner {
  background: transparent;
}

.obf-mandate-panel__content p + p {
  margin-top: 16px;
}

.obf-mandate-panel__content a {
  color: var(--obf-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.obf-mandate-panel__content a:hover {
  color: #d85a1a;
}

/* Editable (wp-admin) mandate content */
.obf-mandate-content {
  padding: 24px var(--obf-gutter) 12px;
  text-align: left;
}

.obf-mandate-content h2 {
  margin: 34px 0 14px;
  font: 800 32px/1.15 var(--obf-font);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #111;
}

.obf-mandate-content > h2:first-child,
.obf-mandate-content > .wp-block-heading:first-child {
  margin-top: 4px;
}


.obf-mandate-content p {
  margin: 0 0 16px;
  font: 400 18px/1.78 var(--obf-font);
  letter-spacing: 0.04em;
  color: #141414;
}

.obf-mandate-content a {
  color: var(--obf-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.obf-mandate-content a:hover {
  color: #d85a1a;
}

/* About */
.obf-about-body {
  padding: 24px var(--obf-gutter) 28px;
}

.obf-about-body p {
  margin: 0;
  font: 400 18px/1.68 var(--obf-font);
  color: var(--obf-ink-body);
}

.obf-about-body p + p {
  margin-top: 22px;
}

.obf-about-body p.obf-about-p--spaced {
  margin-top: 22px;
}

/* Editorial subheadings for editable prose pages: values come from the OBF
 * Typography spec (content-typography.css); only first-child spacing here. */
.obf-about-body > h2:first-child,
.obf-about-body > h3:first-child,
.obf-about-body > h4:first-child,
.obf-about-body > .wp-block-heading:first-child {
  margin-top: 4px;
}

/* Mandate: sub-levels beneath the uppercase section label (h2). */
.obf-mandate-content h3 {
  margin: 28px 0 10px;
  font: 800 24px/1.2 var(--obf-font);
  letter-spacing: -0.19px;
  color: var(--obf-ink);
}
.obf-mandate-content h4 {
  margin: 24px 0 8px;
  font: 700 16px/21px var(--obf-font);
  letter-spacing: -0.08px;
  color: var(--obf-ink);
}

/* Job detail — "Jobs / Detail" design */
/* The dedicated job template renders its own Home / Jobs / Title breadcrumb,
 * so hide the theme's single-post breadcrumb bar to avoid a duplicate. */
body.single-obf_job .empath__breadcrumb-single {
  display: none;
}

.obf-job-detail {
  padding: 6px var(--obf-gutter) 40px;
}

.obf-job-detail__header {
  padding: 14px 0 18px;
}

.obf-job-detail__kicker {
  display: inline-block;
  margin-bottom: 14px;
  font: 700 11px/1 var(--obf-font);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--obf-accent);
}

.obf-job-detail__title {
  margin: 0;
  font: 800 40px/1.12 var(--obf-font);
  letter-spacing: -0.02em;
  color: var(--obf-ink);
  text-wrap: balance;
}

.obf-job-detail__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}

.obf-job-detail__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font: 300 13px/1 var(--obf-font);
  color: var(--obf-gray-60);
}

.obf-job-detail__meta-item svg {
  flex-shrink: 0;
  color: #999;
}

.obf-job-detail__meta-item a {
  color: inherit;
  text-decoration: none;
}

.obf-job-detail__meta-item a:hover {
  color: var(--obf-accent, #ef671f);
  text-decoration: underline;
}

/* Body: editor content is grouped into `.obf-job-section` blocks (heading +
 * paragraph/list), split by hairlines like the reference screen. */
.obf-job-detail__body .obf-job-section {
  padding: 24px 0;
  border-top: 1px solid var(--obf-hairline);
}

.obf-job-detail__body .obf-job-section .obf-bullet-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.obf-job-detail__aside {
  margin-top: 24px;
}

.obf-job-detail__aside .obf-form-panel {
  padding: 28px 26px;
  border: 1px solid var(--obf-hairline);
  border-radius: var(--obf-r-border, 6px);
  background: var(--obf-surface);
}

/* White fields on the now-white panel — keep them readable via the border. */
.obf-job-detail__aside .obf-field input,
.obf-job-detail__aside .obf-field select,
.obf-job-detail__aside .obf-field textarea,
.obf-job-detail__aside .obf-file-field__label {
  background: var(--obf-surface);
}

.obf-job-apply {
  margin-top: 0;
}

@media (min-width: 992px) {
  .obf-job-detail {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    gap: 48px;
    align-items: start;
    padding-top: 16px;
  }

  .obf-job-detail__aside {
    position: sticky;
    top: 96px;
    margin-top: 8px;
  }
}

.obf-field select {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1px solid var(--obf-border-input);
  border-radius: var(--obf-r-input);
  background: var(--obf-panel);
  font: 300 14px/1 var(--obf-font);
  color: var(--obf-ink);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.obf-file-field {
  position: relative;
}

.obf-file-field input[type='file'] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.obf-file-field__label {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 16px 14px;
  border: 1px dashed var(--obf-partner-neutral);
  border-radius: var(--obf-r-input);
  background: var(--obf-panel);
  font: 300 14px/1.4 var(--obf-font);
  color: var(--obf-gray-60);
  cursor: pointer;
}

.obf-file-field__label svg {
  flex-shrink: 0;
  color: var(--obf-accent);
}

.obf-file-field.is-filled .obf-file-field__label {
  display: none;
}

.obf-file-preview {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(239, 103, 31, 0.28);
  border-radius: var(--obf-r-input, 8px);
  background: #fff8f3;
}

.obf-file-preview[hidden] {
  display: none !important;
}

.obf-file-preview__meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.obf-file-preview__icon {
  flex: 0 0 auto;
  min-width: 42px;
  padding: 8px 6px;
  border-radius: 6px;
  background: var(--obf-accent, #ef671f);
  color: #fff;
  font: 700 10px/1 var(--obf-font);
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

.obf-file-preview__text {
  min-width: 0;
  flex: 1 1 auto;
  display: grid;
  gap: 4px;
}

.obf-file-preview__name {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font: 600 14px/1.3 var(--obf-font);
  color: var(--obf-ink, #141414);
}

.obf-file-preview__size {
  font: 300 12px/1.3 var(--obf-font);
  color: var(--obf-gray-60, #666);
}

.obf-file-preview__remove {
  flex: 0 0 auto;
  margin: 0;
  padding: 8px 10px;
  border: 1px solid rgba(20, 20, 20, 0.14);
  border-radius: 6px;
  background: #fff;
  color: var(--obf-ink, #141414);
  font: 500 12px/1 var(--obf-font);
  cursor: pointer;
}

.obf-file-preview__remove:hover {
  border-color: var(--obf-accent, #ef671f);
  color: var(--obf-accent, #ef671f);
}

.obf-file-preview__frame {
  overflow: hidden;
  border: 1px solid rgba(20, 20, 20, 0.1);
  border-radius: 6px;
  background: #fff;
}

.obf-file-preview__frame[hidden] {
  display: none !important;
}

.obf-file-preview__frame iframe {
  display: block;
  width: 100%;
  height: 280px;
  border: 0;
  background: #f4f4f4;
}

.obf-file-preview__hint {
  margin: 0;
  font: 300 12px/1.45 var(--obf-font);
  color: var(--obf-gray-60, #666);
}

.obf-file-preview__hint[hidden] {
  display: none !important;
}

@media (min-width: 1024px) {
  .obf-page-hero__title { font-size: 40px; }
  .obf-team-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .obf-single-header h1 { font-size: 36px; }
  .obf-job-detail__title { font-size: 36px; }
  .obf-single-body { max-width: 720px; margin: 0 auto; padding: 32px var(--obf-gutter) 48px; }
}

/* Cookie consent */
.obf-cookie-banner {
  position: fixed;
  inset: 0;
  z-index: 1100;
  pointer-events: none;
}

.obf-cookie-banner[hidden] {
  display: none !important;
}

.obf-cookie-banner:not([hidden]) {
  display: block;
  pointer-events: auto;
}

.obf-cookie-banner__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 12, 18, 0.55), rgba(20, 12, 18, 0) 62%);
  pointer-events: none;
}

.obf-cookie-banner__panel {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  max-width: calc(var(--obf-max) - 24px);
  margin: 0 auto;
  background: var(--obf-surface);
  border: 1px solid var(--obf-border-input);
  border-radius: var(--obf-r-modal);
  box-shadow: 0 18px 44px -12px rgba(0, 0, 0, 0.32);
  overflow: hidden;
}

.obf-cookie-banner__accent,
.obf-cookie-prefs__accent {
  height: 3px;
  background: var(--obf-accent);
}

.obf-cookie-banner__body {
  padding: 22px 20px 20px;
}

.obf-cookie-banner__head {
  display: flex;
  align-items: center;
  gap: 11px;
}

.obf-cookie-banner__icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: var(--obf-r-input);
  background: var(--obf-row-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--obf-accent);
}

.obf-cookie-banner__title {
  margin: 0;
  font: 800 18px/1.2 var(--obf-font);
  letter-spacing: -0.01em;
  color: var(--obf-ink);
}

.obf-cookie-banner__text,
.obf-cookie-prefs__intro {
  margin: 14px 0 0;
  font: 300 14px/1.62 var(--obf-font);
  color: var(--obf-body-muted);
}

.obf-cookie-banner__text a,
.obf-cookie-prefs__intro a {
  color: var(--obf-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.obf-cookie-banner__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}

.obf-cookie-banner__row {
  display: flex;
  gap: 10px;
}

.obf-cookie-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  border-radius: var(--obf-r-pill);
  border: none;
  cursor: pointer;
  font: 700 12px/1 var(--obf-font);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.obf-cookie-btn--sm {
  height: 46px;
  font-size: 11px;
  letter-spacing: 0.1em;
}

.obf-cookie-btn--solid {
  background: var(--obf-accent);
  color: var(--obf-surface);
}

.obf-cookie-btn--solid:hover { background: var(--obf-accent-dark); }

.obf-cookie-btn--outline {
  flex: 1;
  background: transparent;
  box-shadow: inset 0 0 0 2px var(--obf-accent);
  color: var(--obf-accent);
}

.obf-cookie-btn--outline:hover { background: var(--obf-band-soft); }

.obf-cookie-btn--muted {
  flex: 1;
  background: var(--obf-separator);
  color: var(--obf-ink);
  letter-spacing: 0.1em;
}

.obf-cookie-btn--muted:hover { background: var(--obf-hairline); }

.obf-cookie-btn--dark {
  flex: 1;
  background: var(--obf-ink);
  color: var(--obf-surface);
}

.obf-cookie-btn--dark:hover { background: var(--obf-gray-80); }

.obf-cookie-prefs {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.obf-cookie-prefs[hidden] { display: none; }

.obf-cookie-prefs__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 20, 0.45);
}

.obf-cookie-prefs__panel {
  position: relative;
  width: 100%;
  max-width: var(--obf-max);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  background: var(--obf-surface);
  border: 1px solid var(--obf-border-card);
  border-radius: var(--obf-r-modal) var(--obf-r-modal) 0 0;
  box-shadow: var(--obf-sh-modal);
  overflow: hidden;
}

.obf-cookie-prefs__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px 12px;
  border-bottom: 1px solid var(--obf-hairline);
}

.obf-cookie-prefs__header h2 {
  margin: 0;
  font: 800 20px/1.1 var(--obf-font);
  letter-spacing: -0.01em;
  color: var(--obf-ink);
}

.obf-cookie-prefs__body {
  flex: 1;
  overflow-y: auto;
  padding: 4px 20px 8px;
}

.obf-cookie-prefs__intro { margin: 14px 0 2px; }

.obf-cookie-option {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 0;
  border-top: 1px solid var(--obf-hairline);
}

.obf-cookie-option__name {
  font: 700 15px/1.3 var(--obf-font);
  color: var(--obf-ink);
}

.obf-cookie-option__copy p {
  margin: 6px 0 0;
  font: 300 13px/1.55 var(--obf-font);
  color: var(--obf-gray-60);
}

.obf-cookie-badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 11px;
  border-radius: var(--obf-r-pill);
  background: var(--obf-row-hover);
  border: 1px solid var(--obf-border-warm);
  font: 700 10px/1 var(--obf-font);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--obf-accent);
  white-space: nowrap;
}

.obf-cookie-toggle {
  flex: 0 0 auto;
  position: relative;
  display: inline-flex;
  padding-top: 2px;
  cursor: pointer;
}

.obf-cookie-toggle input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.obf-cookie-toggle__track {
  display: block;
  width: 44px;
  height: 26px;
  border-radius: var(--obf-r-pill);
  background: var(--obf-gray-20);
  transition: background 0.2s ease;
  position: relative;
}

.obf-cookie-toggle__knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: var(--obf-r-pill);
  background: var(--obf-surface);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease;
}

.obf-cookie-toggle input:checked + .obf-cookie-toggle__track {
  background: var(--obf-accent);
}

.obf-cookie-toggle input:checked + .obf-cookie-toggle__track .obf-cookie-toggle__knob {
  transform: translateX(18px);
}

.obf-cookie-prefs__footer {
  padding: 14px 20px 18px;
  border-top: 1px solid var(--obf-hairline);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (min-width: 1024px) {
  .obf-cookie-prefs {
    align-items: center;
    padding: 24px;
  }

  .obf-cookie-prefs__panel {
    border-radius: var(--obf-r-modal);
    max-height: min(720px, 92vh);
  }
}

/* Writer archive */
.obf-writer-page {
  padding: 0 0 28px;
}

.obf-writer-hero {
  padding: 8px var(--obf-gutter) 28px;
}

.obf-writer-hero__head {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.obf-writer-hero__avatar {
  flex: 0 0 96px;
  width: 96px;
  height: 96px;
  border-radius: var(--obf-r-pill);
  overflow: hidden;
  background: var(--obf-panel);
}

.obf-writer-hero__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.obf-writer-hero__meta {
  flex: 1;
  min-width: 0;
}

.obf-writer-hero__name {
  margin: 10px 0 8px;
  font: 800 32px/1.1 var(--obf-font);
  letter-spacing: -0.02em;
  color: var(--obf-ink);
}

.obf-writer-hero__role {
  margin: 0;
  font: italic 400 16px/1.35 var(--obf-font);
  color: var(--obf-gray-60);
  white-space: pre-wrap;
}

.obf-writer-hero__bio {
  margin: 24px 0 0;
  font: 400 16px/1.68 var(--obf-font);
  color: var(--obf-ink-body);
  width: 100%;
  max-width: none;
  box-sizing: border-box;
}

.obf-writer-empty {
  padding: 0 var(--obf-gutter);
}

/* Search results */
.obf-search-page {
  padding: 8px var(--obf-gutter) 32px;
}

.obf-search-page__header {
  margin-bottom: 24px;
}

.obf-search-page__title {
  margin: 0 0 16px;
  font: 800 32px/1.1 var(--obf-font);
  color: var(--obf-ink);
}

.obf-search-page__form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 720px;
}

.obf-search-page__form input[type='search'] {
  flex: 1 1 240px;
  height: 48px;
  padding: 0 14px;
  border: 1px solid var(--obf-border-input);
  border-radius: var(--obf-r-input);
  background: var(--obf-panel);
  font: 300 16px/1 var(--obf-font);
}

.obf-search-page__form .obf-btn-solid {
  width: auto;
  min-width: 140px;
  margin-top: 0;
}

.obf-search-results {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.obf-search-result {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 18px;
  padding: 16px;
  border: 1px solid var(--obf-hairline);
  border-radius: var(--obf-r-input);
  text-decoration: none;
  color: inherit;
}

.obf-search-result:hover {
  background: var(--obf-row-hover);
}

.obf-search-result__thumb {
  display: block;
}

.obf-search-empty {
  font: 400 16px/1.5 var(--obf-font);
  color: var(--obf-gray-60);
}

.obf-archive-empty {
  margin: 0;
  padding: 8px 0 48px;
  font: 400 16px/1.5 var(--obf-font);
  color: var(--obf-gray-60);
}

/* Podcast / Signals listings use essay cards (author row visible). */
body.obf-podcast-listing .bytf__postmeta ul li.authore + li,
body.obf-signal-listing .bytf__postmeta ul li.authore + li {
	display: none;
}

body.obf-podcast-listing .bytf__postmeta ul li.authore + li::before,
body.obf-signal-listing .bytf__postmeta ul li.authore + li::before {
	content: none;
}

@media (max-width: 767px) {
  .obf-experts-page__grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 20px 18px;
  }

  .obf-writer-hero__head {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .obf-search-result {
    grid-template-columns: 1fr;
  }
}

/* Desktop layout — match OBF mobile design reference at wider breakpoints */
@media (min-width: 768px) {
  .obf-page-hero__title {
    font-size: 40px;
  }

  .obf-about-body {
    padding-bottom: 40px;
  }

  .obf-collab-item {
    flex-direction: row;
    align-items: stretch;
    gap: 24px;
  }

  .obf-collab-logo-wrap {
    width: 160px;
    height: 160px;
    margin: 0;
    padding: 18px;
  }

  .obf-collab-website {
    display: flex;
  }

  .obf-collab-link {
    display: none;
  }

  .obf-team-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px 20px;
  }

  .obf-mandate-page .obf-mandate-panel__inner {
    padding: 64px var(--obf-gutter);
  }

  .obf-mandate-page .obf-mandate-panel__content p {
    font-size: 20px;
    line-height: 1.8;
  }

  .obf-team-modal__panel {
    flex-direction: row;
    align-items: stretch;
    max-width: min(920px, calc(100vw - 44px));
  }

  .obf-team-modal__body {
    flex: 1 1 58%;
    min-width: 0;
    padding: 32px 28px;
    max-height: 90vh;
  }

  .obf-team-modal__photo {
    flex: 0 0 42%;
    width: 42%;
    max-width: 380px;
    aspect-ratio: auto;
    min-height: 320px;
    align-self: stretch;
  }

  .obf-team-modal__photo img {
    min-height: 100%;
    height: 100%;
  }
}

@media (min-width: 1024px) {
  .obf-collab-logo-wrap {
    width: 200px;
    height: 200px;
    padding: 20px;
  }

  .obf-collab-name {
    font-size: 22px;
  }
}

/* ------------------------------------------------------------------ *
 * Contact page — two-column layout (info left, form right on desktop)
 * ------------------------------------------------------------------ */
.obf-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}

.obf-contact-grid__info,
.obf-contact-grid__form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}

@media (min-width: 900px) {
  .obf-contact-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 48px;
  }

  .obf-contact-grid__form {
    position: sticky;
    top: 96px;
  }
}

/* ------------------------------------------------------------------ *
 * Author bio box — bottom of single articles
 * ------------------------------------------------------------------ */
.obf-author-bio {
  display: flex;
  flex-direction: column;
  margin: 32px 0 8px;
  padding: 24px 22px;
  border: 1px solid var(--obf-hairline, #e6e6e6);
  border-radius: var(--obf-r-border, 6px);
  background: var(--obf-panel, #fafafa);
}

.obf-author-bio__head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

/* Fixed circular frame — must not shrink inside the flex head row, otherwise
 * the image is squeezed narrower than it is tall and renders as an oval. */
.obf-author-bio__avatar {
  flex: 0 0 68px;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  overflow: hidden;
  display: block;
}

.obf-author-bio__avatar img {
  width: 68px !important;
  height: 68px !important;
  max-width: none;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.obf-author-bio__id {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.obf-author-bio__eyebrow {
  display: block;
  font: 700 10px/1 var(--obf-font);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--obf-gray-40, #777);
}

.obf-author-bio__name {
  margin: 7px 0 0;
  font: 700 18px/1.2 var(--obf-font);
  letter-spacing: -0.01em;
  color: var(--obf-ink, #111);
}

.obf-author-bio__name a,
.obf-author-bio__name a:hover {
  color: var(--obf-ink, #111) !important;
  text-decoration: none !important;
  pointer-events: none;
  cursor: default;
}

.obf-author-bio__role {
  margin: 3px 0 0;
  font: 300 13px/1.4 var(--obf-font);
  color: var(--obf-gray-60, #666);
}

.obf-author-bio__text {
  margin: 14px 0 0;
  font: 300 15px/1.65 var(--obf-font);
  color: var(--obf-body-muted, #555);
}

.obf-author-bio__text.is-clamped {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.obf-author-bio__more {
  align-self: flex-start;
  margin: 8px 0 0;
  padding: 0;
  background: none;
  border: 0;
  font: 700 13px/1 var(--obf-font);
  color: var(--obf-accent, #ef671f);
  cursor: pointer;
}

.obf-author-bio__follow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 16px 0 0;
}

.obf-author-bio__follow-label {
  margin-left: auto;
  font: 600 13px/1 var(--obf-font);
  color: var(--obf-ink, #111);
}

.obf-author-bio__follow-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.obf-author-bio__follow-icon--linkedin {
  background: var(--obf-li, #0a66c2);
}

.obf-author-bio__follow-icon--twitter {
  background: #000;
}

/* Job single — location line above the apply form */
.obf-job-detail__location {
  font: 600 15px/1.4 var(--obf-font);
  color: var(--obf-body-muted, #555);
  margin: 0 0 8px;
}
