.header-standard {
	position: relative;
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--gap-md);
	padding-top: var(--section-padding-md);
	padding-bottom: var(--section-padding-md);
}

.header-standard__img {
	position: relative;
	align-self: start;
}

.header-standard .preheader {
	text-transform: uppercase;
	font-weight: 800;
	margin-bottom: 10px;
	color: var(--color-content-text);
	letter-spacing: 1px;
	font-size: 14px;
}

.header-standard h1 {
	font-weight: 900;
	font-size: clamp(30px,2.5vw, 40px);
	line-height: initial;
	padding-top: 0;
	margin-bottom: 100px;
	letter-spacing: 0px;
}


.header-standard p {
	margin-bottom: 0px;
	color: var(--color-content-text);
}

.header-standard .postdate {
	font-size: 13px;
	margin-top: 15px;
}

.header-standard__squiggle {
	position: absolute;
	right: -7% !important;
	bottom: 5% !important;
	width: 30%;
	/* grid-column: 6 / span 2; */
	z-index: 1;
}
/*
.header-standard__squiggle img {
	width: 180px;
	height: 180px;
}
*/
.layout--image_right .header-standard__content {
	order: -1;
}
.header-standard__img img {
	display: block;
	width: 100%;
}
.header-standard__content {
	align-self: center;
	background-color: lightgray;
	padding: 3rem;
}


@media (min-width: 769px) {
	.header-standard__squiggle {
		left: auto;
		right: -40px;
		bottom: 40px;
	}
}

@media (min-width: 1300px) {
	.header-standard {
		grid-template-columns: repeat(12, 1fr);
	}
	.header-standard__img {
		grid-column: 1 / span 7;
	}
	.__header-standard__squiggle {
		left: auto;
		right: -10%;
		bottom: 10%;
	}
	.header-standard__content {
		grid-column: 8 / span 5;
	}
}

@media (min-width: 769px) and (max-width: 1299px) {
	.header-standard {
		grid-template-columns: repeat(12, 1fr);
	}
	.header-standard__img {
		grid-column: 1 / span 6;
	}
	.__header-standard__squiggle {
		left: auto;
		right: -10%;
		bottom: 10%;
	}
	.header-standard__content {
		grid-column: 7 / span 6;
	}
}

@media (max-width: 768px) {
	
	.header-standard__squiggle {
		left: 10% !important;
		top: -35px !important;
		width: 30%;
	}
	.header-standard {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.header-standard .block-has-default-bgimg {
		padding-top: 170px;
	}
	

	.header-standard__img {
		grid-column: 1 / span 2;
		margin-bottom: 0px;
	} 
	.header-standard__content {
		grid-column: 1 / span 2;
		padding: 1.5rem;
	}
}