.highstar-news-page {
	width: 100%;
	background: #fff;
	color: #061818;
}

.highstar-news-page__inner {
	width: min(100% - 40px, 1228px);
	margin: 0 auto;
	padding: clamp(96px, 10vw, 150px) 0 clamp(56px, 8vw, 110px);
}

.highstar-news-page__header {
	margin-bottom: clamp(28px, 4vw, 52px);
}

.highstar-news-page__title {
	margin: 0;
	color: #000;
	font-size: clamp(24px, 2vw, 32px);
	font-family: Arial, Helvetica, sans-serif;
	line-height: 1.05;
	letter-spacing: 0;
}

.highstar-news-categories {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 0 clamp(28px, 4vw, 48px);
}

.highstar-news-categories__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 9px 18px;
	border: 1px solid rgba(198, 207, 216, 0.9);
	border-radius: 999px;
	background: #fff;
	color: #061818;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.highstar-news-categories__link:hover,
.highstar-news-categories__link:focus,
.highstar-news-categories__link.is-active {
	border-color: #f0001e;
	background: #f0001e;
	color: #fff;
}

.highstar-news-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	align-items: stretch;
	gap: clamp(16px, 1.8vw, 24px);
}

.highstar-news-category-section {
	margin-bottom: clamp(46px, 6vw, 86px);
}

.highstar-news-category-section:last-child {
	margin-bottom: 0;
}

.highstar-news-section-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: clamp(20px, 2.8vw, 36px);
}

.highstar-news-section-title {
	margin: 0;
	color: #000;
	font-size: clamp(16px, 2.2vw, 24px);
	font-family: Arial, Helvetica, sans-serif;
	line-height: 1.08;
	letter-spacing: 0;
}

.highstar-news-section-desc {
	max-width: 760px;
	margin: 10px 0 0;
	color: #6b7680;
	font-size: clamp(14px, 1.1vw, 17px);
	line-height: 1.6;
}

.highstar-news-carousel {
	position: relative;
	overflow: hidden;
}

.highstar-news-carousel__track {
	display: flex;
	gap: clamp(16px, 1.8vw, 24px);
	overflow-x: auto;
	padding: 2px 2px 18px;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}

.highstar-news-carousel__track::-webkit-scrollbar {
	display: none;
}

.highstar-news-carousel__track > .highstar-news-card {
	flex: 0 0 calc((100% - (clamp(16px, 1.8vw, 24px) * 2)) / 3);
	scroll-snap-align: start;
}

.highstar-news-carousel__controls {
	display: flex;
	flex: 0 0 auto;
	gap: 10px;
	align-items: center;
}

.highstar-news-category-section.is-static .highstar-news-carousel__controls {
	display: none;
}

.highstar-news-carousel__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: #061818;
	color: #fff;
	font-size: 0;
	line-height: 0;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.highstar-news-carousel__arrow::before {
	display: block;
	width: 9px;
	height: 9px;
	border-color: currentColor;
	border-style: solid;
	content: "";
}

.highstar-news-carousel__arrow--prev::before {
	margin-left: 3px;
	border-width: 0 0 2px 2px;
	transform: rotate(45deg);
}

.highstar-news-carousel__arrow--next::before {
	margin-right: 3px;
	border-width: 2px 2px 0 0;
	transform: rotate(45deg);
}

.highstar-news-carousel__arrow:hover,
.highstar-news-carousel__arrow:focus {
	background: #f0001e;
	color: #fff;
	transform: translateY(-2px);
}

.highstar-news-carousel__arrow:disabled {
	opacity: 0.28;
	cursor: default;
	transform: none;
}

.highstar-news-card {
	min-width: 0;
	min-height: 100%;
	margin: 0;
}

.highstar-news-card__link {
	position: relative;
	display: flex;
	height: 100%;
	min-height: 0;
	flex-direction: column;
	overflow: hidden;
	border: 0;
	border-radius: 6px;
	background: #fff;
	color: inherit;
	text-decoration: none;
	box-shadow: 0 8px 22px rgba(6, 27, 27, 0.06);
	transition: transform 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease;
}

