/**
 * BLOGS PAGE - node 93:11862
 * =========================================================================
 * `.a3-blg-*`. Loaded alongside blog-category.css, which supplies the post
 * row - this file only carries what is genuinely new to this page.
 * ========================================================================= */

/* =========================================================================
 * HERO - node 93:11865 (1440 x 540)
 *
 * The nav overlays this frame, so the node's numbers are measured through it:
 * the heading at y=120 is 39 below our header, and the 540 band is 459 of
 * visible height. Applying them raw would count the header twice - the bug
 * that made the home hero 239 instead of 158.
 * ========================================================================= */
.a3-blg-hero {
  position: relative;
  display: flex;
  align-items: flex-start;
  /* The node's own numbers, both of them: a 540 band with the heading 120 down.
   *
   * An earlier version mixed the two conventions - 540 for the band but
   * 120 - 81 = 39 for the heading, correcting for the nav that overlays the
   * frame in Figma but not on the site. Correcting one and not the other left
   * the copy riding high and ~232 of slack under it against the design's 135.
   * Whichever convention is used, it has to be used for both.
   *
   * The gap under the intro lands at 151 against the node's 135. That 16 is
   * Figma measuring text at glyph bounds where the browser uses line boxes -
   * its heading box is 207.2 for two lines of 93, which render as 186. Closing
   * it would mean moving line-heights off the spec. Same call as the Contact
   * page, recorded in CONTACT-PAGE.md section 3. */
  min-height: 540px;
  padding: 120px 0 0;
  overflow: hidden;
  background-color: #1a1a1a; /* the gradient's own colour */
  background-image: var(--a3-blg-hero-img);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* The node's Gradient layer, read off it rather than eyeballed: two stops of
 * #1A1A1A, 90% to 40%, with handles at (0,.5) -> (1,.5) - a straight
 * left-to-right 90deg. An earlier version guessed three stops of #18181B. */
.a3-blg-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(26, 26, 26, 0.9) 0%,
    rgba(26, 26, 26, 0.4) 100%
  );
}

/* The node insets the copy 128, but the site container is 1280 with 24 of
 * padding - using it puts the heading on the same left edge as the header
 * logo and every other band, 24 in from the node's figure. */
.a3-blg-hero__inner {
  position: relative;
  width: min(100% - 48px, var(--a3-container-max));
  margin-inline: auto;
  padding: 0 24px;
}

.a3-blg-hero__heading {
  max-width: 560px;
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 85px;
  font-weight: 400;
  line-height: 93px;
  letter-spacing: -2px;
  color: #ffffff;
}

/* 20/30 #D0D4D4, sitting 23 under the heading (350 - 120 - 207). */
.a3-blg-hero__intro {
  max-width: 637px;
  margin: 23px 0 0;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  color: #d0d4d4;
}

@media (max-width: 991.98px) {
  .a3-blg-hero__heading {
    font-size: 56px;
    line-height: 62px;
    letter-spacing: -1.2px;
  }
}

@media (max-width: 767.98px) {
  .a3-blg-hero {
    min-height: 360px;
    padding-top: 48px;
  }

  .a3-blg-hero__heading {
    font-size: 38px;
    line-height: 44px;
    letter-spacing: -0.8px;
  }

  .a3-blg-hero__intro {
    font-size: 16px;
    line-height: 26px;
  }
}

/* =========================================================================
 * FILTERS + FEATURED - node 93:11870 (1440 x 759)
 *
 * Section runs 96 to the pill row, 64 to the card, and the card reaches the
 * band's bottom edge. Container is 1184 at x=128 in the node; the site
 * container is used instead so it lines up with the hero and the header.
 * ========================================================================= */
.a3-blg-inner {
  width: min(100% - 48px, var(--a3-container-max));
  margin-inline: auto;
  padding: 0 24px;
}

/* #FCFCFD, the same near-white the Latest Stories band uses, so the two read
 * as one surface rather than white-then-grey. */
.a3-blg-filters-section {
  padding: 96px 0 0;
  background: #fcfcfd;
}

/* 75 tall with a rule under it, pills left and the search box right. */
.a3-blg-filters {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 33px; /* 96 + 42 + 33 = the node's 171 */
  border-bottom: 1px solid #e4e4e7;
}

/* One line, always.
 *
 * With six categories plus "All" the pills need ~930px and the row gives them
 * 858 at 1440, so the last one dropped onto a second line on its own, which
 * reads as broken rather than as a wrap. Three things buy that back: the row
 * no longer wraps, the search box is allowed to shrink (below), and the pill
 * padding and gap are trimmed.
 *
 * `nowrap` + `overflow-x: auto` is the same treatment the phone layout already
 * uses, applied at every width instead of below 768 only - which also means
 * this holds for a seventh or eighth category without retuning anything. At
 * the widths that matter nothing actually needs scrolling; the overflow is
 * the safety net, not the design. */
.a3-blg-filters__pills {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  /* Without this the row is a flex item with the default `min-width: auto`,
     which refuses to shrink below its content - so it stretched to 866px on a
     390px phone and pushed the whole page sideways instead of scrolling
     inside itself. overflow-x is inert until the box can actually be smaller
     than what it holds. */
  min-width: 0;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  /* No visible scrollbar - the row's overflow is the affordance. */
  scrollbar-width: none;
}

.a3-blg-filters__pills::-webkit-scrollbar {
  display: none;
}

/* 42 tall, and SQUARE - the node sets no cornerRadius at all. An earlier
 * version made these 999px pills from the site's usual convention rather than
 * reading the node, and got the fill, border, weight and text colour wrong
 * with it: #000000 not #18181B, #E7EAF0 not #E4E4E7, Inter 600 not 500,
 * #676F7B not #3F3F46. */
