		

		.post_grid {
			height:100%;
			width:100%;
			overflow-y:scroll;
		}

		.post_row {
			display: flex;
			margin-top:4.04%;
			height:40%;
			width:75%;
			margin-bottom:7%;
		}

		.post {
			flex:1 1 30%;
			height:100%;
			max-width:40%;
			font-family: "sans serif", "Verdana";
			background-color:#ecebed;
			border-bottom: 20px #28898f solid;
			border-top:1px #383e8c solid;
			border-left:1px #383e8c solid;
			border-right:1px #383e8c solid;
			border-radius: 20px;
			padding-left:4%;
			padding-right:4%;
			padding-top:2%;
			padding-bottom:4%;
			margin-right:9%;
			overflow-y:hidden;
		}

		.post p {
			font-size:15px;
			color:black;
			white-space:pre-wrap; 
			word-wrap:break-word;
		}

		.post h3 {
			color:black;
		}


		.post h4 {
			color: #28898f;
		}

		.post h5 {
			color: black;
		}


		.post:hover {
			border-top: 3px #383e8c solid;
		}


		.post_grid_mobile {
			display:none;
		}

		@media only screen and (max-width: 1083px) {


			.post_row {
				display: inline;
			}

			.post {
				margin-top:30px;
				margin-bottom:30px;
				height:30%;
				max-width:100%;
			}

			.post_grid_mobile {
				display:inline;
				overflow-y: scroll;
				height:100%;
				width:100%;
			}

			.post_grid {
				display:none;
			}

		}


