.Xpx_7pfduzI5KS4Bizww {
  --local-surface-background: var(--background-color--background-light, #fdfcfe);
  --local-surface-card: var(--background-color--background-card-light, #f6f1fa);
  --local-surface-placeholder: var(--base-color-gray--gray-10, #e0d5e8);
  --local-surface-brand: var(--base-color-primary--red-100, #ff003c);
  --local-surface-input: var(--base-color-gray--gray-100-3, rgba(16, 7, 25, 0.03));
  --local-border-default: var(--border-color--border-light, rgba(16, 7, 25, 0.12));
  --local-border-secondary: var(--base-color-gray--gray-65, #645870);
  --local-content-accent: var(--base-color-primary--red-100, #ff003c);
  --local-content-primary: var(--text-color--text-primary, #100719);
  --local-content-subtle: var(--text-color--text-secondary, #42364e);
  --local-content-muted: var(--base-color-gray--gray-65, #645870);
  --local-focus: var(--base-color-system--focus-state, #2d62ff);
  --local-focus-accent: var(--base-color-secondary--purple-100, #cc82fa);
  --local-surface-empty: var(--base-color-gray--gray-100-5, rgba(16, 7, 25, 0.05));
  --local-font-body: var(--fonts--primary, 'Suisse', -apple-system, 'Helvetica Neue', sans-serif);
  --local-font-mono: var(
    --fonts--secondary,
    'Suisse mono',
    ui-monospace,
    'SF Mono',
    Menlo,
    monospace
  );

  color-scheme: light;
  display: block;
  color: var(--local-content-primary);
  font-family: var(--local-font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
.Xpx_7pfduzI5KS4Bizww,
.Xpx_7pfduzI5KS4Bizww *,
.Xpx_7pfduzI5KS4Bizww *::before,
.Xpx_7pfduzI5KS4Bizww *::after {
  box-sizing: border-box;
}

/* ---- search (matches the real Blog page's .articles_search-field: bg
   gray-100 @ 3%, border-light, 8px radius, 12px/46px padding for the icon,
   Suisse 16px/400). Focus uses the same --local-focus ring as every other
   interactive element in this component (the real field disables its
   outline with nothing standing in for it — not something worth mirroring). */
.AysEZbYhAASG4LICHRZ3 {
  position: relative;
  display: block;
  margin-bottom: 16px;
}
.AysEZbYhAASG4LICHRZ3 input {
  width: 100%;
  appearance: none;
  background: var(--local-surface-input);
  border: 1px solid var(--local-border-default);
  border-radius: 8px;
  color: var(--local-content-primary);
  font-family: var(--local-font-body);
  font-size: 16px;
  padding: 12px 40px 12px 46px;
}
.AysEZbYhAASG4LICHRZ3 input::placeholder {
  color: var(--local-content-muted);
}
.AysEZbYhAASG4LICHRZ3 input:focus {
  outline: none;
  border-color: var(--local-focus-accent);
  box-shadow: 0 0 0 1px var(--local-focus-accent);
}
.BAGe7YLkjMKU5hyad3gH {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  pointer-events: none;
}
.c0wVkg7Pm5U20fcnJNX2 {
  appearance: none;
  background: none;
  border: none;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  padding: 0;
  cursor: pointer;
}
.c0wVkg7Pm5U20fcnJNX2:focus-visible {
  outline: 2px solid var(--local-focus);
  outline-offset: 2px;
}

/* ---- type filter — standalone bordered pills (matches
   .articles_checkbox-field: individual boxes in a wrapping flex row with a
   12px gap, not a shared pill-group container) ---- */
.FxOfljzsRoOF9yjRMgIZ {
  position: relative;
  margin-bottom: 20px;
}
.G2ljZbkVXSnOqHQjQ0Iq {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
/* Qualified with the `button` tag to outrank the site's global tag-styles
   sheet (its `button,[type=button],[type=reset] { border: 0 }` reset matches
   our `<button type="button">` elements with the same 0,1,0 specificity as a
   bare class selector, so on ties whichever stylesheet loads later wins —
   this makes ours win unconditionally instead of depending on load order).
   Sizing uses rem (matching the real .articles_checkbox-field rule exactly)
   rather than px — the real site's <html> font-size is fluid below 1280px,
   and since this component isn't shadow-isolated, rem here automatically
   tracks that same fluid scaling instead of needing our own breakpoints. */
button.YGzxqD6debRJpG6g80Ff {
  appearance: none;
  background: transparent;
  border: 1px solid var(--local-border-default);
  border-radius: 0.5rem;
  color: var(--local-content-primary);
  font-family: var(--local-font-mono);
  font-size: 0.813rem;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  padding: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
button.YGzxqD6debRJpG6g80Ff:hover {
  background: var(--local-surface-input);
}
button.I8Ic8KFH6DhZPt8SisPA,
button.I8Ic8KFH6DhZPt8SisPA:hover {
  background: var(--local-content-primary);
  border-color: var(--local-content-primary);
  color: var(--local-surface-background);
}
button.YGzxqD6debRJpG6g80Ff:focus-visible {
  outline: 2px solid var(--local-focus);
  outline-offset: 2px;
}

/* ---- tablet/mobile filter row: matches the real site's behavior of
   scrolling the pills via gradient-masked arrow buttons instead of wrapping
   them onto new lines (confirmed via computed styles + real arrow clicks
   moving the real row's scrollLeft) ---- */
@media (max-width: 991px) {
  .G2ljZbkVXSnOqHQjQ0Iq {
    flex-wrap: nowrap;
    overflow-x: hidden;
    gap: 10px;
  }
  button.YGzxqD6debRJpG6g80Ff {
    flex: none;
    padding: 0.875rem 0.75rem;
  }
}
.XYbDUL9jlWX6RA90XObu {
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  align-items: center;
  z-index: 3;
  pointer-events: none;
}
.T_9PRJUH_Vbc4HfE5gLG {
  left: 0;
  justify-content: flex-start;
  background: linear-gradient(
    90deg,
    var(--local-surface-background) 60%,
    rgba(253, 252, 254, 0.05)
  );
}
.sRHc7d5aLwXJWht9FlxC {
  right: 0;
  justify-content: flex-end;
  background: linear-gradient(
    270deg,
    var(--local-surface-background) 60%,
    rgba(253, 252, 254, 0.05)
  );
}
@media (max-width: 991px) {
  .XYbDUL9jlWX6RA90XObu {
    display: flex;
  }
}
.rcpZqX4_LVayIC5lulSD {
  appearance: none;
  flex: none;
  width: 2.6rem;
  height: 2.6rem;
  background: transparent;
  border: 1px solid var(--local-border-default);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
}
.rcpZqX4_LVayIC5lulSD:focus-visible {
  outline: 2px solid var(--local-focus);
  outline-offset: 2px;
}

.dN2iYe7adewjW9K__ju9 {
  font-family: var(--local-font-mono);
  font-size: 14px;
  color: var(--local-content-subtle);
  margin-bottom: 14px;
}

/* Matches the real Blog page's .articles-empty container exactly. */
.Z74mLFsidJRu1awFY394 {
  background: var(--local-surface-empty);
  border-radius: 16px;
  padding: 32px;
  color: var(--local-content-primary);
  font-family: var(--local-font-mono);
  font-size: 16px;
}

/* ---- card grid ----
   Mirrors the site's real "Element / Card - Resource" component: image on
   top, then eyebrow -> heading -> link, inside one rounded card. Structural
   fidelity confirmed against a live instance in the Designer; exact spacing
   is our own reconstruction using the site's design tokens (Webflow's
   style-read API doesn't expose raw CSS property values, only names). */
.hJQz6ZyNA43Z6dAYeAB5 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.XkhuLKdqaSM0hp2ll2hP {
  display: flex;
  flex-direction: column;
  border-radius: 0.5rem;
  overflow: hidden;
  background: var(--local-surface-card);
  text-decoration: none;
  color: inherit;
}
._6sbkb13lpTi8ImsYbGE {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  flex: none;
}
.xCIKtfwz2Iv2Dk2esXmw,
.fiZkZy7wwb2Re45yKyFp {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.xCIKtfwz2Iv2Dk2esXmw {
  transition: transform 0.3s ease;
}
.XkhuLKdqaSM0hp2ll2hP:hover .xCIKtfwz2Iv2Dk2esXmw {
  transform: scale(1.05);
}
.fiZkZy7wwb2Re45yKyFp {
  background: var(--local-surface-placeholder);
}
.Uqdi28YWjHpefxq50CSQ {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
  padding: 28px;
}
.IVIziy6ICn7qDs19GxLU {
  font-family: var(--local-font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--local-content-subtle);
}
.LkNRjqFzLovPfCziTMpm {
  font-size: var(--_typography-tokens---h4--size, 1.5rem);
  font-weight: var(--_typography-primitives---weight--medium, 500);
  line-height: 1.2;
  color: var(--local-content-primary);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.jEHoz7kb2PQDoUUc9UtH {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--local-content-accent);
}
.fcVYI5mzajb1pfbyG8So {
  color: var(--local-content-accent);
  transition: transform 0.14s;
}
.XkhuLKdqaSM0hp2ll2hP:hover .fcVYI5mzajb1pfbyG8So {
  transform: translateX(3px);
}

/* ---- skeleton (loading state) ---- */
.HtwlQ_e1EoTSSQxFnYHs .fiZkZy7wwb2Re45yKyFp,
.LIXB7fIUnznJXwYAqogg,
.mpAluSG91Glu5VVu4kwb {
  animation: uSkZZfylO5zRwvWvYrYx 1.4s ease-in-out infinite;
}
.LIXB7fIUnznJXwYAqogg {
  display: block;
  width: 30%;
  height: 12px;
  border-radius: 4px;
  background: rgba(16, 7, 25, 0.08);
}
.mpAluSG91Glu5VVu4kwb {
  display: block;
  width: 80%;
  height: 20px;
  margin-top: 8px;
  border-radius: 4px;
  background: rgba(16, 7, 25, 0.08);
}
@keyframes uSkZZfylO5zRwvWvYrYx {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.9;
  }
}

/* ---- load more (matches the real Blog page's .button-third: bg
   background-light, border-light, 4px radius, Suisse 14px/500) ---- */
.u82sJKIGHWvT1eUVI2zT {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
/* Qualified with `button` — see the .filterPill comment above for why. */
button.moSY7JFFFNj9699kSnLA {
  appearance: none;
  background: var(--local-surface-background);
  border: 1px solid var(--local-border-default);
  border-radius: 4px;
  color: var(--local-content-primary);
  padding: 12px 16px;
  font-family: var(--local-font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.14s;
}
button.moSY7JFFFNj9699kSnLA:hover {
  background: rgba(16, 7, 25, 0.04);
}
button.moSY7JFFFNj9699kSnLA:focus-visible {
  outline: 2px solid var(--local-focus);
  outline-offset: 2px;
}

/* Matches the real Blog page's .articles_list breakpoints (verified via
   computed grid-template-columns at each width): 3 columns by default, 2 at
   the "small" breakpoint (<=767px), 1 at "tiny" (<=478px). */
@media (max-width: 767px) {
  .hJQz6ZyNA43Z6dAYeAB5 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 478px) {
  .hJQz6ZyNA43Z6dAYeAB5 {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .HtwlQ_e1EoTSSQxFnYHs .fiZkZy7wwb2Re45yKyFp,
  .LIXB7fIUnznJXwYAqogg,
  .mpAluSG91Glu5VVu4kwb {
    animation: none;
  }
}

