* {
	box-sizing: border-box;
	word-break: normal!important;
}

:focus {
	outline: none;
}

html {
  scroll-behavior: smooth;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

body {
	margin: 0;
	background-color: var(--body-bg-color);
	width: var(--body-width);
}

/* build a responsive square */

body .is-square {
  position: relative;
  display: flex;
}

body .is-square:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

body .is-square-content {
  position: absolute;
  width: 100%;
  height: 100%;
}

body .under-construction {
	border-left-width: 30px!important;
	border-left-style: solid!important;
	border-image: repeating-linear-gradient(45deg, black, black 25px, var(--accent-color) 25px, var(--accent-color) 50px)!important;
	border-image-slice: 60!important;
}


body .wp-block-navigation__responsive-container-open:not(.always-shown) {
	display: block !important;
}
body .wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) {
	display: none !important;
}

h1, h2, h3, h4 {
  scroll-margin-top: var(--default-scroll-margin-top);
}

a {
	text-decoration: none;
}

a:hover {
	color: var(--accent-color);
	text-decoration: none;
}



/* WP button styling*/

body div.wp-block-button {
	text-align: center;
}

body a.wp-block-button__link {
	color: black;
	background-color: #d3d3d3;
	border-radius: 5px;
	text-wrap: nowrap;
	padding: 0.5em 1em;
}

body a.wp-block-button__link::after {
	display: inline-block;
	content: url("https://neu.mur.at/wp-content/uploads/2026/01/link_icon.svg");
}

body a.wp-block-button__link:hover {
	background-color: #bababa;
	-webkit-transition: background-color 100ms linear;
  -ms-transition: background-color 100ms linear;
  transition: background-color 100ms linear;
}

/* End WP button styling*/



main {
	margin-top: 0;
}

header div.logo-container,
footer div.logo-container {
	padding: 0.5rem 0;
}



