/* ============================================
   Business Types Grid Block — Frontend Styles
   ============================================ */

:root {
	--taskipfb-offer-font: 'IBM Plex Sans', sans-serif;
}

.taskipfb-bt {
	width: 100%;
	background: linear-gradient( 135deg, #f7fbfb 0%, #eff7f5 30%, #e8f4f1 55%, #e1f0ed 75%, #d9ece8 100% );
	font-family: var( --taskipfb-offer-font );
}

.taskipfb-bt-container {
	margin: 0 auto;
	padding: 0 32px;
	width: 100%;
	box-sizing: border-box;
}

/* ── Header ── */
.taskipfb-bt-header {
	text-align: center;
	margin-bottom: 48px;
}

.taskipfb-bt-badge {
	display: inline-block;
	padding: 5px 16px;
	border: 1px solid #00B289;
	border-radius: 100px;
	font-size: 14px;
	font-weight: 500;
	color: #00B289;
	background: #ffffff;
	margin-bottom: 20px;
}

.taskipfb-bt-heading {
	font-size: clamp( 28px, 4vw, 44px );
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: #182230;
	margin: 0 auto 16px;
	max-width: 620px;
}

.taskipfb-bt-description {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.65;
	color: #475467;
	max-width: 540px;
	margin: 0 auto;
}

/* ── Grid ── */
.taskipfb-bt-grid {
	display: grid;
	grid-template-columns: repeat( 4, 1fr );
	gap: 20px;
}

/* ── Card ── */
.taskipfb-bt-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 32px 24px;
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 1px 4px rgba( 0, 0, 0, 0.04 );
	text-decoration: none;
	transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.taskipfb-bt-card:hover {
	box-shadow: 0 8px 30px rgba( 0, 0, 0, 0.08 );
	transform: translateY( -2px );
}

/* ── Icon ── */
.taskipfb-bt-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin-bottom: 16px;
}

.taskipfb-bt-icon-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.taskipfb-bt-icon-placeholder {
	display: block;
	width: 36px;
	height: 36px;
	background: #e5e7eb;
	border-radius: 6px;
}

/* ── Card Text ── */
.taskipfb-bt-card-title {
	font-size: 18px;
	font-weight: 600;
	color: #182230;
	margin: 0 0 8px;
	line-height: 1.3;
}

.taskipfb-bt-card-desc {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6;
	color: #475467;
	margin: 0;
}

/* ── Responsive ── */
@media ( max-width: 1024px ) {
	.taskipfb-bt-container {
		padding: 0 24px;
	}

	.taskipfb-bt-grid {
		grid-template-columns: repeat( 2, 1fr );
	}
}

@media ( max-width: 768px ) {
	.taskipfb-bt-container {
		padding: 0 16px;
	}

	.taskipfb-bt-grid {
		grid-template-columns: 1fr;
	}

	.taskipfb-bt-header {
		margin-bottom: 32px;
	}

	.taskipfb-bt-card {
		padding: 24px 20px;
	}
}
