.alignleft {
	max-width: 65vh;
	float: left;
	object-fit: cover;
	margin-right: 15px;
}

/* Faculty single profile (single-faculty.php) */
.faculty-profile-img img {
	width: 100%;
	border-radius: 6px;
	object-fit: cover;
}

.faculty-profile-card {
	background: #fff;
	border-radius: 6px;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
	padding: 2.5rem;
}

.faculty-name {
	font-size: 1.75rem;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 0.5rem;
}

.faculty-education {
	font-style: italic;
	margin-bottom: 0.75rem;
}

.faculty-position {
	font-weight: 700;
	margin-bottom: 1.5rem;
}

.faculty-meta {
	list-style: none;
	margin: 0 0 1.5rem;
	padding: 0;
}

.faculty-meta li {
	margin-bottom: 0.5rem;
}

.faculty-social {
	list-style: none;
	display: flex;
	gap: 0.75rem;
	margin: 0 0 1.5rem;
	padding: 0;
}

.faculty-social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 4px;
	background: #1e73be;
	color: #fff;
}

.faculty-social svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
}

.faculty-bio {
	font-style: italic;
}

#gallery-1 {
  margin: auto;
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
}

@media(min-width: 576px) {
  	#gallery-1.gallery-columns-4 {
		grid-template-columns: repeat(4, 1fr);
	}

	#gallery-1.gallery-columns-3 {
	grid-template-columns: repeat(3, 1fr);
	}

	#gallery-1.gallery-columns-2 {
	grid-template-columns: repeat(2, 1fr);
	}
}

#gallery-1 .gallery-item {
  float: left;
  margin-top: 10px;
  text-align: center;
}

#gallery-1 img {
  border: 2px solid #cfcfcf;
}

.gallery-columns-3 .gallery-item:nth-child(3n+1) {
    clear: both;
}


/*==== fri 7 aug 2026 ==== */

/*==== card-columns ==== */

.card-columns {
	display: grid;
	gap: 20px 15px;
	grid-template-columns: repeat(auto-fit , minMax(220px, 1fr));
	column-count: unset;
	orphans: unset;
	window: unset;

	@media (min-width: 768px) {
		grid-template-columns: repeat(auto-fit , minMax(300px, 1fr));
	}

	.card {
		margin-bottom: 0;
	}
}

.card-columns .card .card-body {
	display: grid;
	gap: 8px 15px;
	grid-template-columns: auto 1fr;
	padding: 20px 15px;

	@media (min-width: 768px) {
		padding: 20px;
	}

	img {
		width: auto;
		height: 35px;
		margin: 0;

		@media (min-width: 768px) {
			height: 50px;
		}
	}

	.ld-button {
		a {
			font-weight: 600;
			color: #132665;
			opacity: .7;
			transition: .3s ease all;

			&:hover {
				opacity: 1;
			}
		}
	}
}



/*====  fri 7 aug 2026  ==== */