.latest-news__grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.latest-news__item {
	width: 100%;
	text-decoration: none;
	max-width: 528px;
}

.latest-news__item span {
  display: block;
	font-size: 1.5625rem;
	line-height: 1.36;
	margin: 20px 0 40px;
	padding-right: 44px;
	position: relative;
  color: var(--color-dark);
  font-family: var(--font-heading);
}

.latest-news__item span::after {
	position: absolute;
	content: "";
	top: 10px;
	right: 0;
	background-image: url("../../img/Arrows.svg");
	height: 24.45px;
	width: 27.125px;
}

@media screen and (min-width: 768px) {
	.latest-news__item {
		width: 48%;
	}

    .latest-news__item span {
      padding-right: 74px;
    }

	.latest-news__item span::after {
		width: 54.25px;
		height: 48.99px;
	}
}