/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/

/* Homepage Featured Works: force fixed aspect ratio for thumbnails */
#oc-portfolio .portfolio-image {
  aspect-ratio: 4 / 3; /* adjust ratio as needed */
  overflow: hidden;
}

#oc-portfolio .portfolio-image a {
  display: block;
  height: 100%;
}

#oc-portfolio .portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Ensure overlay doesn’t block clicks to underlying link */
#oc-portfolio .portfolio-image .bg-overlay,
#oc-portfolio .portfolio-image .bg-overlay * {
  pointer-events: none;
}


