/* ═══════════════════════════════════════════════════════════════════════
   FCW — Trust Badges Strip (fcw-tbs)
   Prefix: fcw-tbs__*
   Sleek grid presentation with beautiful cards, soft borders and transitions.
 ════════════════════════════════════════════════════════════════════════ */

.fcw-tbs {
	--fcw-tbs-bg-top: #ffffff;
	--fcw-tbs-bg-bottom: #f9fafb;
	--fcw-tbs-border: #f3f4f6;
	--fcw-tbs-accent: #862780;
	--fcw-tbs-font: 'Inter', sans-serif;

	background: linear-gradient(to bottom, var(--fcw-tbs-bg-top), var(--fcw-tbs-bg-bottom));
	border-top: 1px solid var(--fcw-tbs-border);
	border-bottom: 1px solid var(--fcw-tbs-border);
	font-family: var(--fcw-tbs-font);
}

.fcw-tbs__inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 56px 24px;
}

.fcw-tbs__header {
	text-align: center;
	margin-bottom: 40px;
}

.fcw-tbs__heading {
	font-size: 0.875rem;
	font-weight: 700;
	color: #6b7280;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	margin: 0 0 8px 0;
	line-height: 1.5;
}

.fcw-tbs__subheading {
	font-size: 0.875rem;
	color: #9ca3af;
	max-width: 560px;
	margin: 0 auto;
	line-height: 1.6;
}

.fcw-tbs__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	width: 100%;
}

@media (max-width: 1024px) {
	.fcw-tbs__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	.fcw-tbs__grid {
		grid-template-columns: 1fr;
	}
	.fcw-tbs__inner {
		padding: 40px 16px;
	}
}

.fcw-tbs__card {
	background-color: #ffffff;
	border: 1px solid var(--fcw-tbs-border);
	border-radius: 16px;
	padding: 24px;
	text-decoration: none;
	color: inherit;
	display: flex;
	flex-direction: column;
	height: 100%;
	transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.fcw-tbs__card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 32px rgba(0, 0, 0, 0.05);
	border-color: rgba(134, 39, 128, 0.15);
}

.fcw-tbs__card-head {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 16px;
}

.fcw-tbs__icon-box {
	width: 56px;
	height: 56px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease;
}

.fcw-tbs__card:hover .fcw-tbs__icon-box {
	transform: scale(1.08);
}

.fcw-tbs__icon-box i {
	font-size: 24px;
	color: #ffffff;
	line-height: 1;
}

.fcw-tbs__card-title {
	font-size: 1.25rem;
	font-weight: 800;
	color: #111827;
	margin: 0 0 2px 0;
	letter-spacing: -0.02em;
}

.fcw-tbs__card-status {
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--fcw-tbs-accent);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	display: block;
}

.fcw-tbs__card-desc {
	font-size: 0.875rem;
	color: #6b7280;
	line-height: 1.6;
	margin: 0 0 16px 0;
	flex: 1;
}

.fcw-tbs__card-foot {
	border-top: 1px solid #f9fafb;
	padding-top: 16px;
	margin-top: auto;
}

.fcw-tbs__card-foot span {
	font-size: 0.75rem;
	font-weight: 600;
	color: #9ca3af;
	display: block;
	line-height: 1.4;
}