.a3-blg-pill {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  height: 42px;
  padding: 0 14px;
  scroll-snap-align: start;
  white-space: nowrap;
  border: 1px solid #e7eaf0;
  border-radius: 0;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: #676f7b;
  text-decoration: none;
  white-space: nowrap;
  transition:
    border-color 0.18s ease,
    color 0.18s ease,
    background 0.18s ease;
}

.a3-blg-pill:hover,
.a3-blg-pill:focus-visible {
  border-color: var(--primary, #ff6900);
  color: var(--primary, #ff6900);
}

.a3-blg-pill.is-active {
  background: #000000;
  border-color: #000000;
  color: #ffffff;
}

/* 350 x 42, icon inset 16 and vertically centred. */
/* Was a rigid 350. It now gives ground to the pills when they need it and
   takes its full width back when they do not. */
.a3-blg-search {
  position: relative;
  flex: 0 1 350px;
  width: 350px;
  min-width: 240px;
  max-width: 100%;
}

.a3-blg-search__icon {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  color: #71717a;
  pointer-events: none;
}

.a3-blg-search input[type="search"] {
  width: 100%;
  height: 42px;
  padding: 0 16px 0 44px;
  background: #ffffff;
  border: 1px solid #e7eaf0;
  border-radius: 0; /* square, like the pills - the node sets no radius */
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #3f3f46;
}

/* Below ~1366 the pills and the search stop fitting side by side, and the last
 * pill ended up sliced in half against the search box - which reads as broken
 * rather than as "scroll me". They stack instead: the pills take the full
 * container width (1169 at 1280, against the ~850 they need) and the search
 * drops underneath, which is what the phone layout already does.
 *
 * The threshold is arithmetic, not taste: 850 for the pills + 24 bar gap + 240
 * minimum search = 1114 of container, and the container is narrower than that
 * below about 1215 of viewport. 1365.98 leaves room for a longer category name
 * before anything is cut.
 *
 * It has to be a breakpoint rather than flex: the pills row is
 * `overflow-x: auto`, so its min-content width collapses to nothing and it can
 * never push the search to give up space - the search stayed at 334 while the
 * pills were being clipped.
 *
 * Floored at 768 deliberately. Below that the bar is already
 * `flex-direction: column`, where `flex-basis: 100%` sizes the HEIGHT, not the
 * width - applying it there stretched the row to 866px on a 390px phone and
 * pushed the whole page sideways. The phone layout below was already correct
 * and is left alone. */
@media (min-width: 768px) and (max-width: 1365.98px) {
  .a3-blg-filters {
    flex-wrap: wrap;
    gap: 20px 24px;
  }

  /* max-width as well as min-width: flex-basis alone let the row size to its
     content (850) inside a 728 container at 768, which pushed the page. The
     cap is what actually makes overflow-x engage. */
  .a3-blg-filters__pills {
    flex: 1 1 100%;
    min-width: 0;
    max-width: 100%;
  }

  /* Own line. The width is deliberately left at the base 350 - a search box
     stretched to 1169 looks like a mistake, and the pills above already give
     the row its full measure. */
  .a3-blg-search {
    flex: 0 0 100%;
  }
}

.a3-blg-search input[type="search"]:focus {
  outline: 0;
  border-color: var(--primary, #ff6900);
}

/* ---- featured post ----
 * 664 image, 64 gutter, copy in the rest. The node starts the card 64 below
 * the rule and runs it to the band's bottom edge. */
.a3-blg-featured {
  display: grid;
  grid-template-columns: 664px minmax(0, 1fr);
  column-gap: 64px;
  align-items: start;
  margin-top: 64px;
  padding-bottom: 64px;
  text-decoration: none;
}

/* Square corners - the node gives this image no cornerRadius. */
.a3-blg-featured__media {
  display: block;
  height: 415px;
  overflow: hidden;
  border-radius: 0;
  background: #f4f5f9;
}

.a3-blg-featured__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.a3-blg-featured__body {
  display: block;
  padding-top: 24px; /* 259 - 235 */
}

.a3-blg-featured__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #676f7b;
}

/* The category is blue and uppercase, not the same grey as the rest of the
 * meta line - which is what an earlier version had it as. */
.a3-blg-featured__cat {
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: #3b82f6;
}

.a3-blg-featured__media {
  position: relative;
}

/* "FEATURED ESSAY" - a white chip 24 in from the image's top-left corner. */
.a3-blg-featured__badge {
  position: absolute;
  top: 22px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  height: 30.5px;
  padding: 0 16px;
  background: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #030303;
}

/* 40/52.8, sitting 21 under the meta line (300 - 259 - 20). */
.a3-blg-featured__heading {
  display: block;
  margin-top: 21px;
  font-family: "Inter", sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 52.8px;
  letter-spacing: -1.2px;
  color: #030303;
}

.a3-blg-featured__excerpt {
  display: block;
  margin-top: 26px;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 29.2px;
  color: #676f7b;
}

.a3-blg-featured__author {
  display: flex;
  align-items: center;
  gap: 16px; /* avatar 48 at 856, name at 920 */
  margin-top: 36px;
}

.a3-blg-featured__avatar {
  display: flex;
  flex: 0 0 48px;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  /* SQUARE initial tile, not a round photo - the node draws the author as a
   * letter in a bordered box. */
  background: #f4f5f9;
  border: 1px solid #e7eaf0;
  border-radius: 0;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  color: #030303;
}

/* A real photo fills the same 48 tile - square, so it still reads as the
 * node's bordered box rather than becoming a round Gravatar. */
.a3-blg-featured__avatar.has-photo {
  overflow: hidden;
  background: none;
}

.a3-blg-featured__avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* The 48px arrow button at the card's right edge (x=1136 in a 1184 row). */
/* A plain 48 square with a hairline edge and the arrow centred - no radius,
 * no fill. The node draws it as a bordered box, nothing more. */
.a3-blg-featured__go {
  display: flex;
  flex: 0 0 48px;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-left: auto;
  background: transparent;
  border: 1px solid #e7eaf0;
  border-radius: 0;
  transition:
    border-color 0.18s ease,
    background 0.18s ease;
}

.a3-blg-featured__go svg {
  display: block;
}

.a3-blg-featured:hover .a3-blg-featured__go {
  background: #f4f5f9;
  border-color: #030303;
}

.a3-blg-featured__name {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  color: #030303;
}

.a3-blg-featured__role {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: #676f7b;
}

@media (max-width: 991.98px) {
  .a3-blg-filters {
    flex-direction: column;
    align-items: stretch;
  }

  .a3-blg-search {
    width: 100%;
  }

  .a3-blg-featured {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 24px;
  }

  .a3-blg-featured__media {
    height: 280px;
  }

  .a3-blg-featured__heading {
    font-size: 28px;
    line-height: 36px;
  }
}

/* =========================================================================
 * EDITOR'S PICKS - node 93:11908 (1440 x 677)
 *
 * 781.3 lead + 24 + 378.7 right column = the 1184 container. The right
 * column's two 207.7 tiles plus their 24 gap come to 439.5, exactly the
 * lead's height, so one grid with two rows does the whole thing.
 * ========================================================================= */
/* White, with a rule along the top separating it from the #FCFCFD band above. */
.a3-blg-picks {
  padding: 81px 0;
  background: #ffffff;
  border-top: 1px solid #e7eaf0;
}

/* 30/36 at 500, with the 24px bookmark 12 to its left. */
.a3-blg-picks__heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 40px; /* 157 - 81 - 36 */
  font-family: "Inter", sans-serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 36px;
  color: #030303;
}

.a3-blg-picks__heading svg {
  flex: 0 0 24px;
}

.a3-blg-picks__grid {
  display: grid;
  grid-template-columns: minmax(0, 781.3fr) minmax(0, 378.7fr);
  grid-template-rows: 207.7px 207.8px;
  gap: 24px;
}

.a3-blg-pick {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-color: #030303;
  background-image: var(--a3-blg-pick-img);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  text-decoration: none;
}

/* The lead spans both rows, which is what makes 208 + 24 + 208 = 440. */
.a3-blg-pick--lead {
  grid-row: span 2;
}

/* A wash so the white title holds against any photo. The node paints the card
 * #030303 under the image and lays the text block over it. */
.a3-blg-pick::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(3, 3, 3, 0.15) 0%,
    rgba(3, 3, 3, 0.55) 55%,
    rgba(3, 3, 3, 0.85) 100%
  );
}

