.ic-2bac59a7-grid {
	display: grid;
	gap: 20px;
	width: 100%;
}

.ic-2bac59a7-card {
	background: #fff;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	position: relative;
	display: flex;
	flex-direction: column;
}

.ic-2bac59a7-image-wrap {
	width: 100%;
	height: 250px;
	overflow: hidden;
	position: relative;
	cursor: pointer;
    display: flex; /* Flex container prevents inline bottom gaps */
    align-items: stretch;
}

.ic-2bac59a7-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
	display: block;
    margin: 0;
    padding: 0;
}

.ic-2bac59a7-overlay {
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
	color: #fff;
    pointer-events: none;
    height: 100%;
    margin: 0;
}

.ic-2bac59a7-image-wrap:hover .ic-2bac59a7-overlay {
	opacity: 1;
}

/* New Hover Effect Applied Directly to Image */
.ic-2bac59a7-image-wrap:hover .ic-2bac59a7-image {
    transform: scale(1.05);
    filter: grayscale(100%) brightness(0.8);
}

.ic-2bac59a7-hover-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    /* Added drop shadow for better visibility over images */
    filter: drop-shadow(0px 2px 4px rgba(0,0,0,0.5));
}

.ic-2bac59a7-card-content {
	padding: 20px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.ic-2bac59a7-title {
	margin: 0 0 10px;
	font-size: 1.25rem;
}

.ic-2bac59a7-desc {
	margin-bottom: 15px;
	flex-grow: 1;
}

.ic-2bac59a7-obs {
	font-size: 0.9em;
	color: #666;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.ic-2bac59a7-hl {
	font-weight: bold;
	font-size: 1.1em;
	color: #000;
	margin-top: auto;
}

/* Custom Lightbox */
.ic-2bac59a7-lightbox {
	position: fixed;
	top: 0; left: 0; width: 100vw; height: 100vh;
	background: rgba(0,0,0,0.9);
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}
.ic-2bac59a7-lightbox.active {
	opacity: 1;
}
.ic-2bac59a7-lightbox img {
	max-width: 90%;
	max-height: 90vh;
	border-radius: 8px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.5);
	transform: scale(0.95);
	transition: transform 0.3s ease;
}
.ic-2bac59a7-lightbox.active img {
	transform: scale(1);
}
.ic-2bac59a7-lightbox-close {
	position: absolute;
	top: 20px; right: 30px;
	color: #fff;
	font-size: 40px;
	cursor: pointer;
	line-height: 1;
	user-select: none;
}
