.os-child-page-cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	margin: 32px 0;
}

.os-child-page-cards--cols-1 {
	grid-template-columns: 1fr;
}

.os-child-page-cards--cols-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.os-child-page-cards--cols-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.os-child-page-cards--cols-4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.os-child-page-card {
	height: 100%;
}

.os-child-page-card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: #ffffff;
	border: 1px solid #e7e7e7;
	border-radius: 18px;
	overflow: hidden;
	text-decoration: none;
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.os-child-page-card__link:hover,
.os-child-page-card__link:focus {
	transform: translateY(-4px);
	border-color: #d9d9d9;
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
	text-decoration: none;
}

.os-child-page-card__media {
	position: relative;
	aspect-ratio: 16 / 10;
	background: #f8f8f8;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
	box-sizing: border-box;
}

.os-child-page-card__image {
	display: block;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	object-position: center;
}

.os-child-page-card__placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #f4f4f4 0%, #ececec 100%);
}

.os-child-page-card__content {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	padding: 22px;
}

.os-child-page-card__title {
	margin: 0;
	color: #1d1d1d;
	font-size: 1.2rem;
	line-height: 1.3;
	font-weight: 700;
}

.os-child-page-card__subheadline {
	margin: 8px 0 0;
	color: #f26c21;
	font-size: 0.95rem;
	line-height: 1.45;
	font-weight: 600;
}

.os-child-page-card__excerpt {
	margin: 12px 0 0;
	color: #5d5d5d;
	font-size: 0.96rem;
	line-height: 1.6;
}

.os-child-page-card__cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	padding-top: 18px;
	color: #f26c21;
	font-size: 0.95rem;
	font-weight: 700;
}

.os-child-page-card__arrow {
	line-height: 1;
}

@media (max-width: 1024px) {
	.os-child-page-cards,
	.os-child-page-cards--cols-3,
	.os-child-page-cards--cols-4 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.os-child-page-cards,
	.os-child-page-cards--cols-2,
	.os-child-page-cards--cols-3,
	.os-child-page-cards--cols-4 {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.os-child-page-card__content {
		padding: 18px;
	}
}