/* OGD Community Card — [ogd_community_card]
   Namespace: .ogd-cc-* only. Same token values as community-hub.css. */

.ogd-cc {
	--ogd-cc-forest: #16271a;
	--ogd-cc-cream: #fbf8f1;
	--ogd-cc-muted: #6f756f;
	--ogd-cc-border: #e2ded3;

	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: var(--ogd-cc-forest);
	background: #fff;
	border: 1px solid var(--ogd-cc-border);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 18px rgba(22, 39, 26, 0.08);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ogd-cc:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 28px rgba(22, 39, 26, 0.14);
}

.ogd-cc-media {
	position: relative;
	width: 100%;
	aspect-ratio: 4 / 3;
	background: var(--ogd-cc-cream);
	overflow: hidden;
}

.ogd-cc-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.ogd-cc-logo-badge {
	position: absolute;
	left: 16px;
	bottom: -16px;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	overflow: hidden;
	background: #fff;
	border: 2px solid #fff;
	box-shadow: 0 2px 8px rgba(22, 39, 26, 0.18);
	display: flex;
	align-items: center;
	justify-content: center;
}

.ogd-cc-logo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.ogd-cc-body {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 26px 20px 20px;
	font-family: 'Questrial', Arial, sans-serif;
}

.ogd-cc-title {
	margin: 0;
	font-size: 19px;
	font-weight: 500;
	line-height: 1.25;
	color: var(--ogd-cc-forest);
}

.ogd-cc-location {
	margin: 0;
	font-size: 13px;
	color: var(--ogd-cc-muted);
}

.ogd-cc-description {
	margin: 4px 0 0;
	font-size: 14px;
	line-height: 1.4;
	color: #25352a;
}
