.funicular-page-hero,
.funicular-page-hero *,
.funicular-blog,
.funicular-blog * {
	box-sizing: border-box;
}

.funicular-page-hero {
	position: relative;
	isolation: isolate;
	min-height: 270px;
	display: grid;
	place-items: center;
	overflow: hidden;
	background: #243914;
}

.funicular-page-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.34));
}

.funicular-page-hero__img {
	position: absolute;
	inset: 0;
	z-index: -2;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 44%;
}

.funicular-page-hero__content {
	width: min(920px, calc(100% - 32px));
	padding-top: var(--header-h, 68px);
	text-align: center;
	color: #fff;
}

.funicular-page-hero__title {
	margin: 0;
	color: inherit;
	font-family: var(--font-heading, Georgia, serif);
	font-size: clamp(38px, 5vw, 58px);
	font-weight: 400;
	line-height: 0.98;
	letter-spacing: 0;
	text-shadow: 0 2px 14px rgba(0, 0, 0, 0.36);
}

.funicular-page-hero__breadcrumbs {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 8px;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.3;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.funicular-page-hero__breadcrumbs a {
	color: inherit;
	text-decoration: none;
}

.funicular-page-hero__breadcrumbs a:hover {
	text-decoration: underline;
}

.funicular-blog {
	background: #fbfae8;
	padding: 34px 0 78px;
	color: #263a16;
}

#brx-content .funicular-blog__container {
	width: min(calc(100% - 48px), 920px);
	margin: 0 auto;
}

.funicular-blog__title {
	max-width: 300px;
	margin: 0 auto 10px;
	color: #2d3f1e;
	font-family: var(--font-heading, Georgia, serif);
	font-size: 35px;
	font-weight: 700;
	line-height: 0.95;
	text-align: center;
}

.funicular-blog__lead {
	max-width: 300px;
	margin: 0 auto 32px;
	color: #111;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.12;
	text-align: center;
}

.funicular-blog-list__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 48px;
	align-items: start;
}

.funicular-blog-card {
	min-width: 0;
	background: #fffdf2;
	border: 1px solid rgba(35, 52, 20, 0.12);
	border-radius: 2px;
	overflow: hidden;
}

.funicular-blog-card[hidden] {
	display: none;
}

.funicular-blog-card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 16px;
	color: #253719;
	text-decoration: none;
}

.funicular-blog-card__media {
	aspect-ratio: 1.9 / 1;
	width: 100%;
	margin: 0 0 12px;
	overflow: hidden;
	background: #f4dfb7;
}

.funicular-blog-card__img,
.funicular-blog-card__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.funicular-blog-card__placeholder {
	display: grid;
	place-items: center;
	background: linear-gradient(135deg, #fff2a9 0%, #e7b6f5 54%, #c6b9f0 100%);
}

.funicular-blog-card__placeholder span {
	position: relative;
	display: block;
	width: 32px;
	height: 24px;
	border: 3px solid rgba(255, 255, 255, 0.86);
}

.funicular-blog-card__placeholder span::before {
	content: "";
	position: absolute;
	right: 4px;
	top: 4px;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.86);
}

.funicular-blog-card__placeholder span::after {
	content: "";
	position: absolute;
	left: 4px;
	right: 4px;
	bottom: 3px;
	height: 9px;
	background:
		linear-gradient(135deg, transparent 0 48%, rgba(255, 255, 255, 0.86) 49% 52%, transparent 53%),
		linear-gradient(45deg, transparent 0 42%, rgba(255, 255, 255, 0.86) 43% 56%, transparent 57%);
}

.funicular-blog-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
}

.funicular-blog-card__category {
	display: block;
	margin-bottom: 3px;
	color: #bf8844;
	font-size: 8px;
	font-weight: 700;
	line-height: 1;
}

.funicular-blog-card__title {
	margin: 0 0 7px;
	color: #243914;
	font-family: var(--font-heading, Georgia, serif);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: 0;
}

.funicular-blog-card__excerpt {
	display: -webkit-box;
	margin: 0 0 15px;
	overflow: hidden;
	color: #111;
	font-size: 9px;
	font-weight: 700;
	line-height: 1.15;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 6;
}

.funicular-blog-card__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 18px;
	margin-top: auto;
	padding: 4px 12px;
	background: #243914;
	border-radius: 2px;
	color: #fff;
	font-size: 6px;
	font-weight: 800;
	letter-spacing: 0.04em;
	line-height: 1;
	text-align: center;
	text-transform: uppercase;
}

.funicular-blog-card__link:hover .funicular-blog-card__button,
.funicular-blog-card__link:focus-visible .funicular-blog-card__button {
	background: #16250c;
}

.funicular-blog-list__empty {
	margin: 0;
	text-align: center;
	color: #40562b;
	font-weight: 800;
}

.funicular-blog-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 30px;
}

.funicular-blog-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 15px;
	min-height: 15px;
	padding: 3px 5px;
	background: #edeed7;
	border: 0;
	color: #40562b;
	font-family: inherit;
	font-size: 9px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
}

.funicular-blog-pagination .page-numbers[hidden] {
	display: none;
}

.funicular-blog-pagination .page-numbers.current {
	background: #263a16;
	color: #fff;
}

.funicular-blog-pagination .page-numbers.prev,
.funicular-blog-pagination .page-numbers.next {
	min-width: 0;
	background: transparent;
	color: #bf8844;
}

@media (min-width: 1024px) {
	.funicular-page-hero {
		min-height: 330px;
	}
}

@media (max-width: 767px) {
	.funicular-page-hero {
		min-height: 235px;
	}

	.funicular-page-hero__content {
		width: min(100% - 32px, 360px);
	}

	.funicular-page-hero__title {
		font-size: 36px;
	}

	.funicular-blog {
		padding: 32px 0 58px;
	}

	#brx-content .funicular-blog__container {
		width: min(calc(100% - 56px), 320px);
	}

	.funicular-blog__lead {
		margin-bottom: 28px;
	}

	.funicular-blog__title {
		font-size: 31px;
	}

	.funicular-blog-list__grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 24px;
	}

	.funicular-blog-card__title {
		font-size: 18px;
	}

	.funicular-blog-card__excerpt {
		font-size: 11px;
	}

	.funicular-blog-card__button {
		min-height: 24px;
		font-size: 8px;
	}
}
