.anb-top-stories,
.anb-top-stories *,
.anb-top-stories *::before,
.anb-top-stories *::after {
	box-sizing: border-box;
}

.anb-top-stories {
	display: grid;
	min-width: 0;
	width: min(100%, var(--anb-content));
	margin: clamp(34px, 6vw, 72px) auto;
	padding: clamp(24px, 4vw, 40px);
	gap: 24px;
	overflow: hidden;
	border: 1px solid rgba(34, 211, 238, 0.28);
	border-radius: 22px;
	background: linear-gradient(145deg, rgba(15, 22, 40, 0.98), rgba(5, 7, 13, 0.98));
}

.anb-top-stories__heading,
.anb-top-stories__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px 32px;
}

.anb-top-stories__heading h2 {
	margin: 6px 0 0;
	font-size: clamp(1.75rem, 4vw, 3rem);
	line-height: 1.05;
	letter-spacing: -0.035em;
}

.anb-top-stories__controls {
	display: flex;
	gap: 8px;
}

.anb-top-stories__controls button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	padding: 0;
	border: 1px solid rgba(34, 211, 238, 0.42);
	border-radius: 50%;
	background: rgba(34, 211, 238, 0.08);
	color: var(--anb-cyan);
	font: inherit;
	font-size: 1.3rem;
	cursor: pointer;
}

.anb-top-stories__controls button:hover:not(:disabled) {
	background: rgba(34, 211, 238, 0.16);
}

.anb-top-stories__controls button:disabled {
	opacity: 0.35;
	cursor: default;
}

.anb-top-stories__viewport {
	max-width: 100%;
	overflow-x: auto;
	overflow-y: hidden;
	padding: 3px 3px 14px;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-color: rgba(34, 211, 238, 0.5) rgba(148, 163, 184, 0.12);
	-webkit-overflow-scrolling: touch;
}

.anb-top-stories__track {
	display: grid;
	grid-auto-columns: clamp(270px, 37vw, 390px);
	grid-auto-flow: column;
	gap: 18px;
	width: max-content;
	margin: 0;
	padding: 0;
	list-style: none;
}

.anb-top-stories__slide {
	min-width: 0;
	scroll-snap-align: start;
}

.anb-top-stories__slide > div,
.anb-top-stories__slide .anb-news-card-wrap {
	height: 100%;
}

.anb-top-stories .anb-story-card__media img {
	height: 190px;
}

.anb-top-stories .anb-story-card__content {
	padding: 20px;
}

.anb-top-stories .anb-story-card__summary {
	-webkit-line-clamp: 3;
}

.anb-top-stories__footer p {
	max-width: 680px;
	margin: 0;
	color: var(--anb-muted);
	line-height: 1.55;
}

@media (max-width: 640px) {
	.anb-top-stories {
		width: calc(100% - 24px);
		margin-block: 34px;
		padding: 22px 14px;
		border-radius: 18px;
	}

	.anb-top-stories__heading,
	.anb-top-stories__footer {
		align-items: flex-start;
		flex-direction: column;
	}

	.anb-top-stories__heading {
		position: relative;
		padding-right: 108px;
	}

	.anb-top-stories__controls {
		position: absolute;
		top: 0;
		right: 0;
	}

	.anb-top-stories__track {
		grid-auto-columns: min(82vw, 330px);
	}

	.anb-top-stories__footer .anb-button {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.anb-top-stories__viewport {
		scroll-behavior: auto;
	}
}
