.header.static {
	background-color: var(--color__navy);
}

@media (max-width: 70em) {
	.header.static + .masterWrapper__body {
		margin-top: 8em;
	}
}



.newsGrid {
	
}

.newsGrid__entry h3 {
	margin-bottom: 0.3em;
} 

.newsGrid__entry h3 a {
	display: block;
	line-height: 1.4;
	color: #000;
	text-underline-offset: 0.15em;
}

	.newsGrid__entry h3 a:hover {
		color: var(--color__yellow);
	}

.newsGrid__entry time {
	display: block;
	font-size: var(--size-2);
	line-height: 1.3;
	color: var(--color__gray);
}

.newsGrid__intro {
	margin-top: 0.6em;
	font-size: var(--size-1);
}

.newsGrid__list {
	display: grid;
	gap: 1.5em;
	grid-template-columns: repeat(1, 1fr);
}

.newsGrid__list article:nth-child(n+5) h3 {
	font-size: 1em;
}

#live + .newsGrid {
	position: relative;
}

#live + .newsGrid:after {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
	
	width: 3em;
	height: 3em;
	background-color: var(--color__turkiz);
	content: "";
}






.novica  time {
	display: block;
	font-size: var(--size-2);
	line-height: 1.3;
	color: var(--color__gray);
}

.novica__intro {
	font-size: var(--size1);
}


.inlineGallery a {
	text-decoration: none;
	color: #000;
}

.inlineImage {
	display: block;
	margin-bottom: 1em;
	
	text-align: left;
	text-decoration: none;
	border: 1px solid var(--color__silver);
}

	.inlineImage img {
		display: block;
		width: 100%;
	}


.inlineGallery {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1em;
}
	
.inlineGallery .inlineImage {
	display: flex;
	flex-direction: column;
}

	.inlineGallery .inlineImage img {
		object-fit: cover;
		aspect-ratio: 1 / 1;
		width: 100%;
	}
	
.inlineImage__info {
	padding: 0.3em 0.5em;
	color: #000;
}

	.inlineImage__title {
		font-weight: 500;
		font-size: var(--size-1);
	}

	.inlineImage__desc {
		font-size: var(--size-2);
	}

.iframeWrap {
	aspect-ratio: 16 / 9;
}

.iframeWrap iframe {
	width: 100%;
	height: 100%;
}


.novica__gallery {
	display: grid;
	gap: var(--wrapper__padding);
	grid-template-columns: repeat(2, 1fr);
}


.novica a {
	color: inherit;
	text-underline-offset: 0.15em;
}

.novica a:hover {
	color: var(--color__yellow);
}

.novica ul,
.novica ol {
	margin-left: 2em;
}


.novica__attachments  {
	margin-bottom: 2em;
}

	.novica__attachments h2 {
		font-size: var(--size2);
	}

	.novica__attachments a span {
		color: var(--color__gray);
		font-size: var(--size-2);
	}



@media (min-width: 37em) {
	.newsGrid__list {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.inlineGallery {
		grid-template-columns: repeat(2, 1fr);
	} 
	
	.inlineGallery--count3,
	.inlineGallery--count6,
	.inlineGallery--count9 {
		grid-template-columns: repeat(3, 1fr);
	} 
}


@media (min-width: 70em) {
	.newsGrid__list {
		grid-template-columns: repeat(1, 1fr);
	}
	
	.newsGrid .layout1__left > .stack {
		position: sticky;
		top: var(--wrapper__paddingLarge);
	}
}