:root {
  color-scheme: dark;
  --page: #06110e;
  --surface: #0a1712;
  --surface-raised: #10221b;
  --text: #edf6f1;
  --muted: #91a69b;
  --faint: #5e7469;
  --line: rgba(142, 174, 160, .2);
  --accent: #55d6b5;
  --accent-deep: #1ba784;
  --header-height: 76px;
  --max: 1480px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scrollbar-gutter: stable; }
body {
  margin: 0;
  color: var(--text);
  background: var(--page);
  font: 15px/1.55 -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Segoe UI", sans-serif;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}
body:has(.case-dialog[open]) { overflow: hidden; }
body.case-menu-open { overflow: hidden; }
button, input, select { font: inherit; }
button, a, select { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

.case-site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  height: var(--header-height);
  padding: 0 max(24px, calc((100vw - 1320px) / 2));
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(3, 10, 7, .72), transparent);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.case-site-header.is-scrolled {
  border-color: rgba(85, 214, 181, .13);
  background: rgba(6, 17, 14, .9);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .18);
  backdrop-filter: blur(18px);
}
.case-brand {
  display: inline-grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-width: 168px;
  color: var(--text);
  text-decoration: none;
}
.case-brand > span:first-child {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 6px;
  color: #fff;
  background: var(--accent-deep);
  font-size: 22px;
  font-weight: 850;
}
.case-brand-copy { display: grid; gap: 1px; }
.case-brand-copy strong { font-size: 16px; line-height: 1.2; }
.case-brand-copy small { color: rgba(237, 246, 241, .48); font-size: 10px; }
.case-site-header nav { display: flex; justify-self: center; gap: 34px; align-items: center; }
.case-site-header nav a {
  position: relative;
  padding: 10px 0;
  color: rgba(237, 246, 241, .72);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}
.case-site-header nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 3px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 180ms ease;
}
.case-site-header nav a:hover,
.case-site-header nav .is-current { color: #fff; }
.case-site-header nav a:hover::after,
.case-site-header nav .is-current::after { transform: scaleX(1); }
.case-menu-toggle,
.case-mobile-workbench { display: none; }
.case-login {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border-radius: 5px;
  color: #06110e;
  background: var(--accent);
  font-size: 14px;
  font-weight: 760;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}
.case-login:hover { background: #72e1c4; transform: translateY(-1px); }

.case-intro {
  position: relative;
  isolation: isolate;
  min-height: 520px;
  overflow: hidden;
  border-bottom: 1px solid rgba(85, 214, 181, .13);
  background: #06110e;
}
.case-intro::after {
  content: "";
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 132px;
  pointer-events: none;
  background: linear-gradient(0deg, #06110e, transparent);
}
.case-intro-visual { position: absolute; z-index: 0; inset: 0 0 0 44%; overflow: hidden; }
.case-intro-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #06110e 0%, rgba(6, 17, 14, .72) 24%, rgba(6, 17, 14, .16) 72%, rgba(6, 17, 14, .62) 100%), linear-gradient(0deg, rgba(6, 17, 14, .86), transparent 45%);
}
.case-intro-image {
  position: absolute;
  top: -8%;
  width: 38%;
  height: 116%;
  object-fit: cover;
  opacity: .66;
  filter: saturate(.78) brightness(.78);
  transform: translateY(20px) scale(1.035);
  animation: intro-image-in 900ms cubic-bezier(.16, 1, .3, 1) forwards;
}
.case-intro-image-a { left: 0; }
.case-intro-image-b,
.case-intro-image-c {
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .2) 5%, #000 22%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .2) 5%, #000 22%, #000 100%);
}
.case-intro-image-b { left: 31%; animation-delay: 90ms; }
.case-intro-image-c { right: 0; animation-delay: 180ms; }
.case-intro-shade {
  position: absolute;
  z-index: 0;
  inset: -20%;
  pointer-events: none;
  background: radial-gradient(ellipse 34% 32% at 66% 48%, rgba(27, 167, 132, .17), transparent 74%);
  filter: blur(24px);
}
.case-intro-content {
  position: relative;
  z-index: 3;
  width: min(1480px, 100%);
  margin: 0 auto;
  padding: 154px clamp(24px, 4.5vw, 72px) 86px;
}
.case-intro-content > p {
  margin: 0 0 20px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
}
.case-intro h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(50px, 5.2vw, 72px);
  font-weight: 900;
  line-height: 1.04;
  text-shadow: 0 0 36px rgba(255, 255, 255, .08);
}
.case-intro-content > span {
  display: block;
  margin-top: 26px;
  color: rgba(237, 246, 241, .62);
  font-size: 16px;
  line-height: 1.78;
}
.case-intro-content > a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 27px;
  color: var(--text);
  font-size: 14px;
  font-weight: 720;
  text-decoration: none;
}
.case-intro-content > a i { color: var(--accent); font-style: normal; transition: transform 180ms ease; }
.case-intro-content > a:hover i { transform: translateY(3px); }
.case-intro-meta {
  position: absolute;
  z-index: 3;
  right: clamp(24px, 4.5vw, 72px);
  bottom: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(237, 246, 241, .43);
  font-size: 11px;
  font-weight: 650;
}
.case-intro-meta i { width: 24px; height: 1px; background: rgba(85, 214, 181, .28); }

