.nobo-interview-response-pace {
	--nobo-irp-ink: #130e0e;
	--nobo-irp-muted: #674634;
	--nobo-irp-line: #e9dece;
	--nobo-irp-surface: rgba(255, 255, 255, 0.92);
	--nobo-irp-sage: #87953e;
	--nobo-irp-sunset: #d28a3c;
	--nobo-irp-clay: var(--color-clay-500, #b7653f);
	margin: 3rem auto;
	max-width: 980px;
	color: var(--nobo-irp-ink);
	font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.nobo-interview-response-pace__header {
	margin: 0 auto 2rem;
	max-width: 760px;
	text-align: center;
}

.nobo-interview-response-pace__header h2 {
	margin: 0;
	color: inherit;
	font-size: 3.75rem;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1;
}

.nobo-interview-response-pace__header p {
	margin: 0.85rem 0 0;
	color: var(--nobo-irp-muted);
	font-size: 1.25rem;
	line-height: 1.45;
}

.nobo-irp-card {
	overflow: hidden;
	border: 1px solid var(--nobo-irp-line);
	border-radius: 8px;
	background: var(--nobo-irp-surface);
	box-shadow: 0 16px 32px rgba(35, 24, 17, 0.11);
	padding: clamp(1.3rem, 3vw, 2rem);
}

.nobo-irp-card__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem 1rem;
}

.nobo-irp-pill {
	display: inline-flex;
	min-height: 2rem;
	align-items: center;
	gap: 0.5rem;
	border: 1px solid var(--nobo-irp-line);
	border-radius: 999px;
	background: #fffbf4;
	color: var(--nobo-irp-muted);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	line-height: 1;
	padding: 0.5rem 1rem;
	text-transform: uppercase;
}

.nobo-irp-pill--trend {
	border-color: #f0c6a3;
	background: #fff5ec;
	color: #a85417;
	letter-spacing: 0;
	text-transform: none;
}

.nobo-irp-dot {
	display: block;
	width: 0.55rem;
	height: 0.55rem;
	border-radius: 999px;
	background: var(--nobo-irp-sage);
}

.nobo-interview-response-pace[data-state="filling"] .nobo-irp-dot {
	background: var(--nobo-irp-sunset);
}

.nobo-interview-response-pace[data-state="busy"] .nobo-irp-dot,
.nobo-interview-response-pace[data-state="full"] .nobo-irp-dot,
.nobo-interview-response-pace[data-state="error"] .nobo-irp-dot {
	background: var(--nobo-irp-clay);
}

.nobo-irp-updated {
	color: var(--nobo-irp-muted);
	font-size: 0.95rem;
}

.nobo-irp-card__content {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(14rem, 0.34fr);
	gap: clamp(1.5rem, 4vw, 3rem);
	margin-top: 2rem;
}

.nobo-irp-card__side {
	border-left: 1px solid var(--nobo-irp-line);
	padding-left: clamp(1.2rem, 3vw, 2rem);
}

.nobo-irp-eyebrow {
	margin: 0;
	color: var(--nobo-irp-muted);
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	line-height: 1.2;
	text-transform: uppercase;
}

.nobo-irp-card h3,
.nobo-irp-card h4 {
	margin: 0.75rem 0 0;
	color: var(--nobo-irp-ink);
	letter-spacing: 0;
	line-height: 1.1;
}

.nobo-irp-card h3 {
	font-size: 3.4rem;
	font-weight: 800;
}

.nobo-irp-card h4 {
	font-size: 2rem;
	font-weight: 800;
}

.nobo-irp-card p {
	color: var(--nobo-irp-muted);
	font-size: 1rem;
	line-height: 1.6;
}

.nobo-irp-team {
	margin: 1rem 0 0;
	font-weight: 700;
}

.nobo-irp-meter {
	margin-top: 2rem;
}

.nobo-irp-meter__track {
	position: relative;
	height: 0.85rem;
	border-radius: 999px;
	background: linear-gradient(
		90deg,
		var(--nobo-irp-sage) 0%,
		var(--nobo-irp-sunset) 56%,
		var(--nobo-irp-clay) 100%
	);
	box-shadow: inset 0 1px 2px rgba(35, 24, 17, 0.2);
}

.nobo-irp-meter__marker {
	position: absolute;
	top: 50%;
	left: 3%;
	width: 1.45rem;
	height: 1.45rem;
	border: 3px solid #fff;
	border-radius: 999px;
	background: var(--nobo-irp-ink);
	box-shadow: 0 2px 6px rgba(35, 24, 17, 0.24);
	transform: translate(-50%, -50%);
	transition: left var(--motion-fast, 160ms) var(--ease-expressive, ease);
}

.nobo-irp-meter__labels {
	display: flex;
	justify-content: space-between;
	margin-top: 0.85rem;
	color: var(--nobo-irp-muted);
	font-size: 0.95rem;
}

.nobo-irp-error {
	margin: 1rem 0 0;
	color: var(--nobo-irp-clay);
	font-weight: 700;
}

@media (max-width: 720px) {
	.nobo-interview-response-pace__header h2 {
		font-size: 2.4rem;
	}

	.nobo-interview-response-pace__header p {
		font-size: 1rem;
	}

	.nobo-irp-card__content {
		grid-template-columns: 1fr;
	}

	.nobo-irp-card h3 {
		font-size: 2.25rem;
	}

	.nobo-irp-card h4 {
		font-size: 1.5rem;
	}

	.nobo-irp-card__side {
		border-top: 1px solid var(--nobo-irp-line);
		border-left: 0;
		padding-top: 1.3rem;
		padding-left: 0;
	}
}
