/* Premium Posts Grid Styles */
.premium-posts-grid {
	display: grid;
	width: 100%;
}

.premium-post-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	overflow: hidden;
	transition: all 0.3s ease;
	height: 100%; /* Equal height */
	position: relative;
	box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.premium-post-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.premium-post-image {
	position: relative;
	overflow: hidden;
	flex-shrink: 0;
	background-color: #f5f5f5;
}

.premium-post-image a {
	display: block;
	width: 100%;
	height: 100%;
}

.premium-post-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
	display: block;
}

.premium-post-card:hover .premium-post-image img {
	transform: scale(1.05);
}

.premium-post-content {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.premium-post-meta {
	font-size: 0.85em;
	color: #777;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.premium-post-title {
	margin: 0 0 15px 0;
	font-size: 1.25em;
	line-height: 1.4;
}

.premium-post-title a {
	color: #333;
	text-decoration: none;
	transition: color 0.2s ease;
}

.premium-post-title a:hover {
	color: #0073aa;
}

.premium-post-excerpt {
	margin-bottom: 20px;
	color: #555;
	line-height: 1.6;
	flex-grow: 1;
}

.premium-post-footer {
	margin-top: auto;
}

.premium-post-button {
	display: inline-block;
	background: #0073aa;
	color: #fff;
	padding: 10px 20px;
	text-decoration: none;
	border-radius: 4px;
	font-weight: 600;
	transition: background 0.2s ease, transform 0.2s ease;
	text-transform: uppercase;
	font-size: 0.9em;
}

.premium-post-button:hover {
	background: #005177;
	color: #fff;
}

.premium-posts-load-more-wrap {
	text-align: center;
	margin-top: 40px;
}

.premium-posts-load-more-btn {
	background: #333;
	color: #fff;
	border: none;
	padding: 12px 30px;
	border-radius: 30px;
	font-size: 1em;
	cursor: pointer;
	transition: background 0.3s ease;
}

.premium-posts-load-more-btn:hover {
	background: #555;
}

.premium-posts-load-more-btn.loading {
	opacity: 0.7;
	pointer-events: none;
}

.premium-posts-empty {
	text-align: center;
	padding: 40px;
	background: #f9f9f9;
	border-radius: 8px;
	color: #666;
}
