/***
 * Theme Name:	CDR Astra Theme
 * Author:	CDR IT Team
 * Author URI:	https://richmonddiocese.org/office/office-of-information-technology/
 * Description:	Based on the latest version of WP Astra, this allows you to customize a theme without affecting the parent theme's base files. This also means that WordPress updates to the parent theme will not break the site or child theme files. 
 * Version:	1.0.0
 * License:	GNU General Public License v2 or later
 * License URI:	http://www.gnu.org/licenses/gpl-2.0.html
 * Text Domain:	cdrastra
 * Template:	astra
 *
 * SITE COLORS
 *
 *	#054c72 (Headings, Links)
 *	#076DA3 (link hovers)
 *	#cfc984 (borders)
 *	#001219 (Text)
 */
.fullWidth {
	width: 100%;
	height: auto;
	borderr: 0 !important;
}

.noBMarg {
	margin-bottom: 0px;
}

.cdrFlexThree {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: stretch;
	gap: 20px;
	margin: 0 auto;
	max-width: 1200px;
	padding: 0 20px;
}

.mTop {
	margin-top: 20px !important;
}

.cdrFlexThree .box, .cdrFlexThree .boxNoBorder {
	flex: 1 1 350px;
	max-width: 350px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        min-height: 200px;
}

.cdrFlexThree .box {
	border: 1px solid #cfc984;
}

.mTop .box, .mTop .boxNoBorder {
	background: rgba(255,255,255,0.82) !important;
}

.cdrFlexThree .box .boxContent, .cdrFlexThree .boxnoBorder .boxContent {
	padding: 0 5px;
}

.cdrFlexThree .box h5, .cdrFlexThree .boxnoBorder h5 {
	margin: 0;
	margin-bottom: 7px;
}

/* Responsive: two per row */
@media (max-width: 991px) {
	.cdrFlexThree {
		justify-content: space-around;
	}
	.cdrFlexThree .box {
		flex: 1 1 calc(50% - 20px);
	}
}

/* Responsive: one per row */
@media (max-width: 500px) {
	.cdrFlexThree .box {
		flex: 1 1 100%;
		max-width: 100%;
	}
}

.smpButtonTop {
	cursor: pointer;
	display: inline-block;
	white-space: nowrap;
	background: #fff;
	border-radius: 7px;
	border: 1px solid #cfc984;
	padding: 2px 10px;
	color: #054c72;
	font-size: 16px;	
	font-weight: bold;
	font-style: normal;
	text-decoration: none;
	text-align: center;  
	transition: color 0.3s ease-in-out, background 0.3s ease-in-out;
}
.smpButtonTop:hover {
	color: #054c72;
	background: #cfc984;
}
