
main > header {
	text-align: center;
	padding: 8px 20px;
}
.content {
	display: flex;
	padding: 0 20px 20px;
}

select {
	background-color: #fff;
}

.content section {
	margin-left: 20px;
	box-sizing: border-box;
	width: calc(100% - 20px);
}

.list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 0;
}
.list header {
	width: 100%;
	text-align: right;
	padding-bottom: 10px;
}
.list .cardstyle {
	width: 100%;
	height: 220px;
	margin-bottom: 10px;
	display: grid;
	grid-template-columns: 250px 1fr;
	grid-template-areas: "card-photo card-info";
	gap: 15px;
}
.list .cardstyle .cardstyle-info {
	grid-area: card-info;
	position: relative;
	width: 100%;
	box-sizing: border-box;
}
.list .cardstyle .cardstyle-img {
	grid-area: card-photo;
	width: 250px;
	max-height: 100%;
	border-radius: 4px;
	overflow: hidden;
}
.list .cardstyle .cardstyle-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: all .5s ease-in-out;
}
.list .cardstyle:hover .cardstyle-img img {
	transform: scale(1.05);
	transition: all .5s ease-in-out;
}
a.cardstyle-info-name span {
	width: 100%;
	display: block;
	box-sizing: border-box;
	font-size: 1.25rem;
	font-weight: 600;
}
div.cardstyle-info-cats {
	min-height: 40px;
	max-height: 100%;
	box-sizing: border-box;
	font-size: 0.80rem;
	line-height: 1.5rem;
}
span.cardstyle-info-categories span {
	margin: 0 5px 5px 0;
	border: 1px solid #e6e6e6;
	padding: 0px 8px;
	border-radius: 6px;
	color: #767676;
	display: inline-block;
}

.post-meta {
	font-size: 0.85rem;
	text-align: right;
}
.post-meta svg {
	vertical-align: middle;
	height: 22px;
}

.block-publi {
	width:100%;
	height: auto;
}

@media (max-width: 600px) {
	main > header {
		padding: 10px 20px;
	}
	.content {
		padding: 0 10px 20px;
		box-sizing: border-box;
	}
	.content section {
		width: 100%;
		margin: 0;
	}
	.list {
		flex-direction: column;
		flex-wrap: no-wrap;
	}
	.list .cardstyle {
		height: unset;
		grid-template-areas: "card-photo" "card-info";
		grid-template-columns: 1fr;
	}
	.list .cardstyle .cardstyle-img {
		width: 100%;
		height: 180px;
	}
	.list .cardstyle .cardstyle-info {
		width: 100%;
		box-sizing: border-box;
	}
}