.a3-blg-pick__body {
  position: relative;
  display: block;
  padding: 24px;
}

/* The lead is padded 32 against the small tiles' 24. */
.a3-blg-pick--lead .a3-blg-pick__body {
  padding: 32px;
}

.a3-blg-pick__cat {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  color: #ff6900;
}

/* 20/25 on the small tiles, 30/37.5 on the lead. */
.a3-blg-pick__title {
  display: block;
  margin-top: 4px;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 25px;
  color: #ffffff;
}

.a3-blg-pick--lead .a3-blg-pick__title {
  margin-top: 7px; /* 492 - 469 - 16 */
  font-size: 30px;
  line-height: 37.5px;
}

@media (max-width: 991.98px) {
  .a3-blg-picks__grid {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: none;
  }

  .a3-blg-pick {
    min-height: 220px;
  }

  .a3-blg-pick--lead {
    grid-row: auto;
    min-height: 320px;
  }
}

/* =========================================================================
 * LATEST STORIES - node 93:11930 (1440 x 1782)
 *
 * 757.3 list + 331 sidebar (the node puts the sidebar at x=981, so the gutter
 * is 981 - 128 - 757.3 = 95.7). Cards are 271.7 on a 320 pitch, so a 48 gap.
 * ========================================================================= */
.a3-blg-stories {
  padding: 96px 0;
  background: #fcfcfd;
}

.a3-blg-stories__inner {
  display: grid;
  grid-template-columns: minmax(0, 757.3fr) minmax(0, 330.7fr);
  column-gap: 96px;
  align-items: start;
}

/* The node's HorizontalBorder is 49 tall with a rule under it. */
/* 40/32 at 500 - the node's own numbers. An earlier version had this at
 * 24/33, which is why the heading read a size too small against the design. */
.a3-blg-stories__heading {
  margin: 0 0 40px; /* 185 - 96 - 49 */
  padding-bottom: 17px; /* the 49 band is 32 of text + this rule */
  border-bottom: 1px solid #e7eaf0;
  font-family: "Inter", sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 32px;
  color: #030303;
}

/* The sidebar starts level with the heading (both at y=96 in the node), so
 * nothing on the aside may add a top offset of its own - blog-category.css
 * gives .a3-bc-sidebar one for its own page's layout. */
.a3-blg-stories .a3-bc-sidebar {
  margin-top: 0;
  padding-top: 0;
}

/* The story rows are the category listing's .a3-bc-post, class for class -
 * blog-category.css styles them, so there is nothing to restate here. An
 * earlier version wrote a parallel .a3-blg-story with its own horizontal
 * layout; the client asked for that page's styling, and one component beats
 * two that drift. */

/* The sidebar is the category listing's .a3-bc-sidebar - its CTA card,
 * .a3-bc-widget headers, .a3-bc-trending__* list and .a3-bc-topics__* pills,
 * all styled by blog-category.css. Nothing to restate here. */

