.resourceList.blogs .resource .resourceText {
	display:grid;
	grid-template-areas: "title" "description" "button";
	align-items: start;
}
.resourceList.blogs .resource .resourceText h3 { grid-area: title; align-self:end; }
.resourceList.blogs .resource .resourceText p:nth-of-type(1) { grid-area: thumbnail; }
.resourceList.blogs .resource .resourceText p:nth-of-type(2) { grid-area: description; }
.resourceList.blogs .resource .resourceText p:nth-of-type(3),
.resourceList.blogs .resource .resourceText p:nth-of-type(4),
.resourceList.blogs .resource .resourceText a.read-more-button { display:none; }
.resourceList.blogs .resource .resourceText a.button { grid-area: button; justify-self: start; }
.resourceList.blogs .resource .resourceText img { height:auto; }

.more-link-wrapper {display:none;}

@media screen and (min-width:800px){
  
 
	.resourceList.blogs .resource { display:block; margin-bottom:2em;}
	.resourceList.blogs .resource .resourceText {
		grid-template-areas: "thumbnail title"
			"thumbnail description"
			"thumbnail button";
	}
	.resourceList.blogs .resource .resourceText p:nth-of-type(1) { margin-bottom:0; }		
}