.blaek-fcc {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	overflow: hidden;
	align-items: flex-end;
	box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.1);
}

.blaek-fcc__media {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 0;
}

.blaek-fcc__media-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.blaek-fcc__media-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: calc(100% - var(--blaek-fcc-content-height, 350px));
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
	pointer-events: none;
	z-index: 1;
}

.blaek-fcc__content-wrapper {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	flex-grow: 1;
	width: 100%;
	min-height: 100%;
	isolation: isolate;
}

.blaek-fcc__content {
	width: 100%;
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	overflow: hidden;
}

.blaek-fcc__content::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
}

.blaek-fcc__content > * {
	position: relative;
	z-index: 1;
}

.blaek-fcc__title {
	margin: 0;
	font-weight: 700;
	line-height: 1.3;
}

.blaek-fcc__links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.blaek-fcc__link-item {
	margin: 0;
	padding: 0;
}

.blaek-fcc__link {
	display: inline-flex;
	align-items: center;
	gap: 0.35em;
	text-decoration: none;
	transition: color 0.2s ease, opacity 0.2s ease;
}

.blaek-fcc__link:hover {
	opacity: 0.8;
}

.blaek-fcc__link:focus {
	outline: 2px solid currentColor;
	outline-offset: 2px;
}

.blaek-fcc__link-icon {
	opacity: 0.8;
	display: inline-flex;
	flex-shrink: 0;
}

.blaek-fcc__link-icon svg {
	width: 6px;
	height: 10px;
}

.blaek-fcc__button-wrapper {
	margin-top: auto;
	padding-top: 0.5rem;
}

.blaek-fcc__button {
	display: inline-flex;
	align-items: center;
	gap: 0.35em;
	text-decoration: none;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	transition: color 0.2s ease, opacity 0.2s ease;
}

.blaek-fcc__button:hover {
	opacity: 0.8;
}

.blaek-fcc__button:focus {
	outline: 2px solid currentColor;
	outline-offset: 2px;
}

.blaek-fcc__button-icon {
	opacity: 0.9;
	display: inline-flex;
	flex-shrink: 0;
	position: relative;
}

.blaek-fcc__button-icon svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
	stroke: currentColor;
	transition: all 0.2s ease;
}

.blaek-fcc__button-icon svg path,
.blaek-fcc__button-icon svg * {
	fill: currentColor;
	stroke: currentColor;
	transition: all 0.2s ease;
}