@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@300;400;500;600;700&family=Source+Sans+3:wght@300;400;500;600;700&display=swap');

/* ===== 全局变量 ===== */
:root {
  --c-primary: #6514ff;
  --c-secondary: #bf00ff;
  --c-dark: #1c1726;
  --c-dark-2: #251e34;
  --c-dark-3: #2e2548;
  --c-dark-4: #3a2f5e;
  --c-text: #e8e0ff;
  --c-text-muted: #a892d4;
  --c-text-dim: #7a68a6;
  --c-border: rgba(101,20,255,0.3);
  --c-glow: rgba(191,0,255,0.25);
  --c-card-bg: #221b38;
  --c-card-hover: #2a2244;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-card: 0 4px 24px rgba(101,20,255,0.18), 0 1px 4px rgba(0,0,0,0.4);
  --shadow-hover: 0 8px 40px rgba(101,20,255,0.32), 0 2px 8px rgba(0,0,0,0.5);
  --font-main: 'Lexend', 'Source Sans 3', system-ui, sans-serif;
  --font-body: 'Source Sans 3', 'Lexend', system-ui, sans-serif;
  --nav-h: 52px;
  --brand-h: 60px;
  --header-total: calc(var(--brand-h) + var(--nav-h));
  --gap-xl: 64px;
  --gap-lg: 48px;
  --gap-md: 32px;
  --gap-sm: 20px;
  --gap-xs: 12px;
}

/* ===== 基础重置 ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 17px;
  background: var(--c-dark);
  color: var(--c-text);
}

body {
  font-family: var(--font-body);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--c-dark);
}

/* ===== 动态背景纹理 ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 20% 10%, rgba(101,20,255,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 80%, rgba(191,0,255,0.10) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.site-wrap { position: relative; z-index: 1; }

/* ===== 链接 ===== */
a { color: var(--c-secondary); text-decoration: none; transition: color 0.2s; }
a:hover { color: #e066ff; }
a:focus-visible { outline: 2px solid var(--c-secondary); outline-offset: 3px; border-radius: 3px; }

/* ===== 排版 ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

img { max-width: 100%; height: auto; display: block; border-radius: var(--radius); }

/* ===== 眉题 small ===== */
small.eyebrow {
  display: inline-block;
  font-family: var(--font-main);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-secondary);
  background: rgba(191,0,255,0.12);
  border: 1px solid rgba(191,0,255,0.3);
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: var(--gap-xs);
}

/* ===== 徽章 ===== */
.hero-badge {
  display: inline-block;
  font-family: var(--font-main);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--c-primary), var(--c-secondary));
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: var(--gap-sm);
}

/* ===== 按钮 ===== */
.btn-primary {
  display: inline-block;
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-secondary) 100%);
  padding: 12px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  min-height: 44px;
  text-align: center;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(101,20,255,0.45);
  color: #fff;
}
.btn-primary.btn-block { display: block; width: 100%; }

.btn-secondary {
  display: inline-block;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--c-secondary);
  background: transparent;
  border: 1.5px solid var(--c-secondary);
  padding: 10px 24px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  min-height: 44px;
  text-align: center;
}
.btn-secondary:hover {
  background: rgba(191,0,255,0.15);
  color: #e066ff;
}

/* ===== 顶部导航 ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(28,23,38,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-border);
}

.brand-bar {
  height: var(--brand-h);
  display: flex;
  align-items: center;
  padding: 0 var(--gap-md);
  border-bottom: 1px solid rgba(101,20,255,0.15);
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: var(--gap-xs);
  text-decoration: none;
  color: #fff;
}
.brand-logo:hover { color: #fff; }

.logo-img { width: 36px; height: 36px; border-radius: 6px; object-fit: contain; }

.brand-name {
  font-family: var(--font-main);
  font-size: 1.35rem;
  font-weight: 700;
  background: linear-gradient(135deg, #c084ff, #e066ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.01em;
}

.main-nav {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 var(--gap-md);
  overflow-x: auto;
  scrollbar-width: none;
}
.main-nav::-webkit-scrollbar { display: none; }

.nav-link {
  display: flex;
  align-items: center;
  height: 40px;
  padding: 0 14px;
  font-family: var(--font-main);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--c-text-muted);
  border-radius: var(--radius);
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
  min-height: 40px;
  text-decoration: none;
}
.nav-link:hover {
  background: rgba(101,20,255,0.2);
  color: #fff;
}

/* ===== Hero 首页 ===== */
.hero-section {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--c-dark-3);
}

