.blanche-related-stories-slot { display: none !important; }
body.bl-has-related-stories .blanche-related-stories-slot { display: flex !important; }

.blanche-related-stories {
	width: 100%;
}

.blanche-related-stories__title {
	margin: 0 0 2rem;
	color: #000E25;
	font-family: "Source Serif 4", serif;
	font-size: clamp(1.75rem, 1.55rem + 0.65vw, 2.4rem);
	font-weight: 400;
	line-height: 1.12;
	letter-spacing: -0.015em;
}

.blanche-related-stories__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 2rem 1rem;
}

.blanche-related-stories__item {
	min-width: 0;
}

@media (max-width: 1024px) {
	.blanche-related-stories__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.blanche-related-stories__title {
		margin-bottom: 1.5rem;
	}
	.blanche-related-stories__grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
}