/* ATWU Client Wins Feed — same design as the homepage feed-card,
   scoped with the .atwu- prefix so it can't collide with theme CSS. */

.atwu-feed-card {
	position: relative;
	background: rgba(17, 20, 24, 0.92);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 6px;
	overflow: hidden;
	max-width: 380px;
	color: #f6f0e3;
	font-family: 'Plus Jakarta Sans', sans-serif;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
.atwu-feed-card::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 3px;
	background: #d62e1a;
}
.atwu-feed-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.atwu-feed-title {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}
.atwu-feed-title-dot {
	width: 8px; height: 8px;
	background: #2ecc71;
	border-radius: 50%;
	box-shadow: 0 0 0 4px rgba(46, 204, 113, 0.2);
	animation: atwuPulseGreen 2s ease-out infinite;
}
@keyframes atwuPulseGreen {
	0%   { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.5); }
	100% { box-shadow: 0 0 0 8px rgba(46, 204, 113, 0); }
}
.atwu-feed-count {
	font-size: 10px;
	color: rgba(255, 255, 255, 0.4);
	font-family: 'JetBrains Mono', monospace;
	letter-spacing: 0.1em;
}
.atwu-feed-list { padding: 6px 0; min-height: 200px; }
.atwu-feed-item {
	padding: 12px 20px;
	display: flex;
	gap: 12px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.04);
	align-items: flex-start;
	animation: atwuFeedSlide 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes atwuFeedSlide {
	from { opacity: 0; transform: translateX(-20px); }
	to   { opacity: 1; transform: translateX(0); }
}
.atwu-feed-item:last-child { border-bottom: none; }
.atwu-feed-icon {
	width: 28px; height: 28px;
	background: rgba(214, 46, 26, 0.15);
	color: #d62e1a;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-weight: 700;
	font-size: 13px;
}
.atwu-feed-body { flex-grow: 1; }
.atwu-feed-text { font-size: 12px; line-height: 1.4; color: #f6f0e3; }
.atwu-feed-text strong { color: #d62e1a; font-weight: 700; }
.atwu-feed-time {
	font-size: 10px;
	color: rgba(255, 255, 255, 0.4);
	margin-top: 2px;
	font-family: 'JetBrains Mono', monospace;
}
.atwu-feed-footer {
	padding: 12px 20px;
	background: rgba(0, 0, 0, 0.3);
	font-size: 10px;
	color: rgba(255, 255, 255, 0.4);
	text-align: center;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}