.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media .hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(28,23,38,0.92) 0%,
    rgba(28,23,38,0.70) 50%,
    rgba(28,23,38,0.30) 100%
  );
}

.hero-body {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: var(--gap-xl) var(--gap-md);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--gap-sm);
}

.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--c-text-muted);
  max-width: 480px;
  margin-bottom: 0;
}

/* ===== 页面 Hero（非首页）===== */
.page-hero {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--c-dark-3);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--c-dark-3) 0%, var(--c-dark-4) 100%);
}

.page-hero-media {
  position: absolute;
  inset: 0;
}
.page-hero-media .hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.page-hero-body {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: var(--gap-lg) var(--gap-md);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--gap-xs);
}
.page-hero-body h1 { color: #fff; }

/* ===== Service Hero ===== */
.service-hero .hero-overlay,
.cases-hero .hero-overlay {
  background: linear-gradient(
    to right,
    rgba(28,23,38,0.9) 0%,
    rgba(101,20,255,0.4) 100%
  );
}

/* ===== FAQ Hero ===== */
.faq-hero {
  background: linear-gradient(135deg, var(--c-dark-3) 0%, #1a1030 100%);
  padding: var(--gap-lg) var(--gap-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap-md);
  overflow: hidden;
  position: relative;
  min-height: 38vh;
}
.faq-hero::before {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(191,0,255,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.faq-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--gap-xs);
  max-width: 560px;
}
.faq-hero-deco {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.deco-num {
  font-family: var(--font-main);
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--c-primary), var(--c-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.deco-label {
  font-size: 0.8rem;
  color: var(--c-text-dim);
  letter-spacing: 0.08em;
}

/* ===== About Hero ===== */
.about-hero {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: linear-gradient(135deg, var(--c-dark-3) 0%, #201535 100%);
}
.about-hero-body {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: var(--gap-lg) var(--gap-md);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--gap-xs);
}
.about-hero-body h1 { color: #fff; }

/* ===== Contact Hero ===== */
.contact-hero {
  background: linear-gradient(135deg, var(--c-dark-3) 0%, #1d1232 100%);
  padding: var(--gap-lg) var(--gap-md);
  min-height: 34vh;
  display: flex;
  align-items: flex-end;
}
.contact-hero-inner {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--gap-xs);
}

/* ===== Policy Header ===== */
.policy-header {
  background: var(--c-dark-2);
  border-bottom: 1px solid var(--c-border);
  padding: var(--gap-lg) var(--gap-md);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--gap-xs);
}
.policy-header h1 { color: #fff; }

/* ===== 日期 ===== */
.pub-date, .mod-date {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--c-text-dim);
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.06);
}
.mod-date { margin-top: var(--gap-xs); margin-bottom: var(--gap-md); }

/* ===== 内容区 + 侧边栏 ===== */
.content-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--gap-xl) var(--gap-md);
}

.content-section.with-aside {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--gap-lg);
  align-items: start;
}

.content-main { min-width: 0; }
.content-main > small.eyebrow { display: block; margin-bottom: var(--gap-xs); }
.content-main > h2 { margin-bottom: var(--gap-sm); }

