/* Self-contained featured listings, replacing the incompatible WordPress cards. */
.weed-featured-template {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	width: 100%;
	margin: 28px 0 0;
}

.weed-featured-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	overflow: hidden;
	background: #fff;
	border: 1px solid #dce5ee;
	border-radius: 18px;
	box-shadow: 0 10px 24px rgba(23, 45, 71, .07);
}

.weed-featured-card__image {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	background: #edf3f0;
}

.weed-featured-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: flex-start;
	padding: 22px;
}

.weed-featured-card__location {
	margin: 0 0 7px;
	color: #627689;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.35;
}

.weed-featured-card__location a {
	color: inherit;
	text-decoration: none;
}

.weed-featured-card__title {
	margin: 0;
	color: #2f3d73;
	font-size: clamp(23px, 2vw, 29px);
	font-weight: 750;
	line-height: 1.13;
}

.weed-featured-card__title a {
	color: inherit;
	text-decoration: none;
}

.weed-featured-card__verified {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 12px;
	padding: 5px 10px;
	border-radius: 999px;
	background: #e1f5e7;
	color: #176d3b;
	font-size: 13px;
	font-weight: 750;
	line-height: 1;
}

.weed-featured-card__details {
	margin: 13px 0 0;
	color: #536a5e;
	font-size: 15px;
	line-height: 1.45;
}

.weed-featured-card__actions {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	width: 100%;
	margin-top: auto;
	padding-top: 20px;
}

.weed-featured-card__action {
	display: flex;
	min-height: 44px;
	align-items: center;
	justify-content: center;
	padding: 9px 12px;
	border: 1px solid #b8c8bb;
	border-radius: 9px;
	color: #244b32;
	font-size: 15px;
	font-weight: 750;
	line-height: 1.1;
	text-align: center;
	text-decoration: none;
}

.weed-featured-card__action--primary {
	grid-column: 1 / -1;
	min-height: 0;
	padding: 13px 12px !important;
	border-color: #315c3d;
	background: #315c3d;
	color: #fff !important;
	line-height: 1.2;
}

.weed-featured-card__action--primary:visited,
.weed-featured-card__action--primary:hover,
.weed-featured-card__action--primary:focus-visible {
	color: #fff !important;
}

.weed-featured-card__action:not(.weed-featured-card__action--primary) {
	border: 1px solid #b8c8bb !important;
	border-bottom: 1px solid #b8c8bb !important;
	box-shadow: inset 0 -1px 0 #b8c8bb;
}

.weed-featured-card__action:hover,
.weed-featured-card__action:focus-visible {
	filter: brightness(.94);
}

@media (max-width: 760px) {
	.weed-featured-template {
		grid-template-columns: 1fr;
		gap: 18px;
		margin-top: 20px;
	}

	.weed-featured-card__body {
		padding: 18px;
	}

	.weed-featured-card__title {
		font-size: 25px;
	}
}
