.infZfdWoYLjfGuC97L37 {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-block: 2.5rem;
  border-bottom: 1px solid var(--fbl-line);
  background: transparent;
}

.nKTNaD9OmMA09LjyJf5J {
  font-family: var(--fbl-font-body);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--fbl-ink);
  text-decoration: none;
}

.nKTNaD9OmMA09LjyJf5J:hover {
  text-decoration: underline;
  text-decoration-color: var(--fbl-accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.25rem;
}

@media (max-width: 479px) {
  .infZfdWoYLjfGuC97L37 {
    padding-block: 1.75rem;
  }

  .nKTNaD9OmMA09LjyJf5J {
    font-size: 1.25rem;
  }
}

/*
 * Fetchly brand tokens for the Blog Sections library.
 * Each token first reads the verified Webflow site variable (Primitives /
 * Color Schemes / Typography collections, verified 2026-06-10; site variables
 * inherit into the component Shadow DOM) and falls back to the canonical
 * value from the Fetchly-GUIDES brand book. Component color props override
 * these via inline custom properties on the root.
 */
.fbl-root {
  --fbl-bg: transparent;
  --fbl-ink: var(--_primitives---colors--neutral-darkest, #050b0d);
  --fbl-ink-soft: var(--_primitives---colors--neutral, #505455);
  --fbl-surface: var(--color-scheme-1--surface-1, #fffefa);
  --fbl-surface-alt: var(--color-scheme-1--surface-2, #f6f5f1);
  --fbl-line: var(--color-scheme-1--border, #e5e4df);
  --fbl-accent: var(--_primitives---colors--malibu, #69e5fb);
  --fbl-accent-ink: var(--_primitives---colors--malibu-darkest, #1f444b);
  --fbl-accent-soft: var(--_primitives---colors--malibu-lightest, #f0fcfe);
  --fbl-font-display: var(--_typography---font-styles--neo-heading, "Marjorie", Georgia, serif);
  --fbl-font-body: var(--_typography---font-styles--neo-body, "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
  --fbl-font-mono: "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace;

  position: relative;
  width: 100%;
  box-sizing: border-box;
  background: var(--fbl-bg);
  color: var(--fbl-ink);
  font-family: var(--fbl-font-body);
}

.fbl-root *,
.fbl-root *::before,
.fbl-root *::after {
  box-sizing: border-box;
}

.fbl-root[data-theme="dark"] {
  --fbl-bg: var(--_primitives---colors--neutral-darker, #1e2325);
  --fbl-ink: var(--_primitives---colors--neutral-lightest, #fffefa);
  --fbl-ink-soft: #9ea6ab;
  --fbl-surface: var(--_primitives---colors--neutral-dark, #2b2f31);
  --fbl-surface-alt: #3c3f41;
  --fbl-line: var(--_primitives---opacity--white-15, rgba(255, 255, 255, 0.15));
  --fbl-accent-ink: var(--_primitives---colors--malibu, #69e5fb);
  --fbl-accent-soft: rgba(105, 229, 251, 0.08);
}

/* Shared meta line — quiet single line "Author · Date" used by all blog cards */
.fbl-metaRow {
  display: flex;
  align-items: center;
}

.fbl-metaText {
  font-family: var(--fbl-font-body);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--fbl-ink-soft);
}

/* Long-form body ink — brand Neutral Darker for article text */
.fbl-root {
  --fbl-ink-body: var(--_primitives---colors--neutral-darker, #1e2325);
}

.fbl-root[data-theme="dark"] {
  --fbl-ink-body: #c9cdcf;
}

