.weswoo-cases-page {
  --cases-ink: #15171a;
  --cases-muted: #686d72;
  --cases-line: #d9dde0;
  --cases-paper: #f4f5f2;
  --cases-white: #ffffff;
  --cases-lime: #baf64a;
  --cases-blue: #dfeaf4;
  overflow: clip;
  background: var(--cases-paper);
  color: var(--cases-ink);
}

.weswoo-cases-page *,
.weswoo-cases-page *::before,
.weswoo-cases-page *::after {
  box-sizing: border-box;
}

.weswoo-cases-page img {
  display: block;
  max-width: 100%;
}

.weswoo-cases-page a {
  text-decoration: none;
}

.weswoo-cases-container {
  width: min(calc(100% - 64px), 1480px);
  margin-inline: auto;
}

.weswoo-cases-eyebrow {
  margin: 0 0 22px;
  color: #555b60;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.weswoo-case-directory {
  padding: 190px 0 128px;
  background: var(--cases-paper);
}

.weswoo-case-directory__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.55fr);
  align-items: end;
  gap: 84px;
  margin-bottom: 72px;
}

.weswoo-case-directory h1,
.weswoo-case-section-heading h2,
.weswoo-cases-cta h2 {
  margin: 0;
  letter-spacing: 0;
}

.weswoo-case-directory h1 {
  max-width: 960px;
  font-family: "Instrument Serif", "Noto Serif SC", "Microsoft YaHei", serif;
  font-size: 76px;
  font-weight: 400;
  line-height: 1.02;
}

.weswoo-case-directory__summary > p {
  max-width: 520px;
  margin: 0;
  color: var(--cases-muted);
  font-size: 16px;
  line-height: 1.8;
}

.weswoo-case-directory__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 38px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--cases-line);
}

.weswoo-case-directory__facts div {
  min-width: 0;
}

.weswoo-case-directory__facts dt {
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 34px;
  line-height: 1;
}

.weswoo-case-directory__facts dd {
  margin: 8px 0 0;
  color: #74797e;
  font-size: 12px;
  line-height: 1.4;
}

.weswoo-case-filters {
  position: relative;
  z-index: 8;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 18px;
  border-top: 1px solid var(--cases-line);
  border-bottom: 1px solid var(--cases-line);
}

.weswoo-case-filter {
  position: relative;
  border-right: 1px solid var(--cases-line);
}

.weswoo-case-filter:last-child {
  border-right: 0;
}

.weswoo-case-filter__trigger {
  display: flex;
  width: 100%;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 22px;
  border: 0;
  background: transparent;
  color: var(--cases-ink);
  font: inherit;
  font-size: 14px;
  font-weight: 650;
  text-align: left;
  cursor: pointer;
}

.weswoo-case-filter__trigger svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  transition: transform 180ms ease;
}

.weswoo-case-filter.is-open .weswoo-case-filter__trigger svg {
  transform: rotate(180deg);
}

.weswoo-case-filter__trigger:hover,
.weswoo-case-filter__trigger:focus-visible {
  background: #eceeea;
  outline: none;
}

.weswoo-case-filter__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 8px;
  left: 8px;
  z-index: 12;
  padding: 8px;
  border: 1px solid var(--cases-line);
  border-radius: 8px;
  background: var(--cases-white);
  box-shadow: 0 22px 50px rgba(15, 18, 20, 0.13);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.weswoo-case-filter.is-open .weswoo-case-filter__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.weswoo-case-filter__menu button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 12px;
  border: 0;
  border-radius: 5px;
  background: transparent;
  color: #292d31;
  font: inherit;
  font-size: 13px;
  text-align: left;
  cursor: pointer;
}

.weswoo-case-filter__menu button:hover,
.weswoo-case-filter__menu button:focus-visible,
.weswoo-case-filter__menu button[aria-checked="true"] {
  background: #eef0ed;
  outline: none;
}

.weswoo-case-filter__menu small {
  color: #92979c;
  font-size: 11px;
}

.weswoo-case-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--cases-line);
  border-left: 1px solid var(--cases-line);
}

.weswoo-case-card {
  min-width: 0;
  border-right: 1px solid var(--cases-line);
  border-bottom: 1px solid var(--cases-line);
  background: var(--cases-paper);
}

.weswoo-case-card[hidden] {
  display: none !important;
}

