.wv-china-focus {
  --wv-bg: #0f0f10;
  --wv-bg-soft: #171719;
  --wv-text: #ffffff;
  --wv-muted: rgba(255,255,255,.78);
  --wv-line: rgba(255,255,255,.12);
  --wv-accent: #b71234;
  --wv-accent-soft: rgba(183,18,52,.18);
  --wv-radius: 20px;
  background: linear-gradient(180deg, var(--wv-bg) 0%, #101012 100%);
  border: 1px solid var(--wv-line);
  border-radius: 24px;
  padding: 18px;
  color: var(--wv-text);
  box-shadow: 0 20px 60px rgba(0,0,0,.28), 0 0 0 1px rgba(255,215,0,.05);
}

.wv-china-focus.signature-g1 {
  box-shadow: 0 22px 64px rgba(0,0,0,.34), 0 0 22px rgba(183,18,52,.10), 0 0 36px rgba(255,215,0,.05);
}


.wv-china-focus.theme-darkgold { --wv-accent: #b98b2d; --wv-accent-soft: rgba(185,139,45,.18); }
.wv-china-focus.theme-darkblue { --wv-accent: #1d65c1; --wv-accent-soft: rgba(29,101,193,.18); }
.wv-china-focus.theme-signatureg1 { --wv-accent: #b71234; --wv-accent-soft: rgba(183,18,52,.18); }

.wv-china-focus__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--wv-line);
}

.wv-china-focus__title {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .02em;
}

.wv-china-focus__empty {
  padding: 28px;
  border-radius: 18px;
  background: var(--wv-bg-soft);
  text-align: center;
}

.wv-china-focus__top-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
  gap: 16px;
}

.wv-china-focus__side-stack,
.wv-china-focus__mid-grid,
.wv-china-focus__bottom-grid {
  display: grid;
  gap: 16px;
}

.wv-china-focus__side-stack { grid-template-rows: 1fr 1fr; }
.wv-china-focus__mid-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 16px; }
.wv-china-focus__bottom-grid { margin-top: 16px; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.wv-china-focus__bottom-grid.bottom-count-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.wv-china-focus__bottom-grid.bottom-count-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.wv-china-focus__bottom-grid.bottom-count-1 { grid-template-columns: minmax(0, 1fr); }

.wv-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--wv-radius);
  background: var(--wv-bg-soft);
  border: 1px solid var(--wv-line);
  min-height: 220px;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease, filter .24s ease;
  box-shadow: 0 0 8px rgba(183,18,52,.12), 0 0 14px rgba(255,215,0,.06);
}


.wv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(0,0,0,.28), 0 0 14px rgba(183,18,52,.22), 0 0 24px rgba(255,215,0,.14);
  border-color: rgba(255,215,0,.22);
  filter: saturate(1.02);
}

.wv-card--hero { min-height: var(--wv-hero-height, 420px); }
.wv-card--side { min-height: calc((var(--wv-hero-height, 420px) - 16px) / 2); }
.wv-card--mid { min-height: 250px; }
.wv-card--mini { min-height: 190px; }

.wv-card__link {
  position: absolute;
  inset: 0;
  display: block;
  color: inherit;
  text-decoration: none;
}

.wv-card__media,
.wv-card__media img,
.wv-card__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.wv-card__media img {
  object-fit: cover;
  transition: transform .35s ease;
}

.wv-card:hover .wv-card__media img { transform: scale(1.05); }

.wv-card__media--placeholder {
  background:
    radial-gradient(circle at 15% 20%, var(--wv-accent-soft), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(255,255,255,.05), transparent 22%),
    linear-gradient(180deg, #2a2a2d 0%, #151517 100%);
}

.wv-card__overlay {
  background: linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.55) 52%, rgba(0,0,0,.86) 100%);
}

.wv-card__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 16px;
}

.wv-card__category {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--wv-text);
  background: color-mix(in srgb, var(--wv-accent) 78%, black 22%);
}

.wv-card__title {
  margin: 0;
  color: var(--wv-text);
  font-weight: 800;
  line-height: 1.18;
  text-shadow: 0 2px 14px rgba(0,0,0,.45);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.wv-card--hero .wv-card__title {
  font-size: clamp(1.35rem, 1.6vw, 2rem);
  -webkit-line-clamp: 3;
}

.wv-card--side .wv-card__title,
.wv-card--mid .wv-card__title {
  font-size: 1rem;
  -webkit-line-clamp: 3;
}

.wv-card--mini .wv-card__title {
  font-size: .92rem;
  -webkit-line-clamp: 3;
}

.wv-card__excerpt {
  margin: 10px 0 8px;
  color: var(--wv-muted);
  font-size: .92rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.wv-card__date {
  display: inline-block;
  margin-top: 8px;
  font-size: .74rem;
  color: rgba(255,255,255,.72);
}

@media (max-width: 1100px) {
  .wv-china-focus__top-grid { grid-template-columns: 1fr; }
  .wv-china-focus__side-stack { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: none; }
}

@media (max-width: 820px) {
  .wv-china-focus { padding: 14px; border-radius: 20px; }
  .wv-china-focus__mid-grid,
  .wv-china-focus__bottom-grid,
  .wv-china-focus__side-stack { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .wv-card--hero { min-height: 340px; }
  .wv-card--side, .wv-card--mid, .wv-card--mini { min-height: 220px; }
}

@media (max-width: 560px) {
  .wv-china-focus__side-stack,
  .wv-china-focus__mid-grid,
  .wv-china-focus__bottom-grid { grid-template-columns: 1fr; }
  .wv-card--hero { min-height: 300px; }
  .wv-card--side, .wv-card--mid, .wv-card--mini { min-height: 200px; }
  .wv-card__content { padding: 14px; }
  .wv-card--hero .wv-card__title { font-size: 1.18rem; }
  .wv-card--side .wv-card__title,
  .wv-card--mid .wv-card__title,
  .wv-card--mini .wv-card__title { font-size: .96rem; }
  .wv-card__excerpt { font-size: .9rem; }
}

.wv-card--hero { box-shadow: 0 0 10px rgba(183,18,52,.14), 0 0 18px rgba(255,215,0,.08); }
.wv-card--hero:hover { box-shadow: 0 24px 54px rgba(0,0,0,.30), 0 0 18px rgba(183,18,52,.28), 0 0 30px rgba(255,215,0,.16); }
.wv-card__title { transition: text-shadow .24s ease, color .24s ease; }
.wv-card:hover .wv-card__title { text-shadow: 0 2px 18px rgba(0,0,0,.5), 0 0 8px rgba(255,215,0,.10); }
.wv-china-focus__header { position: relative; }
.wv-china-focus__header::after { content:''; position:absolute; left:0; bottom:-1px; width:92px; height:2px; background: linear-gradient(90deg, rgba(183,18,52,.95), rgba(255,215,0,.68)); border-radius:999px; }
.wv-china-focus__title { text-shadow: 0 1px 10px rgba(183,18,52,.14); }
