/* @import "hamburgers.css"; */
/* wp 6.6.1 fixes */
:root :where(body) {
	background-color: var(--color-background, white);
	color: var(--color-foreground, black);
}
:root :where(.is-layout-flex) {
	row-gap: 15px;
	column-gap: 45px;
}

/* body {
    background-color: red;
} */

/* phpinfo adjustments */
:root {
	--php-dark-grey: rgb(218, 218, 218);
}
@media (prefers-color-scheme: dark) {
	.e {
		background-color: rgb(201, 201, 201);
	}
}

@keyframes fadeInAnimation {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.has-small-font-size p {
	font-size: var(--wp--preset--font-size--small);
}
/* footer icons */
svg,
img {
	min-height: 15px;
}
iframe {
	width: 100%;
}

:root footer {
	h2 {
		margin-bottom: 15px !important;
	}
	nav {
		gap: 15px;
	}
}

.header {
}
/* 
@media (max-width: 767px) {
} */

/* @media (max-width: 599px) { */
/* } */

.site-navigation ul.menu li.menu-item-has-children::after {
	display: none !important;
}
.site-navigation ul.menu li.menu-item-has-children {
	padding-inline-end: 0px !important;
}

.motog-content {
	h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
		line-height: 1;
	}
	.wp-block-separator {
		margin-left: 0 !important;
		width: 300px;
		border-top: 5px solid #e3edef;
	}
}

.grid-test {
	display: grid;
	grid-gap: 10px;
	grid-template-columns: 100px 1fr 1fr 100px;
	grid-template-rows: 100px 250px 100px;

	/* grid-template-rows: repeat(12, [row] auto  ); */
	/* grid-template-rows: min-content 1fr min-content; */
	background-color: #adadad;
	color: #444;
}

.a {
	grid-area: 2 / 1 / 4 / 3;
}
.b {
	margin-top: -50px;
	grid-area: 1 / 3 / 3 / -1;
}
/* .c {
	grid-area: 2 / 3 / 3 / 4;
}
.d {
	grid-area: 1 / 1 / 2 / 2;
}
.e {
	grid-area: 2 / 1 / 3 / 2;
}
.f {
	grid-area: 1 / 3 / 2 / 4; 
 } */
