/* @override 
	https://part-brandenburg.de/neu/css/styles.css?* */



/* @group WEBFONTS */

/*	WEBFONTS
-------------------------------------------------------------------------------*/


/* atkinson-hyperlegible-next-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Atkinson Hyperlegible Next';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/atkinson-hyperlegible-next-v7-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* atkinson-hyperlegible-next-italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Atkinson Hyperlegible Next';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/atkinson-hyperlegible-next-v7-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* atkinson-hyperlegible-next-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Atkinson Hyperlegible Next';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/atkinson-hyperlegible-next-v7-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* atkinson-hyperlegible-next-700italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Atkinson Hyperlegible Next';
  font-style: italic;
  font-weight: 700;
  src: url('../fonts/atkinson-hyperlegible-next-v7-latin-700italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* @end */


/* @group RESET */

/*	RESET
-------------------------------------------------------------------------------*/




article, aside, figure, footer, header, hgroup, nav, section {display: block;}
img, object, embed {max-width: 100%; height:auto;}

/* force a vertical scrollbar to prevent a jumpy page */
html {overflow-y: scroll;}

blockquote, q {quotes: none;}

blockquote:before,
blockquote:after,
q:before,
q:after {content: ''; content: none;}

a {margin: 0; padding: 0; vertical-align: baseline;}
del {text-decoration: line-through;}
abbr[title], dfn[title] {border-bottom: 1px dotted #000; cursor: help;}

/* tables still need cellspacing="0" in the markup */
table {border-collapse: collapse; border-spacing: 0;}
th {font-weight: 800; vertical-align: bottom;}
td {font-weight: normal; vertical-align: top;}

input, select {vertical-align: middle;}

input[type="radio"] {vertical-align: text-bottom;}
input[type="checkbox"] {vertical-align: bottom; *vertical-align: baseline;}
input:focus, textarea:focus, select:focus { outline: none;}

input { /* remove top input shadow */
-webkit-appearance: none;
-moz-appearance: none;
}

*:focus:not(:focus-visible) { outline: none }

table {font-size: inherit; font: 100%;}

a:hover, a:active {outline: none;}
small {font-size: 85%;}
td, td img {vertical-align: top;}

strong, b { font-weight: 700; }

/* standardize any monospaced elements */
pre, code, kbd, samp {font-family: monospace, sans-serif;}

/* hand cursor on clickable elements */
.clickable,
label,
input[type=button],
input[type=submit],
button {cursor: pointer;}

/* Webkit browsers add a 2px margin outside the chrome of form elements */
button, input, select, textarea {margin: 0; border-radius: 0; font-family: inherit;}

/* make buttons play nice in IE */
button {width: auto; overflow: visible;}

/* let's clear some floats */
.clearfix:before, .clearfix:after { content: "\0020"; display: block; height: 0; overflow: hidden; }
.clearfix:after { clear: both; }
.clear { clear: both; height: 0px; overflow: hidden;}
.clr:after { content: ""; display: table; clear: both;}
.cf:after {	content: ""; display: table; clear: both; }

/* prevent flickering on touch */
* {
	-webkit-tap-highlight-color:transparent;
}

/* natural box layout model to all elements */
*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
 }

 /* subscript and superscript */
sub { vertical-align: sub; font-size: 70%; line-height: 0; }
sup { vertical-align: super; font-size: 70%; line-height: 0; }

/* fine-grained control over hyphenation in text */
* { hyphenate-limit-chars: 10 4 4; }


/* @end */


/* @group VARS */

/*	VARS
-------------------------------------------------------------------------------*/


