.cgp-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 24px;
	margin: 24px 0;
}
.cgp-card {
	border: 1px solid #e2e2e2;
	border-radius: 8px;
	overflow: hidden;
	background: #fff;
}
.cgp-thumb {
	width: 100%;
	height: 200px;
	object-fit: cover;
	display: block;
}
.cgp-video iframe,
.cgp-video embed {
	width: 100%;
	aspect-ratio: 16 / 9;
}
.cgp-card-body {
	padding: 16px;
}
.cgp-title {
	margin: 0 0 6px;
	font-size: 18px;
}
.cgp-title a {
	text-decoration: none;
	color: inherit;
}
.cgp-date {
	font-size: 13px;
	color: #777;
	margin-bottom: 8px;
}
.cgp-excerpt {
	font-size: 14px;
	color: #444;
	margin: 0;
}

.cgp-single-date {
	font-size: 15px;
	margin-bottom: 16px;
}
.cgp-single-video {
	margin: 16px 0;
}
.cgp-single-video iframe,
.cgp-single-video embed {
	width: 100%;
	aspect-ratio: 16 / 9;
}

.cgp-lightbox-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
	gap: 12px;
	margin: 20px 0;
}
.cgp-lightbox-grid img {
	width: 100%;
	height: 140px;
	object-fit: cover;
	border-radius: 6px;
	cursor: pointer;
}
.cgp-lightbox-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.85);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 99999;
}
.cgp-lightbox-overlay.cgp-active {
	display: flex;
}
.cgp-lightbox-img {
	max-width: 90%;
	max-height: 90%;
	border-radius: 6px;
}
.cgp-lightbox-close {
	position: absolute;
	top: 24px;
	right: 32px;
	color: #fff;
	font-size: 36px;
	cursor: pointer;
	line-height: 1;
}

.cgp-insta-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
	gap: 12px;
}
.cgp-insta-item {
	position: relative;
	display: block;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: 6px;
}
.cgp-insta-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.cgp-insta-play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
	font-size: 24px;
}
