/*
 * Theme typography
 *
 */


@media only screen and (max-width: 600px) {

}
@media only screen and (min-width: 1000px) {

}
body {
	font-optical-sizing: auto;
	font-family: var(--font-primary);
	font-size: var(--font-size-default);
	font-weight: var(--font-weight-default);
	letter-spacing: var(--letter-spacing-default);
	line-height: var(--line-height-default);
	color: var(--base-text-color);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;

}
h1,
h2,
h3,
button,
.button,
nav {
	font-family: var(--font-secondary);
}
h1,
h2,
h3,
h4 {
	word-wrap: break-word;
	letter-spacing: .05rem;
	white-space: normal;
}
article > h1 {
	grid-column: 2 / -2;
/* oud, depricated
	margin: 5dvh 0;
	font-size: 5.4rem;
	line-height: 1.3;
	font-weight: 600;
	text-transform: none;
	padding: 0.5rem 0;
	color: var(--color-primary);
	display: flex;
	flex-wrap: wrap;
*/
	font-size: 3.7rem;
	font-weight: 900;
	letter-spacing: 0;
	margin-bottom: 8rem;
	line-height: 1.35;
	text-transform: uppercase;
	text-align: center;
}
@media only screen and (max-width: 550px) {
	article > h1 {
		grid-column: 1 / -1;
		margin: 0;
		font-size: 3.4rem;
		line-height: 1.3;
		max-width: 100%;
	}
}



/* h1 > span {
	background: var(--color-primary);
	color: var(--color-white);
	padding: 0 0.53ch;
} */
h1 > span.search-subject {
	padding: 0 2rem;
	background: var(--color-primary);
}
h2 {
	max-width: var(--container-size);
	width: 100%;
	font-size: 3.7rem;
	font-weight: 700;
	letter-spacing: 0.15rem;
	margin-bottom: 4rem;
	line-height: 1.35;
	text-transform: none;
	text-align: left;
}
@media only screen and (max-width: 550px) {
	h2 {
		font-size: 2.75rem;
		letter-spacing: 0.25rem;
	}
}
h1 em,
h2 em,
h3 em {
	font-style: normal;
	color: var(--color-secondary);
}
h2 span {
	display: block;
	font-size: 2.6rem;
	text-transform: uppercase;
	color: rgba(0,0,0,0.3);
}

article > * > h2 {
	margin-top: 0;
}


h2.full {
	max-width: 100%;
}



h3 {
	margin-top: 5rem;
	margin-bottom: 2rem;
	font-weight: 500;
	letter-spacing: 0.1rem;
	font-size: 2.75rem;
	line-height: 1.3;
}
.text-columns > .text > h3 {
	margin-top: 4rem;
}
p {
	margin-top: 1rem;
	margin-bottom: 2rem;
}
br.p-br {
	display: block;
	margin-top: 1rem;
	margin-bottom: 1rem;
}


@media only screen and (max-width: 480px) {

}

strong {
	font-weight: 600;
}







.text-uppercase {
	text-transform: uppercase;
}
.tiny-text {
	font-weight: 300;
	font-size: 9px;
}
.text-left {
    text-align: left;
}
.align-right,
.text-right {
	text-align: right;
}
.align-center,
.text-center {
	text-align: center;
}
.text-justify {
    text-align: justify;
}
.content.hidden {
	display: none;
}

.text-light {
	color: var(--tertiary-button-bg-color);
}


/* ************************* */

a {
	color: var(--primary-link-color);
	text-decoration: dashed underline;
	transition: all 250ms ease-in-out;
}
a:hover,
a:focus,
p a:hover,
p a:focus,
a.uline:hover,
a.uline:focus {
	color: var(--primary-link-color-hover);
	text-decoration: solid underline;
}
a:active {
	color: var(--color-primary-darker);
	text-decoration: dashed underline;
}

a.no-underline {
	text-decoration: none !important;
}
a.no-underline span.underline {
	text-decoration: underline !important;
}

a.anchor {
    display: block;
    position: relative;
    top: -80px;
    visibility: hidden;
}
a.file::before {
	display: inline-block;
	text-decoration: none !important;
	padding-right: 10px;
    font-family: 'Font Awesome 6 Pro';
	font-weight: 300;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
    content: "\f016";
    content: "\f15b";
}
a.pdf::before {
    content: "\f1c1";
}
a.xls::before {
    content: "\f1c3";
}
a.doc::before {
    content: "\f1c2";
}
a.ppt::before {
    content: "\f1c4";
}
a.jpg::before,
a.jpeg::before {
    content: "\f1c5";
}






blockquote {
    width: 100%;
	padding-left: 10%;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
	border-left: 2px solid var(--tertiary-text-color);
}

article li > strong {
	display: block;
}
ul.document-list {
	list-style: none;
	padding-left: 0;
}
ul.document-list li {
	padding-left: 0;
}