.case-browse {
  position: sticky;
  top: var(--header-height);
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(6, 17, 14, .9);
  backdrop-filter: blur(18px);
}
.case-tools {
  display: grid;
  grid-template-columns: minmax(240px, 330px) minmax(0, 1fr) auto;
  width: min(var(--max), 100%);
  min-height: 78px;
  align-items: center;
  gap: 24px;
  margin: 0 auto;
  padding: 14px clamp(24px, 4.5vw, 72px);
}
.case-search { position: relative; min-width: 0; }
.case-search-icon {
  position: absolute;
  top: 50%;
  left: 15px;
  width: 14px;
  height: 14px;
  border: 1.5px solid var(--faint);
  border-radius: 50%;
  transform: translateY(-56%);
}
.case-search-icon::after {
  content: "";
  position: absolute;
  right: -5px;
  bottom: -3px;
  width: 6px;
  height: 1.5px;
  background: var(--faint);
  transform: rotate(45deg);
  transform-origin: left center;
}
.case-search input,
.case-tools select {
  width: 100%;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 5px;
  outline: none;
  color: var(--text);
  background: rgba(255, 255, 255, .035);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}
.case-search input { padding: 0 15px 0 42px; }
.case-search input::placeholder { color: #61766b; }
.case-search input:focus,
.case-tools select:focus { border-color: rgba(85, 214, 181, .55); background: rgba(85, 214, 181, .05); box-shadow: 0 0 0 3px rgba(85, 214, 181, .08); }
.case-sort { position: relative; }
.case-tools select { min-width: 124px; padding: 0 34px 0 13px; cursor: pointer; }
.case-categories { display: flex; min-width: 0; gap: 26px; overflow: auto; scrollbar-width: none; }
.case-categories::-webkit-scrollbar { display: none; }
.case-categories button {
  position: relative;
  height: 44px;
  flex: none;
  padding: 0;
  border: 0;
  color: #7f958a;
  background: transparent;
  font-size: 14px;
  white-space: nowrap;
  cursor: pointer;
  transition: color 180ms ease;
}
.case-categories button::after {
  content: "";
  position: absolute;
  inset: auto 0 4px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 180ms ease;
}
.case-categories button:hover { color: var(--text); }
.case-categories button.is-active { color: #fff; font-weight: 720; }
.case-categories button.is-active::after { transform: scaleX(1); }

.case-results {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 30px clamp(24px, 4.5vw, 72px) 72px;
}
.case-grid { columns: 5 220px; column-gap: 20px; }
.case-card {
  display: block;
  width: 100%;
  margin: 0 0 20px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 6px;
  color: var(--text);
  background: var(--surface);
  text-align: left;
  break-inside: avoid;
  cursor: pointer;
  opacity: 0;
  transform: translateY(18px);
  animation: card-in 520ms cubic-bezier(.16, 1, .3, 1) forwards;
  animation-delay: calc(var(--case-index) * 34ms);
}
.case-card-media { position: relative; display: block; overflow: hidden; background: #0d1c16; }
.case-card-media::after {
  content: "";
  position: absolute;
  inset: 36% 0 0;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(3, 9, 6, .94), rgba(3, 9, 6, .46) 58%, transparent);
  transition: opacity 220ms ease;
}
.case-card img { width: 100%; height: auto; filter: saturate(.92) brightness(.94); transition: transform 420ms cubic-bezier(.16, 1, .3, 1), filter 220ms ease; }
.case-card:hover img { filter: saturate(1.04) brightness(1.02); transform: scale(1.025); }
.case-card-ratio {
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 10px;
  padding: 3px 7px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 4px;
  color: rgba(255, 255, 255, .74);
  background: rgba(3, 9, 6, .62);
  font-size: 10px;
  backdrop-filter: blur(8px);
}
.case-card-copy {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 5px;
  padding: 36px 14px 14px;
}
.case-card-copy strong { font-size: 15px; font-weight: 720; line-height: 1.38; }
.case-card-copy small { color: rgba(237, 246, 241, .58); font-size: 11px; }
.case-card-copy i {
  position: absolute;
  right: 14px;
  bottom: 15px;
  color: var(--accent);
  font-size: 16px;
  font-style: normal;
  opacity: 0;
  transform: translateX(-5px);
  transition: opacity 180ms ease, transform 180ms ease;
}
.case-card:hover .case-card-copy i { opacity: 1; transform: none; }
.case-load-sentinel { width: 100%; height: 1px; }
.case-empty { padding: 110px 20px; color: var(--muted); text-align: center; }

.case-source-note {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 0 clamp(24px, 4.5vw, 72px) 54px;
  color: rgba(237, 246, 241, .42);
}
.case-source-note > div {
  display: grid;
  grid-template-columns: minmax(160px, .28fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px 42px;
  align-items: start;
  padding-top: 28px;
  border-top: 1px solid rgba(142, 174, 160, .15);
}
.case-source-note h2,
.case-source-note p { margin: 0; }
.case-source-note h2 { color: rgba(237, 246, 241, .6); font-size: 13px; font-weight: 720; }
.case-source-note p { max-width: 520px; font-size: 12px; line-height: 1.75; }

.case-dialog {
  width: min(1180px, calc(100vw - 48px));
  height: min(820px, calc(100dvh - 48px));
  max-width: none;
  max-height: none;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(142, 174, 160, .26);
  border-radius: 8px;
  color: var(--text);
  background: #091510;
  box-shadow: 0 40px 100px rgba(0, 0, 0, .58);
}
.case-dialog[open] { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr); animation: dialog-in 260ms cubic-bezier(.16, 1, .3, 1) both; }
.case-dialog::backdrop { background: rgba(1, 6, 4, .82); backdrop-filter: blur(8px); }
.case-dialog-close {
  position: absolute;
  z-index: 4;
  top: 16px;
  right: 16px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
  color: #fff;
  background: rgba(5, 13, 9, .68);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: background 180ms ease, transform 180ms ease;
}
.case-dialog-close:hover { background: rgba(85, 214, 181, .18); transform: rotate(4deg); }
.case-dialog-media { display: grid; min-height: 0; place-items: center; overflow: auto; padding: 28px; background: #030906; }
.case-dialog-media img { width: auto; height: auto; max-width: 100%; max-height: 100%; box-shadow: 0 24px 60px rgba(0, 0, 0, .34); }
.case-dialog-content { display: flex; min-height: 0; flex-direction: column; overflow: auto; padding: 50px 40px 32px; border-left: 1px solid var(--line); }
.case-dialog-heading > span { color: var(--accent); font-size: 12px; font-weight: 780; }
.case-dialog-heading h2 { margin: 10px 0 6px; font-size: 30px; font-weight: 820; line-height: 1.2; }
.case-dialog-heading p { margin: 0; color: var(--faint); font-size: 13px; }
.case-prompt { display: flex; min-height: 0; flex-direction: column; margin-top: 28px; border-top: 1px solid var(--line); }
.case-prompt > div { display: flex; align-items: center; justify-content: space-between; padding: 17px 0 13px; }
.case-prompt > div strong { color: rgba(237, 246, 241, .78); font-size: 13px; }
.case-prompt button { display: inline-flex; align-items: center; gap: 7px; padding: 0; border: 0; color: var(--accent); background: transparent; font-size: 13px; font-weight: 750; cursor: pointer; }
.case-prompt pre {
  min-height: 190px;
  max-height: 390px;
  margin: 0;
  padding: 18px;
  overflow: auto;
  border: 1px solid rgba(142, 174, 160, .13);
  border-radius: 6px;
  color: rgba(237, 246, 241, .76);
  background: rgba(255, 255, 255, .028);
  font: 14px/1.78 inherit;
  white-space: pre-wrap;
}
.case-prompt pre::-webkit-scrollbar { width: 8px; }
.case-prompt pre::-webkit-scrollbar-thumb { border-radius: 8px; background: #294137; }
.case-reference-note { padding: 10px 12px; border-left: 2px solid #d7ae62; color: #d8c39c; background: rgba(215, 174, 98, .08); font-size: 13px; }
.case-dialog-actions { display: flex; gap: 10px; margin-top: auto; padding-top: 24px; }
.case-dialog-actions a,
.case-dialog-actions button { display: inline-flex; height: 46px; align-items: center; justify-content: center; gap: 10px; padding: 0 18px; border-radius: 5px; text-decoration: none; cursor: pointer; }
.case-dialog-actions a { border: 1px solid var(--accent); color: #06110e; background: var(--accent); font-weight: 780; }
.case-dialog-actions button { border: 1px solid var(--line); color: var(--text); background: transparent; }
.case-dialog-actions a:hover { background: #72e1c4; }
.case-dialog-actions button:hover { border-color: rgba(142, 174, 160, .42); background: rgba(255, 255, 255, .04); }
.case-toast {
  position: fixed;
  z-index: 50;
  left: 50%;
  bottom: 24px;
  padding: 10px 16px;
  border: 1px solid rgba(85, 214, 181, .24);
  border-radius: 5px;
  color: var(--text);
  background: #10221b;
  box-shadow: 0 14px 38px rgba(0, 0, 0, .35);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 16px);
  transition: opacity 180ms ease, transform 180ms ease;
}
.case-toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

@keyframes intro-image-in { to { transform: translateY(0) scale(1); } }
@keyframes card-in { to { opacity: 1; transform: none; } }
@keyframes dialog-in { from { opacity: 0; transform: translateY(12px) scale(.985); } }

@media (max-width: 1100px) {
  .case-site-header nav { gap: 22px; }
  .case-tools { grid-template-columns: minmax(220px, 300px) minmax(0, 1fr); gap: 10px 22px; }
  .case-sort { grid-column: 1; grid-row: 2; width: 130px; }
  .case-categories { grid-column: 2; grid-row: 1 / span 2; }
}

@media (max-width: 900px) {
  :root { --header-height: 68px; }
  .case-site-header { z-index: 102; grid-template-columns: auto minmax(0,1fr) auto; padding: 0 18px; background: rgba(6,17,14,.94); border-color: rgba(85,214,181,.13); backdrop-filter: blur(18px); }
  .case-menu-toggle {
    display: grid;
    grid-column: 3;
    width: 42px;
    height: 42px;
    place-items: center;
    justify-self: end;
    padding: 0;
    border: 1px solid rgba(85,214,181,.34);
    border-radius: 6px;
    color: #06110e;
    background: var(--accent);
    box-shadow: 0 8px 22px rgba(0,0,0,.18);
  }
  .case-menu-toggle-icon { position: relative; display: grid; width: 19px; height: 15px; align-content: space-between; }
  .case-menu-toggle-icon i { display: block; width: 100%; height: 2px; border-radius: 2px; background: currentColor; transition: transform 220ms ease, opacity 160ms ease; }
  .case-menu-toggle[aria-expanded="true"] .case-menu-toggle-icon i:first-child { transform: translateY(6.5px) rotate(45deg); }
  .case-menu-toggle[aria-expanded="true"] .case-menu-toggle-icon i:nth-child(2) { opacity: 0; }
  .case-menu-toggle[aria-expanded="true"] .case-menu-toggle-icon i:last-child { transform: translateY(-6.5px) rotate(-45deg); }
  .case-site-header nav {
    position: fixed;
    inset: var(--header-height) 0 0;
    z-index: 101;
    display: grid;
    grid-template-rows: auto repeat(5, minmax(62px, auto)) 1fr auto;
    gap: 0;
    width: 100vw;
    max-width: none;
    margin-left: -18px;
    justify-self: stretch;
    grid-column: 1 / -1;
    min-height: calc(100dvh - var(--header-height));
    padding: 18px 22px max(24px, env(safe-area-inset-bottom));
    overflow-y: auto;
    background: rgba(7,18,14,.985);
    border-top: 1px solid rgba(85,214,181,.16);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-14px);
    transition: opacity 180ms ease, transform 220ms cubic-bezier(.2,.8,.2,1), visibility 220ms;
  }
  .case-site-header nav::before { content: "浏览官网"; grid-row: 1; align-self: start; margin: 4px 0 12px; color: var(--muted); font-size: 11px; font-weight: 760; letter-spacing: .08em; }
  .case-site-header nav.is-open { opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
  .case-site-header nav a {
    display: grid;
    grid-template-columns: 38px minmax(0,1fr) auto;
    align-items: center;
    min-height: 62px;
    padding: 0 4px;
    border-bottom: 1px solid rgba(142,174,160,.18);
    color: var(--text);
    font-size: 20px;
    font-weight: 720;
  }
  .case-site-header nav a::before { content: attr(data-menu-index); color: var(--muted); font-size: 10px; font-weight: 760; }
  .case-site-header nav a::after { position: static; width: 8px; height: 8px; border-top: 1.5px solid currentColor; border-right: 1.5px solid currentColor; background: transparent; opacity: .34; transform: rotate(45deg); }
  .case-site-header nav .is-current { color: var(--accent); }
  .case-site-header nav .is-current::before { color: var(--accent); }
  .case-site-header nav .is-current::after { opacity: 1; transform: rotate(45deg); }
  .case-site-header nav .case-mobile-workbench {
    display: flex;
    grid-column: 1 / -1;
    grid-row: 8;
    min-height: 54px;
    justify-content: space-between;
    margin-top: 28px;
    padding: 0 18px;
    border: 0;
    border-radius: 5px;
    color: #06110e;
    background: var(--accent);
    font-size: 16px;
    font-weight: 800;
  }
  .case-site-header nav .case-mobile-workbench::before,
  .case-site-header nav .case-mobile-workbench::after { display: none; }
  .case-login { display: none; }
  .case-menu-toggle:focus-visible { outline: 2px solid rgba(183,255,236,.8); outline-offset: 2px; }
  .case-intro { min-height: 480px; }
  .case-intro-visual { inset: 0 0 0 35%; }
  .case-intro-content { padding: 136px 22px 86px; }
  .case-intro h1 { font-size: 52px; }
  .case-intro-meta { right: 22px; bottom: 28px; }
  .case-browse { top: var(--header-height); }
  .case-tools { grid-template-columns: minmax(0, 1fr) 126px; min-height: 126px; gap: 10px; padding: 12px 18px 10px; }
  .case-search { grid-column: 1; grid-row: 1; }
  .case-sort { grid-column: 2; grid-row: 1; width: auto; }
  .case-categories { grid-column: 1 / -1; grid-row: 2; gap: 23px; }
  .case-results { padding: 18px 14px 68px; }
  .case-source-note { padding: 0 18px 38px; }
  .case-source-note > div { grid-template-columns: 1fr; gap: 12px; }
  .case-source-note p { max-width: 680px; }
  .case-grid { columns: 2; column-gap: 12px; }
  .case-card { margin-bottom: 12px; }
  .case-dialog { width: 100vw; height: 100dvh; border: 0; border-radius: 0; }
  .case-dialog[open] { grid-template-columns: 1fr; grid-template-rows: minmax(270px, 45dvh) minmax(0, 1fr); }
  .case-dialog-media { padding: 16px; }
  .case-dialog-content { padding: 28px 20px 24px; border-top: 1px solid var(--line); border-left: 0; }
  .case-dialog-heading h2 { font-size: 24px; }
  .case-prompt { margin-top: 20px; }
  .case-prompt pre { max-height: 260px; }
  .case-dialog-actions { position: sticky; bottom: -24px; padding-bottom: 8px; background: linear-gradient(0deg, #091510 78%, transparent); }
  .case-dialog-actions a, .case-dialog-actions button { flex: 1; padding: 0 9px; }
}

@media (max-width: 560px) {
  .case-brand { min-width: 168px; }
  .case-intro { min-height: 454px; }
  .case-intro-visual { inset: 0 0 0 22%; }
  .case-intro-image { width: 58%; opacity: .48; }
  .case-intro-image-a { left: -5%; }
  .case-intro-image-b { left: 42%; }
  .case-intro-image-c { display: none; }
  .case-intro-visual::after { background: linear-gradient(90deg, #06110e 0%, rgba(6, 17, 14, .77) 40%, rgba(6, 17, 14, .27) 100%), linear-gradient(0deg, rgba(6, 17, 14, .92), transparent 56%); }
  .case-intro-content { padding: 126px 20px 84px; }
  .case-intro-content > p { margin-bottom: 17px; }
  .case-intro h1 { max-width: 290px; font-size: 44px; line-height: 1.08; }
  .case-intro-content > span { max-width: 315px; margin-top: 20px; font-size: 14px; }
  .case-intro-content > a { margin-top: 20px; }
  .case-intro-meta { right: auto; left: 20px; bottom: 24px; }
  .case-intro-meta span:last-child, .case-intro-meta i { display: none; }
  .case-tools { grid-template-columns: minmax(0, 1fr) 116px; padding-right: 14px; padding-left: 14px; }
  .case-search input { padding-right: 10px; font-size: 13px; }
  .case-tools select { min-width: 0; padding-right: 26px; font-size: 13px; }
  .case-card-copy { padding: 34px 10px 10px; }
  .case-card-copy strong { font-size: 13px; }
  .case-card-copy small { font-size: 10px; }
  .case-card-copy i { display: none; }
  .case-card-ratio { top: 7px; right: 7px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
