/* Also Read Widget – Frontend Styles */

.arw-wrap {
	margin: 1.5em 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.arw-label {
	display: inline-block;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .07em;
	text-transform: uppercase;
	color: #6b7280;
	margin-bottom: 7px;
}

.arw-card {
	display: flex;
	align-items: stretch;
	border: 1.5px solid #d1d5db;
	border-radius: 10px;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	background: #fff;
	transition: border-color .15s, box-shadow .15s;
	max-width: 640px;
}

.arw-card:hover {
	border-color: #9ca3af;
	box-shadow: 0 2px 8px rgba(0,0,0,.06);
	text-decoration: none;
	color: inherit;
}

/* Thumbnail */
.arw-thumb {
	width: 110px;
	min-width: 110px;
	max-height: 100px;
	overflow: hidden;
	background: #f3f4f6;
	display: flex;
	align-items: center;
	justify-content: center;
}

.arw-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.arw-thumb-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	min-height: 80px;
	background: #e5e7eb;
}

/* Body */
.arw-body {
	padding: 10px 14px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 4px;
	flex: 1;
	min-width: 0;
}

.arw-title {
	font-size: 14px;
	font-weight: 600;
	color: #111827;
	line-height: 1.4;
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.arw-desc {
	font-size: 12px;
	color: #4b5563;
	line-height: 1.5;
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.arw-domain {
	font-size: 11px;
	color: #9ca3af;
	margin: 0;
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
	.arw-card { background: #1f2937; border-color: #374151; }
	.arw-card:hover { border-color: #6b7280; }
	.arw-thumb { background: #374151; }
	.arw-thumb-placeholder { background: #374151; }
	.arw-title { color: #f9fafb; }
	.arw-desc { color: #d1d5db; }
	.arw-label { color: #9ca3af; }
}