:root {
	--base-font-size: 19px;
	--base-line-height: 1.6;
	--font-base: 'Atkinson Hyperlegible Next', Helvetica, sans-serif;
	
	--body-bg: #FFF;

	--color-red: #cc051c;
	--color-blue: #0063a6;
	--color-bg: #f5f5f5;
	--color-text: #111;
	--color-white: #fff;
	
	--text-color: #333;
	--link-color: var(--text-color);
	--link-color-hover: var(--color-blue);
	

	--container: 72rem;

	
	--text-tiny: 0.75rem;
	--text-small: 0.9rem;
	--text-base: var(--base-font-size);
	--text-large: 1.2rem;
	
	--text-tiny: calc(var(--base-font-size) * .65);
	--text-small: calc(var(--base-font-size) * .85);
	--text-base: var(--base-font-size); 
	--text-large: calc(var(--base-font-size) * 1.25);
	
	
	--default-width: calc((820/16) * 1rem);
	--wide-width: calc((1340/16) * 1rem);
	--semiwide-width: calc((1200/16) * 1rem);
	--full-width: 100%;
	
	--page-padding: 40px;

	--main-padding-top: clamp(4rem, 10vw, 6.0rem);
	--main-padding-bottom: clamp(5.6rem, 20vw, 8.4rem); 
		
 	--space-xs: 10px;
	--space-sm: 20px;
	--space-md: 30px; 	/* base (1.5rem, 4vw, 2rem)*/
	--space-lg: clamp(44px, 5vw, 50px);  /*2.5rem*/
	--space-xl: clamp(60px, 7vw, 80px); 	/*4rem */
	--space-xxl: clamp(80px, 11vw, 116px);  /* (5rem, 9vw, 7rem)*/
	--space-xxxl: clamp(100px, 14vw, 140px); /*(7rem, 12vw, 9rem)*/


	--block-gap: var(--space-md, 2rem);

	--columns-gap: clamp(30px, 5vw, 50px);
	
	--box-padding: clamp(25px, 5vw, 40px);
	
	--box-padding-sm: clamp(20px, 5vw, 30px);
	--box-padding-md: var(--box-padding);
	--box-padding-lg: clamp(25px, 5vw, 40px);
	--box-padding-xl: clamp(25px, 5vw, 60px);
	--box-padding-xxl: clamp(40px, 5vw, 80px);

	--radius: 8px;	
	
	--radius-card: 8px;
	--shadow-card: 0 0.75rem 2rem rgb(0 0 0 / 0.08);
	
	
	--space-section: clamp(4.5rem, 10vw, 7.5rem);
	--space-section-small: clamp(3.5rem, 8vw, 6rem);
	
}


 @media screen and (max-width: 840px) {
	 :root {
		--base-font-size: 18px;
	}
}



 @media screen and (max-width: 600px) {
	 :root {
		--page-padding: 20px;
	}
}

 @media screen and (max-width: 360px) {
	 :root {
		--base-font-size: 17px;
	}
}





/* @end */



/* @group GENERAL */


/* GENERAL
---------------------------------------------------------------------------------*/




