.cpw-archive {
  --blue-pale: #eff6ff;
  --ink: #00283B;
  --ink-2: #173E52;
  --ink-3: #4B6472;
  --ink-4: #7EA0B1;
  --border: #D7E7EF;
  --r: 10px;
  --rlg: 14px;
  --hero-bg: #f4f3ef;
  --card-gap: 10px;
  --line: #A9DFF2;
  background: #fff;
  color: var(--ink);
  font-family: var(--cpw-font-body);
  overflow-anchor: none;
}

.cpw-archive *,
.cpw-archive *::before,
.cpw-archive *::after {
  box-sizing: border-box;
}

.hero {
  background: linear-gradient(
    to bottom,
    var(--hero-bg) 0%,
    var(--hero-bg) 55%,
    #e4e9f2 100%
  );
  position: relative;
  overflow-x: hidden;
  overflow-x: clip;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 60% at 4% 0%, rgba(37, 99, 235, 0.065) 0%, transparent 100%),
    radial-gradient(ellipse 40% 50% at 98% 4%, rgba(124, 58, 237, 0.04) 0%, transparent 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 32px 170px;
  text-align: center;
}

.cpw-archive.is-search-compact .hero-inner {
  padding-top: 32px;
  padding-bottom: 28px;
}

.hero-copy {
  max-height: 260px;
  opacity: 1;
  overflow: hidden;
  transform: translateY(0);
}

.cpw-archive.is-search-compact .hero-copy {
  height: 0;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
}

.hero-kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: var(--cpw-font-ui-strong);
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--cpw-color-text-blue);
  margin-bottom: 18px;
}

