/*
 * Pluseo — reading-time badge.
 * Conditionally loaded on singular pages that need it; otherwise zero impact.
 * Plain CSS, no resets, intentionally non-opinionated so themes can override.
 */

.aiscp-reading-time {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.9em;
	font-weight: 500;
	line-height: 1;
	color: #4b5563;
	padding: 6px 12px;
	background: #f3f4f6;
	border: 1px solid #e5e7eb;
	border-radius: 999px;
	box-sizing: border-box;
}

.aiscp-reading-time--auto {
	display: inline-flex; /* shrink-wrap to content width; theme can wrap */
	margin: 0 0 1.5em 0;
}

.aiscp-reading-time--inline {
	font-size: inherit; /* respects surrounding text size when used inside <p> */
	padding: 2px 8px;
	background: transparent;
	border-color: transparent;
}

.aiscp-reading-time__icon {
	font-size: 1.1em;
	line-height: 1;
}

.aiscp-reading-time__text {
	white-space: nowrap;
}
