/* templates/page.html + patterns/our-work-feature-band.php, Our Work page only. Reuses
   archive-case-study.css's .bpd-case-study-photo/.bpd-play-badge (enqueued alongside this file,
   see functions.php) rather than duplicating them, same treatment as single-case-study.css. Gated
   to is_page('our-work') so it isn't sitewide (mirrors the who-we-are.css/contact-form.css gating).
   Later sections of the Our Work page (grid+filters, stats, CTA) add their rules here.

   The filter Select and pagination pill are NOT here: this file carried a byte-identical copy of
   archive-insights.css's rules for both, so they live in filter-pagination.css, enqueued as this
   stylesheet's dependency (functions.php). */

/* "Feature work" card photo used to carry a fixed 614:584 crop here (.bpd-case-study-photo--feature
   { aspect-ratio: 614 / 584; }, matching Figma nodes 4788:56524 / 4788:56525). Removed 2026-08-23 —
   the near-square box read too tall on both cards — so each photo now renders at its natural
   aspect ratio, full column width, inside .bpd-case-study-photo's existing radius/clip. */

/* Feature card links (photo + title, our-work-feature-band.php) — reset off theme.json's global
   elements.link style (text-default color, underlined), which would otherwise fight these cards'
   white-on-purple (neutral-100) treatment. color: inherit rather than repeating the neutral-100
   token — the heading already carries it via textColor — same technique as action-card.css's
   stretched-link title. */
.bpd-case-study-photo--feature a,
.bpd-feature-card-title a {
	color: inherit;
	text-decoration: none;
}

/* "Feature work" card tag chip (Figma "Badge" component, node 5686:8348) used to live here
   (.bpd-feature-band-tag). Removed 2026-08-20, Russell's call, when the two feature cards
   (patterns/our-work-feature-band.php) swapped from lorem-ipsum stubs to real Case Study posts —
   nothing on this page references .bpd-feature-band-tag any more, so the rule is gone rather than
   left as a dead selector (same treatment as the .bpd-our-work-cta img removal below). */

/* Grid card eyebrow chip — the core/post-terms block on each .bpd-our-work-card, styled as the
   same Badge/tag chip archive-insights.css's .bpd-eyebrow uses (same border-sm blue-300 /
   radius-md), but scoped to the card wrapper so the term list reads as a single pill before the
   card title. */
.bpd-our-work-card .wp-block-post-terms {
	display: inline-block;
	padding: var(--wp--preset--spacing--100) var(--wp--preset--spacing--300);
	border: var(--wp--custom--border--sm) solid var(--wp--preset--color--blue-300);
	border-radius: var(--wp--custom--radius--md);
	font-size: var(--wp--preset--font-size--body-xs);
	text-transform: uppercase;
}

.bpd-our-work-card .wp-block-post-terms a {
	text-decoration: none;
}

/* The "Are you good to grow?" CTA band's .bpd-our-work-cta image rule used to live here. That band
   is no longer three flat images — it now uses the shared action card (bpd_render_action_card() in
   inc/pattern-helpers.php, styled by assets/css/action-card.css), which is deliberately NOT
   page-gated because the card is meant to be usable anywhere. Nothing on this page references
   .bpd-our-work-cta any more, so the rule is gone rather than left as a dead selector. */