.hero-title {
  font-family: var(--cpw-font-display);
  font-size: clamp(1.9rem, 4.2vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1.1;
  margin: 0 0 16px;
}

.hero-sub {
  font-size: 1rem;
  color: var(--ink-3);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.blog-search-anchor {
  --cpw-search-bar-height: 0px;
  position: relative;
}

.cpw-archive.is-search-stuck .blog-search-anchor {
  min-height: var(--cpw-search-bar-height);
}

.blog-search-panel {
  width: 100%;
}

.blog-search-panel__inner {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.cpw-archive.is-search-stuck .blog-search-panel {
  position: fixed;
  top: var(--cpw-admin-bar-offset);
  left: 0;
  right: 0;
  z-index: 40;
  padding: 10px 32px 12px;
  background: rgb(244 243 239 / 0.96);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

@supports ((-webkit-backdrop-filter: blur(8px)) or (backdrop-filter: blur(8px))) {
  .cpw-archive.is-search-stuck .blog-search-panel {
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
  }
}

.cpw-archive.is-search-stuck .blog-search-panel__inner {
  max-width: 1100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.search-lines {
  position: relative;
  width: 100%;
}

.cpw-archive.is-search-stuck .search-lines {
  flex: 0 1 420px;
}

.hline {
  position: absolute;
  left: 50%;
  height: 1px;
  width: 100vw;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
  background-image: repeating-linear-gradient(
    to right,
    var(--line) 0,
    var(--line) 4px,
    transparent 4px,
    transparent 10px
  );
  background-position: left top;
  background-repeat: repeat-x;
  background-size: 100% 1px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.hline-top {
  top: 0;
}

.hline-bottom {
  bottom: 0;
}

.cpw-archive.is-search-stuck .hline {
  display: none;
}

.search-row {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.search-wrap {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 468px;
  border: 1.5px solid var(--border);
  border-radius: var(--rlg);
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 4px 12px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: border-color 0.18s, box-shadow 0.18s;
}

.cpw-archive.is-search-stuck .search-wrap {
  max-width: none;
}

.search-wrap:focus-within {
  border-color: var(--cpw-color-text-blue);
  box-shadow: 0 0 0 3px rgba(0, 114, 181, 0.12);
}

.search-icon {
  padding: 0 13px;
  color: var(--ink-4);
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.search-icon svg {
  width: 15px;
  height: 15px;
}

.search-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 11px 0;
  font: inherit;
  font-size: 0.93rem;
  color: var(--ink);
  background: transparent;
  min-width: 0;
}

.search-input::placeholder {
  color: var(--ink-4);
}

.search-btn {
  margin: 5px;
  padding: 7px 16px;
  background: var(--cpw-button-light-bg);
  color: var(--cpw-button-light-text);
  border: none;
  border-radius: 9px;
  font: inherit;
  font-size: 0.83rem;
  font-weight: var(--cpw-font-ui-strong);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
}

.search-btn:hover {
  background: var(--cpw-button-light-bg-hover);
}

.paths-nudge {
  margin-top: 40px;
  opacity: 1;
  overflow: hidden;
}

.paths-default,
.paths-compact {
  width: 100%;
}

.paths-default {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.paths-default[hidden],
.paths-compact[hidden] {
  display: none;
}

.paths-compact {
  display: none;
}

.cpw-archive.is-search-compact .paths-nudge {
  height: 0;
  opacity: 0;
  margin-top: 0;
  pointer-events: none;
}

.cpw-archive.is-search-compact .paths-compact {
  display: block;
}

.blog-search-panel .paths-compact {
  width: 100%;
}

.cpw-archive.is-search-stuck .blog-search-panel .paths-compact {
  flex: 1 1 auto;
  min-width: 0;
}

.paths-compact__label {
  color: var(--ink-3);
  font-size: 0.78rem;
  font-weight: var(--cpw-font-ui-strong);
  line-height: 1;
  margin-right: 2px;
}

.paths-clear {
  min-height: 36px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--ink-3);
  font: inherit;
  font-size: 0.78rem;
  font-weight: var(--cpw-font-ui-strong);
  cursor: pointer;
  padding: 0.45rem 0.6rem;
  transition: color 0.16s, border-color 0.16s;
}

.paths-clear:hover,
.paths-clear:focus-visible {
  color: var(--ink-2);
  border-color: var(--border);
  border-radius: 999px;
}

.paths-chip-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.cpw-archive.is-search-stuck .paths-chip-row {
  justify-content: flex-end;
}

.hero-lines-outer,
.hero-lines-inner {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 32px;
  right: 32px;
  pointer-events: none;
  z-index: 0;
}

.hero-lines-outer {
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 14%, black 88%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 14%, black 88%, transparent 100%);
}

.hero-lines-inner {
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, transparent 32%, black 46%, black 88%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, transparent 32%, black 46%, black 88%, transparent 100%);
}

.cpw-archive:not(.is-search-compact) .hero-lines-outer {
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 14%,
    black calc(100% - 170px),
    transparent calc(100% - 88px)
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 14%,
    black calc(100% - 170px),
    transparent calc(100% - 88px)
  );
}

.cpw-archive:not(.is-search-compact) .hero-lines-inner {
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 32%,
    black 46%,
    black calc(100% - 170px),
    transparent calc(100% - 88px)
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 32%,
    black 46%,
    black calc(100% - 170px),
    transparent calc(100% - 88px)
  );
}

.hero-lines-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--card-gap);
  height: 100%;
}

.hero-lines-outer .hero-line-col {
  background: none;
}

.hero-lines-outer .hero-line-col:first-child {
  background-image: repeating-linear-gradient(
    to bottom,
    var(--line) 0,
    var(--line) 4px,
    transparent 4px,
    transparent 10px
  );
  background-position: left top;
  background-repeat: repeat-y;
  background-size: 1px 100%;
}

.hero-lines-outer .hero-line-col:last-child {
  background-image: repeating-linear-gradient(
    to bottom,
    var(--line) 0,
    var(--line) 4px,
    transparent 4px,
    transparent 10px
  );
  background-position: right top;
  background-repeat: repeat-y;
  background-size: 1px 100%;
}

.hero-lines-inner .hero-line-col {
  background: none;
}

.hero-lines-inner .hero-line-col:first-child,
.hero-lines-inner .hero-line-col:nth-child(3) {
  background-image: repeating-linear-gradient(
    to bottom,
    var(--line) 0,
    var(--line) 4px,
    transparent 4px,
    transparent 10px
  );
  background-position: right top;
  background-repeat: repeat-y;
  background-size: 1px 100%;
}

.paths-label {
  font-size: 0.78rem;
  font-weight: var(--cpw-font-ui-strong);
  color: var(--ink-3);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.paths-label::before,
.paths-label::after {
  content: "";
  display: block;
  width: 36px;
  height: 1px;
  background: var(--border);
}

.paths-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--card-gap);
  width: 100%;
}

.pcard {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 18px 16px 16px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--rlg);
  text-decoration: none;
  color: inherit;
  text-align: left;
  font: inherit;
  cursor: pointer;
  appearance: none;
  transition: border-color 0.16s, box-shadow 0.16s, transform 0.16s;
  position: relative;
  z-index: 1;
}

.pcard:hover {
  border-color: #8BD9F7;
  box-shadow: 0 4px 18px rgba(0, 114, 181, 0.1);
  transform: translateY(-2px);
}

.pcard:active {
  transform: translateY(0) scale(0.99);
}

.pcard:focus-visible {
  outline: 2px solid var(--cpw-color-action);
  outline-offset: 2px;
}

.pchip {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: currentColor;
}

.pchip svg {
  width: 18px;
  height: 18px;
}

.pchip-blue {
  background: #e6f1fb;
  color: #185fa5;
}

.pchip-teal {
  background: #e1f5ee;
  color: #0f6e56;
}

