.tx-news-strip {
	--tx-news-navy: #173b68;
	--tx-news-orange: #ee654b;
	--tx-news-border: #dedede;
	width: 100%;
}

.tx-news-strip__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 32px;
}

.tx-news-strip .tx-news-strip__label {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0;
	color: #777;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .15em;
	line-height: 1.2;
	text-transform: uppercase;
}

.tx-news-strip__label span {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--tx-news-orange);
}

.tx-news-strip__all,
.tx-news-strip__link {
	color: var(--tx-news-orange);
	font-weight: 700;
	text-decoration: none;
}

.tx-news-strip__all:hover,
.tx-news-strip__all:focus,
.tx-news-strip__link:hover,
.tx-news-strip__link:focus {
	color: var(--tx-news-navy);
}

.tx-news-strip__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	overflow: hidden;
	border: 1px solid var(--tx-news-border);
	border-radius: 12px;
}

.tx-news-strip__item {
	display: flex;
	min-width: 0;
	min-height: 260px;
	padding: 30px;
	flex-direction: column;
	align-items: flex-start;
}

.tx-news-strip__item + .tx-news-strip__item {
	border-left: 1px solid var(--tx-news-border);
}

.tx-news-strip__outlet {
	margin: 0 0 16px;
	color: var(--tx-news-navy);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .12em;
	line-height: 1.3;
	text-transform: uppercase;
}

.tx-news-strip .tx-news-strip__headline {
	display: -webkit-box;
	overflow: hidden;
	margin: 0 0 20px;
	color: #222;
	font-family: "Open Sans", sans-serif;
	font-size: clamp(16px, 1.2vw, 19px);
	font-weight: 700;
	line-height: 1.35;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	line-clamp: 4;
}

.tx-news-strip__date {
	margin-top: auto;
	color: #888;
	font-size: 15px;
}

.tx-news-strip__link {
	margin-top: 20px;
	font-size: 15px;
}

@media (max-width: 1023px) {
	.tx-news-strip__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.tx-news-strip__item:nth-child(odd) {
		border-left: 0;
	}

	.tx-news-strip__item:nth-child(n + 3) {
		border-top: 1px solid var(--tx-news-border);
	}
}

@media (max-width: 600px) {
	.tx-news-strip__header {
		margin-bottom: 22px;
	}

	.tx-news-strip__grid {
		grid-template-columns: 1fr;
	}

	.tx-news-strip__item {
		min-height: 0;
		padding: 24px;
	}

	.tx-news-strip__item + .tx-news-strip__item {
		border-top: 1px solid var(--tx-news-border);
		border-left: 0;
	}
}