@media (max-width: 991.98px) {
  .a3-blg-stories__inner {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 48px;
  }

  .a3-blg-story {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 16px;
  }

  .a3-blg-story__media {
    height: 200px;
  }

  .a3-blg-story__title {
    font-size: 20px;
    line-height: 27px;
  }
}

/* =========================================================================
 * SCOPING CTA - the wash this page adds over the shared band
 *
 * Node 93:12147 stacks three layers, and reusing .a3-hm-scoping only brought
 * two of them: the photo (LAYER_BLUR 19.9, which home.css already applies as
 * blur(20px)) and the copy. The third is an #162456 fill at 31% on MULTIPLY -
 * a navy cast that is why the design reads cooler than a plain grey wash.
 *
 * Scoped to .a3-blogs-page so the home page's own band is untouched: it has
 * its own node and does not carry this layer.
 * ========================================================================= */
.a3-blogs-page .a3-hm-scoping::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #162456;
  opacity: 0.31;
  mix-blend-mode: multiply;
  pointer-events: none;
}

/* The wash is a sibling of the copy, so the copy needs to sit above it. */
.a3-blogs-page .a3-hm-scoping__container {
  position: relative;
  z-index: 1;
}

/* =========================================================================
 * WEBINARS & TALKS - node 93:12046 (1440 x 639.5)
 *
 * Dark band, heading left / outlined button right, then three 373 x 210
 * thumbnails on a 32 gap (405 pitch).
 * ========================================================================= */
.a3-blg-talks {
  padding: 87px 0 96px;
  background: #0a0a0a;
}

.a3-blg-talks__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px; /* 240 - 87 - 119 */
}

/* 56/65 at 400, and the node wraps it to two lines inside 479. */
.a3-blg-talks__heading {
  max-width: 479px;
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 56px;
  font-weight: 400;
  line-height: 65px;
  color: #ffffff;
}

/* 155 x 46, outlined. global.css squares buttons and floors them at 56, and
 * this is an <a>, so height and radius are stated outright. */
.a3-blg-talks__all {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 155.3px; /* the node's fixed width, not content-sized */
  height: 46px;
  margin-top: 43px; /* 130 - 87 */
  /* White at 20%, not solid - the node's stroke carries opacity 0.2, which
   * is why the design reads as a faint hairline, not a hard white box. */
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background 0.18s ease,
    color 0.18s ease;
}

.a3-blg-talks__all:hover,
.a3-blg-talks__all:focus-visible {
  background: #ffffff;
  border-color: #ffffff;
  color: #0a0a0a;
}

.a3-blg-talks__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.a3-blg-talk {
  display: block;
  text-decoration: none;
}

/* 210 tall, black behind the still with a hairline edge. */
.a3-blg-talk__media {
  position: relative;
  display: block;
  height: 210px;
  overflow: hidden;
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

/* 70% - the node's layer opacity on the still, which is what lets the black
 * band read through and keeps the play glyph legible. */
.a3-blg-talk__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: opacity 0.18s ease;
}

.a3-blg-talk:hover .a3-blg-talk__media img {
  opacity: 0.85;
}

/* The 56px play button, centred. */
/* The node's 56 box is an invisible hit area; the mark you see is the 32px
 * glyph inside it - a thin circle with a triangle, not a filled disc. An
 * earlier version drew the 56 as a dark bordered circle, which read far
 * heavier than the design. */
.a3-blg-talk__play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: none;
  border: 0;
  /* No backdrop blur. The node puts a 12px BACKGROUND_BLUR on this 56 box, but
   * it renders as a visible smeared disc behind the glyph rather than the
   * subtle softening Figma shows, so it is dropped on request. The stroked
   * mark is legible on its own against the still's 70% opacity. */
  transform: translate(-50%, -50%);
  transition: transform 0.18s ease;
}

.a3-blg-talk:hover .a3-blg-talk__play {
  transform: translate(-50%, -50%) scale(1.08);
}

/* The runtime chip, 24 tall in the bottom-right corner (the node puts it at
 * 305,169 inside a 373 x 210 still - so 16 from each edge). */
.a3-blg-talk__time {
  position: absolute;
  right: 16px;
  bottom: 17px;
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 8px;
  background: #000000;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  color: #ffffff;
}

.a3-blg-talk__title {
  display: block;
  margin-top: 16px; /* 466 - 240 - 210 */
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 24.8px;
  color: #ffffff;
}

.a3-blg-talk__by {
  display: block;
  margin-top: 9px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #a0a0a0;
}

/* ---- phones ----
 * The band's desktop padding (87/96) and its 32 card gap are far too generous
 * once the grid is one column: the section ran to nearly three screens with
 * most of it empty. */
@media (max-width: 767.98px) {
  .a3-blg-talks {
    padding: 48px 0 56px;
  }

  .a3-blg-talks__head {
    margin-bottom: 24px;
    gap: 20px;
  }

  /* One column. The 991 block below sets this too, but that rule sits earlier
   * in the cascade for a narrow viewport where both match - stating it here
   * keeps the phone case unambiguous rather than order-dependent. */
  .a3-blg-talks__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .a3-blg-talk__media {
    height: 200px;
  }

  .a3-blg-talk__title {
    margin-top: 12px;
  }
}

@media (max-width: 991.98px) {
  .a3-blg-talks__head {
    flex-direction: column;
  }

  .a3-blg-talks__heading {
    font-size: 36px;
    line-height: 44px;
  }

  .a3-blg-talks__all {
    margin-top: 0;
  }

  .a3-blg-talks__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* =========================================================================
 * VIDEO LIGHTBOX - blogs.js
 * ========================================================================= */
.a3-blg-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.82);
}

