/* --------------------------------
Reset
-------------------------------- */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

ol,
ul,
li {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}



/* ------------------------------------------
 Elements
 ----------------------------------------- */

 img {
 	height: auto;
 	width: 100%;
 	max-width: 100%;
 	display: block;
 	border-style: none;
 }
 
 figcaption {
	text-align: center;
 }

 .block--image-left figure {
	max-width: 380px;
    justify-self: end;
 }

 /* Portrait Image Orientation - Size-Modification */
 
 
.block--top__sole figure img.portrait,
.block--wide-headline figure img.portrait	{
	max-height: 190px;
 	width: inherit;
	margin-left: auto;
	margin-right: auto;
	float: right;
}

@media only screen and (min-width: 490px) {
	.block--top__sole figure img.portrait,
   .block--wide-headline figure img.portrait	{
	   max-height: 320px;
	}
}

 @media only screen and (min-width: 715px) {
 	.block--top__sole figure img.portrait,
	.block--wide-headline figure img.portrait	{
		max-height: 460px;
 	}
 }

.block figure.block__thumbnail img.portrait {
	width: auto;
	margin-right: 0;
}

 a,
 a:visited,
 a:active {
 	color: var(--accent-color--secondary);
 	text-decoration: none;
 }
 
 a:hover {
 	color: var(--text-color);
 	text-decoration: underline;
 }



 /* Read More Link*/
 .rm-link {
 	color: var(--accent-color--secondary);
 	font-weight: 600;
 }

 button {
 	background-color: transparent;
 	border-style: none;
 	padding: 0;
 	cursor: pointer;
 }



 /* Form Elements */

 input,
 input[type="text"],
 input[type="email"],
 input[type="search"],
 textarea,
 select {
 	width: 100%;
 	font-family: interRegular;
 	background-color: #fff;
 	border: none;
 	padding: .4rem 0 .3rem .3rem;
 	border-radius: 8px;
 	color: var(--text-color);
 	box-shadow: none;
 }
 
  input[type="search"] {
	height: 2.5rem;
  }



