/* ===== Loolehe Comments Widget — Styles ===== */

.lcw-wrapper {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
	direction: rtl;
}

.lcw-cols-1 { grid-template-columns: repeat(1, 1fr); }
.lcw-cols-2 { grid-template-columns: repeat(2, 1fr); }
.lcw-cols-3 { grid-template-columns: repeat(3, 1fr); }
.lcw-cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
	.lcw-cols-3,
	.lcw-cols-4 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.lcw-wrapper {
		grid-template-columns: 1fr !important;
	}
}

.lcw-card {
	position: relative;
	background: #ffffff;
	border-radius: 14px;
	padding: 28px 26px;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.lcw-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.1);
}

.lcw-quote-icon {
	font-size: 42px;
	line-height: 1;
	color: #0a6cff;
	opacity: 0.18;
	font-family: Georgia, serif;
	display: block;
	margin-bottom: 4px;
}

.lcw-text {
	font-size: 15px;
	line-height: 1.9;
	color: #4a4a4a;
	margin: 0 0 22px 0;
	min-height: 70px;
}

.lcw-footer {
	display: flex;
	align-items: center;
	gap: 12px;
}

.lcw-avatar {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background-color: #0a6cff;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 17px;
	flex-shrink: 0;
	overflow: hidden;
}

.lcw-avatar--img {
	background-color: transparent;
	padding: 0;
}

.lcw-avatar--img img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
}

.lcw-meta {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.lcw-name {
	font-size: 15px;
	font-weight: 700;
	color: #1a1a1a;
}

.lcw-post-title {
	font-size: 12.5px;
	color: #8a8a8a;
}

.lcw-post-title a {
	color: inherit;
	text-decoration: none;
	border-bottom: 1px dotted currentColor;
}

.lcw-post-title a:hover {
	color: #0a6cff;
}

.lcw-empty {
	padding: 24px;
	text-align: center;
	color: #999;
	background: #f7f7f7;
	border-radius: 10px;
}
