:root {
  color-scheme: light;
  --ink: #141414;
  --muted: #626872;
  --soft: #f5f6f8;
  --line: #e3e6ea;
  --panel: #ffffff;
  --accent: #c9281d;
  --accent-2: #ef6b2e;
  --deep: #171615;
  --steel: #77808b;
  --max: 1200px;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(18, 18, 18, 0.12);
  --shadow-soft: 0 14px 38px rgba(26, 30, 36, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f8f9fa;
  color: var(--ink);
  font-family: Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.68;
  letter-spacing: 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--accent);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(20, 20, 20, 0.08);
  box-shadow: 0 10px 30px rgba(20, 20, 20, 0.05);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: 220px;
  height: 64px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #2b2f35;
  font-size: 14px;
  font-weight: 800;
}

.nav a {
  position: relative;
  padding: 26px 0;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 18px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav a:hover::after {
  transform: scaleX(1);
}

.header-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(201, 40, 29, 0.22);
  border-radius: var(--radius);
  background: #fff;
  color: var(--accent);
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(201, 40, 29, 0.12);
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 76px));
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 64px 0 38px;
  background-image:
    linear-gradient(90deg, rgba(17, 16, 15, 0.92), rgba(17, 16, 15, 0.68) 54%, rgba(17, 16, 15, 0.24)),
    url("images/fanxi-sign-day.webp");
  background-position: center;
  background-size: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 6px;
  background: var(--accent);
  z-index: 0;
}

.hero-grid,
.section-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: end;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 3px;
  background: var(--accent-2);
}

.hero h1 {
  max-width: 1040px;
  margin: 0;
  color: #fff;
  font-size: clamp(46px, 6.2vw, 78px);
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 900;
  text-wrap: balance;
}

.hero h1 > span {
  display: block;
  max-width: 900px;
  margin-top: 18px;
  color: #f4f6f8;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.18;
}

.no-break {
  white-space: nowrap;
}

.hero-lead {
  margin: 28px 0 0;
  max-width: 760px;
  color: #edf1f4;
  font-size: 18px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-stats span {
  min-width: 150px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  backdrop-filter: blur(10px);
}

.hero-stats b {
  display: block;
  font-size: 24px;
  line-height: 1.05;
}

.hero-stats small {
  display: block;
  margin-top: 4px;
  color: #dce2e7;
  font-size: 12px;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  color: #fff;
  font-weight: 900;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.button.primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.button:not(.primary) {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.text-link {
  color: var(--accent);
  font-weight: 900;
}

.hero-facts {
  display: grid;
  max-width: 900px;
  gap: 10px;
  margin-top: 28px;
  padding-left: 20px;
  border-left: 4px solid var(--accent-2);
  color: #eef2f5;
  font-weight: 800;
}

.fact-line {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.fact-line b {
  min-width: 44px;
  color: #fff;
}

.media-grid {
  display: none;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 14px;
  max-width: 1020px;
}

.media-grid figure {
  position: relative;
  min-height: 132px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: #202225;
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.28);
}

.media-grid img {
  width: 100%;
  height: 100%;
  min-height: 132px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.media-grid figure:hover img {
  transform: scale(1.04);
}

.media-grid figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 8px 10px;
  border-radius: 6px;
  background: rgba(17, 16, 15, 0.72);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.section {
  position: relative;
  padding: 94px 0;
  border-top: 1px solid var(--line);
  background: #fff;
}

.section.soft {
  background: var(--soft);
}

.section.dark {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(201, 40, 29, 0.22), rgba(201, 40, 29, 0) 42%),
    var(--deep);
  color: #fff;
}

.section-title {
  max-width: 860px;
  margin-bottom: 42px;
}

.section-title::before {
  content: "";
  display: block;
  width: 54px;
  height: 4px;
  margin-bottom: 18px;
  background: var(--accent);
}

.section-title h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.15;
  letter-spacing: 0;
  text-wrap: balance;
}

.section-title p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.dark .section-title p,
.dark .muted {
  color: #c5cbd2;
}

.service-grid {
  counter-reset: service;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service {
  counter-increment: service;
  position: relative;
  min-height: 230px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.service::before {
  content: counter(service, decimal-leading-zero);
  display: block;
  margin-bottom: 28px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 900;
}

.service::after {
  content: "";
  position: absolute;
  right: -32px;
  bottom: -32px;
  width: 94px;
  height: 94px;
  border: 18px solid rgba(201, 40, 29, 0.08);
  border-radius: 50%;
}

.service:hover,
.case-card:hover,
.resource-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 40, 29, 0.24);
  box-shadow: var(--shadow);
}

.service h3,
.case-card h3,
.factory-copy h3,
.contact-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.25;
}

.service p,
.case-card p,
.factory-copy p,
.contact-card p {
  margin: 0;
  color: var(--muted);
}

.visual-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 52px;
  align-items: center;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding: 16px 18px 16px 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: #31343a;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(26, 30, 36, 0.05);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 23px;
  width: 10px;
  height: 10px;
  background: var(--accent);
}

