.timwir-marquee {
	overflow: hidden;
	padding: 12px 0;
}

.timwir-marquee-track {
	display: flex;
	width: max-content;
	animation: timwirMarquee var(--timwir-marquee-duration, 18s) linear infinite;
	animation-direction: var(--timwir-marquee-direction, normal);
}

.timwir-marquee:hover .timwir-marquee-track {
	animation-play-state: paused;
}

.timwir-marquee-item {
	white-space: nowrap;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.timwir-marquee-item-logo {
	display: block;
	width: auto;
	height: 28px;
	max-width: 140px;
	object-fit: contain;
}

@keyframes timwirMarquee {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

.timwir-animated-button-wrap {
	display: inline-block;
	position: relative;
}

.timwir-animated-button {
	display: inline-block;
	padding: 20px 54px;
	text-decoration: none;
	font-weight: 700;
	position: relative;
	z-index: 1;
	transition: all 0.25s ease;
}

.timwir-animated-button-wrap::before {
	content: "";
	position: absolute;
	inset: -4px;
	background: linear-gradient(90deg, #ce4cff, var(--timwir-btn-glow, #19cde1));
	filter: blur(10px);
	opacity: 0.85;
	z-index: 0;
}

.timwir-anim-pulse .timwir-animated-button {
	animation: timwirPulse 1.8s ease-in-out infinite;
}

.timwir-anim-shine .timwir-animated-button::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.34) 50%, transparent 70%);
	transform: translateX(-100%);
	animation: timwirShine 2s linear infinite;
}

@keyframes timwirPulse {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.03); }
}

@keyframes timwirShine {
	to { transform: translateX(100%); }
}

.timwir-breadcrumb ol {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.timwir-breadcrumb li {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.timwir-breadcrumb a {
	text-decoration: none;
}

.timwir-timeline {
	position: relative;
	padding-left: 22px;
}

.timwir-timeline::before {
	content: "";
	position: absolute;
	left: 8px;
	top: 0;
	bottom: 0;
	width: 2px;
	background: #d8e1ef;
}

.timwir-timeline-item {
	position: relative;
	margin-bottom: 18px;
}

.timwir-timeline-dot {
	position: absolute;
	left: -14px;
	top: 6px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #10c98d;
}

.timwir-timeline-body h4 {
	margin: 0 0 6px;
}

.timwir-timeline-body {
	display: block;
}

.timwir-timeline-date {
	display: inline-block;
	font-size: 12px;
	background: #eef3fb;
	padding: 2px 8px;
	border-radius: 14px;
	margin-bottom: 6px;
}
