/* CI deploy pipeline test 2026-07-17 (no functional change) */
/* GRS newsletter / single-post mobile fixes (ClickUp 86c8tb72g "Mobile Fixes")
 *
 * Of the 5 items Johannes flagged (Dez 2025), only the two newsletter-post-
 * template issues below still existed — the karriere / informationen / services
 * items were resolved incidentally by later content/design reworks.
 *
 * a) Breadcrumb <-> centered "inside" logo overlap: on mobile the breadcrumb
 *    wraps to a 2nd line (the current post title) and the following centered
 *    logo section rides up ~14px into it. Space the breadcrumb wrapper so the
 *    logo section clears it.
 * b) Oversized void before the "Diese Beiträge könnten Sie auch interessieren"
 *    related-posts slider: desktop spacing (slider inner-wrap padding-top 107px
 *    + .slider-bg margin-top 50px) stacks into a ~250px gap on mobile. Trim it.
 *
 * All hooks are stable Oxygen element-library classes, scoped to .single-post,
 * so the fix applies to every newsletter post (template-level), not just one.
 */

@media (max-width: 767px) {
	/* a) clear the wrapped breadcrumb below the centered logo */
	.single-post .oxel-breadcrumb-wrapper {
		margin-bottom: 28px;
	}

	/* b) tighten the related-posts slider top spacing */
	.single-post .section-slider > .ct-section-inner-wrap {
		padding-top: 28px;
	}
	.single-post .section-slider .slider-bg {
		margin-top: 0;
	}
}
