/* Award images responsive sizing */
.award-image {
	max-width: 136px;
	height: auto;
}

@media (max-width: 768px) {
	.award-image {
		max-width: 90px;
	}
}

@media (max-width: 576px) {
	.award-image {
		max-width: 70px;
	}
}

/* Testimonial quote icons fix */
.porto-testimonial .testimonial {
	overflow: visible;
	padding-left: 1rem;
}

.porto-testimonial .testimonial blockquote::before {
	left: -0.5rem !important;
}

/* Blog post card images - uniform height */
.row-gutter-sm .card-img-top {
	height: 231px;
	overflow: hidden;
}

.row-gutter-sm .card-img-top img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

