/* ========================================
   织网 (WebWeave) - 活动动态流样式
   ======================================== */

/* === 活动动态页面 === */
.activity-feed-page {
  padding: 30px;
}

.activity-feed-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* === 动态卡片 === */
.activity-post {
  padding: 25px;
  transition: all var(--duration-normal);
}

.activity-post:hover {
  transform: translateY(-3px);
  box-shadow: var(--holy-glow-soft);
}

.post-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 15px;
}

.post-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--sacred-gold);
  object-fit: cover;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.post-content {
  color: var(--holy-white);
  line-height: 1.8;
  white-space: pre-wrap;
  word-wrap: break-word;
}

.post-images {
  margin-top: 15px;
}

.post-images img {
  transition: transform var(--duration-normal);
  cursor: pointer;
}

.post-images img:hover {
  transform: scale(1.05);
}

.post-actions {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid rgba(184, 134, 11, 0.3);
}

.post-comments {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(184, 134, 11, 0.2);
}

/* === 响应式 === */
@media (max-width: 768px) {
  .activity-feed-page {
    padding: 15px;
  }
  
  .post-header {
    flex-direction: column;
    gap: 10px;
  }
  
  .post-actions {
    flex-direction: column;
    gap: 10px;
  }
}
