/* ==========================================================================
   Blockquote (.sentio-blockquote)
   ==========================================================================
   Extracted from frontend.css during the Batch 8 mechanical extraction
   (2026-04-18). Behavior-preserving.
   ========================================================================== */

/* Base */
.sentio-blockquote {
	position: relative;
	margin: 0;
	padding: 15px 20px 15px 25px;
	border: 0;
	border-left: 4px solid #000;
	quotes: none;
	font-style: normal;
	transition: border-color 0.3s ease, border-width 0.3s ease;
}

.sentio-blockquote::before,
.sentio-blockquote::after {
	content: none;
}

/* Quote Content */
.sentio-blockquote__content {
	margin-bottom: 15px;
	font-size: 16px;
	line-height: 1.7;
}

/* Quote Icon — Decorative */
.sentio-blockquote__icon {
	line-height: 1;
	color: currentColor;
	opacity: 0.15;
}

.sentio-blockquote__icon::before {
	content: "\201C";
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 1em;
}

.sentio-blockquote__icon--above {
	display: block;
	font-size: 60px;
	margin-bottom: 10px;
}

.sentio-blockquote__icon--inline {
	display: inline;
	float: left;
	font-size: 60px;
	margin-right: 12px;
	margin-top: -2px;
}

/* Footer: Author + Button Row */
.sentio-blockquote__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
}

/* Author Wrap (Avatar + Info) */
.sentio-blockquote__author-wrap {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
}

/* Avatar */
.sentio-blockquote__avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

/* Author Info */
.sentio-blockquote__author-info {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.sentio-blockquote__author {
	font-style: normal;
	font-weight: 600;
	font-size: 14px;
	line-height: 1.4;
}

.sentio-blockquote__author-title {
	font-size: 13px;
	line-height: 1.4;
	opacity: 0.6;
}

/* Share Button */
.sentio-blockquote__button {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 18px;
	border-radius: 4px;
	border: none;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	cursor: pointer;
	transition: background-color 0.25s ease, color 0.25s ease, opacity 0.25s ease;
	flex-shrink: 0;
}

.sentio-blockquote__button i {
	font-size: 1em;
	line-height: 1;
}

/* Tweet Button Defaults */
.sentio-blockquote__button--tweet {
	background-color: #000;
	color: #fff;
}

.sentio-blockquote__button--tweet:hover {
	background-color: #333;
	color: #fff;
}

/* Copy Button Defaults */
.sentio-blockquote__button--copy {
	background-color: #f0f0f0;
	color: #333;
}

.sentio-blockquote__button--copy:hover {
	background-color: #e0e0e0;
	color: #111;
}

/* Copy Button — Copied State */
.sentio-blockquote__button--copied {
	background-color: #10b981 !important;
	color: #fff !important;
	pointer-events: none;
}

/* Button View Variants */
.sentio-blockquote--button-view-icon .sentio-blockquote__button {
	padding: 8px;
}

.sentio-blockquote--button-view-text .sentio-blockquote__button i {
	display: none;
}

/* Responsive */
@media (max-width: 767px) {
	.sentio-blockquote__footer {
		flex-direction: column;
		align-items: flex-start;
	}
}

