.oshi-share-cta-row {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 8px;
	margin-bottom: 12px;
}

.oshi-share-cta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 12px 8px;
	border-radius: 12px;
	font-size: 0.9rem;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	border: none;
	color: #fff;
	transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease;
	line-height: 1.2;
	min-height: 52px;
}

.oshi-share-cta:hover,
.oshi-share-cta:focus-visible {
	transform: translateY(-1px);
	outline: none;
	box-shadow: 0 14px 28px rgba(10, 14, 24, 0.2);
}

.oshi-share-cta--x {
	background: #0f1117;
}

.oshi-share-cta--copy {
	background: #353446;
	color: var(--text-main, #f4f3fb);
}

.oshi-share-cta--discord {
	background: #5865f2;
}

.oshi-share-cta.is-copied {
	background: #5fc9ff;
	color: #0b0a12;
}

html[data-theme="light_apple"] .oshi-share-cta--x,
html[data-theme="light"] .oshi-share-cta--x {
	background: #111827;
}

html[data-theme="light_apple"] .oshi-share-cta--copy,
html[data-theme="light"] .oshi-share-cta--copy {
	background: #e7ecf5;
	color: #162033;
}

@media (max-width: 520px) {
	.oshi-share-cta-row {
		grid-template-columns: 1fr;
	}
}
