/* 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 ========================== */
/**************PHOTO CARDS*************/
.card-highlight .card-content-content {
    padding: 10px 20px 20px;
	position: relative;
	z-index: 1;
}
.card-highlight h3, .card-highlight h2 {
	text-transform: uppercase;
	font-weight: 600;
}
.card-highlight {
    padding: 0;
    color: #fff;
    background-color: #275d38;
}

/**************PORTRAIT CARDS*************/
.card-vp {
	height: 100%;
}
.card-vp .card-vp-img-container {
    position: relative;
    overflow: hidden;
}
.card-vp .card-vp-img-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-size: top;
}
.card-vp .card-vp-area {
	height: unset;
}

/* Committee member cards */

.committee-card {
	display: flex;
    flex-direction: row;
    width: 100%;
    align-items: center;
	font-family: "Lato", sans-serif;
}
.committee-card:hover .committee-card-content {
	color: #fff;
	background-color: #275d38;
	transition: all 300ms;
}
.committee-card:hover .committee-card-content a{
	color: #fff;
}

.committee-card-content {
	background-color: #fff;
    width: 100%;
    border-radius: 10px;
    box-shadow: #c4c4c4 3px 0px 6px;
    padding: 20px 20px 20px 40px;
	margin-left: -20px;
}

.committee-card-content .name {
	font-weight: bold;
}

.committee-card-content .title, .committee-card-content a {
	font-size: 14px;
}


.committee-card .committee-image {
	z-index: 5;
	width: 100px;
}

.committee-card img {
	border-radius: 50%;
	width: 75px;
	height: 75px;
}

/*End mobile and up styles*/
/* ====================== Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 768px) {
/**************PHOTO CARDS*************/
	.card-content.card-highlight {
		display: flex;
	}
	.card-highlight img {
		width: 100%;
		height: 250px;
		object-fit: cover;
	}
	.card-highlight .card-content-photo, .card-highlight .card-content-photo p {
		height: 100%;
		flex: 3;
		margin: 0;
		object-fit: cover;
	}
	.card-highlight .card-content-content {
		flex: 4;
	}
	.card-highlight .card-content-content:before {
		content: "";
		position: absolute;
		width: 400px;
		height: 400px;
		margin-inline-start: -220px;
		top: 0;
		background: url(/academicaffairs/images/academic-programs/triangle.svg) no-repeat;
		background-size: 400px auto;
		z-index: -1;
	}


}/*end media query*/
/*End tablet and up styles*/
/* ====================== Landscape Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 992px) {
/**************PHOTO CARDS*************/
	.card-highlight .card-content-content:before {
		margin-inline-start: -224px;
        top: -20px;
	}
	.card-highlight img {
		height: 320px;
	}
	.card-content.card-highlight .button-border {
		width: 75%;
	}


}/*end media query*/
/*End landscape tablet and up styles*/
/* ====================== Desktop Only (Overrides Mobile and Tablet Styles) ========================== */
@media only screen and (min-width: 1200px) {
/**************PHOTO CARDS*************/
	.card-highlight img {
		        height: 290px;
	}


}/*end media query*/
/*End desktop only styles*/
/*END OF DOCUMENT*/
