/**
 * Header — son paylaşımlar kayan şerit.
 */

body.akyuz-brand .akyuz-recent-ticker {
	width: 100%;
	padding: 8px 0 6px;
	border-top: none;
	border-bottom: 1px solid rgba(200, 205, 212, 0.45);
	background: linear-gradient(180deg, rgba(244, 245, 247, 0.6), transparent);
}

body.akyuz-brand .akyuz-recent-ticker__inner {
	max-width: 90%;
	margin: 0 auto;
	padding: 0 15px;
	display: flex;
	align-items: center;
	gap: 14px;
}

body.akyuz-brand .akyuz-recent-ticker__label {
	flex: 0 0 auto;
	margin: 0;
	color: #003a8c;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	line-height: 1.2;
	white-space: nowrap;
	opacity: 0.85;
}

body.akyuz-brand .akyuz-recent-ticker__viewport {
	flex: 1 1 auto;
	min-width: 0;
	overflow: hidden;
	position: relative;
	mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
	-webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

body.akyuz-brand .akyuz-recent-ticker__track {
	display: flex;
	width: max-content;
	will-change: transform;
	animation: akyuz-recent-ticker-scroll 38s linear infinite;
}

body.akyuz-brand .akyuz-recent-ticker:hover .akyuz-recent-ticker__track,
body.akyuz-brand .akyuz-recent-ticker:focus-within .akyuz-recent-ticker__track {
	animation-play-state: paused;
}

body.akyuz-brand .akyuz-recent-ticker__group {
	display: inline-flex;
	align-items: center;
	gap: 0;
	padding-right: 48px;
}

body.akyuz-brand .akyuz-recent-ticker__item {
	position: relative;
	display: inline-flex;
	align-items: center;
	padding: 0 22px 0 0;
	margin-right: 22px;
	color: #4b5563;
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0.02em;
	line-height: 1.3;
	text-decoration: none;
	white-space: nowrap;
	transition: color 0.25s ease, opacity 0.25s ease;
}

body.akyuz-brand .akyuz-recent-ticker__item::after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: linear-gradient(135deg, #0056c8, #6b7280);
	opacity: 0.55;
	transform: translateY(-50%);
}

body.akyuz-brand .akyuz-recent-ticker__group .akyuz-recent-ticker__item:last-child::after {
	display: none;
}

body.akyuz-brand .akyuz-recent-ticker__item:hover,
body.akyuz-brand .akyuz-recent-ticker__item:focus {
	color: #003a8c;
	opacity: 1;
}

@keyframes akyuz-recent-ticker-scroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

@media only screen and (max-width: 980px) {
	body.akyuz-brand .akyuz-recent-ticker {
		padding: 6px 0 5px;
	}

	body.akyuz-brand .akyuz-recent-ticker__inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 6px;
		padding: 0 15px;
	}

	body.akyuz-brand .akyuz-recent-ticker__label {
		font-size: 10px;
		letter-spacing: 0.12em;
	}

	body.akyuz-brand .akyuz-recent-ticker__viewport {
		width: 100%;
	}

	body.akyuz-brand .akyuz-recent-ticker__item {
		font-size: 12px;
		padding-right: 18px;
		margin-right: 18px;
	}

	body.akyuz-brand .akyuz-recent-ticker__track {
		animation-duration: 32s;
	}
}

@media (prefers-reduced-motion: reduce) {
	body.akyuz-brand .akyuz-recent-ticker__track {
		animation: none;
		flex-wrap: wrap;
		width: 100%;
	}

	body.akyuz-brand .akyuz-recent-ticker__group[aria-hidden="true"] {
		display: none;
	}

	body.akyuz-brand .akyuz-recent-ticker__viewport {
		overflow: visible;
		mask-image: none;
		-webkit-mask-image: none;
	}
}
