/* Industries We Empower — front-end styles */

.iwe-section {
	--iwe-max-width: 1220px;
	--iwe-accent: #e0335c;
	--iwe-accent-dark: #b32349; 
	--iwe-ink: #17161a;
	--iwe-gray: #6b6b70;
	--iwe-bg-page: #f7f2ee;
	--iwe-bg-icon-badge: #fbe1e6;
	--iwe-bg-tag: #fbe1e6;
	--iwe-tag-text: #93254a;
	--iwe-border: #ece4de;
	--iwe-card-shadow: 0 10px 30px rgba(23, 22, 26, 0.06);
	--iwe-list-shadow: 0 3px 10px rgba(23, 22, 26, 0.06);
/* 	background: #F0EBE3; */
/* 	padding: 64px 20px; */
	box-sizing: border-box;
}

.iwe-section *,
.iwe-section *::before,
.iwe-section *::after {
	box-sizing: border-box;
}

.iwe-inner {
	max-width: var(--iwe-max-width);
	width: 100%;
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(280px, 380px) 1fr;
	gap: 24px;
	align-items: start;
}

/* ---------- Column 1: industries list ---------- */

.iwe-col-list {
	background: transparent;
}

.iwe-list {
	list-style: none;
	margin: 0;
	padding: 0;
	position: relative;
}

.iwe-list::before {
	content: "";
	position: absolute;
	top: 22px;
	bottom: 22px;
	left: 21px;
	width: 1px;
	background: var(--iwe-border);
}

.iwe-list-item {
	position: relative;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 3px 0;
	cursor: pointer;
}

.iwe-list-dot {
	position: relative;
	z-index: 1;
	flex-shrink: 0;
	width: 11px;
	height: 11px;
	margin-left: 16px;
	border-radius: 50%;
	background: #fff;
	border: 2px solid #d8d2cb;
	transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.iwe-list-content {
	display: flex;
	align-items: center;
	gap: 12px;
	flex: 1;
	padding: 8px 18px;
	border-radius: 5px;
	background: transparent;
	box-shadow: none;
	transition: background 0.2s ease, box-shadow 0.2s ease;
}

.iwe-list-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

.iwe-list-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.iwe-list-label {
	font-size: 16px;
	font-weight: 400;
	color: var(--iwe-ink);
	flex: 1;
	transition: color 0.2s ease;
}

.iwe-list-item:hover .iwe-list-content {
	background: rgba(255, 255, 255, 0.6);
}

.iwe-list-item.is-active .iwe-list-dot {
	border-color: var(--iwe-accent);
	background: var(--iwe-accent);
	transform: scale(1.05);
}

.iwe-list-item.is-active .iwe-list-content {
	background: #ffffff;
/* 	box-shadow: var(--iwe-list-shadow); */
}

.iwe-list-item.is-active .iwe-list-label {
	color: var(--iwe-accent);
	font-weight: 400;
}

/* ---------- Panels (toggled by JS) ---------- */

.iwe-card {
	background: #fff;
	border-radius: 22px;
/* 	box-shadow: var(--iwe-card-shadow); */
	padding: 32px;
	position: relative;
	overflow: hidden;
}

.iwe-panel {
	display: none;
}

.iwe-panel.is-active {
	display: grid;
	grid-template-columns: minmax(220px, 1fr) minmax(260px, 1.05fr);
	gap: 36px;
	align-items: stretch;
}

/* ---------- Panel content (left side of card) ---------- */

.iwe-panel-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
}

.iwe-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 18px;
}

.iwe-badge-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	flex-shrink: 0;
	border-radius: 10px;
	background: var(--iwe-bg-icon-badge);
}

.iwe-badge-icon img {
	width: 20px;
	height: 20px;
	object-fit: contain;
}

.iwe-badge-label {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--iwe-accent);
}

.iwe-panel-title {
	font-size: 24px;
	line-height: 1.28;
	font-weight: 600;
	color: var(--iwe-ink);
	margin: 0 0 16px;
}

.iwe-panel-description {
	font-size: 14.5px;
	line-height: 1.7;
	color: var(--iwe-gray);
	margin: 0 0 26px;
	max-width: 46ch;
}

.iwe-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	align-self: flex-start;
	padding: 12px 22px;
	border: 1.5px solid var(--iwe-ink);
	border-radius: 4px;
	color: #5D5D5D;
	font-size: 11px;
	font-weight: 500;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease;
}

.iwe-btn:hover {
	background: var(--iwe-ink);
	color: #fff;
}

/* ---------- Panel side (right side of card: image + tags stacked) ---------- */

.iwe-panel-side {
	display: flex;
	flex-direction: column;
	gap: 20px;
	min-width: 0;
}

.iwe-panel-image {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	background: var(--iwe-bg-page);
	width: 100%;
	aspect-ratio: 16 / 10;
}

.iwe-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	object-position: center top;
	display: block;
	margin: 0;
}

.iwe-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.iwe-tag {
	display: inline-flex;
	align-items: center;
	padding: 8px 16px;
	background: #FFF2F2;
	color: #616161;
	font-size: 10px;
	font-weight: 400;
	border-radius: 3px;
	white-space: nowrap;
}

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
	.iwe-inner {
		grid-template-columns: 1fr;
	}
	.iwe-panel.is-active {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 560px) {
	.iwe-section {
		padding: 40px 14px;
	}
	.iwe-card {
		padding: 22px;
	}
	.iwe-panel-title {
		font-size: 22px;
	}
}