/* The frame and its close button move together. */
.a3-blg-lightbox__box {
  position: relative;
  width: min(1100px, 100%);
}

/* 16:9, capped so it never outgrows a short window. */
.a3-blg-lightbox__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: calc(100vh - 120px);
  background: #000000;
}

.a3-blg-lightbox__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* global.css floors buttons at 56 and squares them; both restated. */
/* Sits just above the frame's right edge, so it reads as belonging to the
 * video rather than floating in the window's corner. On a short window there
 * is no room above, so it drops inside the frame instead. */
.a3-blg-lightbox__close {
  position: absolute;
  top: -52px;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  min-height: 0;
  height: 44px;
  padding: 0;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px !important;
  color: #ffffff;
  cursor: pointer;
}

.a3-blg-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.24);
}

/* =========================================================================
 * NEWSLETTER CARD - node 93:11998 (330.67 x 400.25)
 *
 * Sits at the top of the Latest Stories sidebar. Everything but the input and
 * the button is ours; those two come from Contact Form 7 and are restyled to
 * the node below, the same arrangement the category listing's CTA uses.
 * ========================================================================= */
.a3-blg-news {
  padding: 33px;
  background: #f4f5f9;

  /* The card sits in the same stack as the Trending Now / Popular Topics
   * widgets, which space themselves 46px apart, but had no bottom margin of
   * its own - so Trending Now butted straight up against it. 60 matches the
   * equivalent card on the category template, keeping both sidebars on one
   * rhythm. */
  margin-bottom: 60px;
}

/* 48 white tile with a hairline edge, holding a 20px envelope. */
.a3-blg-news__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #ffffff;
  border: 1px solid #e7eaf0;
}

.a3-blg-news__heading {
  margin: 25px 0 0; /* 106 - 33 - 48 */
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  color: #030303;
}

.a3-blg-news__text {
  margin: 17px 0 0; /* 176 - 106 - 52.5 */
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22.8px;
  color: #676f7b;
}

.a3-blg-news__form {
  margin-top: 26px; /* 265 - 176 - 62.5 */
}

/* ---- the CF7 bits ----
 * The plugin's own markup, pushed to the node: a 46 input over a 44 black
 * button, both full width and square. global.css floors buttons at 56 and
 * forces border-radius 0 with !important; service.css forces the submit's
 * background - all restated here. */
.a3-blg-news__form .wpcf7 p {
  margin: 0;
  font-size: 14px;
  line-height: 1;
}

.a3-blg-news__form input[type="email"],
.a3-blg-news__form input[type="text"] {
  width: 100%;
  height: 46px;
  padding: 0 16px;
  background: #ffffff;
  border: 1px solid #e7eaf0;
  border-radius: 0;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #030303;
}

.a3-blg-news__form input::placeholder {
  color: #a1a7b3;
  opacity: 1;
}

.a3-blg-news__form input[type="email"]:focus,
.a3-blg-news__form input[type="text"]:focus {
  outline: 0;
  border-color: #030303;
}

.a3-blg-news__form input[type="submit"],
.a3-blg-news__form .wpcf7-submit {
  display: block;
  width: 100%;
  min-height: 0;
  height: 44px;
  margin-top: 12px; /* 323 - 265 - 46 */
  padding: 0;
  background: #030303 !important;
  border: 0;
  border-radius: 0 !important;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  color: #ffffff;
  cursor: pointer;
  transition: background 0.18s ease;
}

.a3-blg-news__form input[type="submit"]:hover,
.a3-blg-news__form .wpcf7-submit:hover {
  background: #1a1a1a !important;
}

.a3-blg-news__form .wpcf7-spinner {
  position: absolute;
}

/* =========================================================================
 * STORY ROW META - node 93:11930
 *
 * The category listing's row shows the eyebrow on its own; this page's node
 * puts a read time beside it. The eyebrow keeps .a3-bc-post__category's type
 * and this only lays the three parts out in a row, so the two pages still
 * share one component.
 * ========================================================================= */
.a3-blg-rowmeta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

/* The eyebrow's own margin would double the gap inside a flex row. */
.a3-blg-rowmeta .a3-bc-post__category {
  margin-bottom: 0;
}

.a3-blg-rowmeta__dot,
.a3-blg-rowmeta__read {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  color: #676f7b;
}

/* =========================================================================
 * WEBINARS & TALKS - phone slider
 *
 * blogs.js hands the grid to Slick below 768px. Two things have to give:
 * the grid must become a plain block (Slick needs to control the track), and
 * the dots have to be rebuilt - Slick's default is a bullet character in a
 * 20x20 button, which on this dark band reads as a row of specks.
 *
 * Round dots with the active one stretched into a pill, matching the
 * testimonials slider so the site has one carousel language.
 * ========================================================================= */
