div.newsTitleContainer {
	padding-top: 40px;
}

section#newnewsfeed {
	width: 100%;
	max-width: 1140px;
	margin: 0 auto;
	height: 300px;
	margin-bottom: 40px;

	position: relative;
	top: 0;
	left: 0;
}

section#newnewsfeed section.inner {
	width: 100%;
	height: 300px;

	overflow: hidden;

	position: relative;
	top: 0;
	left: 0;
}

section#newnewsfeed ol {
	list-style: none;
	margin: 0;
	padding: 0;

	position: absolute;
	top: 0;
	left: 0;
	height: 300px;

	display: flex;
	column-gap: 20px;

	transition: left 500ms ease-in-out;
}

section#newnewsfeed ol li {
	margin: 0;
	padding: 0;
	width: 300px;
}

section#newnewsfeed a {
	display: block;
	text-decoration: none;
}

section#newnewsfeed figure {
	width: 100%;
	max-width: 300px;
}

@media screen and (max-width: 599px) {
	section#newnewsfeed {
		max-width: calc(100vw * 0.9);
	}

	section#newnewsfeed ol li {
		width: calc(100vw * 0.9);
	}

	section#newnewsfeed figure {
		max-width: calc(100vw * 0.9);
	}
}

section#newnewsfeed figure img {
	display: block;
	width: 100%;
	height: 200px;
	object-fit: cover;
}

section#newnewsfeed figure figcaption {
	color: black;
	font-weight: 400;
	font-size: 18.2px;
	padding: 20px 20px 6px 3px;
	max-width: 80%;
}

section#newnewsfeed p {
	margin: 1em 0 0 0;
	font-size: 0.85em;
	line-height: 1.5em;
}

section#newnewsfeed aside {
	position: absolute;
	top: 100px;
	z-index: 9999;
	display: none;
}
section#newnewsfeed aside.show {
	display: block;
}
section#newnewsfeed aside.left {
	left: -70px;
}
section#newnewsfeed aside.right {
	right: -70px;
}
@media screen and (max-width: 1280px) {
	section#newnewsfeed aside.left {
		left: 0;
	}
	section#newnewsfeed aside.right {
		right: 0;
	}
}
section#newnewsfeed aside span {
	display: block;
	width: 40px;
	height: 50px;
	background-color: #c0c0c0;
	opacity: 0.5;
	font-size: 2.5rem;
	font-weight: 800;
	color: white;
	line-height: 1em;
	cursor: pointer;

	display: grid;
	align-content: center;
	justify-content: center;
}
section#newnewsfeed aside span:hover {
	opacity: 1;
}

@media screen and (max-width: 599px) {
	section#newnewsfeed aside span {
		opacity: 1;
		outline: 5px solid rgba(255, 255, 255, 0.5);
		background-color: #333333;
	}
}