/* ===== 正文 ===== */
.prose {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--c-text);
}
.prose h2, .prose h3, .prose h4 { margin-top: var(--gap-md); margin-bottom: var(--gap-xs); }
.prose p { margin-bottom: 1em; }
.prose ul, .prose ol { padding-left: 1.5em; margin-bottom: 1em; }
.prose li { margin-bottom: 0.4em; }
.prose a { color: var(--c-secondary); }
.prose a:hover { color: #e066ff; }
.prose strong { color: #fff; font-weight: 600; }
.prose blockquote {
  border-left: 3px solid var(--c-primary);
  padding-left: var(--gap-sm);
  color: var(--c-text-muted);
  margin: var(--gap-sm) 0;
}
.prose table { width: 100%; border-collapse: collapse; margin-bottom: 1em; }
.prose th, .prose td {
  border: 1px solid var(--c-border);
  padding: 8px 12px;
  text-align: left;
  font-size: 0.9rem;
}
.prose th { background: var(--c-dark-3); color: #fff; }

/* ===== 侧边栏 ===== */
.content-aside {
  background: var(--c-card-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: var(--gap-md);
  position: sticky;
  top: calc(var(--header-total) + 16px);
  display: flex;
  flex-direction: column;
  gap: var(--gap-sm);
}
.content-aside > small.eyebrow { display: block; }
.content-aside > h3 { color: #fff; font-size: 1rem; }

.aside-link {
  display: flex;
  align-items: center;
  padding: 9px 12px;
  min-height: 40px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  color: var(--c-text-muted);
  background: rgba(101,20,255,0.08);
  border: 1px solid transparent;
  margin-bottom: 6px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  text-decoration: none;
}
.aside-link:last-child { margin-bottom: 0; }
.aside-link:hover {
  background: rgba(101,20,255,0.2);
  border-color: var(--c-border);
  color: #fff;
}

.aside-divider {
  border: none;
  border-top: 1px solid var(--c-border);
  margin: 4px 0;
}

.aside-note {
  font-size: 0.85rem;
  color: var(--c-text-dim);
  line-height: 1.6;
}

.aside-brand-desc {
  font-size: 0.85rem;
  color: var(--c-text-muted);
}

.aside-cta { display: flex; flex-direction: column; gap: var(--gap-xs); }

/* ===== 子页块 ===== */
.child-blocks {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--gap-sm);
  margin-top: var(--gap-sm);
}

.child-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: var(--gap-sm);
  background: var(--c-card-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  box-shadow: var(--shadow-card);
}
.child-block:hover {
  background: var(--c-card-hover);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}
.child-block strong {
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  display: block;
}
.child-block .child-desc {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  display: block;
  line-height: 1.5;
}

.child-blocks-inline {
  margin-top: var(--gap-lg);
}
.child-blocks-inline > h3 {
  margin-bottom: var(--gap-sm);
}

/* ===== 特色卡片（首页）===== */
.feat-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--gap-xl) var(--gap-md);
  border-top: 1px solid var(--c-border);
}
.feat-section > small.eyebrow { display: block; margin-bottom: var(--gap-xs); }
.feat-section > h2 { margin-bottom: var(--gap-lg); }

.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--gap-md);
}

.feat-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: var(--gap-md);
  background: var(--c-card-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.25s, box-shadow 0.25s, transform 0.25s, border-color 0.25s;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.feat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-primary), var(--c-secondary));
  opacity: 0;
  transition: opacity 0.2s;
}
.feat-card:hover {
  background: var(--c-card-hover);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
  border-color: rgba(101,20,255,0.5);
}
.feat-card:hover::before { opacity: 1; }

.feat-card strong {
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  display: block;
}
.feat-card span {
  font-size: 0.88rem;
  color: var(--c-text-muted);
  display: block;
  line-height: 1.55;
}

/* ===== 子页块（首页）===== */
.children-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--gap-md) var(--gap-xl);
}
.children-section > small.eyebrow { display: block; margin-bottom: var(--gap-xs); }
.children-section > h2 { margin-bottom: var(--gap-lg); }

/* ===== 联系块 ===== */
.contact-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-md);
  margin-top: var(--gap-lg);
}
.contact-block {
  background: var(--c-card-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: var(--gap-md);
  display: flex;
  flex-direction: column;
  gap: var(--gap-xs);
}
.contact-block small.eyebrow { display: inline-block; }
.contact-block h3 { margin-top: 2px; }
.contact-block p { font-size: 0.9rem; color: var(--c-text-muted); }

/* ===== 页脚 ===== */
.site-footer {
  background: var(--c-dark-2);
  border-top: 1px solid var(--c-border);
  padding: var(--gap-lg) var(--gap-md) var(--gap-md);
}

.footer-nav-dl {
  display: grid;
  grid-template-columns: auto repeat(4, 1fr);
  gap: var(--gap-sm) var(--gap-md);
  max-width: 1200px;
  margin: 0 auto var(--gap-md);
}

.footer-nav-dl dt {
  font-family: var(--font-main);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-dim);
  padding-top: 4px;
  align-self: start;
}

