/* 
 Theme Name:   Hastings Green
 Theme URI:    
 Description:  Child of MH Newsdesk lite
 Author:       Casey Landreth
 Author URI:   https://ecog.media
 Template:     mh-newsdesk-lite
 Version:      1.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html

 /* == Add your own styles below this line ==
--------------------------------------------*/

.entry-meta-author,
.entry-meta-date,
.swpm-join-us-link {
	display: none;
}

.child-page-row {
	display: flex !important;
	flex-wrap: wrap !important;

}

.child-page-box {
	width: 50%;
	box-sizing: border-box;
	display: flex;
}

@media screen and (max-width: 1024px) {
	.child-page-box {
		width: 100%;
	}
}

.child-page-link {
	background-color: #eeeeee;
	text-decoration: none !important;
	width: 100%;
	text-align: center;
	padding: 8px 15px;
	margin: 3px;
	border: solid 1px #000;
	transition: all 0.3s ease-in-out;
	display: flex; /* Flex container */
	justify-content: center; /* Center horizontally */
	align-items: center; /* Center vertically */
	
}

.child-page-link:hover {
	background-color: #bebdb9;
}