.tl-chase-outlook-widget {
	border: 1px solid color-mix(in srgb, var(--text, #050505) 12%, transparent);
	border-radius: 14px;
	background: var(--card, #ffffff);
	color: var(--text, #050505);
	overflow: hidden;
}

.tl-chase-outlook-header {
	padding: 14px 16px;
	border-bottom: 1px solid color-mix(in srgb, var(--text, #050505) 10%, transparent);
	background: color-mix(in srgb, var(--card, #ffffff) 88%, var(--bg, #f0f0f0) 12%);
}

.tl-chase-outlook-title {
	margin: 0;
	font-size: 18px;
	line-height: 1.2;
	color: var(--text, #050505);
}

.tl-chase-outlook-list {
	display: flex;
	flex-direction: column;
}

.tl-chase-item {
	padding: 14px 16px;
	border-bottom: 1px solid color-mix(in srgb, var(--text, #050505) 8%, transparent);
	background: var(--card, #ffffff);
	transition: transform 0.15s ease, background 0.2s ease;
}

.tl-chase-item:last-child {
	border-bottom: none;
}

.tl-chase-item:hover {
	transform: translateX(2px);
}

.tl-chase-item.is-today {
	box-shadow: inset 4px 0 0 var(--accent, #d62626);
}

.tl-chase-date-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 6px;
}

.tl-chase-date {
	font-size: 22px;
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: 0.01em;
	color: var(--text, #050505);
	text-transform: uppercase;
}

.tl-chase-day-label {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 76px;
	padding: 4px 10px;
	border-radius: 999px;
	background: color-mix(in srgb, var(--accent, #d62626) 12%, transparent);
	color: var(--text, #050505);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.06em;
	line-height: 1;
	text-transform: uppercase;
	white-space: nowrap;
}

.tl-chase-headline {
	font-size: 18px;
	font-weight: 800;
	line-height: 1.25;
}

.tl-chase-target {
	margin-top: 4px;
	font-size: 14px;
	line-height: 1.3;
	color: var(--text-2, #575757);
	opacity: 0.75;
	font-style: italic;
}

/* Status text colors */
.tl-status-none .tl-chase-headline {
	color: #2f6b2f;
	opacity: 0.78;
}

.tl-status-watching .tl-chase-headline {
	color: #1d4ed8;
}

.tl-status-possible .tl-chase-headline {
	color: #a16207;
}

.tl-status-likely .tl-chase-headline {
	color: #c2410c;
}

.tl-status-underway .tl-chase-headline {
	color: #b91c1c;
}

/* Subtle cell background tint by status */
.tl-status-none {
	background:
		linear-gradient(to right, rgba(47, 107, 47, 0.08), transparent 62%),
		var(--card, #ffffff);
}

.tl-status-watching {
	background:
		linear-gradient(to right, rgba(29, 78, 216, 0.10), transparent 62%),
		var(--card, #ffffff);
}

.tl-status-possible {
	background:
		linear-gradient(to right, rgba(161, 98, 7, 0.12), transparent 62%),
		var(--card, #ffffff);
}

.tl-status-likely {
	background:
		linear-gradient(to right, rgba(194, 65, 12, 0.14), transparent 62%),
		var(--card, #ffffff);
}

.tl-status-underway {
	background:
		linear-gradient(to right, rgba(185, 28, 28, 0.20), transparent 60%),
		var(--card, #ffffff);
	box-shadow: inset 4px 0 0 #b91c1c;
}

/* Blog link area */
.tl-chase-outlook-footer {
	padding: 14px 16px 16px;
	border-top: 1px solid color-mix(in srgb, var(--text, #050505) 8%, transparent);
	background: color-mix(in srgb, var(--card, #ffffff) 92%, var(--bg, #f0f0f0) 8%);
	font-size: 13px;
	line-height: 1.4;
	color: var(--text-2, #575757);
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.tl-chase-outlook-footer a {
	color: var(--accent, #d62626);
	font-weight: 700;
	text-decoration: none;
	margin-left: 6px;
}

.tl-chase-outlook-footer a:hover {
	text-decoration: underline;
}

@media (max-width: 480px) {
	.tl-chase-item {
		padding: 12px 14px;
	}

	.tl-chase-date-row {
		align-items: flex-start;
	}

	.tl-chase-date {
		font-size: 18px;
	}

	.tl-chase-headline {
		font-size: 16px;
	}

	.tl-chase-target {
		font-size: 13px;
	}

	.tl-chase-day-label {
		min-width: 68px;
		font-size: 10px;
		padding: 4px 8px;
	}

	.tl-chase-outlook-footer {
		padding: 11px 14px 13px;
		font-size: 12px;
	}
}