/* Shortcode Grid Layout */
.newstime-shortcode-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 280px));
    gap: 1.5rem;
    margin: 1.5rem auto; /* Centers the container block itself */
    justify-content: center; /* Evenly centers the grid columns */
    box-sizing: border-box;
}

.shortcode-post-card {
	display: flex;
	flex-direction: column;
	height: 240px;
	width: 100%;
    max-width: 280px; /* Constrains card so justify-items can align it */
    border: 4px solid #ccc;
    border-radius: 8px;
    padding: 15px;
    justify-content: end;
}

.shortcode-card-image img {
	width: 100%;
	height: 140px;
	object-fit: cover;
	display: block;
	margin-bottom: 0.5rem;
}

.shortcode-card-title {
	font-size: 1rem;
	line-height: 1.3;
	margin: 0 0 0.25rem 0;
}

.shortcode-card-title a {
	color: #222222;
	text-decoration: none;
}

.shortcode-card-title a:hover {
	color: #e50914;
}

.shortcode-card-date {
	font-size: 0.75rem;
	color: #777777;
}
