.news .items .item {
	display: flex;
	flex-wrap: wrap;
}

.news .items .item .img {
	position: relative;
	flex-grow: 0;
	flex-shrink: 0;
	width: 50%;
	background-position: center;
	background-size: cover;
}

.news .items .item .content {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	flex-grow: 0;
	flex-shrink: 0;
	justify-content: space-between;
	box-sizing: border-box;
	width: 50%;
	min-height: calc(28vw);
	padding: 71px 88px 60px;
	color: var(--color-bright);
	background-color: var(--color-primary);
}

.news .items .item .content .writing {
	padding-bottom: 17px;
	color: var(--color-extra-dark-snow);
	font: var(--font-tiny);
	text-transform: uppercase;
}

.news .items .item .content .subline {
	font-style: italic;
	font-weight: var(--fontweight-medium);
}

.news .items .item .content .text {
	margin-top: 30px;
}

.news .items .item .content .button {
	margin-top: 50px;
}

.news[data-slide="false"] .items .item:nth-child(2n + 2) .img {
	order: 2;
}

.news[data-slide="false"] .items .item:nth-child(2n + 2) .content {
	color: var(--color-black);
	background-color: var(--color-bright);
}

.news[data-slide="false"] .items .item:nth-child(2n + 2) .content .writing {
	color: var(--color-silver);
}

.news .owl-nav {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
	display: flex;
}

.news .owl-nav .owl-prev,
.news .owl-nav .owl-next {
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	width: 50px;
	height: 50px;
	padding-top: 1px;
	color: var(--color-bright);
	font-size: 26px;
	background-color: var(--dimmer-dark);
	pointer-events: all;
	transition: background-color 0.1s ease;
}

.news .owl-nav .owl-prev {
	padding-right: 2px;
}

.news .owl-nav .owl-next {
	padding-left: 2px;
}

body[data-device="desktop"] .news .owl-nav .owl-prev:hover,
body[data-device="desktop"] .news .owl-nav .owl-next:hover {
	background-color: var(--color-secondary);
}

@media (max-width: 1460px) {
	.news .items .item .content {
		padding: 49px 59px;
	}
}

@media (max-width: 950px) {
	.news .items .item .content {
		padding: 30px 36px;
	}

	.news .items .item .content .text {
		max-height: 200px;
		overflow-y: auto;
	}
}

@media (max-width: 780px) {
	.news .items .item .img {
		position: relative;
		width: 100%;
		padding-top: 50%;
	}

	.news .items .item .content {
		width: 100%;
	}

	.news[data-slide="false"] .items .item:nth-child(2n + 2) .img {
		order: 1;
	}

	.news[data-slide="false"] .items .item:nth-child(2n + 2) .content {
		order: 2;
	}

	.news[data-slide="true"] {
		background-color: var(--color-primary);
	}

	.news .items .item .content {
		width: var(--max-main-width);
		padding: 25px 0;
		margin: 0 auto;
	}

	.news[data-slide="false"] .items .item .content {
		color: var(--color-black);
		background-color: var(--color-bright);
	}

	.news[data-slide="false"] .items .item .content .writing {
		color: var(--color-silver);
	}

	.news .items .item .content .text {
		max-height: none;
	}
}

@media (max-width: 680px) {
	.news .items .item .img {
		padding-top: 60%;
	}

	.news .items .item .content .button {
		margin-top: 37px;
	}
}

@media (max-width: 520px) {
	.news .items .item .content {
		width: calc(100% - 20px - 20px);
		padding: 20px 0;
	}
}
