/* Industries Grid — base structural styles.
   Colors, spacing, typography etc. are controlled live from the
   Elementor Style tab; this file only holds layout structure. */

.igw-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	width: 100%;
}

.igw-card {
	display: flex;
	flex-wrap: nowrap;
	align-items: stretch;
	overflow: hidden;
	box-sizing: border-box;
}

.igw-image-col {
	flex: 0 0 45%;
	max-width: 45%;
	min-width: 0;
	overflow: hidden;
	box-sizing: border-box;
}

.igw-image-col img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.igw-content-col {
	flex: 1 1 auto;
	min-width: 0;
	padding: 24px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/* Image position: right (default order is image then content) */
.igw-image-right .igw-card {
	flex-direction: row-reverse;
}

/* Alternate image side per row */
.igw-alternate-yes .igw-card:nth-child(even) {
	flex-direction: row-reverse;
}

.igw-heading {
	margin: 0 0 12px;
}

.igw-description {
	margin: 0 0 16px;
}

.igw-feature-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.igw-feature-list.igw-list-disc {
	list-style: disc;
	padding-left: 20px;
}

.igw-feature-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 10px;
}

.igw-feature-icon {
	flex: 0 0 auto;
	width: auto;
	display: inline-flex;
	align-items: center;
	line-height: 1.4;
}

.igw-feature-icon i {
	display: inline-block;
	width: 1em;
	font-size: 1em;
}

.igw-feature-icon svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
	display: inline-block;
}

.igw-feature-text {
	flex: 1 1 auto;
}

/* Responsive fallback if Elementor responsive selectors are overridden */
@media (max-width: 1024px) {
	.igw-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767px) {
	.igw-grid {
		grid-template-columns: repeat(1, 1fr);
	}
	.igw-card {
		flex-direction: column !important;
	}
	.igw-image-col,
	.igw-content-col {
		max-width: 100%;
		flex-basis: 100%;
	}
}
