.signa-vote {
	display: grid;
	gap: 12px;
	padding: 18px 20px;
	border: 1px solid rgba(25, 22, 19, 0.1);
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.6);
	box-shadow: 0 18px 36px -30px rgba(25, 22, 19, 0.16);
}

.signa-vote__eyebrow,
.signa-vote__score,
.signa-vote__meta {
	margin: 0;
}

.signa-vote__eyebrow {
	color: #8a8178;
	font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.signa-vote__controls {
	display: grid;
	grid-template-columns: 52px minmax(88px, auto) 52px;
	gap: 12px;
	align-items: center;
}

.signa-vote__button {
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: linear-gradient(180deg, #1c1a19, #050505);
	color: #fff;
	font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
	font-size: 28px;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	transition: transform 140ms ease, opacity 140ms ease, background 140ms ease;
}

.signa-vote__button:hover {
	transform: translateY(-1px);
}

.signa-vote__button.is-active {
	background: linear-gradient(180deg, #1f7d3f, #0b5f2b);
}

.signa-vote__button--down.is-active {
	background: linear-gradient(180deg, #8d2b2b, #5e1212);
}

.signa-vote__score-wrap {
	display: grid;
	gap: 4px;
	justify-items: center;
}

.signa-vote__score {
	font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
	font-size: 36px;
	font-weight: 700;
	line-height: 0.95;
	letter-spacing: -0.05em;
}

.signa-vote__meta {
	color: #7d756e;
	font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: -0.03em;
	text-transform: uppercase;
}

.signa-vote.is-loading {
	opacity: 0.72;
	pointer-events: none;
}

@media (max-width: 760px) {
	.signa-vote__controls {
		grid-template-columns: 1fr;
	}

	.signa-vote__button {
		width: 100%;
		height: 46px;
		border-radius: 16px;
	}
}