.weswoo-case-card > a {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  overflow: hidden;
  padding: 22px;
  color: var(--cases-ink);
  transition: background-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.weswoo-case-card__topline {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr) 20px;
  align-items: start;
  gap: 12px;
  min-height: 54px;
  color: #72777c;
  font-size: 11px;
  font-weight: 650;
  line-height: 1.5;
}

.weswoo-case-card__topline svg {
  width: 18px;
  height: 18px;
  transition: transform 180ms ease;
}

.weswoo-case-card__media {
  position: relative;
  display: block;
  min-height: 166px;
  margin: 12px 0 22px;
  overflow: hidden;
  border: 1px solid rgba(17, 20, 26, 0.08);
  border-radius: 6px;
  background: #e9eae7;
  isolation: isolate;
}

.weswoo-case-card__banner,
.weswoo-case-card__media-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.weswoo-case-card__banner {
  object-fit: cover;
  opacity: 0.64;
  filter: saturate(0.76) contrast(0.92);
  transform: scale(1.015);
  transition: opacity 240ms ease, filter 240ms ease, transform 420ms ease;
}

.weswoo-case-card__media-scrim {
  z-index: 1;
  background: linear-gradient(180deg, rgba(247, 248, 245, 0.08) 0%, rgba(247, 248, 245, 0.72) 100%);
}

.weswoo-case-card__logo {
  position: absolute;
  z-index: 2;
  bottom: 14px;
  left: 14px;
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  overflow: hidden;
  padding: 12px;
  border: 1px solid rgba(17, 20, 26, 0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 28px rgba(17, 20, 26, 0.12);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.weswoo-case-card__logo-image {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  object-fit: contain;
  object-position: center;
}

.weswoo-case-card__logo-image--color {
  max-width: none;
  max-height: none;
}

.weswoo-case-card__summary {
  display: block;
  color: #555a5f;
  font-size: 13px;
  line-height: 1.68;
}

.weswoo-case-card__action {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 26px;
  color: #555a5f;
  font-size: 12px;
  font-weight: 650;
}

.weswoo-case-card__action svg {
  width: 15px;
  height: 15px;
}

.weswoo-case-card > a:hover,
.weswoo-case-card > a:focus-visible {
  background: #f1f2ef;
  color: var(--cases-ink);
  outline: none;
}

.weswoo-case-card > a:hover .weswoo-case-card__topline,
.weswoo-case-card > a:hover .weswoo-case-card__summary,
.weswoo-case-card > a:hover .weswoo-case-card__action,
.weswoo-case-card > a:focus-visible .weswoo-case-card__topline,
.weswoo-case-card > a:focus-visible .weswoo-case-card__summary,
.weswoo-case-card > a:focus-visible .weswoo-case-card__action {
  color: #41464b;
}

.weswoo-case-card > a:hover .weswoo-case-card__topline svg,
.weswoo-case-card > a:focus-visible .weswoo-case-card__topline svg {
  color: var(--cases-ink);
  transform: translate(3px, -3px);
}

.weswoo-case-card > a:hover .weswoo-case-card__banner,
.weswoo-case-card > a:focus-visible .weswoo-case-card__banner {
  opacity: 0.78;
  filter: saturate(0.94) contrast(0.98);
  transform: scale(1.045);
}

.weswoo-case-card > a:hover .weswoo-case-card__logo,
.weswoo-case-card > a:focus-visible .weswoo-case-card__logo {
  box-shadow: 0 14px 34px rgba(17, 20, 26, 0.18);
  transform: translateY(-2px);
}

.weswoo-case-grid__footer {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--cases-line);
}

.weswoo-case-grid__footer p {
  margin: 0;
  color: #74797e;
  font-size: 12px;
}

.weswoo-case-grid__footer button {
  padding: 8px 0;
  border: 0;
  background: transparent;
  color: var(--cases-ink);
  font: inherit;
  font-size: 12px;
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}

.weswoo-case-empty {
  margin: 28px 0 0;
  padding: 24px;
  border: 1px dashed #bec3c7;
  color: var(--cases-muted);
  font-size: 14px;
  text-align: center;
}

.weswoo-case-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.55fr);
  align-items: end;
  gap: 84px;
  margin-bottom: 62px;
}

.weswoo-case-section-heading h2 {
  font-family: "Instrument Serif", "Noto Serif SC", "Microsoft YaHei", serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 1.04;
}

.weswoo-case-section-heading > p {
  max-width: 520px;
  margin: 0;
  color: var(--cases-muted);
  font-size: 15px;
  line-height: 1.8;
}

.weswoo-case-spotlight {
  padding: 136px 0 152px;
  background: var(--cases-white);
}

