/**
 * Content Publicity - Click-to-Share Quote Block (front-end styles)
 *
 * Loaded on both front-end and editor. Designed to be theme-agnostic
 * and unopinionated; the visual treatment leans on the existing
 * Content Publicity red accent used by the Super Suggest feature.
 */

.cp-quote-block {
	margin: 24px 0;
	padding: 20px 22px;
	background: #fef7f7;
	border: 1px solid #f3d4d4;
	border-left: 5px solid #dc143c;
	border-radius: 6px;
}

.cp-quote-block__quote {
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
}

.cp-quote-block__text {
	margin: 0 0 8px 0;
	font-size: 1.15em;
	line-height: 1.5;
	font-style: italic;
	color: #1d2327;
}

.cp-quote-block__cite {
	display: block;
	font-size: 0.9em;
	font-style: normal;
	color: #50575e;
	margin-top: 4px;
}

.cp-quote-block__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	margin-top: 14px;
	padding-top: 12px;
	border-top: 1px dashed #f3d4d4;
}

.cp-quote-block__label {
	font-size: 0.85em;
	font-weight: 600;
	color: #50575e;
	margin-right: 4px;
}

.cp-quote-block__share {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	padding: 0;
	background: #fff;
	color: #1d2327;
	border: 1px solid #f3d4d4;
	border-radius: 50%;
	cursor: pointer;
	text-decoration: none;
	transition: background-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.cp-quote-block__share:hover,
.cp-quote-block__share:focus {
	background: #dc143c;
	color: #fff;
	border-color: #dc143c;
	transform: translateY(-1px);
	text-decoration: none;
	outline: none;
}

.cp-quote-block__share svg.cp-icon,
.cp-quote-block__share .dashicons {
	width: 18px;
	height: 18px;
	font-size: 18px;
	line-height: 1;
}

@media screen and (max-width: 480px) {
	.cp-quote-block {
		padding: 16px 14px;
	}
	.cp-quote-block__text {
		font-size: 1.05em;
	}
}
