/**
 * Карточки с птичкой (.stomarus-tick-cards)
 * Мобильный: 1 колонка. ≥640px: 2 или 3 колонки (data-columns).
 */

.stomarus-tick-cards {
	--stomarus-tick-cards-gap: clamp(16px, 2.5vw, 24px);
	--stomarus-tick-cards-pad: clamp(18px, 3vw, 28px);
	--stomarus-tick-cards-border: #eeeeee;
	--stomarus-tick-cards-head-gap: 10px;
	--stomarus-tick-cards-body-gap: 12px;
	width: 100%;
	box-sizing: border-box;
	font-family: 'Roboto', 'Arial', sans-serif;
}

.stomarus-tick-cards__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--stomarus-tick-cards-gap);
	width: 100%;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	list-style: none;
}

.stomarus-tick-cards__item {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin: 0;
	padding: var(--stomarus-tick-cards-pad);
	box-sizing: border-box;
	background: #fff;
	border: 1px solid var(--stomarus-tick-cards-border);
	text-align: left;
	min-width: 0;
}

.stomarus-tick-cards__head {
	display: flex;
	align-items: flex-start;
	gap: var(--stomarus-tick-cards-head-gap);
	width: 100%;
	margin: 0 0 var(--stomarus-tick-cards-body-gap);
}

.stomarus-tick-cards__icon {
	flex: 0 0 auto;
	width: 14px;
	height: 10px;
	margin-top: 0.35em;
	object-fit: contain;
}

.stomarus-tick-cards__title {
	margin: 0;
	font-weight: 700;
	font-size: clamp(1rem, 1.8vw, 1.125rem);
	line-height: 1.35;
	color: #333333;
}

.stomarus-tick-cards__body {
	margin: 0;
	font-size: clamp(0.9375rem, 2vw, 1rem);
	font-weight: 400;
	line-height: 1.55;
	color: #666666;
}

.stomarus-tick-cards__body p {
	margin: 0 0 0.65em;
}

.stomarus-tick-cards__body p:last-child {
	margin-bottom: 0;
}

.stomarus-tick-cards__body strong,
.stomarus-tick-cards__body b {
	font-weight: 700;
	color: #333333;
}

.stomarus-tick-cards__body a {
	color: var(--color-text, #2b2b2b);
	text-decoration: underline;
}

.stomarus-tick-cards__body a:hover,
.stomarus-tick-cards__body a:active {
	color: var(--color-accent, #c4a27e);
}

@media (min-width: 640px) {
	.stomarus-tick-cards[data-columns="2"] .stomarus-tick-cards__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.stomarus-tick-cards[data-columns="3"] .stomarus-tick-cards__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}