.weswoo-case-spotlight__grid {
  display: grid;
  grid-auto-rows: 150px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}

.weswoo-spotlight-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: 8px;
}

.weswoo-spotlight-card--image {
  color: #fff;
  background: #23262a;
}

.weswoo-spotlight-card--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.weswoo-spotlight-card--hero {
  grid-column: span 8;
  grid-row: span 3;
}

.weswoo-spotlight-card--wide {
  grid-column: span 7;
  grid-row: span 2;
}

.weswoo-spotlight-card--portrait {
  grid-column: span 5;
  grid-row: span 3;
}

.weswoo-spotlight-card--standard {
  grid-column: span 7;
  grid-row: span 2;
}

.weswoo-spotlight-card--metric {
  display: flex;
  flex-direction: column;
  padding: 30px;
  background: var(--cases-lime);
  color: var(--cases-ink);
}

.weswoo-spotlight-card--metric-a {
  grid-column: span 4;
  grid-row: span 2;
}

.weswoo-spotlight-card--metric-b {
  grid-column: span 5;
  grid-row: span 2;
  background: var(--cases-blue);
}

.weswoo-spotlight-card--metric small,
.weswoo-spotlight-card__content small {
  display: block;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.weswoo-spotlight-card--metric strong {
  display: block;
  margin-top: auto;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 78px;
  font-weight: 400;
  line-height: 0.9;
}

.weswoo-spotlight-card--metric p {
  max-width: 290px;
  margin: 18px 0 0;
  font-size: 13px;
  line-height: 1.6;
}

.weswoo-spotlight-card--metric > svg {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 24px;
  height: 24px;
}

.weswoo-spotlight-card__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 9, 10, 0.04) 28%, rgba(7, 9, 10, 0.82) 100%);
}

.weswoo-spotlight-card__content {
  position: absolute;
  right: 28px;
  bottom: 26px;
  left: 28px;
  z-index: 2;
  display: grid;
  gap: 7px;
}

.weswoo-spotlight-card__content strong {
  font-family: "Instrument Serif", "Noto Serif SC", serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
}

.weswoo-spotlight-card__content > span {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.6;
}

.weswoo-spotlight-card--image > svg {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 3;
  width: 42px;
  height: 42px;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.weswoo-spotlight-card--image:hover img,
.weswoo-spotlight-card--image:focus-visible img {
  transform: scale(1.035);
}

.weswoo-spotlight-card--image:hover > svg,
.weswoo-spotlight-card--image:focus-visible > svg {
  background: var(--cases-lime);
  color: var(--cases-ink);
  transform: translate(3px, -3px);
}

.weswoo-spotlight-card--image:focus-visible {
  outline: 3px solid var(--cases-lime);
  outline-offset: 3px;
}

.weswoo-case-archive {
  padding: 142px 0 156px;
  background: var(--cases-paper);
}

.weswoo-case-section-heading--archive {
  margin-bottom: 56px;
}

.weswoo-case-archive__nav {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-bottom: 74px;
  border-top: 1px solid var(--cases-line);
  border-bottom: 1px solid var(--cases-line);
}

.weswoo-case-archive__nav a {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 20px;
  border-right: 1px solid var(--cases-line);
  color: var(--cases-ink);
  font-size: 13px;
  font-weight: 650;
  transition: background-color 180ms ease, color 180ms ease;
}

.weswoo-case-archive__nav a:last-child {
  border-right: 0;
}

.weswoo-case-archive__nav small {
  color: #8a8f94;
  font-size: 11px;
}

.weswoo-case-archive__nav a:hover,
.weswoo-case-archive__nav a:focus-visible {
  background: var(--cases-ink);
  color: #fff;
  outline: none;
}

.weswoo-case-group {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1.58fr);
  scroll-margin-top: 150px;
  border-top: 1px solid var(--cases-line);
}

.weswoo-case-group:last-child {
  border-bottom: 1px solid var(--cases-line);
}

.weswoo-case-group__heading {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) 28px;
  align-content: start;
  gap: 14px;
  padding: 28px 28px 32px 0;
  border-right: 1px solid var(--cases-line);
}

.weswoo-case-group__heading > span,
.weswoo-case-group__heading > strong {
  color: #888d92;
  font-size: 11px;
  font-weight: 700;
}

.weswoo-case-group__heading > strong {
  justify-self: end;
}

.weswoo-case-group__heading h3 {
  margin: 0 0 8px;
  font-size: 21px;
  font-weight: 650;
  line-height: 1.2;
}

