/**
 * Recent Stories widget — matches Opinion Hunt's .oh-recent design.
 * White card, gold "Recent Stories" eyebrow, rows of 58x58 thumb + category
 * eyebrow + serif title, hairline divider between rows (none above the first).
 */

.fpg-rs {
	background-color: #ffffff;
	border: 1px solid #e8e2d9;
	border-radius: 8px;
	padding: 24px 20px;
}

.fpg-rs__heading {
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	font-size: 12px;
	font-weight: 600;
	color: #c5a059;
	margin-bottom: 16px;
	font-family: 'JetBrains Mono', ui-monospace, monospace;
}

.fpg-rs__list {
	display: flex;
	flex-direction: column;
}

.fpg-rs__item {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	padding: 14px 0;
	border-top: 1px solid #f4efea;
}

.fpg-rs__list .fpg-rs__item:first-child {
	border-top: 0;
	padding-top: 0;
}

/* Small rounded thumbnail (background layer -> crisp corners) */
.fpg-rs__thumb {
	flex: 0 0 58px;
	display: block;
	width: 58px;
	height: 58px;
	border-radius: 4px;
	overflow: hidden;
	background-color: #f4efea;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.fpg-rs__body {
	min-width: 0;
}

.fpg-rs__category {
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	font-size: 10px;
	font-weight: 600;
	color: #c5a059;
	margin-bottom: 5px;
	font-family: 'JetBrains Mono', ui-monospace, monospace;
}

.fpg-rs__title {
	margin: 0;
	font-family: 'Playfair Display', Georgia, "Times New Roman", serif;
	font-weight: 700;
	font-size: 14.5px;
	line-height: 1.4;
	color: #1b2421;
	transition: color 0.2s ease;
}

.fpg-rs__title a {
	color: inherit;
	text-decoration: none;
}

.fpg-rs__item:hover .fpg-rs__title,
.fpg-rs__title a:hover {
	color: #c5a059;
	text-decoration: none;
}

.fpg-rs__empty {
	padding: 16px 0;
	color: #777;
	font-size: 14px;
}
