body {
	font-family: var(--wp--preset--font-family--helveticaneue);
}

/* TYPOGRAPHY */
h1, h2 {
	font-size: var(--wp--preset--font-size--36);
	font-weight: 550;
}
@media (min-width: 834px) {
	h1 {
		font-size: var(--wp--preset--font-size--60);
	}
	h2 {
		font-size: var(--wp--preset--font-size--60);
	}
}
@media (min-width: 1200px) {
	h1 {
		font-size: var(--wp--preset--font-size--80);
	}
}


/* Yoast Breadcrumbs */
.yoast-breadcrumbs {
	font-size: var(--wp--preset--font-size--16);
	z-index: 2;
}
.yoast-breadcrumbs > span {
	display: flex;
	align-items: center;
	gap: 4px;
}

/* BUTTONS */
.wp-block-buttons {
	width: 100%;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
}
.wp-block-button {
	width: 100%;
}
.wp-block-button__link {
	padding: var(--wp--preset--spacing--20);
}
@media (min-width: 834px) {
	.wp-block-button {
		width: auto;
		min-width: 0;
	}
	.wp-block-button__link {
		padding: var(--wp--preset--spacing--20) var(--wp--preset--spacing--60);
	}
}

/* links */
a {white-space: nowrap;}

/* LANDING HERO COVER */
.heroCover {
	padding: 80px 20px !important;
}
.heroCoverGroup {
	gap: 160px;
}
@media (min-width: 834px) {
  .heroCover {
	padding-top: 240px !important;
    padding-bottom: 320px !important;
  }
  .heroCoverGroup {
	gap: 60px;
  }
}

/* LAYOUT */
main {
  display: flex;
  flex-direction: column;
  z-index: 1;
}

.contentSize {
  position: relative;
  width: min(100% - var(--wp--preset--spacing--40), var(--contentWidth));
  margin-inline: auto;
}

.alignleft {
  align-items: flex-start;
  text-align: left;
}

.layoutFlexNoWrap {
  flex-wrap: nowrap;
}

/* sections */
.section {
  position: relative;
  grid-template-columns:
    1fr minmax(auto, 1280px)
    1fr !important;
  grid-gap: var(--wp--preset--spacing--20);
  padding: var(--wp--preset--spacing--60) 0;
}
@media (min-width: 834px) {
  .section {
    padding: var(--wp--preset--spacing--160) 0;
  }
}

.section h3 {
  padding-top: calc(
    var(--wp--preset--spacing--120) + var(--wp--preset--spacing--32)
  );
  margin-block-start: calc(
    (var(--wp--preset--spacing--120) + var(--wp--preset--spacing--20)) * -1
  ) !important;
}
@media (min-width: 1200px) {
	.section h3 {
		position: sticky;
  		top: 0;
	}
}

/* columns */
.columns {
  position: relative;
  width: 100%;
  grid-column: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 !important;
}


.imgReorderDesktop {
	display: none;
	visibility: hidden;
}
.imgReorderMobile {
	display: block;
	visibility: visible;
}
.imgReorderMobile img {
	height: 100%; 
    width: 100%; 
   	object-fit: cover;
}
@media (min-width: 834px) {
	.imgReorderDesktop {
		display: block;
		visibility: visible;
	}
	.imgReorderMobile {
		display: none;
		visibility: hidden;
	}
}


@media (min-width: 834px) {
	.columns {
		grid-template-columns: 240px 1fr !important;
		gap: var(--wp--preset--spacing--60) !important;
	}
	.columns.columnsBleedRight {
		grid-column: 2 / -1;
	}
}
@media (min-width: 1200px) {
	.columns {
		grid-template-columns: 240px 1fr !important;
		gap: var(--wp--preset--spacing--120) !important;
	}
}

.column {
	position: relative;
	width: 100%;
	min-width: 0;
}

/* image gallery */
.imgGallery {
	grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 834px) {
	.imgGallery {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (min-width: 1200px) {
	.imgGallery {
		grid-template-columns: repeat(4, 1fr);
		grid-auto-flow: column;
	}
}

.imgFullHeight {
	height:100%;
}

.imgFullHeight img {
	height: 100%; 
    width: 100%; 
   	object-fit: cover;
}
