/* === EXPERT ANALYTICS PAGE === */

.ea-kpi-strip{display:grid;grid-template-columns:repeat(4,1fr);gap:14px;margin-bottom:20px;}
.ea-kpi{
  padding:18px 20px;border-radius:14px;
  background:linear-gradient(180deg,#FFFFFF,#FCFAF5);
  border:1px solid rgba(184,145,42,.14);
  box-shadow:0 4px 14px -8px rgba(122,94,30,.15);
}
.ea-kpi-lbl{font-size:9.5px;font-weight:800;letter-spacing:1.4px;text-transform:uppercase;color:#9A7A28;margin-bottom:8px;}
.ea-kpi-num{font-family:'Playfair Display',Georgia,serif;font-size:28px;font-weight:700;color:#1a1a1a;line-height:1;margin-bottom:6px;}
.ea-kpi-sub{font-size:11px;color:#6B6660;}
.ea-up{color:#2E7D32;font-weight:800;}

.ea-card{
  padding:22px 26px;border-radius:16px;
  background:#fff;border:1px solid rgba(0,0,0,.06);
  box-shadow:0 4px 16px -10px rgba(20,15,10,.12);
  margin-bottom:18px;
}
.ea-card-head{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:10px;margin-bottom:18px;}
.ea-card-title{font-family:'Playfair Display',Georgia,serif;font-size:17px;font-weight:700;color:#1a1a1a;}
.ea-card-sub{font-size:11.5px;color:#8A8278;margin-top:2px;}

/* Chart */
.ea-chart{display:flex;align-items:flex-end;gap:14px;height:200px;padding:6px 4px 0;}
.ea-bar-col{flex:1;display:flex;flex-direction:column;align-items:center;gap:8px;height:100%;}
.ea-bar-wrap{flex:1;width:100%;display:flex;align-items:flex-end;justify-content:center;}
.ea-bar{
  width:100%;max-width:48px;
  background:linear-gradient(180deg,#EDCA50 0%,#D4A832 50%,#C4A559 100%);
  border-radius:8px 8px 4px 4px;
  position:relative;
  box-shadow:0 4px 12px rgba(184,145,42,.25);
  min-height:8px;
  transition:transform .25s ease;
}
.ea-bar:hover{transform:scaleY(1.02) translateY(-2px);}
.ea-bar-val{
  position:absolute;top:-22px;left:50%;transform:translateX(-50%);
  font-size:11px;font-weight:800;color:#1a1a1a;
}
.ea-bar-lbl{font-size:11px;color:#8A8278;font-weight:600;}

/* 2-column layout */
.ea-2col{display:grid;grid-template-columns:1.1fr 1fr;gap:18px;}

/* Viewers list */
.ea-viewers{display:flex;flex-direction:column;}
.ea-viewer{
  display:flex;align-items:center;gap:12px;
  padding:11px 4px;
  border-bottom:1px dashed rgba(0,0,0,.06);
}
.ea-viewer:last-child{border-bottom:none;}
.ea-viewer-av{
  width:36px;height:36px;border-radius:10px;flex-shrink:0;
  display:flex;align-items:center;justify-content:center;
  color:#fff;font-size:11px;font-weight:800;
}
.ea-viewer-body{flex:1;min-width:0;}
.ea-viewer-name{font-size:12.5px;font-weight:700;color:#1a1a1a;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
.ea-viewer-meta{font-size:10.5px;color:#8A8278;margin-top:1px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
.ea-viewer-time{font-size:10.5px;color:#A09A94;font-weight:600;flex-shrink:0;}

/* Sources */
.ea-sources{display:flex;flex-direction:column;gap:14px;margin-bottom:20px;}
.ea-source-row{display:flex;justify-content:space-between;font-size:12px;font-weight:600;color:#5C5750;margin-bottom:5px;}
.ea-source-pct{color:#1a1a1a;font-weight:800;}
.ea-source-track{height:8px;background:#F4F2EE;border-radius:100px;overflow:hidden;}
.ea-source-fill{height:100%;border-radius:100px;transition:width .4s ease;}

.ea-tip{
  display:flex;gap:12px;align-items:flex-start;
  padding:14px 16px;border-radius:12px;
  background:linear-gradient(180deg,#FFFBF0,#F5EDCF);
  border:1px solid rgba(184,145,42,.25);
}
.ea-tip-icon{font-size:18px;flex-shrink:0;}
.ea-tip-title{font-size:12.5px;font-weight:800;color:#7A5E1E;margin-bottom:2px;}
.ea-tip-text{font-size:11.5px;color:#5C5750;line-height:1.5;}
.ea-tip-text b{color:#1a1a1a;font-weight:800;}
.ea-tip-link{
  background:none;border:none;cursor:pointer;
  color:#9A7A28;font-weight:800;font-size:11.5px;
  font-family:inherit;text-decoration:underline;
  padding:0;margin-left:4px;
}

@media (max-width: 900px) {
  .ea-kpi-strip{grid-template-columns:repeat(2,1fr);}
  .ea-2col{grid-template-columns:1fr;}
  .ea-chart{height:160px;gap:8px;}
}