.pchip-amber {
  background: #faeeda;
  color: #854f0b;
}

.pchip-purple {
  background: #eeedfe;
  color: #534ab7;
}

.pcard-name {
  font-size: 0.9rem;
  font-weight: var(--cpw-font-ui-strong);
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 4px;
}

.pcard-desc {
  font-size: 0.78rem;
  color: var(--ink-3);
  line-height: 1.5;
  flex: 1;
}

.pcard-cta {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-top: 12px;
  font-size: 0.78rem;
  font-weight: var(--cpw-font-ui-strong);
  color: var(--cpw-color-text-blue);
}

.topic-chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #f8fafc;
  color: var(--ink-3);
  font: inherit;
  font-size: 0.78rem;
  font-weight: var(--cpw-font-ui-strong);
  cursor: pointer;
  transition: background 0.16s, border-color 0.16s, color 0.16s;
}

.topic-chip:hover,
.topic-chip:focus-visible {
  background: #fff;
  border-color: #A9DFF2;
  color: var(--ink-2);
}

.topic-chip.is-active {
  background: var(--cpw-button-light-bg);
  border-color: var(--cpw-button-light-bg);
  color: var(--cpw-button-light-text);
}

.topic-chip:focus-visible {
  outline: 2px solid var(--cpw-color-action);
  outline-offset: 2px;
}

.cpw-archive__results-head {
  display: grid;
  gap: 0.4rem;
}

.cpw-archive__results-summary {
  margin: 0;
  max-width: 52rem;
  color: var(--ink-3);
  font-size: 0.95rem;
  line-height: 1.5;
}

.cpw-archive__results[aria-busy="true"] {
  pointer-events: none;
}

.cpw-archive.is-results-loading .cpw-archive__results-head,
.cpw-archive.is-results-loading .cpw-archive__results {
  opacity: 0;
  pointer-events: none;
}

.cpw-archive__results {
  /* No CSS transitions -- GSAP drives fade in/out */
}

@media (max-width: 780px) {
  .paths-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cpw-archive.is-search-stuck .blog-search-panel {
    padding: 10px 20px 12px;
  }

  .cpw-archive.is-search-stuck .blog-search-panel__inner {
    display: grid;
    gap: 10px;
  }

  .cpw-archive.is-search-stuck .search-lines {
    width: 100%;
  }

  .cpw-archive.is-search-stuck .paths-chip-row {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
    -webkit-overflow-scrolling: touch;
  }

  .cpw-archive.is-search-stuck .paths-chip-row::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 440px) {
  .hero-inner {
    padding: 56px 20px 150px;
  }

  .hero-lines-outer,
  .hero-lines-inner {
    left: 20px;
    right: 20px;
  }

  .paths-grid {
    grid-template-columns: 1fr;
  }

  .paths-chip-row {
    justify-content: flex-start;
  }

  .search-btn {
    padding-inline: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .search-wrap,
  .search-btn,
  .paths-clear,
  .topic-chip,
  .pcard {
    transition: none;
  }
}

.cpw-archive__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 32px 100px;
}

.cpw-archive__grid {
  display: grid;
  gap: 2.5rem;
}

.cpw-archive__section-label {
  margin: 0;
  font-family: var(--cpw-font-display);
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #00283B;
}

.cpw-archive__section-desc {
  margin: 0.5rem 0 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--ink-3);
}

.cpw-archive__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.cpw-archive__pagination {
  margin-top: 3rem;
}

.cpw-archive__load-more {
  display: flex;
  justify-content: center;
}

.cpw-archive__load-more-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.75rem 1.15rem;
  border: 1px solid var(--cpw-color-action);
  border-radius: 4px;
  background: var(--cpw-color-action);
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}

.cpw-archive__load-more-link.is-loading {
  cursor: wait;
  opacity: 0.82;
}

.cpw-archive__load-more-link.is-loading::after {
  display: block;
  width: 0.85rem;
  height: 0.85rem;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  content: "";
  animation: cpw-load-more-spin 0.7s linear infinite;
}

.cpw-archive__load-more-link:hover,
.cpw-archive__load-more-link:focus-visible {
  background: transparent;
  color: var(--cpw-color-action);
}

@keyframes cpw-load-more-spin {
  to {
    transform: rotate(1turn);
  }
}

@media (max-width: 920px) {
  .cpw-archive__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 540px) {
  .cpw-archive__inner {
    padding: 60px 24px 80px;
  }

  .cpw-archive__section-label {
    font-size: 1.35rem;
    margin-bottom: 1.5rem;
  }

  .cpw-archive__list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.cpw-archive__pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cpw-archive__pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.5rem 0.9rem;
  border: 1px solid var(--cpw-content-border);
  border-radius: 4px;
  color: inherit;
  text-decoration: none;
}

