.cornerstone-subcategory {
	margin: 40px 0;
	padding-bottom: 24px;
	border-bottom: 1px solid #eee;
}
.cornerstone-subcategory__title {
	font-size: 22px;
	font-weight: 700;
	margin: 0 0 16px;
}

.tier {
	margin-bottom: 16px;
}

/* Ярус 1 — опорные: горизонтальный блок картинка+заголовок+отрывок */
.tier--cornerstone {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.cs-card {
	display: flex;
	gap: 16px;
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 12px;
	text-decoration: none;
	color: inherit;
}
.cs-card__img {
	width: 160px;
	height: 160px;
	object-fit: cover;
	border-radius: 4px;
	flex-shrink: 0;
}
.cs-card__body {
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-width: 0;
}
.cs-card__title {
	font-size: 18px;
	font-weight: 700;
	color: #1c1c1e;
}
.cs-card__excerpt {
	font-size: 14px;
	color: #1a1a1a;
}
.cs-card__cta {
	font-size: 13px;
	font-weight: 600;
	color: #458500;
	margin-top: auto;
}

/* Ярус 2 — обзоры: тот же принцип, компактнее; --compact без отрывка */
.tier--reviews {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.rv-card {
	display: flex;
	gap: 10px;
	align-items: center;
	border: 1px solid #eee;
	border-radius: 6px;
	padding: 8px;
	text-decoration: none;
	color: inherit;
}
.rv-card__img {
	width: 90px;
	height: 90px;
	object-fit: cover;
	border-radius: 4px;
	flex-shrink: 0;
}
.rv-card__title {
	font-size: 14px;
	font-weight: 600;
	color: #1c1c1e;
}
.rv-card__excerpt {
	display: block;
	font-size: 12px;
	color: #1a1a1a;
	margin-top: 2px;
}
.rv-card--compact .rv-card__excerpt {
	display: none;
}

/* Ярус 3 теперь визуально идентичен ярусу 2 (тот же .rv-card),
   просто отдельным блоком ниже — данные не смешиваются, оформление общее. */
.tier--posts {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

@media (max-width: 600px) {
	.cs-card {
		flex-direction: column;
	}
	.cs-card__img {
		width: 100%;
		height: auto;
		aspect-ratio: 1 / 1;
	}
}

.tier-more-link {
	margin: 12px 0 0;
}
.tier-more-link a {
	font-weight: 600;
}
