/* Frill Thrills — homepage comfort promises (compact, dark) */

.ft-cp[hidden] {
	display: none !important;
}

.ft-cp {
	--ft-cp-font: Roboto, "Segoe UI", Arial, sans-serif;
	position: relative;
	margin: 0;
	margin-top: -3px;
	padding: 18px 16px 20px;
	background: #111111;
	border-bottom: none;
	font-family: var(--ft-cp-font);
}

.ft-cp__inner {
	width: min(1040px, 100%);
	margin: 0 auto;
	text-align: center;
}

.ft-cp__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ft-cp__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	padding: 0;
}

.ft-cp__icon {
	display: grid;
	place-items: center;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: #fff;
	border: none;
	box-shadow: none;
}

.ft-cp__icon img {
	display: block;
	width: 44px;
	height: 44px;
	object-fit: contain;
}

.ft-cp__title {
	display: block;
	max-width: 12em;
	font-family: var(--ft-cp-font);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.3;
	text-transform: uppercase;
	color: #faf7f4;
}

.ft-cp__line {
	display: block;
	max-width: 14em;
	font-family: var(--ft-cp-font);
	font-size: 12px;
	font-weight: 400;
	font-style: normal;
	line-height: 1.35;
	color: rgba(250, 247, 244, 0.72);
}

@media (max-width: 900px) {
	.ft-cp {
		padding: 16px 14px 18px;
	}

	.ft-cp__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 14px 10px;
	}

	.ft-cp__icon {
		width: 56px;
		height: 56px;
	}

	.ft-cp__icon img {
		width: 38px;
		height: 38px;
	}
}

@media (max-width: 480px) {
	.ft-cp__title {
		font-size: 10px;
	}

	.ft-cp__line {
		font-size: 11px;
	}
}