.weswoo-case-group__heading p {
  margin: 0;
  color: var(--cases-muted);
  font-size: 12px;
  line-height: 1.6;
}

.weswoo-case-group ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.weswoo-case-group li {
  min-width: 0;
  border-right: 1px solid var(--cases-line);
  border-bottom: 1px solid var(--cases-line);
}

.weswoo-case-group li:nth-child(3n) {
  border-right: 0;
}

.weswoo-case-group a {
  display: flex;
  min-height: 112px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  color: var(--cases-ink);
  transition: background-color 180ms ease, color 180ms ease;
}

.weswoo-case-archive__brand {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 14px;
}

.weswoo-case-archive__logo {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  overflow: hidden;
  padding: 6px;
  border: 1px solid rgba(17, 20, 26, 0.1);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 6px 16px rgba(17, 20, 26, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.weswoo-case-archive__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.weswoo-case-archive__copy {
  display: grid;
  min-width: 0;
  gap: 6px;
}

.weswoo-case-group a strong {
  overflow-wrap: anywhere;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.weswoo-case-group a small {
  color: #74797e;
  font-size: 11px;
  line-height: 1.45;
}

.weswoo-case-group a svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  transition: transform 180ms ease;
}

.weswoo-case-group a:hover,
.weswoo-case-group a:focus-visible {
  background: var(--cases-ink);
  color: #fff;
  outline: none;
}

.weswoo-case-group a:hover small,
.weswoo-case-group a:focus-visible small {
  color: rgba(255, 255, 255, 0.64);
}

.weswoo-case-group a:hover svg,
.weswoo-case-group a:focus-visible svg {
  color: var(--cases-lime);
  transform: translate(3px, -3px);
}

.weswoo-case-group a:hover .weswoo-case-archive__logo,
.weswoo-case-group a:focus-visible .weswoo-case-archive__logo {
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
  transform: scale(1.04);
}

.weswoo-cases-cta {
  padding: 130px 0;
  background: var(--cases-ink);
  color: #fff;
}

.weswoo-cases-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 60px;
}

.weswoo-cases-cta .weswoo-cases-eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -26px;
  color: var(--cases-lime);
}

.weswoo-cases-cta h2 {
  max-width: 1040px;
  font-family: "Instrument Serif", "Noto Serif SC", serif;
  font-size: 68px;
  font-weight: 400;
  line-height: 1.03;
  color: #fff;
  -webkit-text-fill-color: #fff;
}

.weswoo-cases-cta a {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 22px;
  border-radius: 6px;
  background: #fff;
  color: var(--cases-ink);
  font-size: 14px;
  font-weight: 700;
  transition: background-color 180ms ease, transform 180ms ease;
}

.weswoo-cases-cta a svg {
  width: 18px;
  height: 18px;
}

.weswoo-cases-cta a:hover,
.weswoo-cases-cta a:focus-visible {
  background: var(--cases-lime);
  transform: translateY(-2px);
  outline: none;
}

