/*
 * Today's Live Exchange Rates — pill bar, inline flags + amounts, gentle marquee.
 */
 .section-strip{
	padding-top:20px;
	padding-bottom:30px;
 }
.llc-pull-strip-wrap {
	margin-top: 18px;
	margin-bottom: 6px;
}

.llc-pull-title {
	margin: 0 0 10px;
	font-size: 14px;
	font-weight: 500;
	color: #3B82F6;
	letter-spacing: 0.01em;
}

.llc-pull-bar {
	display: flex;
	flex-wrap: nowrap;
	align-items: stretch;
	gap: 0;
	min-height: 52px;
	background: none;
	border: none;
	border-radius: 999px;
	padding: 8px 14px 8px 16px;
	box-sizing: border-box;
}

.llc-pull-base {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	gap: 10px;
	padding-right: 14px;
	margin-right: 4px;
	border-right: 1px solid rgba(148, 163, 184, 0.65);
}

.llc-pull-base img {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
	border: 1px solid rgba(255, 255, 255, 0.9);
	box-shadow: 0 1px 3px rgba(0, 35, 70, 0.12);
}

.llc-pull-base-label {
	margin: 0;
	font-size: 14px;
	color: #0f172a;
	line-height: 1.2;
	white-space: nowrap;
	font-weight: 500;
	font-family: var(--lulu-font-secondary);
}

.llc-pull-marquee {
	flex: 1 1 auto;
	min-width: 0;
	overflow: hidden;
	display: flex;
	align-items: center;
	margin: 0 6px;
	-webkit-mask-image: linear-gradient(90deg,
			transparent,
			#000 10px,
			#000 calc(100% - 10px),
			transparent);
	mask-image: linear-gradient(90deg,
			transparent,
			#000 10px,
			#000 calc(100% - 10px),
			transparent);
}

.llc-pull-inner {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	width: max-content;
	will-change: transform;
	animation: llc-pull-marquee 72s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
	.llc-pull-inner {
		animation: none;
	}
}

[dir="rtl"] .llc-pull-inner {
	animation-direction: reverse;
}

@keyframes llc-pull-marquee {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

.llc-pull-row {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	flex-shrink: 0;
}

.llc-pull-item {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 0 14px;
	flex-shrink: 0;
	border-left: 1px solid rgba(203, 213, 225, 0.95);
}

.llc-pull-item:first-child {
	border-left: none;
	padding-left: 6px;
}

.llc-pull-item img {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
	border: 1px solid rgba(255, 255, 255, 0.85);
}

.llc-pull-rate {
	margin: 0;
	font-size: 14px;
	font-weight: 500;
	color: #000;
	font-family: "Inter", "Inter Fallback" !important;
	white-space: nowrap;
	letter-spacing: 0.01em;
}

.llc-pull-code {
	font-weight: 600;
	color: #334155;
	margin-left: 4px;
}

.llc-pull-loading {
	padding: 6px 12px;
	font-size: 0.88rem;
	color: #64748b;
	white-space: nowrap;
	font-family: var(--lulu-font-secondary);
}

.llc-pull-cta {
	flex: 0 0 auto;
	align-self: center;
	margin-left: 4px;
	padding-left: 12px;
	border-left: 1px solid #000;
	font-size: 16px;
	font-weight: 500;
	color: #000;
	text-decoration: none;
	white-space: nowrap;
	transition: color 0.15s ease;
}

.llc-pull-cta:hover {
	color: #000;
	text-decoration: underline;
	text-decoration-thickness: 2px;
}

.llc-pull-cta-arrow {
	font-weight: 400;
}

@media (max-width: 991px) {
	.llc-pull-bar {
		flex-wrap: wrap;
		border-radius: 20px;
		padding: 10px 12px;
	}

	.llc-pull-base {
		border-right: none;
		padding-right: 8px;
		margin-right: 0;
	}

	.llc-pull-marquee {
		order: 3;
		flex: 1 1 100%;
		min-width: 100%;
		margin: 8px 0 0;
		-webkit-mask-image: none;
		mask-image: none;
	}

	.llc-pull-cta {
		margin-left: auto;
		border-left: none;
		padding-left: 0;
	}
}

@media (max-width: 767px) {

	.llc-pull-bar {
		flex-wrap: nowrap;
		border-radius: 20px;
		padding: 10px 12px;
	}

	.llc-pull-title {
		font-size: 0.98rem;
	}

	.llc-pull-base-label {
		font-size: 0.88rem;
	}

	.llc-pull-item {
		padding: 0 10px;
	}

	.llc-pull-rate {
		font-size: 14px;
	}

	.llc-pull-cta {
		margin-left: auto;
		border-left: none;
		padding-left: 0;
		display: none;
	}

	.llc-pull-base img {
		width: 45px;
		height: 45px;
	}

	.llc-pull-item img {
		width: 45px;
		height: 45px;
	}
}