.bv-ai-share {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	align-items: center;
	justify-content: space-between;
	padding: 18px;
	border: 1px solid #e5e7eb;
	border-radius: 16px;
	background: #f8fafc;
}

.bv-ai-share__content {
	min-width: 240px;
	flex: 1 1 320px;
}

.bv-ai-share__title {
	display: block;
	margin: 0 0 4px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.3;
	color: #111827;
}

.bv-ai-share__text {
	margin: 0;
	font-size: 13px;
	line-height: 1.5;
	color: #4b5563;
}

.bv-ai-share__actions {
	display: flex;
	flex: 1 1 360px;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: flex-end;
}

.bv-ai-share__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 9px 13px;
	border: 1px solid #d1d5db;
	border-radius: 999px;
	background: #ffffff;
	color: #111827;
	font-size: 13px;
	font-weight: 600;
	line-height: 1;
	cursor: pointer;
	transition: border-color .2s ease, background-color .2s ease, transform .2s ease;
}

.bv-ai-share__button:hover {
	border-color: #9ca3af;
	background: #f9fafb;
	transform: translateY(-1px);
}

.bv-ai-share__button--copy {
	background: #111827;
	border-color: #111827;
	color: #ffffff;
}

.bv-ai-share__button--copy:hover {
	background: #1f2937;
	border-color: #1f2937;
}

@media (max-width: 781px) {
	.bv-ai-share {
		align-items: stretch;
	}

	.bv-ai-share__actions {
		justify-content: flex-start;
	}

	.bv-ai-share__button {
		flex: 1 1 calc(50% - 8px);
	}
}

@media (max-width: 420px) {
	.bv-ai-share__button {
		flex-basis: 100%;
	}
}