@media (max-width: 767.98px) {
  /* Only once Slick has taken over - the class it adds is the signal, so the
   * plain single-column stack still applies if the JS never runs. */
  .a3-blg-talks__grid.slick-initialized {
    display: block;
    gap: 0;
  }

  .a3-blg-talks__grid .slick-list {
    overflow: hidden;
    margin-right: -16px; /* lets the next card peek past the gutter */
  }

  .a3-blg-talks__grid .slick-slide {
    padding-right: 16px;
  }

  .a3-blg-talks__grid .slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    position: static;
    width: 100%;
    height: auto;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
  }

  .a3-blg-talks__grid .slick-dots li {
    width: auto;
    height: auto;
    margin: 0;
  }

  /* The bullet glyph goes; the button itself becomes the dot. */
  .a3-blg-talks__grid .slick-dots li button:before {
    display: none;
  }

  .a3-blg-talks__grid .slick-dots li button {
    display: block;
    width: 8px;
    height: 8px;
    padding: 0;
    min-height: 0;

    border: 0;
    /* !important: global.css gives every button a radius and a min-height. */
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.3);

    font-size: 0;
    line-height: 0;
    text-indent: -9999px;
    overflow: hidden;
    cursor: pointer;

    transition:
      width 0.3s cubic-bezier(0.22, 0.85, 0.28, 1),
      background-color 0.3s ease;
  }

  /* Active dot becomes a pill - the same cue the testimonials slider uses. */
  .a3-blg-talks__grid .slick-dots li.slick-active button {
    width: 24px;
    background: var(--primary, #ff6900);
  }

  .a3-blg-talks__grid .slick-dots li button:hover,
  .a3-blg-talks__grid .slick-dots li button:focus-visible {
    background: var(--primary, #ff6900);
  }
}

/* Not enough headroom above the frame - tuck the button into its corner. */
@media (max-height: 700px) {
  .a3-blg-lightbox__close {
    top: 12px;
    right: 12px;
  }
}

/* =========================================================================
 * MOBILE GUTTER
 *
 * Both containers here are `width: min(100% - 48px, ...)` PLUS `padding: 0
 * 24px`, which on a phone stacks to 48 a side - twice the site's gutter, and
 * why this page sat narrower than every other one. The two rules exist so the
 * desktop box lines up with .a3-site-header__inner; below the container's max
 * width neither is doing that job, so the page falls back to the 20 the
 * category listing uses (--a3-bc-gutter).
 * ========================================================================= */
@media (max-width: 767.98px) {
  .a3-blg-inner,
  .a3-blg-hero__inner {
    width: 100%;
    padding-inline: 20px;
  }

  /* The stories grid nests .a3-blg-inner, so its own padding would double up. */
  .a3-blg-stories__inner {
    padding-inline: 20px;
  }
}

/* =========================================================================
 * FILTERS ON PHONES - one scrolling row
 *
 * Wrapping put "Uncategorized" on a second line and pushed the search box
 * down; with a real category list it would be three or four lines. One
 * horizontal scroller keeps the row a fixed height however many there are.
 *
 * The negative margin lets the pills scroll to the screen edge while still
 * starting at the 20px gutter, so the row reads as continuing off-screen
 * rather than stopping short.
 * ========================================================================= */
@media (max-width: 767.98px) {
  .a3-blg-filters__pills {
    flex-wrap: nowrap;
    gap: 8px;
    margin-inline: -20px;
    padding-inline: 20px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    /* The other half of the negative-margin pattern. Without it the snap
       engine aligns the first pill's edge to the scrollport edge, which means
       scrolling the 20px padding out of view - the row loaded at
       scrollLeft: 20 and the first pill sat flush at x:0 while the search box
       and every card below it started at x:20. scroll-padding moves the
       snapport in by the gutter so "start" lands on the gutter, not past it. */
    scroll-padding-inline-start: 20px;
    -webkit-overflow-scrolling: touch;
    /* No visible scrollbar - the row's overflow is the affordance. */
    scrollbar-width: none;
  }

  .a3-blg-filters__pills::-webkit-scrollbar {
    display: none;
  }

  .a3-blg-pill {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  /* The search box keeps the full width under the row. */
  .a3-blg-filters {
    gap: 16px;
    padding-bottom: 20px;
  }

  /* The desktop 96 is a third of a phone viewport of dead space between the
     hero and the pills. 48 is what the hero itself drops to at this width. */
  .a3-blg-filters-section {
    padding-top: 48px;
  }
}

/* =========================================================================
 * WHITEPAPERS & RESOURCES - node 93:12083 (1440 x 773)
 *
 * Four 278 cards on a 24 gap (302 pitch), each 25 of padding around a 228
 * cover. Heading 40/36 at 500, matching Latest Stories.
 * ========================================================================= */
.a3-blg-papers {
  padding: 96px 0 97px;
  background: #ffffff;
}

.a3-blg-papers__heading {
  margin: 0 0 48px; /* 180 - 96 - 36 */
  font-family: "Inter", sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 36px;
  color: #030303;
}

.a3-blg-papers__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.a3-blg-paper {
  display: flex;
  flex-direction: column;
  /* The node's card is a fixed 496, which is what holds the gap between the
   * title and the footer rule constant whether the title runs to one line or
   * two. Content-sized cards let that space float, so a one-line card sat
   * differently from its neighbours. min-height, not height, so a very long
   * title still grows rather than spilling. */
  min-height: 496px;
  padding: 25px;
  background: #fcfcfd;
  border: 1px solid #e7eaf0;
  text-decoration: none;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

/* Hover picks up the brand orange rather than going black - the near-black
 * edge read as the card washing out rather than lighting up. */
.a3-blg-paper:hover,
.a3-blg-paper:focus-visible {
  border-color: var(--primary, #ff6900);
  box-shadow: 0 8px 30px rgba(255, 105, 0, 0.14);
}

.a3-blg-paper:hover .a3-blg-paper__title {
  color: var(--primary, #ff6900);
}

.a3-blg-paper:hover .a3-blg-paper__dl svg path {
  stroke: var(--primary, #ff6900);
}

.a3-blg-paper__title,
.a3-blg-paper__dl svg path {
  transition:
    color 0.18s ease,
    stroke 0.18s ease;
}

/* The cover: 228 x 304 on a tinted panel with its own hairline. */
.a3-blg-paper__cover {
  display: block;
  height: 304px;
  overflow: hidden;
  background: #f4f5f9;
  border: 1px solid #e7eaf0;
}

.a3-blg-paper__cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Blue, bold, 12/16 - the kind of asset, not a category. */
.a3-blg-paper__kind {
  display: block;
  margin-top: 24px; /* 533 - 205 - 304 */
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  color: #3b82f6;
}

.a3-blg-paper__title {
  display: block;
  margin-top: 8px; /* 557 - 533 - 16 */
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 22.5px;
  color: #030303;
}

/* Footer rule with the page count left and the download glyph right. It is
 * pushed to the card's bottom so cards with one-line titles still line up. */
.a3-blg-paper__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 17px;
  border-top: 1px solid #e7eaf0;
}

.a3-blg-paper__pages {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  color: #676f7b;
}

.a3-blg-paper__dl {
  display: flex;
  flex: 0 0 16px;
}

@media (max-width: 1199.98px) {
  .a3-blg-papers__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .a3-blg-papers {
    padding: 56px 0;
  }

  .a3-blg-papers__heading {
    margin-bottom: 28px;
    font-size: 28px;
    line-height: 34px;
  }

  /* Two up. At 390 the content box is 350, so a card is ~167 - the desktop
   * 25px padding and 304 cover are far too big for that, and the fixed 496
   * height would leave a tall empty gap under a short title. All three scale
   * down together. */
  .a3-blg-papers__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .a3-blg-paper {
    min-height: 0;
    padding: 12px;
  }

  .a3-blg-paper__cover {
    height: 180px;
  }

  .a3-blg-paper__kind {
    margin-top: 14px;
    font-size: 11px;
  }

  .a3-blg-paper__title {
    font-size: 15px;
    line-height: 19px;
  }

  .a3-blg-paper__foot {
    padding-top: 12px;
  }
}

/* =========================================================================
 * NEWSLETTER BAND - node 93:12129 (1440 x 446.6)
 *
 * The card is 1344 wide inside a 1440 section (48 either side), radius 36,
 * and carries a photo under an #FA5800 fill at 84% - so it reads orange with
 * the image showing through, not as a photo with a tint.
 * ========================================================================= */
.a3-blg-signup {
  padding: 0 0 96px;
  background: #ffffff;
}

.a3-blg-signup__card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 438px;
  align-items: center;
  gap: 40px;
  width: min(100% - 96px, 1344px);
  /* A fixed height, not a floor: the node's 438 figure sits at y=21 and so
   * runs 12px past the card's 446.6 bottom, clipped by the radius. Sizing to
   * content instead let the image push the card to 474. */
  height: 446.6px;
  margin-inline: auto;
  padding: 18px 110px 18px 81px;
  overflow: hidden;
  border-radius: 36px;
  background-color: #fa5800;
  background-image:
    linear-gradient(rgba(250, 88, 0, 0.84), rgba(250, 88, 0, 0.84)),
    var(--a3-blg-signup-bg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* A 600 white disc at 29% under a 120px blur, bleeding off the top-right
 * corner - it is what stops the orange reading flat. */
.a3-blg-signup__glow {
  position: absolute;
  top: -154px;
  left: 791px;
  width: 600px;
  height: 600px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.29);
  filter: blur(120px);
  pointer-events: none;
}

.a3-blg-signup__body {
  position: relative;
}

/* 48/60 at 400 with -1.2 tracking. */
.a3-blg-signup__heading {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 60px;
  letter-spacing: -1.2px;
  color: #ffffff;
}

.a3-blg-signup__text {
  margin: 10px 0 0; /* 227 - 97 - 120 */
  max-width: 646px;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: #ffffff;
}

.a3-blg-signup__form {
  margin-top: 40px; /* 295 - 227 - 28 */
}

/* 438 square, pinned right. */
.a3-blg-signup__figure {
  position: relative;
  display: block;
  width: 438px;
  height: 438px;
  max-width: 100%;
  object-fit: contain;
}

/* ---- the CF7 bits ----
 * A 300 x 54 outlined input beside a 167.8 x 54 white button whose label is
 * the brand orange. global.css floors buttons at 56 and squares them;
 * service.css forces the submit background - all restated. */
.a3-blg-signup__form .wpcf7 p {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin: 0;
  line-height: 1;
}

.a3-blg-signup__form input[type="email"],
.a3-blg-signup__form input[type="text"] {
  width: 300px;
  max-width: 100%;
  height: 54px;
  padding: 0 20px;
  background: transparent;
  border: 1px solid #ffffff;
  border-radius: 0;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 16.9px;
  color: #ffffff;
}

.a3-blg-signup__form input::placeholder {
  color: rgba(255, 255, 255, 0.85);
  opacity: 1;
}

.a3-blg-signup__form input[type="email"]:focus,
.a3-blg-signup__form input[type="text"]:focus {
  outline: 0;
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.a3-blg-signup__form input[type="submit"],
.a3-blg-signup__form .wpcf7-submit {
  width: 167.8px;
  min-height: 0;
  height: 54px;
  padding: 0;
  background: #ffffff !important;
  border: 0;
  border-radius: 0 !important;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  /* !important because service.css forces white on every submit - without it
   * the label vanished into the white button. */
  color: #ff6900 !important;
  cursor: pointer;
  transition:
    background 0.18s ease,
    color 0.18s ease;
}

/* Without an explicit hover, service.css's generic submit rule took over and
 * filled the button orange - orange on orange, with the label lost. It stays
 * white and only warms slightly. */
.a3-blg-signup__form input[type="submit"]:hover,
.a3-blg-signup__form input[type="submit"]:focus-visible,
.a3-blg-signup__form .wpcf7-submit:hover,
.a3-blg-signup__form .wpcf7-submit:focus-visible {
  background: #fff4ec !important;
  color: #e35400 !important;
}

.a3-blg-signup__form .wpcf7-spinner {
  position: absolute;
}

@media (max-width: 1199.98px) {
  .a3-blg-signup__card {
    grid-template-columns: minmax(0, 1fr);
    height: auto;
    padding: 48px 40px;
  }

  .a3-blg-signup__figure {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .a3-blg-signup {
    padding-bottom: 56px;
  }

  .a3-blg-signup__card {
    width: calc(100% - 40px);
    height: auto;
    padding: 36px 24px;
    border-radius: 24px;
  }

  .a3-blg-signup__heading {
    font-size: 30px;
    line-height: 38px;
    letter-spacing: -0.6px;
  }

  .a3-blg-signup__text {
    font-size: 16px;
    line-height: 26px;
  }

  .a3-blg-signup__form input[type="email"],
  .a3-blg-signup__form input[type="text"],
  .a3-blg-signup__form input[type="submit"] {
    width: 100%;
  }
}

/* The card's photo needs to read THROUGH the orange - the node's fill order is
 * image first, then #FA5800 at 84% over it. Without a background image set the
 * card is simply flat orange, which is what it looked like before one was. */
.a3-blg-signup__card {
  background-blend-mode: normal;
}

/* =========================================================================
 * FAQ TYPE - node 93:12246
 *
 * The band is .a3-faq from the services listing, but this node sets its own
 * type: a 56/55.2 heading at -1.5 against that page's 48, 24/24 questions,
 * and a narrower 896 column (272 gutters, not 128). Scoped to .a3-blogs-page
 * so the services listing keeps its own values.
 * ========================================================================= */
.a3-blogs-page .a3-faq .container {
  max-width: 896px;
}

.a3-blogs-page .a3-faq__eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.35px;
  text-transform: uppercase;
  color: #4b5563;
}

.a3-blogs-page .a3-faq__heading {
  font-family: "Inter", sans-serif;
  font-size: 56px;
  font-weight: 400;
  line-height: 55.2px;
  letter-spacing: -1.5px;
  color: #030303;
}

/* 24/24 at 400 - the services page runs these smaller and heavier. */
.a3-blogs-page .a3-faq .accordion-button {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0;
  color: #030303;
}

/* The node draws the toggle as a light 24px "+", not Bootstrap's chevron. */
.a3-blogs-page .a3-faq .accordion-button::after {
  width: 24px;
  height: 32px;
  background: none;
  content: "+";
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 32px;
  color: #4b5563;
  text-align: right;
  transform: none;
}

.a3-blogs-page .a3-faq .accordion-button:not(.collapsed)::after {
  content: "\2013"; /* en dash when open */
}

/* =========================================================================
 * NEWSROOM - node 95:17236
 *
 * The same two bands as the blogs page, with one difference the node makes
 * plain: its hero is centred where the blogs hero is left-aligned.
 * ========================================================================= */
.a3-newsroom-page .a3-blg-hero {
  align-items: center;
  padding-top: 0;
  text-align: center;
}

.a3-newsroom-page .a3-blg-hero__heading {
  max-width: none;
  margin-inline: auto;
  font-size: 64px;
  line-height: 72px;
  letter-spacing: -1.6px;
}

.a3-newsroom-page .a3-blg-hero__intro {
  max-width: 620px;
  margin-inline: auto;
}

@media (max-width: 767.98px) {
  .a3-newsroom-page .a3-blg-hero__heading {
    font-size: 38px;
    line-height: 44px;
  }
}

/* With the sidebar switched off the list takes the whole container - a
 * one-column grid, not a 757 column with 331 of empty space beside it. */
.a3-blg-stories__inner:not(:has(.a3-bc-sidebar)) {
  grid-template-columns: minmax(0, 1fr);
}

/* -------------------------------------------------------------------------
   Whitepapers & Resources - head row.

   The band's cards are now .a3-wp-card from template-parts/white-paper-card,
   styled by white-papers.css, so the old .a3-blg-paper* rules above are only
   reached by the no-white-papers fallback. Only the heading row is new: the
   heading gained a "View all" link beside it now that there is a listing page
   to send people to.
   ------------------------------------------------------------------------- */

.a3-blg-papers__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.a3-blg-papers__all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #FF6900;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.a3-blg-papers__all:hover,
.a3-blg-papers__all:focus-visible {
  color: #E45F00;
  text-decoration: underline;
}

/* -------------------------------------------------------------------------
   Pagination lands on the stories, not the hero.

   The pagination links carry #stories (see page-blogs.php). The site header is
   sticky at ~81px, so without an offset the fragment puts the section's first
   row underneath it. scroll-margin-top clears the header and leaves a little
   air above the heading.
   ------------------------------------------------------------------------- */

.a3-blg-stories {
  scroll-margin-top: 104px;
}

/* Blog hero heading width
 *
 * The 560px cap above was sized for the previous, much shorter headline - the
 * comment on .a3-blg-hero even sizes the band for "two lines of 93". The
 * document's headline is 48 characters, which at 85px needs 1095px on its
 * longest line, so 560 forced it onto five. The copy column is 1280 wide, so
 * 1120 keeps the two-line setting the design intends.
 */
.a3-blg-hero__heading {
  max-width: 1120px;
}

/* Search box on phones
 *
 * .a3-blg-filters becomes flex-direction: column at <=991.98px, and in a column
 * the base rule's `flex: 0 1 350px` sizes the HEIGHT - the search bar rendered
 * as a 350x350 empty square with the magnifier floating in the middle of it.
 *
 * The comment at the 768-1365.98px block records this same trap being hit with
 * flex-basis:100%; that fix was scoped away from phones, so the base 350px was
 * left to size the height here. Neutralising the basis is what actually fixes
 * it - the input keeps its own 42px height.
 */
@media (max-width: 767.98px) {

  .a3-blg-search {
    flex: 0 0 auto;
    width: 100%;
    height: auto;
  }
}
