/**
 * News Card Styles
 * Post card with deal-style design for news/blog listings
 */

.news-card {
	position: relative;
	overflow: hidden;
	transition: transform 0.3s ease;
}

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

/* Image area - square aspect ratio like deals */
.news-card__image {
	overflow: hidden;
	margin: 0 !important;
}

.news-card__image a {
	display: block;
}

.news-card__image img {
	width: 100%;
	height: auto;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.news-card:hover .news-card__image img {
	transform: scale(1.05);
}

/* Content area */
.news-card__content {
	flex-grow: 1;
}

.news-card__content .wp-block-post-title a {
	text-decoration: none;
	transition: color 0.2s ease;
}

.news-card__content .wp-block-post-title a:hover {
	color: var(--wp--preset--color--main-accent);
}

/* Excerpt styling */
.news-card__content .wp-block-post-excerpt__excerpt {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin: 0;
	color: var(--wp--preset--color--white);
}

/* Responsive: 2 columns on tablet, 1 on mobile */
@media (max-width: 1024px) {
	.wp-block-post-template.columns-3 {
		grid-template-columns: repeat(2, 1fr) !important;
	}
}

@media (max-width: 600px) {
	.wp-block-post-template.columns-3 {
		grid-template-columns: 1fr !important;
	}
}
