.huimengyu-list__hero {
  display: grid;
  gap: 14px;
  padding: 18px 18px 14px;
  border-bottom: 1px solid rgba(24, 26, 30, 0.06);
}

.huimengyu-list__hero-eyebrow {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: rgba(23, 24, 26, 0.42);
}

.huimengyu-list__hero-main {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.huimengyu-list__hero-title {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  color: #151619;
}

.huimengyu-list__hero-text {
  margin: 8px 0 0;
  max-width: 240px;
  font-size: 12px;
  line-height: 1.8;
  color: rgba(23, 24, 26, 0.56);
}

.huimengyu-list__hero-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  border: 1px solid rgba(23, 24, 26, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.58);
  font-size: 18px;
  color: #1a1c20;
  box-shadow: 0 10px 24px rgba(28, 31, 36, 0.04);
}

.huimengyu-list__section {
  padding: 14px 12px 20px;
}

.huimengyu-list__items {
  display: grid;
  gap: 10px;
}

.huimengyu-list-swipe {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}

.huimengyu-list-swipe__action {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: 82px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, #1f2937, #111827);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.huimengyu-list-swipe.is-open .huimengyu-list-swipe__action {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.huimengyu-list-item {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px;
  border: 1px solid rgba(18, 20, 24, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 28px rgba(24, 26, 30, 0.04);
  text-align: left;
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.huimengyu-list-swipe.is-open .huimengyu-list-item {
  transform: translateX(-82px);
}

.huimengyu-list-item--pinned {
  border-color: rgba(31, 41, 55, 0.18);
  background: rgba(248, 250, 252, 0.92);
}

.huimengyu-list-item__pin-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.92);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;
}

.huimengyu-list-item__avatar-wrap {
  position: relative;
  flex: 0 0 auto;
}

.huimengyu-list-item__notification-dot {
  top: 1px;
  right: 1px;
}

.huimengyu-list-item__content {
  min-width: 0;
  flex: 1;
}

.huimengyu-list-item__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.huimengyu-list-item__name-wrap {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  flex-wrap: wrap;
}

.huimengyu-list-item__name {
  min-width: 0;
  font-size: 15px;
  font-weight: 600;
  color: #17181a;
}

.huimengyu-list-item__badge {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(112, 88, 255, 0.1);
  color: #5d49c7;
  font-size: 10px;
  line-height: 1.4;
  white-space: nowrap;
}

.huimengyu-list-item__time {
  flex: 0 0 auto;
  font-size: 11px;
  color: rgba(23, 24, 26, 0.4);
}

.huimengyu-list-item__preview {
  margin: 6px 0 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
  color: rgba(23, 24, 26, 0.62);
}

@media (max-width: 420px) {
  .huimengyu-list__hero {
    padding: 16px 14px 12px;
  }

  .huimengyu-list__hero-title {
    font-size: 22px;
  }

  .huimengyu-list__section {
    padding-left: 10px;
    padding-right: 10px;
  }
}
