/**
 * WebXtrm Service Pillars Widget Styles
 */

.wx-sp-wrap {
	width: 100%;
	display: flex;
	justify-content: center;
	box-sizing: border-box;
}

.wx-sp-wrap * {
	box-sizing: border-box;
}

/* ===== GRID ===== */
.wx-sp-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: 1fr;
	gap: 16px;
	max-width: 1200px;
	width: 100%;
}

/* ===== CARD ===== */
.wx-sp-card {
	background: #0f131a;
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 14px;
	padding: 22px;
	display: flex;
	flex-direction: column;
	transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
	height: 100%;
}

.wx-sp-card:hover {
	background: #111620;
	border-color: rgba(0, 201, 240, 0.25);
	transform: translateY(-5px);
	box-shadow: 0 16px 40px rgba(0, 201, 240, 0.08);
}

/* ===== ICON BADGE ===== */
.wx-sp-icon-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 10px;
	background: rgba(0, 201, 240, 0.1);
	border: 1px solid rgba(0, 201, 240, 0.2);
	margin-bottom: 14px;
	transition: background 0.3s ease, border-color 0.3s ease;
}

.wx-sp-card:hover .wx-sp-icon-badge {
	background: rgba(0, 201, 240, 0.18);
	border-color: rgba(0, 201, 240, 0.4);
}

.wx-sp-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #00c9f0;
}

.wx-sp-icon svg {
	width: 22px;
	height: 22px;
	fill: #00c9f0;
	color: #00c9f0;
	display: block;
}

.wx-sp-icon i {
	font-size: 22px;
	color: #00c9f0;
	line-height: 1;
}

/* ===== TITLE & SUBTITLE ===== */
.wx-sp-title {
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.3;
	margin-bottom: 4px;
}

.wx-sp-subtitle {
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	font-weight: 400;
	color: #9aacbd;
	line-height: 1.4;
	margin-bottom: 14px;
}

/* ===== SERVICES LIST ===== */
.wx-sp-services {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 9px;
}

.wx-sp-service {
	display: flex;
	align-items: flex-start;
	gap: 8px;
}

.wx-sp-service-check {
	width: 12px;
	height: 12px;
	flex-shrink: 0;
	margin-top: 4px;
	stroke: #00c9f0;
}

.wx-sp-service-text {
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	font-weight: 500;
	color: #ffffff;
	line-height: 1.4;
}