html {
	height: 100%;
	scroll-behavior: smooth;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	 -webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	height: 100%;
	font-family: var(--font-base);
	font-size: var(--base-font-size);
	line-height: var(--base-line-height);
	color: var(--text-color);
	background: var(--body-bg);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
	color: var(--link-color);
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

a, input {
	transition: all 200ms ease;
}

a:visited {
}

a:active {
}

a:hover {
	color: var(--link-color-hover);
}



h1,
h2 {
  font-weight: 700;
  line-height: 1.22;
}

h1 {
	color: var(--color-blue);
	font-size: clamp(2rem, 4vw, 2.7rem);
}

h2 {
  color: var(--color-blue);
  font-size: clamp(1.55rem, 4vw, 2rem);
}

:where(p,ul,ol) {
	margin: var(--block-gap) 0 0 0;
}

.flow > *:first-child {
	margin-top: 0;
}

.flow > * + * {
	margin-top: var(--block-gap);
}


/* @end */



/* @group LAYOUT */

/* LAYOUT
---------------------------------------------------------------------------------*/

.container {
  width: min(100% - (2 * var(--page-padding)), var(--wide-width));
  margin-inline: auto;
}

.content-narrow {
  max-width: 72rem;
}

:where(.container) > :where(:not(div)) {
	max-width: 54rem;
}


/* @end */



/* @group CONTENT */

/* CONTENT
---------------------------------------------------------------------------------*/



.site-header {
  padding-block: clamp(2.3rem, 5vw, 4rem);
  background: var(--color-white);
}

.logo {
  display: inline-block;
  width: clamp(14rem, 18vw, 16rem);
}

.hero {
  color: var(--color-white);
 padding-block: clamp(6rem, 11vw, 8.8rem);
  background: var(--color-blue);
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.hero__image {
	position: relative;
	order: 2;
	height: clamp(400px, 40vw, 580px);

}

.hero__image-inner {
	position: absolute;
	width: 50vw;
	max-width: 1200px;
	height: 100%;
	border-radius: var(--radius);
	overflow: hidden;
}

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

.hero__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.hero h1 {
	font-size: clamp(2rem, 4vw, 3.05rem);
	color: #FFF;
	margin-bottom: 0;
}

.hero p {
	max-width: 43rem;
}

.hero h1 + p {
  margin-top: clamp(2.5rem, 4vw, 3.0rem);
}

.hero a {
	color: #FFF;
}

.hero a:hover {
	color: rgba(255,255,255, .6);
}

@media screen and (max-width: 980px) {
	.hero {
		padding: 0;
	}
	
	.hero__inner {
	  grid-template-columns: 1fr;
	  gap: 60px;
	  margin: 0;
	  width: 100%;
	}
	
	.hero__image {
		order: 0;
		height: clamp(320px, 70vw, 500px);
	}
	
	.hero__image-inner {
		display: contents;
	}
	
	.hero__content {
		padding-inline: var(--page-padding);
		padding-bottom: var(--space-section);
	}
}



main {
	min-height: 40vh;
}

.section {
  padding-block: var(--space-section);
}


main > .section:first-child {
	padding-top: calc(var(--space-section) * 0.3);
}

.section--muted {
  background: var(--color-bg);
}


.box {
	padding: var(--box-padding);
	background: var(--color-bg);
	border-radius: var(--radius);
}



/* COLUMNS
---------------------------------------------------------------------------------*/

.cols {
	display: grid;
	grid-template-columns: repeat(3, minmax(0,1fr));
	gap: 60px;
}

.col {
	container-type: inline-size;
	display: flex;
	flex-direction: column;
}

.col-1 {
}

.col-2 {
	grid-column: span 2;
}


@media screen and (max-width: 980px) {
	.cols {
	  grid-template-columns: repeat(1, minmax(0,1fr));
	}
	
	.col-2 {
		grid-column: 1;
	}
	
	.col-1 .card {
	max-width: calc(50% - 30px);
}

}

@media screen and (max-width: 680px) {
	.cols{
	  grid-template-columns: 1fr;
	}
	
	.col-1 .card {
	max-width: 100%;
}

}





/* ORGA
---------------------------------------------------------------------------------*/



.orga-grid {
	container-type: inline-size;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	grid-template-rows: auto auto;
	gap: 60px;	
}

/*
 * Both sections occupy the same two parent rows:
 * intro and cards.
 */
.orga-section {
	display: grid;
	grid-template-rows: subgrid;
	grid-row: 1 / span 2;
	row-gap: 2rem;
}

.orga-section--1 {
	grid-column: 1;
}

.orga-section--2 {
	grid-column: 2 / span 2;
}


.orga-section__intro {
	grid-row: 1;
}

.orga-section__cards {
	grid-row: 3;
	display: grid;
	grid-template-columns: subgrid;
	gap: 30px;
}

.orga-section--1 .orga-section__cards {
	grid-template-columns: 1fr;
}

.orga-section--2 .orga-section__cards {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.orga-card {
}

@media screen and (max-width: 980px) {
	
	.orga-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		AUS_grid-row: 1 / span 1;

	}
.orga-section--1,
.orga-section--2 {
	grid-column: auto;
}
	
	.orga-section--2 .orga-section__cards {
		grid-template-columns: auto;
		
	}	
}

@media (max-width: 680px ) {
	.orga-grid {
		grid-template-columns: minmax(0, 1fr);
		grid-template-rows: none;
		row-gap: 4rem;
	}

	.orga-section {
		grid-column: 1;
		grid-row: auto;
		grid-template-rows: none;
		row-gap: 1.5rem;
	}

	.orga-section__intro,
	.orga-section__cards {
		grid-row: auto;
	}

	.orga-section__cards {
		grid-template-columns: minmax(0, 1fr);
		row-gap: 1.5rem;
	}
}




/* CARDS
---------------------------------------------------------------------------------*/


.card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: var(--box-padding);
  background: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  justify-content: flex-start;  
}

.card__image {
	display: flex;
	aspect-ratio: 4/3;
}

.card__image a {
	flex: 1 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	max-width: 100%;
}

.card__image img {
  width: 100%;
  max-width: 20rem;
  padding: 10px;
  object-fit: contain;
}

.card__content {
	font-size: var(--text-small);
	flex: 1;
}


@media (max-width: 980px ) {


.card {
	margin-bottom: auto;
	}
}



/* JOBS
---------------------------------------------------------------------------------*/



.jobs {
  padding-block: var(--space-section-small);
}

.jobs h2 {
  margin-bottom: 2rem;
}

.jobs ul {
  margin: 0;
  padding-left: 1.2rem;
}

.jobs li + li {
  margin-top: 0.45rem;
}


/* @end */



/* @group FOOTER */

/* FOOTER
---------------------------------------------------------------------------------*/


.site-footer {
  padding-block: clamp(4rem, 8vw, 7rem);
  color: var(--color-white);
  background: var(--color-blue);
}

:where(.site-footer) a {
	color: #FFF;
}
:where(.site-footer) a:hover {
	color: rgba(255,255,255, .6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.footer-column {
}

.footer-menu {
	margin-top: var(--space-lg);
	display: flex;
	flex-direction: column;
	gap: 8px;
}



@media screen and (max-width: 980px) {
.footer-grid {
			grid-template-columns: 1fr;
	}
}




/* @end */




/* ------------------------------------------------------------------------------

MEDIA QUERIES

---------------------------------------------------------------------------------*/


@media screen and (max-width: 1136px) {
body:after {
	content: "<1136";
	position: fixed;
	top: 0;
	line-height: 1;
	padding: 5px;
	font-size: 11px;
	background: lawngreen;
	z-index: 1000;
	opacity: .8;

	display: none; /* AN/AUS*/
}

}


@media screen and (max-width: 1024px) {
body:after {
	content: "<1024";
	background: TAN;
}


}


@media screen and (max-width: 840px) {
body:after {
	content: "<840";
	background: PINK;
}

}


@media screen and (max-width: 600px) {
body:after {
	content: "<600";
	background: YELLOW;
}

}


@media screen and (max-width: 360px) {
body:after {
	content: "<360";
	background: MAGENTA;
}


}




/* END
---------------------------------------------------------------------------------*/