.weswoo-cases-page.cases-motion-ready [data-case-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.weswoo-cases-page.cases-motion-ready [data-case-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

body.page-id-10009 #trp-floater-ls,
body.page-id-10009 #trp_ald_modal_container {
  display: none !important;
}

@media (max-width: 1180px) {
  .weswoo-case-directory__intro,
  .weswoo-case-section-heading {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.56fr);
    gap: 48px;
  }

  .weswoo-case-directory h1 {
    font-size: 64px;
  }

  .weswoo-case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .weswoo-case-card > a {
    min-height: 410px;
  }

  .weswoo-case-group {
    grid-template-columns: 260px minmax(0, 1fr);
  }

  .weswoo-case-group ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .weswoo-case-group li:nth-child(3n) {
    border-right: 1px solid var(--cases-line);
  }

  .weswoo-case-group li:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 900px) {
  .weswoo-cases-container {
    width: min(calc(100% - 40px), 1480px);
  }

  .weswoo-case-directory {
    padding: 156px 0 104px;
  }

  .weswoo-case-directory__intro,
  .weswoo-case-section-heading {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .weswoo-case-directory h1 {
    font-size: 54px;
  }

  .weswoo-case-section-heading h2,
  .weswoo-cases-cta h2 {
    font-size: 52px;
  }

  .weswoo-case-filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .weswoo-case-filter:nth-child(2) {
    border-right: 0;
  }

  .weswoo-case-filter:nth-child(-n+2) {
    border-bottom: 1px solid var(--cases-line);
  }

  .weswoo-case-spotlight,
  .weswoo-case-archive {
    padding: 104px 0 112px;
  }

  .weswoo-case-spotlight__grid {
    grid-auto-rows: 140px;
  }

  .weswoo-spotlight-card--hero,
  .weswoo-spotlight-card--wide,
  .weswoo-spotlight-card--portrait,
  .weswoo-spotlight-card--standard {
    grid-column: span 12;
    grid-row: span 3;
  }

  .weswoo-spotlight-card--metric-a,
  .weswoo-spotlight-card--metric-b {
    grid-column: span 6;
    grid-row: span 2;
  }

  .weswoo-case-archive__nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .weswoo-case-archive__nav a:nth-child(3) {
    border-right: 0;
  }

  .weswoo-case-archive__nav a:nth-child(-n+3) {
    border-bottom: 1px solid var(--cases-line);
  }

  .weswoo-case-group {
    grid-template-columns: 1fr;
  }

  .weswoo-case-group__heading {
    border-right: 0;
    border-bottom: 1px solid var(--cases-line);
  }

  .weswoo-cases-cta__inner {
    grid-template-columns: 1fr;
  }

  .weswoo-cases-cta .weswoo-cases-eyebrow {
    margin-bottom: -18px;
  }

  .weswoo-cases-cta a {
    width: fit-content;
  }
}

@media (max-width: 620px) {
  .weswoo-cases-container {
    width: min(calc(100% - 28px), 1480px);
  }

  .weswoo-case-directory {
    padding: 128px 0 82px;
  }

  .weswoo-case-directory h1 {
    font-size: 40px;
    line-height: 1.08;
  }

  .weswoo-case-directory__summary > p {
    font-size: 14px;
  }

  .weswoo-case-directory__facts {
    gap: 10px;
  }

  .weswoo-case-directory__facts dt {
    font-size: 29px;
  }

  .weswoo-case-filters {
    grid-template-columns: 1fr;
  }

  .weswoo-case-filter,
  .weswoo-case-filter:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--cases-line);
  }

  .weswoo-case-filter:last-child {
    border-bottom: 0;
  }

  .weswoo-case-filter__menu {
    right: 0;
    left: 0;
  }

  .weswoo-case-grid {
    grid-template-columns: 1fr;
  }

  .weswoo-case-card > a {
    min-height: 420px;
    padding: 24px 20px;
  }

  .weswoo-case-card__media {
    min-height: 180px;
    margin-top: 10px;
  }

  .weswoo-case-card__logo {
    width: 68px;
    height: 68px;
  }

  .weswoo-case-section-heading h2,
  .weswoo-cases-cta h2 {
    font-size: 40px;
    line-height: 1.08;
  }

  .weswoo-case-spotlight,
  .weswoo-case-archive {
    padding: 82px 0 90px;
  }

  .weswoo-case-section-heading {
    margin-bottom: 42px;
  }

  .weswoo-case-spotlight__grid {
    display: flex;
    flex-direction: column;
  }

  .weswoo-spotlight-card--image {
    min-height: 360px;
  }

  .weswoo-spotlight-card--metric {
    min-height: 250px;
  }

  .weswoo-spotlight-card--metric strong {
    font-size: 64px;
  }

  .weswoo-spotlight-card__content {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .weswoo-spotlight-card__content strong {
    font-size: 36px;
  }

  .weswoo-case-archive__nav {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .weswoo-case-archive__nav::-webkit-scrollbar {
    display: none;
  }

  .weswoo-case-archive__nav a,
  .weswoo-case-archive__nav a:nth-child(3) {
    min-width: 150px;
    border-right: 1px solid var(--cases-line);
    border-bottom: 0;
  }

  .weswoo-case-group ul {
    grid-template-columns: 1fr;
  }

  .weswoo-case-group li,
  .weswoo-case-group li:nth-child(2n),
  .weswoo-case-group li:nth-child(3n) {
    border-right: 0;
  }

  .weswoo-case-group a {
    min-height: 96px;
    padding-inline: 12px;
  }

  .weswoo-case-archive__logo {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .weswoo-cases-cta {
    padding: 84px 0;
  }

  .weswoo-cases-cta a {
    width: 100%;
    justify-content: space-between;
  }
}

@media (prefers-reduced-motion: reduce) {
  .weswoo-cases-page *,
  .weswoo-cases-page *::before,
  .weswoo-cases-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
