/** Layout **/
.layout-grid-container { 
	display:grid; 
	margin-block-start: 0;
	gap : 2em;
}

.grid-columns-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-columns-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-columns-1 {
	grid-template-columns: repeat(1, minmax(0, 1fr));
}

/** List **/
.post-list {
    display: list-item;
    unicode-bidi: isolate;
}

.post-list-block {
	text-align:justify;
}

/** Post **/
.post-article {
	text-align:center;

}

.post-block {
	width:90%;
	margin:0 auto;
	text-align:center;

	post-block, .post-thumbnail, .post-title {
		text-align:center;
	}

}


/** Common **/
.post-thumbnail {
	position: relative;
	margin-bottom: 2em;
	
	img {
		aspect-ratio: 4 / 3;
		width: 100%;
		object-fit: cover;
		box-sizing: border-box;
		height: auto;
		max-width: 100%;
		vertical-align: bottom;
	}
}

h1.post-title,
h2.post-title a { font-weight:bold; color:#1D1D1D;}

post-block, .post-thumbnail, .post-title, .post-content {
	margin-bottom:1em;
}

.post-content {

	b, strong, b span, strong span {font-weight:bold;}

	p, li, span {
		font-size:1.25em;
		line-height: 160%;
		letter-spacing:-0.05em;
	}

	h2, h3 {
		margin-top: 1.5em;
		margin-bottom: 1em;
	}

}
