.news-article-page {
	display: flex;
	padding: 0 136px;
	flex-direction: column;
	gap: 36px;
}

.news-article__header {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
}

.news-article__title {
	width: 100%;
	word-wrap: break-word;
	color: var(--text-primary, #000);
	font-family: "Kyiv*Type Sans";
	font-size: var(--text-h2, 34px);
	font-style: normal;
	font-weight: 500;
	line-height: 110%;
}

.news-article__metadata {
	display: flex;
	gap: 14px;
}

.news-article__date,
.news-article__views {
	color: var(--text-secondary, #475569);
	font-family: Daikon;
	font-size: 14px;
	font-weight: 400;
	line-height: 140%;
	letter-spacing: 0.07px;
}

.news-article__views > img {
	margin-right: 4px;
}

.news-article__wrapper {
	display: grid;
	gap: 36px;
	grid-template-columns: repeat(3, 1fr);
	align-items: start;
}

.news-article__body {
	max-width: 100%;
	display: flex;
	padding: 16px;
	flex-direction: column;
	gap: 24px;
	flex: 1 0 0;
	grid-column: 1 / span 2;
	border-radius: var(--border-radius-card, 18px);
	background: var(--core-colors-neutral-White, #fff);
	box-shadow: -18px 52px 15px 0 rgba(136, 159, 205, 0),
		-12px 33px 14px 0 rgba(136, 159, 205, 0.01),
		-7px 19px 12px 0 rgba(136, 159, 205, 0.02),
		-3px 8px 9px 0 rgba(136, 159, 205, 0.03),
		-1px 2px 5px 0 rgba(136, 159, 205, 0.04);
}

.news-article__image {
	border-radius: var(--border-radius-card, 18px);
	background: #e7e7e9;
	overflow: hidden;
}

.news-article__image-item {
	width: 100%;
	height: auto;
	object-fit: cover;
}

.news-article__content {
	word-wrap: break-word;
	color: var(--text-primary, #000);
	font-family: Daikon;
	font-size: var(--text-body-reg, 18px);
	font-weight: 400;
	line-height: 140%;
}

.news-article__content > a {
	color: var(--text-accent, #0350a5);
	text-decoration: underline;
}

.news-article__navigation {
	display: flex;
	justify-content: space-between;
}

.news-article__nav-button {
	display: flex;
	align-items: center;
	gap: 16px;
	background: transparent;
	border: none;
	color: var(--button-primary-primary, #0350a5);
	font-family: Daikon;
	font-size: 16px;
	font-weight: 400;
	padding: 8px 0;
}

.news-article__nav-button--disabled {
	opacity: 0.6;
	cursor: not-allowed;
	pointer-events: none;
}

.news-article__sidebar {
	grid-column: 3 / span 1;
	position: sticky;
	top: 20px;
}

.news-article__sidebar .ua-saved-tab-section__title {
	color: var(--text-primary, #000);
	font-family: "Kyiv*Type Sans";
	font-size: var(--text-h4, 20px);
	font-style: normal;
	font-weight: 500;
	line-height: 110%;
	margin-bottom: 16px;
}

.news-article__related-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

@media screen and (max-width: 1440px) {
	.news-article-page {
		padding: 0 42px;
	}
}

@media screen and (max-width: 1279px) {
	.news-article__wrapper {
		display: flex;
		flex-direction: column;
	}

	.news-article__sidebar {
		width: 100%;
		position: relative;
		top: 0;
	}

	.news-article-page {
		padding: 0;
	}

	.news-article__title {
		font-size: var(--text-h2, 28px);
	}
}

@media screen and (max-width: 599px) {
    .navigation-button-text {
        display: none;
    }
}

.ua-news-list-item {
    border-radius: var(--border-radius-card, 18px);
    background: var(--core-colors-neutral-White, #FFF);
    box-shadow: -18px 52px 15px 0 rgba(136, 159, 205, 0.00),
        -12px 33px 14px 0 rgba(136, 159, 205, 0.01),
        -7px 19px 12px 0 rgba(136, 159, 205, 0.02),
        -3px 8px 9px 0 rgba(136, 159, 205, 0.03),
        -1px 2px 5px 0 rgba(136, 159, 205, 0.04);
}

.ua-news-list-item__link {
    display: flex;
    height: 126.25px;
    padding: 16px;
    flex-direction: column;
    gap: 8px;
    align-self: stretch;
}

.ua-news-list-item__link:hover,
.ua-news-list-item__link:focus {
    text-decoration: none;
    border-radius: var(--border-radius-card, 18px);
    outline: 1px solid var(--border-color-accent, #0350A5);
    box-shadow: -18px 52px 15px 0 rgba(136, 159, 205, 0.00),
        -12px 33px 14px 0 rgba(136, 159, 205, 0.02),
        -7px 19px 12px 0 rgba(136, 159, 205, 0.07),
        -3px 8px 9px 0 rgba(136, 159, 205, 0.12),
        -1px 2px 5px 0 rgba(136, 159, 205, 0.13);
    background: linear-gradient(0deg, var(--bg-hover, rgba(32, 101, 242, 0.10)) 0%,
        var(--bg-hover, rgba(32, 101, 242, 0.10)) 100%),
        var(--bg-content, #FFF);
}

.ua-news-list-item__date {
    color: var(--text-secondary, #475569);
    font-family: Daikon;
    font-size: 14px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0.07px;
}

.ua-news-list-item__title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    color: var(--core-colors-neutral-Black, #000);
    font-family: "Kyiv*Type Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
}
