main.postList{
	width 95%
	max-width 700px
	div.postItem{
		border-radius 8px
		margin-bottom 25px
		&:last-child{
			margin-bottom 0
		}
		div.postItemContent{
			display flex
			flex-direction column
			padding 8px
			a.postTitle{
				text-decoration none
				font-weight 400
				padding 0 10px
				h1{
					margin-top 8px
					margin-bottom 20px
				}
			}
			p.postExcerpt{
				margin 0
				padding 0 10px
			}
			div.mdui-divider{
				margin 10px 0 5px 0
			}
			div.postItemFooter{
				display flex
				flex-direction row
				justify-content space-between
				align-items center
				padding 0 0 0 10px
				span.postItemInfo{
					display flex
					flex-direction row
					max-width calc(100% - 100px)
					overflow hidden
					white-space nowrap
					text-overflow ellipsis
					div{
						display flex
						flex-direction row
						align-items center
						justify-content start
						margin-left 10px
						&:first-child{
							margin-left 0
						}
						i{
							margin-right 5px
						}
						a.category-link{
							text-decoration none
							flex-shrink 1
						}
					}
				}
				a.readMore{
					justify-self flex-end
					flex-shrink 0
				}
			}
		}
	}
}