/* ── Posts Grid Widget ──────────────────────────── */
.aew-pg-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

/* Card */
.aew-pg-card {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	overflow: hidden;
	cursor: pointer;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.aew-pg-card:hover {
	transform: translateY(-4px);
}

/* Thumbnail */
.aew-pg-thumb {
	position: relative;
	overflow: hidden;
	height: 240px;
}

.aew-pg-thumb--empty {
	background: #e0e0e0;
}

.aew-pg-img {
	position: absolute !important;
	inset: 0 !important;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	display: block !important;
	transition: transform 0.4s ease;
}

.aew-pg-card:hover .aew-pg-img {
	transform: scale(1.05);
}

/* Body */
.aew-pg-body {
	padding: 16px;
}

.aew-pg-title {
	margin: 0;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.4;
	transition: color 0.3s ease;
}
