@media only screen and (orientation: portrait) {
	#newsroomheading{
		padding-top: 20vw;
		text-align: center;
	}
	#newscontainer{
		margin: 10vw;
	}
	.newsitem{
		transition-duration: 0.3s;
		margin-bottom: 20vw;
	}
	.newsitem:hover{transform: scale(1.005);}
	.newsitem:active{transform: scale(0.995);}
		.newsitemimage{
			flex-shrink: 0;
			border-radius: 0.5vw;
			height: 60vw;
			width: 80vw;
			object-fit: cover;
		}
		.newsitemcontent{
			margin-top: 4vw;
		}
			.newsheading{}
			.newscaption{font-weight: 600;margin-top:2vw;margin-bottom: 2vw;}
			.newstext{}
}

@media only screen and (orientation: landscape) {
	#newsroomheading{
		padding-top: 10vw;
		text-align: center;
	}

	#newscontainer{
		margin: 25vw;
		margin-top: 5vw;
	}

	.newsitem{
		display: flex;
		align-items: center;
		transition-duration: 0.3s;
		margin-bottom: 4vw;
	}
	.newsitem:hover{transform: scale(1.005);}
	.newsitem:active{transform: scale(0.995);}
		.newsitemimage{
			flex-shrink: 0;
			border-radius: 0.5vw;
			height: 15vw;
			width: 15vw;
			object-fit: cover;
		}
		.newsitemcontent{
			margin: 2vw;
		}
			.newsheading{}
			.newscaption{font-weight: 600;margin-top:0.5vw;margin-bottom: 0.05vw;}
			.newstext{}
}