/* 队友小人：轻微浮动动画 + 各栏目吉祥物
   追加文件，不改动 Golden 样式文件 */

:root {
  --crew-shadow: 0 10px 24px rgba(31, 46, 38, .10);
}

/* ---------- 整体悬浮小动效 ---------- */
@keyframes crew-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
@keyframes crew-sway {
  0%, 100% { transform: translateY(0) rotate(-1.2deg); }
  50%      { transform: translateY(-5px) rotate(1.2deg); }
}

/* ---------- 封面：全队合影位 ---------- */
.crew {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  gap: 4px 10px;
  margin: 26px auto 4px;
  max-width: 720px;
}
.crew-member {
  width: 92px;
  text-align: center;
  animation: crew-float 4s ease-in-out infinite;
}
.crew-member:nth-child(1) { animation-delay: .0s; }
.crew-member:nth-child(2) { animation-delay: .35s; }
.crew-member:nth-child(3) { animation-delay: .7s; }
.crew-member:nth-child(4) { animation-delay: 1.05s; }
.crew-member:nth-child(5) { animation-delay: 1.4s; }
.crew-member img {
  width: 100%;
  height: auto;
  max-height: 118px;
  object-fit: contain;
  filter: drop-shadow(0 6px 10px rgba(31, 46, 38, .10));
}
.crew-member .crew-name {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  letter-spacing: .08em;
  color: #4a6357;
}
.crew-member .crew-role {
  display: block;
  font-size: 10px;
  color: #8a9a91;
  letter-spacing: .04em;
}
.crew-caption {
  text-align: center;
  font-size: 12px;
  color: #7d8f85;
  margin: 6px 0 0;
}

/* ---------- 栏目吉祥物 ---------- */
.mascot {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin: 18px 4px 6px;
}
.mascot--right { flex-direction: row-reverse; }
.mascot__figure {
  flex: 0 0 auto;
  width: 74px;
  animation: crew-sway 4.6s ease-in-out infinite;
  transform-origin: 50% 92%;
}
.mascot__figure img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 6px 10px rgba(31, 46, 38, .10));
}
.mascot__say {
  flex: 1 1 auto;
  background: #fff;
  border: 1px solid #e3ece7;
  border-radius: 14px;
  padding: 9px 13px;
  font-size: 12.5px;
  line-height: 1.6;
  color: #4a6357;
  position: relative;
}
.mascot__say::before {
  content: "";
  position: absolute;
  left: -6px;
  bottom: 14px;
  width: 10px;
  height: 10px;
  background: #fff;
  border-left: 1px solid #e3ece7;
  border-bottom: 1px solid #e3ece7;
  transform: rotate(45deg);
}
.mascot--right .mascot__say::before {
  left: auto;
  right: -6px;
  transform: rotate(225deg);
}

/* ---------- 记账页：分账小队 ---------- */
.ledger-crew {
  margin: 30px auto 8px;
  padding: 18px 16px 10px;
  border: 1px dashed #d9e5de;
  border-radius: 18px;
  background: #fbfdfb;
  text-align: center;
}
.ledger-crew__title {
  font-size: 12.5px;
  letter-spacing: .1em;
  color: #6d8377;
  margin: 0 0 6px;
}
.ledger-crew .crew-member { width: 78px; }
.ledger-crew .crew-member img { max-height: 100px; }

/* ---------- 减少动效偏好 ---------- */
@media (prefers-reduced-motion: reduce) {
  .crew-member,
  .mascot__figure { animation: none !important; opacity: 1; }
}

@media (max-width: 640px) {
  .crew-member { width: 66px; }
  .crew-member img { max-height: 88px; }
  .mascot__figure { width: 56px; }
  .ledger-crew .crew-member { width: 58px; }
}
