/* =========================================================================
   Cards — "Конфиденциальные данные везде"
   ========================================================================= */
.cards {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 18px;
}
.card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	padding: 24px 20px;
	box-shadow: var(--shadow-sm);
	transition:
		transform 0.2s var(--ease),
		box-shadow 0.2s var(--ease),
		border-color 0.2s;
}
.card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
	border-color: #d9e2f0;
}
.card__ic {
	width: 44px;
	height: 44px;
	border-radius: 11px;
	background: var(--blue);
	color: #fff;
	display: grid;
	place-items: center;
	margin-bottom: 16px;
	box-shadow: 0 6px 14px -5px rgba(2, 89, 255, 0.5);
}
.card__ic-img {
	width: 52px;
	height: 52px;
	margin-bottom: 16px;
	display: block;
	object-fit: contain;
}
.card__ic svg {
	width: 22px;
	height: 22px;
}
.card--warn .card__ic {
	background: #fef2f2;
	color: var(--red);
	box-shadow: none;
}
.card h3 {
	font-size: 15.5px;
	margin-bottom: 7px;
}
.card p {
	font-size: 13.5px;
	color: var(--text-muted);
	line-height: 1.5;
}

.alert-pill {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 32px auto 0;
	width: max-content;
	max-width: 100%;
	padding: 10px 24px;
	border-radius: var(--r-pill);
	background: #fdecec;
	border: 1px solid #f7c9c9;
	color: #e5484d;
	font-size: 15px;
	font-weight: 700;
}
.alert-pill svg {
	width: 19px;
	height: 19px;
	flex: none;
	stroke-width: 2.2;
}

@media (max-width: 1080px) {
	.cards {
		grid-template-columns: repeat(3, 1fr);
	}
	.cards .card:nth-child(4),
	.cards .card:nth-child(5) {
		grid-column: span 1;
	}
}
@media (max-width: 680px) {
	.cards {
		grid-template-columns: 1fr 1fr;
	}
	.cards .card:nth-child(5) {
		grid-column: 1 / -1;
	}
}
@media (max-width: 460px) {
	.cards {
		grid-template-columns: 1fr;
	}
	.cards .card:nth-child(5) {
		grid-column: 1;
	}
}
