/* 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 ========================== */

.card.trip-leader {
	padding: 0;
	display: flex;
	flex-direction: column;
	background-color: #f9f9f9;
	border-radius: 8px;
}
.trip-leader .pic-name {
	display: flex;
	flex-direction: row;
	align-items: center;
background-color: white;
	border-radius: 8px;
	box-shadow: 0 3px 6px #00000029;
}
.trip-leader img {
	width: 50%;
	max-height: 100%;
	object-fit: contain;
	height: auto;
	margin-inline-end: 20px;
}
.pic-name h3, .pic-name .title {
	flex-basis: 66%;
}
.pic-name .title {
	font-weight: 700;
}
.pic-name div {
	text-align: left;
}
.pic-name h3 {
	font-size: 1.33em;
}
.trip-leader .bio {
	padding: 20px;
}
.bio dd {
	margin-bottom: 10px;
}

/* event cards */

		
.card-picture-8 {
	grid-template-rows: auto 1fr;
}
.card-picture-8 .card-picture-title {
	font-size: 1.75em !important;
}
.card-picture-8 .card-picture-content {
	
	font-size: 1.25em;
	color: #292929;
	margin-bottom: 60px;
}
.card-picture-8 .card-picture-button {
	border-bottom: 1px dotted var(--color-uvu-primary);
	color: #00843D;

	&:hover, &:focus {
		border-bottom: solid;
		text-decoration: none;
		border-width: 1px;
	}
}
.card-picture-8 .card-picture-img {
	aspect-ration: 250 / 280;
}




/* Process list */
.process{
	display: none;
}



.card-staff-5 .card-staff-portrait{
	display: none;
}




/*End mobile and up styles*/
/* ====================== Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 768px) {
	
.card.trip-leader {
	width: 90%;
}
	.trip-leader .pic-name {
	height: 230px;
	max-height: 230px;
}
	
.event-item .event-item-container {
		align-items: normal !important;
	}
	.event-item[data-component-event-style="1"] .event-details, .event-item[data-component-event-style="3"] .event-details {
		padding-top: 0;
	}
	.event-title {
		margin-top: 0;
	}
	.event-item[data-component-event-style="1"] .event-title {
		margin-top: 0;
	}
	
	.process{
	display: flex;
	flex-direction: row;
		list-style-type:none;
/* 	color:#275D38; */
		color: #fff;
	font: normal normal bold 20px/22px Lato;
		background-color: var(--color-uvu-primary);
}

	ul.process li {
    flex-direction: row;
/* 		border-top: none;
		border-bottom: none; */
		justify-content: space-between;
    align-items: center;
    justify-items: start;
    padding-right: 3px;
    margin: 5px;
padding-block: 15px;
}	
	
	ul.process li:not(:last-child):after{
	content: "\f054";
	font-family: "Font Awesome 5 Pro";
	font-size: 20px;
	font-weight: 100;
	padding-left: 15px;
	padding-bottom: 15px;
		border-bottom: none;
}

	.card-staff-5 .card-staff-portrait{
		display: block;
	background-color:  #e2e0e133;
}
	.contact-card.card-staff-5 .card-staff-portrait img {
    object-fit: contain;
	padding-inline: 10px;
	max-width: 100%;
	
}



}/*end media query*/
/*End tablet and up styles*/
/* ====================== Landscape Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 992px) {
	
.trip-leader img {
	width: 30%;
}
	

	





}/*end media query*/
/*End landscape tablet and up styles*/
/* ====================== Desktop Only (Overrides Mobile and Tablet Styles) ========================== */
@media only screen and (min-width: 1200px) {

	



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