.td-news-pagination {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	margin-top: 30px;
}

.td-news-pagination__more-wrap {
	grid-column: 1;
}

.td-news-pagination__more {
	display: inline-flex;
	width: 240px;
	height: 48px;
	align-items: center;
	justify-content: center;
	border-radius: 6px;
	color: #fff;
	background: var(--td-green, #5ac80b);
	font-size: 16px;
	font-weight: 400;
	line-height: 1;
	text-decoration: none;
	transition: background-color .2s ease, opacity .2s ease;
}

.td-news-pagination__more:hover,
.td-news-pagination__more:focus-visible {
	color: #fff;
	background: var(--td-green-dark, #4caf08);
	outline: 0;
}

.td-news-pagination__more.is-loading {
	opacity: .65;
	pointer-events: none;
}

.td-news-pagination__pages {
	display: flex;
	grid-column: 2;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.td-news-pagination__page {
	display: grid;
	width: 48px;
	height: 48px;
	place-items: center;
	border-radius: 6px;
	color: var(--td-ink, #070707);
	background: var(--td-surface, #fff);
	font-size: 16px;
	font-weight: 400;
	line-height: 1;
	text-decoration: none;
	transition: color .2s ease, background-color .2s ease;
}

.td-news-pagination__page:hover,
.td-news-pagination__page:focus-visible,
.td-news-pagination__page.is-current {
	color: #fff;
	background: var(--td-green, #5ac80b);
	outline: 0;
}

.td-news-pagination__page.is-arrow {
	font-size: 18px;
}

@media only screen and (max-width: 700px) {
	.td-news-pagination {
		display: flex;
		flex-direction: column;
		margin-top: 24px;
		gap: 20px;
	}

	.td-news-pagination__more-wrap {
		width: 100%;
	}

	.td-news-pagination__more {
		width: 100%;
	}
}