.image-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.image-frame figcaption {
  padding: 14px 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.factory-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.factory-copy {
  position: relative;
  min-height: 220px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.factory-copy::before {
  content: "";
  display: block;
  width: 34px;
  height: 4px;
  margin-bottom: 48px;
  background: var(--accent-2);
}

.factory-copy p {
  color: #c9ced4;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.case-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.case-card a {
  display: block;
  height: 100%;
}

.case-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.case-card div {
  padding: 24px;
}

.case-card h3::after {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  margin-top: 14px;
  background: var(--accent);
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.resource-card {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 24px;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.resource-card small {
  width: fit-content;
  padding: 4px 9px;
  border-radius: 5px;
  background: rgba(201, 40, 29, 0.1);
  color: var(--accent);
  font-weight: 900;
}

.resource-card h3 {
  margin: 18px 0 12px;
  font-size: 22px;
  line-height: 1.25;
}

.resource-card p {
  margin: 0;
  color: var(--muted);
}

.article-page {
  background: #fff;
}

.article-hero {
  position: relative;
  overflow: hidden;
  padding: 68px 0 52px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(201, 40, 29, 0.12), rgba(201, 40, 29, 0) 40%),
    #f7f8fa;
}

.article-wrap {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
}

.article-wrap.case-hero-grid {
  width: min(var(--max), calc(100% - 40px));
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.8fr);
  gap: 44px;
  align-items: center;
}

.breadcrumb {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.breadcrumb a {
  color: var(--accent);
}

.article-hero h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.12;
  letter-spacing: 0;
  text-wrap: balance;
}

.article-lead {
  margin: 22px 0 0;
  color: #30343a;
  font-size: 18px;
}

.case-hero-media {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.case-hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.case-hero-media figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  border-radius: 6px;
  background: rgba(17, 16, 15, 0.74);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.meta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.meta-grid div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 16px;
  box-shadow: 0 10px 28px rgba(26, 30, 36, 0.05);
}

.meta-grid dt {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.meta-grid dd {
  margin: 5px 0 0;
  color: #202226;
  font-weight: 900;
}

.article-body {
  padding: 58px 0 86px;
}

.article-body h2 {
  margin: 44px 0 16px;
  font-size: clamp(26px, 4vw, 36px);
  line-height: 1.2;
  text-wrap: balance;
}

.article-body h3 {
  margin: 28px 0 10px;
  font-size: 22px;
}

.article-body p {
  margin: 0 0 16px;
  color: #343840;
  font-size: 17px;
}

.article-body ul,
.article-body ol {
  margin: 0 0 22px;
  padding-left: 22px;
  color: #343840;
}

.summary-box {
  border-left: 5px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--soft);
  padding: 22px 24px;
  color: #2d3238;
  font-weight: 700;
}

.summary-box strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
}

.case-overview {
  margin-top: 46px;
}

.deliverable-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.deliverable-card {
  position: relative;
  min-height: 170px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.deliverable-card::before {
  content: "";
  display: block;
  width: 36px;
  height: 4px;
  margin-bottom: 30px;
  background: var(--accent);
}

.deliverable-card h3 {
  margin-top: 0;
}

.deliverable-card p {
  margin-bottom: 0;
}

.result-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 28px 0 8px;
}

.result-strip span {
  display: block;
  min-height: 104px;
  padding: 18px;
  border: 1px solid rgba(201, 40, 29, 0.2);
  border-radius: var(--radius);
  background: rgba(201, 40, 29, 0.06);
}

.result-strip b {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 18px;
}

.case-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 46px 0 8px;
  padding: 26px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(239, 107, 46, 0.2), rgba(201, 40, 29, 0) 45%),
    var(--deep);
  color: #fff;
}

.case-cta strong {
  display: block;
  font-size: 24px;
  line-height: 1.25;
}

.case-cta p {
  margin: 8px 0 0;
  color: #d6dce2;
}

.case-cta-button {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  font-weight: 900;
}

.case-cta-button:hover {
  color: #fff;
}

