/* Department CSS Document */
/*For mobile first adaptive design place styles for mobile and up in the mobile and up area.
Place styles for tablet and up inside the media query in the tablet and up area.
Place styles for desktop only inside the media query in the desktop only area.

For questions or media query training contact Web Development Services.
*/
/* ====================== Mobile and Up ========================== */
/*DIRECTORY CARDS*/
[data-uvu-section="4"] [data-uvu-region="1"] {
    grid-gap: 30px;
    display: grid;
}

/*COMMITTEE LIST*/
ul.committee-member-list {
    list-style-type: none;
    padding: 0;
}
ul.committee-member-list li {
    border-top: 1px solid #ddd;
    margin: 0;
	        -webkit-column-break-inside: avoid;
        page-break-inside: avoid;
        break-inside: avoid;
    padding: 20px 10px;
}
ul.committee-member-list h4 {
    margin-top: 0;
    font-weight: 500;
    color: #000;
}
ul.committee-member-list li p {
    margin: 0;
}

/*PARTNERS SECTION*/
[data-uvu-section="6"] [data-uvu-region="2"] {
    display: grid;
    grid-gap: 20px;
}

/*End mobile and up styles*/
/* ====================== Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 768px) {
	/*COMMITTEE LIST*/
	ul.committee-member-list {
		column-count: 2;
	}
	/*PARTNERS SECTION*/
	h2#partners {
		font-size: 36px;
	}
	[data-uvu-section="6"] [data-uvu-region="2"] p:first-child {
		width: 80%;
	}
	[data-uvu-section="6"] [data-uvu-region="2"] {
		grid-template-columns: 1fr 1fr;
		grid-gap: 0;
	}
}
/*end media query*/
/*End tablet and up styles*/
/* ====================== Landscape Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 992px) {
	/*DIRECTORY CARDS*/
	[data-uvu-section="4"] [data-uvu-region="1"] {
		grid-template-columns: 1fr 1fr;
	}
	/*COMMITTEE LIST*/
	ul.committee-member-list {
		column-count: 3;
	}

}
/*end media query*/
/*End landscape tablet and up styles*/
/* ====================== Desktop Only (Overrides Mobile and Tablet Styles) ========================== */
@media only screen and (min-width: 1200px) {
	[data-uvu-section="3"] [data-uvu-region="1"] {
		margin-top: 40px;
	}
}
/*end media query*/
/*End desktop only styles*/
/*END OF DOCUMENT*/
