/* Blended Seitenleiste auf Mobile Geräten aus */
@media (max-width: 768px) {
  .page-list,
	.wp-block-page-list
		{
    display: none !important;
  }
}

/* Keine Silbentrennung im Titel */
.wp-block-post-title {
  white-space: normal;
  word-break: keep-all;
	text-align: center;
}

/* Markierung von Block nach Anker-Link */
:target {
  animation: highlightFade 2s ease-out;
}

@keyframes highlightFade {
  0%   { background-color: yellow; }
  100% { background-color: transparent; }
}