/* Hixon Fact Sheets – shortcode styles */

.hv-factsheets {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.hv-fs-item {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 20px;
	padding: 24px 0;
	border-bottom: 1px solid #eee;
}

.hv-fs-item:last-child {
	border-bottom: none;
}

.hv-fs-image {
	flex-shrink: 0;
	display: block;
	width: 160px;
	height: 160px;
}

.hv-fs-image img {
	width: 160px;
	height: 160px;
	object-fit: cover;
	border-radius: 8px;
	display: block;
}

.hv-fs-content {
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1;
	min-width: 0;
}

.hv-fs-title {
	margin: 0;
	font-size: 17px;
	line-height: 1.3;
}

.hv-fs-title a {
	text-decoration: none;
	color: inherit;
}

.hv-fs-title a:hover {
	color: #871727;
}

.hv-fs-excerpt {
	font-size: 14px;
	line-height: 1.65;
	color: #555;
	margin: 0;
}

.hv-fs-excerpt p {
	margin: 0;
}

.hv-fs-more {
	display: inline-block;
	font-size: 13px;
	font-weight: 500;
	color: #871727;
	text-decoration: none;
	margin-top: auto;
}

.hv-fs-more:hover {
	text-decoration: underline;
}

@media (max-width: 767px) {
	.hv-fs-item {
		flex-direction: column;
	}

	.hv-fs-image,
	.hv-fs-image img {
		width: 100%;
		height: 200px;
	}
}
