/* Workers GO — /mon-activite page */
.wg-act {
  padding: 1rem;
  color: #0f172a;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.wg-act__h1 { font-size: clamp(23px, 7vw, 28px); font-weight: 800; margin: 0.25rem 0 0; }
.wg-act__section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
  margin: 0 0 0.5rem;
}

/* 2x2 stat grid */
.wg-act__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}
.wg-act__stat {
  background: #fff;
  border: 1px solid #eef2f7;
  border-radius: 16px;
  padding: 0.9rem 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-height: 96px;
}
.wg-act__stat-icon {
  width: 32px; height: 32px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.35rem;
  font-size: 1rem;
}
.wg-act__stat--money .wg-act__stat-icon { background: #d1fae5; color: #059669; }
.wg-act__stat--time  .wg-act__stat-icon { background: #ede9fe; color: #6A3EEB; }
.wg-act__stat--missions .wg-act__stat-icon { background: #e0f2fe; color: #0284c7; }
.wg-act__stat--rating .wg-act__stat-icon { background: #ffedd5; color: #f97316; }

.wg-act__stat-value { font-size: clamp(17px, 4.8vw, 22px); font-weight: 800; line-height: 1.1; }
.wg-act__stat-label { font-size: 0.78rem; color: #64748b; }

/* Month card */
.wg-act__month {
  background: #fff;
  border-radius: 18px;
  border: 1px solid #eef2f7;
  padding: 1rem 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.wg-act__month-head { display: flex; justify-content: space-between; align-items: center; }
.wg-act__month-title { margin: 0; font-size: 0.95rem; font-weight: 700; }
.wg-act__month-badge {
  background: #d1fae5;
  color: #059669;
  border-radius: 999px;
  padding: 3px 10px;
  font-weight: 700;
  font-size: 0.78rem;
}
.wg-act__month-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #475569;
}
.wg-act__month-line strong { color: #0f172a; }
.wg-act__month-bar {
  height: 8px;
  background: #f1f5f9;
  border-radius: 999px;
  overflow: hidden;
}
.wg-act__month-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #6A3EEB, #a78bfa);
  border-radius: 999px;
}
.wg-act__month-sub { margin: 0; font-size: 0.82rem; color: #64748b; }

/* Chart */
.wg-act__chart {
  background: #fff;
  border-radius: 18px;
  border: 1px solid #eef2f7;
  padding: 1rem 0.75rem 0.85rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  height: 180px;
}
.wg-act__bar { display: flex; flex-direction: column; align-items: center; justify-content: flex-end; gap: 4px; }
.wg-act__bar-track {
  width: 100%;
  max-width: 34px;
  width: 34px;
  height: 100px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.wg-act__bar-fill {
  width: 100%;
  border-radius: 10px 10px 4px 4px;
  background: linear-gradient(180deg, #a78bfa, #6A3EEB);
}
.wg-act__bar.is-current .wg-act__bar-fill {
  background: linear-gradient(180deg, #34d399, #059669);
}
.wg-act__bar-amount { font-size: 0.75rem; font-weight: 700; color: #0f172a; }
.wg-act__bar-label { font-size: 12px; color: #64748b; }

/* Recent missions list */
.wg-act__missions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
  }
.wg-act__mission {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
  background: #fff;
  border: 1px solid #eef2f7;
  border-radius: 14px;
  padding: 0.65rem 0.85rem;
  min-width: 0;
}
.wg-act__mission-title { margin: 0; font-weight: 600; font-size: 0.9rem; 
  min-width: 0;
  overflow-wrap: anywhere;
}
.wg-act__mission-sub { margin: 2px 0 0; font-size: 0.78rem; color: #64748b; }
.wg-act__mission-amount { font-weight: 700; color: #059669; }

.wg-act__badges-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 12px; margin-bottom: 12px;
  background: #F3F0FF; color: #4600D2;
  border-radius: 999px; font-size: 0.82rem; font-weight: 600;
  text-decoration: none;
}
.wg-act__badges-link:hover { background: #E4DBFF; }
