/**
 * Egg Break Image Box / Feature Cards Elementor Widget Stylesheet
 *
 * @package EggBreakElements
 */

.egg-break-image-box-wrapper {
	width: 100%;
	box-sizing: border-box;
}

.egg-break-image-box-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	width: 100%;
	box-sizing: border-box;
}

.egg-break-image-box-item {
	display: flex;
	flex-direction: column;
	position: relative;
	overflow: hidden;
	height: 100%;
	border-radius: 24px;
	box-sizing: border-box;
	transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.egg-break-image-box-link {
	display: flex;
	flex-direction: column;
	height: 100%;
	width: 100%;
	text-decoration: none !important;
	color: inherit !important;
	border: 0;
	outline: none;
}

.egg-break-image-box-img-wrap {
	position: relative;
	width: 100%;
	height: 250px;
	overflow: hidden;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
	flex-shrink: 0;
}

.egg-break-image-box-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	display: block;
	border: 0;
	transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
}

.egg-break-image-box-content {
	background-color: #E23992;
	color: #ffffff;
	padding: 24px 24px 32px 24px;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	text-align: left;
	box-sizing: border-box;
}

.egg-break-image-box-title {
	color: #ffffff;
	font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.25;
	margin: 0 0 10px 0;
	padding: 0;
	word-break: break-word;
}

.egg-break-image-box-desc {
	color: rgba(255, 255, 255, 0.95);
	font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
	margin: 0;
	padding: 0;
	word-break: break-word;
}

/* Hover Effects */
.egg-break-image-box-grid.has-hover-lift .egg-break-image-box-item:hover {
	transform: translateY(-8px);
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.egg-break-image-box-grid.has-image-zoom .egg-break-image-box-item:hover .egg-break-image-box-img {
	transform: scale(1.06);
}

/* Tablet & Mobile Responsive */
@media (max-width: 1024px) {
	.egg-break-image-box-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
}

@media (max-width: 768px) {
	.egg-break-image-box-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.egg-break-image-box-img-wrap {
		height: 220px;
	}

	.egg-break-image-box-content {
		padding: 20px 20px 24px 20px;
	}

	.egg-break-image-box-title {
		font-size: 20px;
	}

	.egg-break-image-box-desc {
		font-size: 13px;
	}
}