.article-main-image,
.article-image-grid figure {
  overflow: hidden;
  margin: 30px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.article-main-image img,
.article-image-grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-main-image figcaption,
.article-image-grid figcaption {
  padding: 13px 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.article-image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.process-list {
  display: grid;
  gap: 14px;
  padding: 0;
  list-style: none;
}

.process-list li {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 18px 20px;
  box-shadow: 0 10px 28px rgba(26, 30, 36, 0.05);
}

.related-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.related-links a {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 16px;
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(26, 30, 36, 0.05);
}

.client-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.client-list span {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  font-size: 20px;
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(26, 30, 36, 0.05);
}

.faq-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  gap: 30px;
  align-items: start;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 20px 22px;
  box-shadow: 0 10px 28px rgba(26, 30, 36, 0.05);
}

details + details {
  margin-top: 12px;
}

summary {
  cursor: pointer;
  font-weight: 900;
  font-size: 18px;
}

details p {
  margin: 14px 0 0;
  color: var(--muted);
}

.contact-card {
  position: sticky;
  top: 98px;
  border: 1px solid rgba(201, 40, 29, 0.2);
  border-radius: var(--radius);
  background: #fff;
  padding: 30px;
  box-shadow: var(--shadow);
}

.contact-card h3 {
  color: var(--accent);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  color: #343840;
  font-weight: 800;
}

.site-footer {
  padding: 54px 0;
  background: #111;
  color: #fff;
}

.footer-grid {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
}

.site-footer img {
  width: 220px;
  filter: invert(1) grayscale(1) brightness(2);
}

.site-footer h2 {
  margin: 0 0 12px;
  font-size: 18px;
}

.site-footer p,
.site-footer a {
  color: #c7c7c7;
}

.icp {
  margin-top: 22px;
  color: #8f8f8f;
  font-size: 13px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  padding: 8px 12px;
  background: #fff;
  border: 1px solid var(--line);
  z-index: 99;
}

.skip-link:focus {
  top: 12px;
}

@media (max-width: 1080px) {
  .nav {
    gap: 16px;
    font-size: 13px;
  }

  .factory-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .header-inner {
    min-height: auto;
    padding: 10px 0;
    align-items: flex-start;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 56px 0 38px;
  }

  .visual-grid,
  .faq-contact,
  .footer-grid,
  .article-wrap.case-hero-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .cases-grid,
  .resource-grid,
  .related-links,
  .client-list,
  .deliverable-grid,
  .result-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .meta-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-card {
    position: static;
  }
}

@media (max-width: 640px) {
  .header-inner,
  .hero-grid,
  .section-inner,
  .footer-grid {
    width: min(100% - 28px, var(--max));
  }

  .brand img {
    width: 174px;
    height: auto;
  }

  .header-phone {
    min-height: 36px;
    padding: 0 10px;
    font-size: 13px;
  }

  .hero {
    padding: 34px 0 28px;
    background-position: 58% center;
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 12px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero h1 > span {
    margin-top: 12px;
    font-size: 23px;
    line-height: 1.18;
  }

  .hero-lead {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.58;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 18px;
  }

  .hero-stats span {
    min-width: 0;
    padding: 10px 8px;
  }

  .hero-stats b {
    font-size: 19px;
  }

  .hero-stats small {
    font-size: 11px;
    line-height: 1.35;
  }

  .hero-actions {
    flex-direction: row;
    gap: 10px;
    margin-top: 20px;
  }

  .button {
    flex: 1;
    width: auto;
    min-height: 44px;
    padding: 0 12px;
    font-size: 15px;
  }

  .fact-line {
    display: grid;
    gap: 2px;
  }

  .hero-facts {
    margin-top: 18px;
    font-size: 13px;
    line-height: 1.55;
  }

  .media-grid,
  .service-grid,
  .cases-grid,
  .resource-grid,
  .article-image-grid,
  .related-links,
  .client-list,
  .factory-grid,
  .deliverable-grid,
  .result-strip {
    grid-template-columns: 1fr;
  }

  .article-wrap,
  .article-wrap.case-hero-grid {
    width: min(100% - 28px, 920px);
  }

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

  .section {
    padding: 62px 0;
  }

  .service,
  .factory-copy,
  .contact-card {
    padding: 22px;
  }

  .article-hero {
    padding: 42px 0 34px;
  }

  .case-hero-media figcaption {
    position: static;
    border-radius: 0;
  }

  .case-cta {
    display: grid;
    padding: 22px;
  }

  .case-cta-button {
    width: 100%;
  }

  .client-list span {
    justify-content: flex-start;
    padding: 0 18px;
  }
}