.highstar-news-card__link::before {
	position: absolute;
	inset: 0;
	z-index: 1;
	border-radius: inherit;
	background:
		linear-gradient(
			90deg,
			rgba(245, 247, 248, 0) 0%,
			rgba(255, 255, 255, 0.72) 50%,
			rgba(245, 247, 248, 0) 100%
		);
	content: "";
	opacity: 0;
	pointer-events: none;
	transform: translateX(-100%);
}

.highstar-news-card__link:hover,
.highstar-news-card__link:focus {
	background: #fff;
	box-shadow: 0 16px 36px rgba(6, 27, 27, 0.14);
	transform: translateY(-4px);
}

.highstar-news-card__media {
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	background: linear-gradient(135deg, #f5f7f8, #eceff1);
	aspect-ratio: 16 / 9;
}

.highstar-news-card__media::before {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(
			100deg,
			rgba(236, 239, 241, 0) 0%,
			rgba(255, 255, 255, 0.72) 50%,
			rgba(236, 239, 241, 0) 100%
		);
	content: "";
	transform: translateX(-100%);
	animation: highstar-news-skeleton 1.25s ease-in-out infinite;
}

.highstar-news-card__image,
.highstar-news-card__placeholder {
	display: block;
	width: 100%;
	height: 100%;
}

.highstar-news-card__image {
	position: relative;
	z-index: 1;
	opacity: 0;
	object-fit: cover;
	transition: opacity 0.22s ease, transform 0.36s ease;
}

.highstar-news-card__image.is-loaded {
	opacity: 1;
}

.highstar-news-card__link:hover .highstar-news-card__image,
.highstar-news-card__link:focus .highstar-news-card__image {
	transform: scale(1.045);
}

.highstar-news-card__placeholder {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(135deg, rgba(240, 0, 30, 0.08), rgba(6, 24, 24, 0.03)),
		#f3f6f8;
}

.highstar-news-card__placeholder::before {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(
			100deg,
			rgba(236, 239, 241, 0) 0%,
			rgba(255, 255, 255, 0.72) 50%,
			rgba(236, 239, 241, 0) 100%
		);
	content: "";
	transform: translateX(-100%);
	animation: highstar-news-skeleton 1.25s ease-in-out infinite;
}

.highstar-news-card__body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	padding: clamp(14px, 1.6vw, 20px);
}

.highstar-news-card__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 14px;
	color: #6b7680;
	font-size: 13px;
	line-height: 1.4;
}

.highstar-news-card__category {
	color: #f0001e;
	font-family: Arial, Helvetica, sans-serif;
	text-align: right;
    font-size: 11px;
}

.highstar-news-card__title {
	margin: 0 0 28px;
	color: #000;
	font-size: clamp(12px, .5vw, 16px);
	font-family: Arial, Helvetica, sans-serif;
	line-height: 1.24;
	letter-spacing: 0;
	transition: color 0.2s ease;
}

.highstar-news-card__link:hover .highstar-news-card__title,
.highstar-news-card__link:focus .highstar-news-card__title {
	color: #f0001e;
}

.highstar-news-card__more {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: auto;
	color: #c8c8c8;
	font-size: 14px;
	font-family: Arial, Helvetica, sans-serif;
	line-height: 1;
	transition: color 0.2s ease;
}

