/* ExploreQuiz AI – BuddyPress/Youzify Activity Feed (Hero Card)
   Kept theme-agnostic: colors should blend with theme; minimal assumptions.
*/

.eqai-feed-card{
  display:flex;
  gap:14px;
  align-items:stretch;
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  margin-top:10px;
}

.eqai-feed-media{
  flex:0 0 210px;
  position:relative;
  min-height:140px;
  display:block;
  text-decoration:none;
}

.eqai-feed-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.eqai-feed-ph{
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  letter-spacing:.3px;
  text-transform:uppercase;
  font-size:12px;
  opacity:.85;
  background: linear-gradient(135deg, rgba(0,0,0,.08), rgba(0,0,0,.03));
}

.eqai-feed-body{
  flex:1 1 auto;
  padding:14px 16px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.eqai-feed-kicker{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  opacity:.85;
  margin-bottom:6px;
}

.eqai-feed-kicker .dashicons{
  font-size:18px;
  width:18px;
  height:18px;
}

.eqai-feed-title{
  font-size:18px;
  line-height:1.25;
  font-weight:800;
  margin:0 0 10px 0;
}

.eqai-feed-meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:12px;
}

.eqai-feed-chip{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:6px 10px;
  border-radius:999px;
  font-size:13px;
  border:1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.65);
}

.eqai-feed-chip .dashicons{
  font-size:16px;
  width:16px;
  height:16px;
}

.eqai-feed-cta{
  margin-top:auto;
}

.eqai-feed-btn{
  display:inline-block;
  padding:10px 14px;
  border-radius:12px;
  text-decoration:none;
  font-weight:800;
  border:1px solid rgba(0,0,0,.18);
  background: rgba(0,0,0,.06);
}

.eqai-feed-btn:hover{
  filter: brightness(0.98);
  text-decoration:none;
}

.eqai-feed-btn .dashicons{
  vertical-align:middle;
  margin-right:6px;
}

.eqai-feed-sub{
  font-size:13px;
  opacity:.85;
  margin:0 0 10px 0;
}

/* Compact on small screens */
@media (max-width: 540px){
  .eqai-feed-card{ flex-direction:column; }
  .eqai-feed-media{ flex-basis:auto; min-height:170px; }
  .eqai-feed-body{ padding:12px 14px; }
  .eqai-feed-title{ font-size:17px; }
}
