main {
	padding-bottom: 50px;
}
.department-header {
	margin-bottom: 15px;
	position: relative;
	max-height: 200px;
	overflow: hidden;
}
.department-header img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}
.most-heading {
	display: flex;
	flex-direction: row;
	align-items: baseline;
	gap: 15px;
}

.most-icon {
	max-width: 45px;
	height: fit-content;
}
/***********************
Terminology 
***********************/
.defintions p {
	padding: 0;
}
dt {
	font-weight: 600;
}	
dt::after {
	content: " - ";
}


/*********************
Cards
*********************/
.card-container {
	margin-top: 30px;
}
.card {
	flex: 1;
	min-width: 300px;
}
.card img {
	border: 1px solid #ddd;
	padding: 5px;
}
.card-content { 
	padding: 10px;
}

.sublinks {
	display: block;
	margin-bottom: 30px;
}
.most-resources {
	display: flex;
	flex-direction: row;
	gap: 25px;
	flex-wrap: wrap;
}
.most-card {
	display: flex;
	gap: 30px;
	flex-direction: column;
	max-width: 300px;
	min-width: 235px;
	border: 1px solid #ddd;
	padding: 15px;
}
.most-resources img {
	max-width: 300px;
	width: 100%;
}
.most-card .content {
	padding: 15px;
	padding-top: 0;
}
.most-footer {
	display: flex;
	gap: 30px;
	margin-top: 30px;
}
.ft-card {
	min-width: 250px;
}
/**********************
Two Column Content
**********************/
.dual-content {
	display: flex;
	flex-direction: row;
	gap: 50px;
	padding: 10px;
	flex-wrap: wrap;
}
.col-1 img {
	min-width: 200px;
	max-height: 450px;
	height: 100%;
}
figure {
	width: 80%;
}


/***********************
Terminology 
***********************/
.togContent {
	display: flex;
	transition: all 0.25s;
	flex-direction: column;
	margin-top: 10px;
}
.togContent {
	max-height: 0;
	opacity: 0;
	visibility: hidden;
	transition: max-height 1s;
}
.togCheck {
	display: none;
}
.togCheck:checked + .togContent {
	transition: all .7s cubic-bezier(.46,.03,.52,.96);
	transform: translateY(0%);
}
.togCheck:checked + .togContent {
	opacity: 1;
	visibility: visible;
	max-height: 200vh;
}

/**********************
FAQ List
**********************/
.faq-list label p {
	text-align: left;
	text-transform: initial;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid #ddd;
	font-weight: 600;
}
.faq-list .faq-question p::after {
	content: "⌄";
	font-size: 1rem;
}

.faq-list h2:after {
	content: "˅";
	display: flex;
	flex-direction: column;
	font-weight: 600;
	color: #7b7b7b;
}
.faq-list ul li {
	list-style: none;
}
.togContent ul li {
	list-style: initial;
}
/*************************
Button
*************************/
.button {
	border-width: 1px;
	color: #363636;
	cursor: pointer;
	justify-content: center;
	padding-top: calc(.5em - 1px);
	text-align: center;
}
.link-btn {
	display: block;    
	background-color: rgba(30,108,147,1);
	border-color: rgba(255,255,255,1);
	color: rgba(255,255,255,1);
	font-size: 1rem;
	line-height: normal;
	text-align: center;
	padding: 12px;
	border-radius: 3px;
}
/*************************
Media Queries
*************************/
@media only screen and (min-width: 900px) {
	figure {
		width: 100%;
	}
	.dual-content {
		display: flex;
		flex-direction: row;
		gap: 15px;
		padding: 10px;
		flex-wrap: nowrap;
	}
}
@media only screen and (min-width: 1200px) {

	.most-resources {
		flex-wrap: nowrap;
	}
}