.cpw-archive__pagination .page-numbers.current {
  background: var(--cpw-color-action);
  border-color: var(--cpw-color-action);
  color: #ffffff;
}

.cpw-archive__empty {
  padding: 2rem;
  border: 1px dashed var(--cpw-content-border);
  border-radius: 8px;
  color: var(--ink-3);
}

/* Featured roadmaps section */

.cpw-featured {
  position: relative;
  z-index: 2;
  margin-top: -72px;
  border-radius: 36px 36px 0 0;
  background: var(--cpw-color-sky-wash);
  box-shadow: 0 -22px 50px rgba(12, 39, 64, 0.1);
}

.cpw-archive.is-search-compact .cpw-featured {
  margin-top: -24px;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 -18px 40px rgba(0, 40, 59, 0.08);
}

.cpw-featured__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 32px 96px;
}

.cpw-featured__header {
  margin-bottom: 2rem;
}

.cpw-featured__eyebrow {
  margin: 0 0 0.625rem;
  color: var(--cpw-color-text-blue);
  font-size: 0.8125rem;
  font-weight: var(--cpw-font-ui-strong);
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-transform: uppercase;
}

.cpw-featured__title {
  margin: 0;
  color: #00283B;
  font-family: var(--cpw-font-display);
  font-size: clamp(1.75rem, 3.2vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-wrap: balance;
}

.cpw-featured__list {
  display: flex;
  flex-direction: column;
  max-width: 1000px;
}

.cpw-featured-row {
  position: relative;
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr) 32px;
  align-items: center;
  gap: 2rem;
  padding: 1.875rem 0.5rem 1.875rem 0.25rem;
  border-top: 1px solid var(--border);
  color: inherit;
  text-decoration: none;
}

.cpw-featured__list .cpw-featured-row:first-child {
  border-top: none;
}

.cpw-featured-row__num {
  display: flex;
  justify-content: flex-end;
  color: rgba(0, 114, 181, 0.14);
  font-family: var(--cpw-font-display);
  font-size: 6rem;
  font-weight: 800;
  line-height: 1;
  text-align: right;
  transition: color 0.35s cubic-bezier(0.16, 1, 0.3, 1), -webkit-text-stroke-color 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.cpw-featured-row__num span {
  display: inline-block;
  width: 0.68em;
  text-align: center;
}

@supports (-webkit-text-stroke: 1px currentColor) {
  .cpw-featured-row__num {
    color: transparent;
    -webkit-text-stroke: 2px rgba(0, 114, 181, 0.3);
  }

  .cpw-featured-row:hover .cpw-featured-row__num,
  .cpw-featured-row:focus-visible .cpw-featured-row__num {
    color: transparent;
    -webkit-text-stroke-color: #0072B5;
  }
}

.cpw-featured-row__body {
  min-width: 0;
}

.cpw-featured-row__category {
  margin: 0 0 0.4375rem;
  color: var(--cpw-color-text-blue);
  font-size: 0.75rem;
  font-weight: var(--cpw-font-ui-strong);
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.cpw-featured-row__title {
  margin: 0;
  color: #00283B;
  font-family: var(--cpw-font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  text-wrap: balance;
  transition: color 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.cpw-featured-row:hover .cpw-featured-row__title,
.cpw-featured-row:focus-visible .cpw-featured-row__title {
  color: #0072B5;
}

.cpw-featured-row__excerpt {
  max-width: 35rem;
  margin: 0.5rem 0 0;
  color: var(--ink-3);
  font-size: 0.9375rem;
  line-height: 1.55;
  text-wrap: pretty;
}

.cpw-featured-row__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cpw-color-text-blue);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.cpw-featured-row__arrow svg {
  width: 24px;
  height: 24px;
}

.cpw-featured-row:hover .cpw-featured-row__arrow,
.cpw-featured-row:focus-visible .cpw-featured-row__arrow {
  opacity: 1;
  transform: translateX(0);
}

.cpw-featured-row:focus-visible {
  outline: 2px solid var(--cpw-color-text-blue);
  outline-offset: 4px;
}

@media (max-width: 640px) {
  .cpw-featured {
    border-radius: 28px 28px 0 0;
  }

  .cpw-featured__header {
    margin-bottom: 1.5rem;
  }

  .cpw-featured__inner {
    padding: 60px 24px 72px;
  }

  .cpw-featured-row {
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 1.25rem;
    padding: 1.5rem 0;
  }

  .cpw-featured-row__num {
    font-size: 3.375rem;
  }

  .cpw-featured-row__title {
    font-size: 1.1875rem;
  }

  .cpw-featured-row__excerpt {
    font-size: 0.875rem;
  }

  .cpw-featured-row__arrow {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cpw-featured-row__num,
  .cpw-featured-row__title,
  .cpw-featured-row__arrow {
    transition: none;
  }
}
