.baoku-community-card {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  overflow: hidden;
  border: 1px solid rgba(214, 183, 106, 0.28);
  border-radius: var(--ui-radius, 14px);
  background:
    radial-gradient(circle at 0 0, rgba(214, 183, 106, 0.11), transparent 48%),
    rgba(16, 21, 19, 0.96);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.035), 0 14px 34px rgba(0, 0, 0, 0.18);
}

.baoku-community-card::after {
  position: absolute;
  right: -30px;
  bottom: -48px;
  width: 112px;
  height: 112px;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(214, 183, 106, 0.08);
  border-radius: 50%;
}

.baoku-community-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #dcc477;
  border: 1px solid rgba(214, 183, 106, 0.22);
  border-radius: 11px;
  background: rgba(214, 183, 106, 0.075);
}

.baoku-community-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.baoku-community-copy {
  position: relative;
  z-index: 1;
  display: grid;
  min-width: 0;
  gap: 3px;
}

.baoku-community-eyebrow {
  color: #bda96a;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.055em;
}

.baoku-community-title {
  color: var(--ui-text, #f3f0e7);
  font-size: 14px;
  font-weight: 820;
  line-height: 1.35;
}

.baoku-community-body {
  color: var(--ui-text-soft, #a2aaa4);
  font-size: 11px;
  line-height: 1.55;
}

.baoku-community-action {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 38px;
  padding: 0 12px;
  color: #15150f;
  font-size: 12px;
  font-weight: 850;
  white-space: nowrap;
  text-decoration: none;
  border: 1px solid rgba(255, 240, 193, 0.34);
  border-radius: 10px;
  background: var(--ui-gold, #d6b76a);
  box-shadow: 0 8px 20px rgba(136, 101, 31, 0.16);
  transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.baoku-community-action:hover {
  color: #11120e;
  background: var(--ui-gold-hover, #e2c77d);
  box-shadow: 0 10px 24px rgba(136, 101, 31, 0.22);
  transform: translateY(-1px);
}

.baoku-community-action:focus-visible {
  outline: 2px solid #f1d98b;
  outline-offset: 3px;
}

.baoku-community-action svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 520px) {
  .baoku-community-card {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 10px 11px;
    padding: 13px;
  }

  .baoku-community-icon {
    width: 40px;
    height: 40px;
  }

  .baoku-community-action {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .baoku-community-action {
    transition: none;
  }
}