.highstar-news-card__more span {
	display: inline-block;
	opacity: 0;
	transform: translateX(-6px);
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.highstar-news-card__link:hover .highstar-news-card__more,
.highstar-news-card__link:focus .highstar-news-card__more {
	color: #f0001e;
}

.highstar-news-card__link:hover .highstar-news-card__more span,
.highstar-news-card__link:focus .highstar-news-card__more span {
	opacity: 1;
	transform: translateX(4px);
}

.highstar-news-pagination {
	margin-top: clamp(34px, 5vw, 68px);
}

.highstar-news-is-paging .highstar-news-grid {
	opacity: 0.56;
	transform: translateY(8px);
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.highstar-news-pagination ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.highstar-news-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	min-height: 38px;
	padding: 8px 13px;
	border: 1px solid rgba(198, 207, 216, 0.9);
	border-radius: 999px;
	color: #061818;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.highstar-news-pagination .page-numbers.current,
.highstar-news-pagination a.page-numbers:hover,
.highstar-news-pagination a.page-numbers:focus {
	border-color: #f0001e;
	background: #f0001e;
	color: #fff;
	transform: translateY(-2px);
}

.highstar-news-page__empty {
	display: flex;
	min-height: 220px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin: 0;
	border-radius: 8px;
	background: linear-gradient(135deg, #f8fafb, #f2f5f6);
	color: #5f6872;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.6;
	text-align: center;
}

.highstar-news-page__empty p {
	margin: 0;
}

.highstar-news-page__empty-mark {
	display: block;
	width: 46px;
	height: 46px;
	margin-bottom: 14px;
	border: 2px solid rgba(240, 0, 30, 0.22);
	border-radius: 999px;
	position: relative;
}

.highstar-news-page__empty-mark::before,
.highstar-news-page__empty-mark::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 20px;
	height: 2px;
	background: rgba(240, 0, 30, 0.42);
	content: "";
	transform: translate(-50%, -50%);
}

.highstar-news-page__empty-mark::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

@keyframes highstar-news-skeleton {
	100% {
		transform: translateX(100%);
	}
}

.highstar-home-news {
	width: 100%;
	background: #fff;
	color: #061818;
}

.highstar-home-news__inner {
	width: min(100% - 40px, 1280px);
	margin: 0 auto;
	padding: clamp(52px, 7vw, 96px) 0 clamp(58px, 8vw, 110px);
}

.highstar-home-news__header {
	margin-bottom: clamp(24px, 3.2vw, 42px);
}

.highstar-home-news__title {
	margin: 0;
	color: #000;
	font-size: clamp(24px, 3vw, 40px);
	font-family: Arial, Helvetica, sans-serif;
	line-height: 1.08;
	letter-spacing: 0;
}

.highstar-home-news__grid {
	margin: 0;
}

.highstar-news-detail {
	width: 100%;
	background: #fff;
	color: #061818;
}

.highstar-news-detail__article,
.highstar-news-detail__post-nav,
.highstar-news-related {
	width: min(100% - 40px, 1228px);
	margin-right: auto;
	margin-left: auto;
}

.highstar-news-detail__article {
	padding: clamp(110px, 11vw, 160px) 0 0;
}

.highstar-news-detail__header {
	width: min(100%, 960px);
	margin-bottom: clamp(30px, 4vw, 54px);
}

.highstar-news-detail__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 16px;
	align-items: center;
	margin-bottom: 18px;
	color: #6b7680;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.4;
}

.highstar-news-detail__category {
	color: #f0001e;
}

.highstar-news-detail__title {
	margin: 0;
	color: #000;
	font-size: clamp(24px, 3vw, 32px);
	font-family: Arial, Helvetica, sans-serif;
	line-height: 1.05;
	letter-spacing: 0;
}

.highstar-news-detail__featured {
	margin: 0 0 clamp(36px, 5vw, 68px);
	overflow: hidden;
	border-radius: 8px;
	background: linear-gradient(135deg, #f5f7f8, #eceff1);
}

.highstar-news-detail__featured-image {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.highstar-news-detail__content {
	width: min(100%, 920px);
	margin: 0 auto;
	color: #2f393f;
	font-size: clamp(16px, 1.25vw, 18px);
	line-height: 1.78;
}

.highstar-news-detail__content > * {
	margin-top: 0;
	margin-bottom: 1.25em;
}

.highstar-news-detail__content h2,
.highstar-news-detail__content h3,
.highstar-news-detail__content h4 {
	margin-top: 1.8em;
	color: #061818;
	font-weight: 800;
	line-height: 1.18;
	letter-spacing: 0;
}

.highstar-news-detail__content h2 {
	font-size: clamp(26px, 3vw, 42px);
}

.highstar-news-detail__content h3 {
	font-size: clamp(22px, 2.2vw, 30px);
}

.highstar-news-detail__content img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
}

.highstar-news-detail__content a {
	color: #f0001e;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

.highstar-news-detail__page-links {
	display: flex;
	gap: 8px;
	align-items: center;
	margin-top: 34px;
	font-weight: 800;
}

.highstar-news-detail__post-nav {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(14px, 2vw, 24px);
	margin-top: clamp(42px, 6vw, 78px);
	padding-top: clamp(24px, 3vw, 38px);
	border-top: 1px solid rgba(198, 207, 216, 0.75);
}

.highstar-news-detail__post-nav-item a {
	display: flex;
	min-height: 112px;
	flex-direction: column;
	justify-content: center;
	padding: clamp(18px, 2vw, 26px);
	border-radius: 8px;
	background: #fff;
	color: #061818;
	text-decoration: none;
	box-shadow: 0 8px 22px rgba(6, 27, 27, 0.06);
	transition: color 0.2s ease, transform 0.24s ease, box-shadow 0.24s ease;
}

.highstar-news-detail__post-nav-item a:hover,
.highstar-news-detail__post-nav-item a:focus {
	color: #f0001e;
	box-shadow: 0 16px 36px rgba(6, 27, 27, 0.14);
	transform: translateY(-4px);
}

.highstar-news-detail__post-nav-item span {
	margin-bottom: 8px;
	color: #c8c8c8;
	font-size: 13px;
	font-family: Arial, Helvetica, sans-serif;
	line-height: 1;
	text-transform: uppercase;
}

.highstar-news-detail__post-nav-item strong {
	font-size: clamp(12px, .5vw, 16px);
	font-family: Arial, Helvetica, sans-serif;
	line-height: 1.25;
}

.highstar-news-detail__post-nav-item--next {
	text-align: right;
}

.highstar-news-related {
	padding: clamp(54px, 7vw, 94px) 0 clamp(64px, 8vw, 112px);
}

.highstar-news-related__header {
	margin-bottom: clamp(24px, 3.2vw, 42px);
}

.highstar-news-related__title {
	margin: 0;
	color: #000;
	font-size: clamp(24px, 3vw, 48px);
	font-family: Arial, Helvetica, sans-serif;
	line-height: 1.08;
	letter-spacing: 0;
}

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

	.highstar-news-carousel__track > .highstar-news-card {
		flex-basis: calc((100% - clamp(16px, 1.8vw, 24px)) / 2);
	}

	.highstar-news-detail__post-nav {
		grid-template-columns: 1fr;
	}

	.highstar-news-detail__post-nav-item--next {
		text-align: left;
	}
}

@media (max-width: 640px) {
	.highstar-news-page__inner {
		width: min(100% - 28px, 720px);
		padding-top: 88px;
	}

	.highstar-news-categories {
		margin-right: -14px;
		margin-left: -14px;
		padding: 0 14px 4px;
		flex-wrap: nowrap;
		overflow-x: auto;
		scrollbar-width: none;
	}

	.highstar-news-categories::-webkit-scrollbar {
		display: none;
	}

	.highstar-news-categories__link {
		flex: 0 0 auto;
	}

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

	.highstar-news-section-header {
		align-items: flex-start;
		flex-direction: column;
		gap: 16px;
	}

	.highstar-news-carousel__track > .highstar-news-card {
		flex-basis: 100%;
	}

	.highstar-home-news__inner {
		width: min(100% - 28px, 720px);
		padding-top: 42px;
	}

	.highstar-news-detail__article,
	.highstar-news-detail__post-nav,
	.highstar-news-related {
		width: min(100% - 28px, 720px);
	}

	.highstar-news-detail__article {
		padding-top: 88px;
	}

	.highstar-news-detail__meta {
		font-size: 13px;
	}
}