.footer-nav-dl dd { margin: 0; }

.footer-nav-dl dd a {
  display: flex;
  align-items: center;
  min-height: 40px;
  font-size: 0.88rem;
  color: var(--c-text-muted);
  padding: 2px 0;
  transition: color 0.2s;
  text-decoration: none;
}
.footer-nav-dl dd a:hover { color: var(--c-secondary); }

.site-footer > p {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: var(--gap-sm);
  border-top: 1px solid rgba(101,20,255,0.15);
  text-align: center;
}

.site-footer > p small {
  font-size: 0.8rem;
  color: var(--c-text-dim);
}
.site-footer > p small a {
  color: var(--c-text-dim);
  text-decoration: underline;
}
.site-footer > p small a:hover { color: var(--c-secondary); }

/* ===== Scroll Reveal 动效 ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  body::before { animation: none; }
}

/* ===== 响应式 ===== */
@media (max-width: 960px) {
  .content-section.with-aside {
    grid-template-columns: 1fr;
  }
  .content-aside {
    position: static;
  }
  .footer-nav-dl {
    grid-template-columns: 1fr 1fr;
  }
  .feat-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }
}

@media (max-width: 680px) {
  :root {
    --gap-xl: 40px;
    --gap-lg: 32px;
    --gap-md: 20px;
  }

  .brand-bar { padding: 0 var(--gap-sm); }
  .main-nav { padding: 0 var(--gap-sm); gap: 2px; }
  .nav-link { padding: 0 10px; font-size: 0.83rem; }

  .hero-body { padding: var(--gap-lg) var(--gap-sm); }
  .hero-title { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .hero-section { min-height: 70vh; }

  .page-hero-body, .about-hero-body, .contact-hero-inner, .faq-hero-inner {
    padding: var(--gap-md) var(--gap-sm);
  }

  .faq-hero { flex-direction: column; align-items: flex-start; }
  .faq-hero-deco { display: none; }

  .content-section { padding: var(--gap-lg) var(--gap-sm); }

  .child-blocks { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: 1fr; }
  .contact-blocks { grid-template-columns: 1fr; }

  .footer-nav-dl {
    grid-template-columns: 1fr;
    gap: var(--gap-xs);
  }
  .footer-nav-dl dt { margin-top: var(--gap-sm); }
}

@media (max-width: 400px) {
  .brand-name { font-size: 1.1rem; }
  .hero-title { font-size: 1.7rem; }
}

/* ===== FAQ 专属 ===== */
.faq-prose details {
  background: var(--c-card-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  margin-bottom: var(--gap-sm);
  overflow: hidden;
}
.faq-prose summary {
  padding: 14px var(--gap-sm);
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s;
}
.faq-prose summary:hover { background: rgba(101,20,255,0.15); }
.faq-prose summary::before {
  content: '问';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--c-primary);
  color: #fff;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.faq-prose details > *:not(summary) {
  padding: 0 var(--gap-sm) var(--gap-sm);
}

/* ===== Cases 专属 ===== */
.cases-prose ol {
  counter-reset: cases-counter;
  list-style: none;
  padding-left: 0;
}
.cases-prose ol li {
  counter-increment: cases-counter;
  padding: var(--gap-sm);
  padding-left: calc(var(--gap-sm) + 40px);
  position: relative;
  background: var(--c-card-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  margin-bottom: var(--gap-sm);
}
.cases-prose ol li::before {
  content: counter(cases-counter, decimal-leading-zero);
  position: absolute;
  left: var(--gap-sm);
  top: var(--gap-sm);
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-primary);
  line-height: 1;
}

/* ===== 卡片缩略图 ===== */
.card-thumb {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: var(--gap-xs);
}
