/* UrduPaper Pro Widgets — all selectors are plugin-scoped. */
.upw-async,
.upw-async *,
.upw-weather-card,
.upw-weather-card *,
.upw-prayer-card,
.upw-prayer-card *,
.upw-business-trade,
.upw-business-trade * {
	box-sizing: border-box;
}

.upw-async {
	width: 100%;
	min-width: 0;
}

.upw-skeleton {
	min-height: 320px;
	border-radius: 14px;
	background: linear-gradient(110deg, #edf0f4 8%, #f8fafc 18%, #edf0f4 33%);
	background-size: 200% 100%;
	animation: upw-skeleton 1.4s linear infinite;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 13px;
	padding: 24px;
}

.upw-skeleton__orb {
	width: 74px;
	height: 74px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.72);
}

.upw-skeleton__line {
	width: 70%;
	height: 13px;
	border-radius: 99px;
	background: rgba(255, 255, 255, 0.78);
}

.upw-skeleton__line--short { width: 46%; }

@keyframes upw-skeleton {
	to { background-position-x: -200%; }
}

.upw-card-error {
	border: 1px solid #f0c2c2;
	border-radius: 10px;
	background: #fff5f5;
	color: #8a2424;
	padding: 18px;
	font-size: 13px;
	line-height: 1.6;
	text-align: center;
}

.upw-data-source {
	display: none;
	margin-top: 10px;
	color: inherit !important;
	font: 500 9px/1.3 Arial, sans-serif;
	text-align: center;
	text-decoration: none !important;
	opacity: 0.65;
}

/* --------------------------------------------------------------------------
 * Weather card
 * ----------------------------------------------------------------------- */
.upw-weather-card {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	width: 100%;
	min-height: 360px;
	padding: 12px;
	border-radius: var(--upw-weather-radius, 14px);
	background: linear-gradient(155deg, var(--upw-weather-start, #ffb51b), var(--upw-weather-end, #f34c08));
	color: var(--upw-weather-text, #fff);
	font-family: Poppins, Roboto, Arial, sans-serif;
	direction: ltr;
	text-align: center;
	box-shadow: 0 10px 25px -20px rgba(98, 46, 0, 0.65);
}

.upw-weather-card::before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 30px;
	right: 16px;
	width: 74px;
	height: 74px;
	border-radius: 50%;
	background: rgba(255, 244, 161, 0.65);
	filter: blur(12px);
	box-shadow: 0 0 35px rgba(255, 245, 171, 0.72);
}

.upw-weather-card--clear-night {
	--upw-weather-start: #162a54;
	--upw-weather-end: #071126;
}

.upw-weather-card--rain,
.upw-weather-card--storm { filter: saturate(0.82); }

.upw-weather-date {
	position: relative;
	z-index: 1;
	margin: 0 0 14px;
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0.01em;
}

.upw-weather-current {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
}

.upw-weather-temperature {
	display: flex;
	align-items: flex-start;
	line-height: 1;
}

.upw-weather-temperature strong {
	color: inherit;
	font-size: clamp(50px, 19vw, 50px);
	font-weight: 600;
	letter-spacing: -0.055em;
}

.upw-weather-temperature span {
	margin: 13px 0 0 5px;
	font-size: 20px;
	font-weight: 500;
}

.upw-weather-icon {
	width: 88px;
	font-family: "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
	font-size: 50px;
	line-height: 1;
	filter: grayscale(1) brightness(0) invert(1);
	text-shadow: 0 6px 18px rgba(100, 41, 0, 0.18);
}

.upw-weather-city {
	margin-top: 0;
	font-size: 16px;
	font-weight: 600;
}

.upw-weather-condition {
	min-height: 18px;
	margin-top: 3px;
	font-size: 12px;
	opacity: 0.94;
}

.upw-weather-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 8px;
	margin: 17px 0 0;
}

.upw-weather-stats > div {
	min-width: 0;
	min-height: 65px;
	padding: 10px 6px 8px;
	border: 1px solid rgba(255, 255, 255, 0.34);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(4px);
}

.upw-weather-stats dt {
	margin: 0 0 8px;
	font-size: 9px;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	opacity: 0.9;
}

.upw-weather-stats dd {
	margin: 0;
	font-size: 12px;
	font-weight: 600;
	white-space: nowrap;
}

.upw-weather-forecast {
	position: relative;
	margin-top: 17px;
}

.upw-weather-forecast__viewport {
	overflow-x: auto;
	overflow-y: hidden;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}

.upw-weather-forecast__viewport::-webkit-scrollbar { display: none; }

.upw-weather-forecast__track {
	display: flex;
	gap: 8px;
	width: max-content;
}

.upw-weather-day {
	display: flex;
	flex: 0 0 81px;
	min-height: 87px;
	padding: 10px 5px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.1);
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	scroll-snap-align: start;
}

.upw-weather-day > span {
	font-size: 9px;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.upw-weather-day b {
	font: 19px/1 "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
}

.upw-weather-day small {
	font-size: 10px;
	font-weight: 600;
	white-space: nowrap;
}

.upw-scroll-arrow {
	position: absolute;
	z-index: 3;
	top: 50%;
	width: 28px;
	height: 28px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.9);
	color: #222;
	font: 22px/26px Arial, sans-serif;
	cursor: pointer;
	transform: translateY(-50%);
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
}

.upw-scroll-arrow--prev { left: -10px; }
.upw-scroll-arrow--next { right: -10px; }
.upw-scroll-arrow:disabled { opacity: 0.3; cursor: default; }
.upw-weather-forecast.is-no-overflow .upw-scroll-arrow { display: none; }

/* --------------------------------------------------------------------------
 * Prayer times
 * ----------------------------------------------------------------------- */
.upw-prayer-card {
	container-type: inline-size;
	position: relative;
	width: 100%;
	padding: 12px;
	border-radius: calc(var(--upw-prayer-radius, 12px) - 1px);
	background: var(--upw-prayer-bg, #0d483a);
	font-family: 'Amiri';
	box-shadow: 0 12px 28px -22px rgba(0, 40, 29, 0.75);
}

.upw-prayer-date-strip {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	min-height: 0px;
	padding: 14px 13px 12px;
	border-radius: var(--upw-prayer-radius, 12px);
	background: var(--upw-prayer-strip, #fff6da);
	color: var(--upw-prayer-strip-text, #725218);
	text-align: center;
}

.upw-prayer-date-strip > :not(.upw-prayer-mosque) {
	position: relative;
	z-index: 2;
}

.upw-prayer-star {
	display: none;
	height: 10px;
	color: var(--upw-prayer-accent, #d49a08);
	font-size: 9px;
	line-height: 1;
}

.upw-prayer-gregorian {
	margin-top: 1px;
	font: 500 10px/1.35 Georgia, serif;
	opacity: 0.88;
}

.upw-prayer-hijri {
	display: block;
	margin-top: 4px;
	color: inherit;
	font: 700 18px/1.32 Georgia, serif;
}

.upw-prayer-card--rtl .upw-prayer-hijri {
	font-family: inherit;
	font-size: 19px;
}

.upw-prayer-location {
	margin-top: 3px;
	font-size: 10px;
	opacity: 0.75;
}

.upw-prayer-holiday {
	display: inline-block;
	max-width: 100%;
	margin-top: 9px;
	padding: 4px 12px;
	overflow: hidden;
	border: 1px solid var(--upw-prayer-accent, #d49a08);
	border-radius: 99px;
	font-size: 9px;
	font-weight: 500;
	line-height: 1.3;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.upw-prayer-mosque {
	position: absolute;
	z-index: 1;
	right: -14px;
	bottom: -8px;
	width: 80%;
	color: var(--upw-prayer-accent, #d49a08);
	opacity: 0.11;
}

.upw-prayer-mosque svg { display: block; width: 100%; height: auto; }

.upw-prayer-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	margin-top: 14px;
}

.upw-prayer-cell {
	display: flex;
	min-width: 0;
	min-height: 98px;
	padding: 11px 5px 10px;
	border: 1px solid rgba(219, 226, 235, 0.95);
	border-radius: calc(var(--upw-prayer-radius, 12px) - 2px);
	background: var(--upw-prayer-card, #f7f9fc);
	color: var(--upw-prayer-card-text, #16213a);
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	text-align: center;
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.upw-prayer-cell:hover { transform: translateY(-1px); }

.upw-prayer-cell.is-active {
	border-color: var(--upw-prayer-active, #080b0c);
	background: var(--upw-prayer-active, #080b0c);
	color: var(--upw-prayer-active-text, #fff);
	box-shadow: 0 8px 18px -12px rgba(0, 0, 0, 0.75);
}

.upw-prayer-cell__icon {
	display: block;
	width: 23px;
	height: 23px;
	color: var(--upw-prayer-accent, #d49a08);
}

.upw-prayer-cell__icon svg { display: block; width: 100%; height: 100%; }
.upw-prayer-cell.is-active .upw-prayer-cell__icon { color: var(--upw-prayer-accent, #d49a08); filter: drop-shadow(0 0 5px rgba(212, 154, 8, 0.45)); }

.upw-prayer-cell__label {
	max-width: 100%;
	overflow: hidden;
	font-size: 17px;
	font-weight: 500;
	line-height: 2;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.upw-prayer-cell.is-active .upw-prayer-cell__label { color: var(--upw-prayer-accent, #d49a08); }

.upw-prayer-cell__time {
	color: inherit;
	font: 700 12px/1.15 Georgia, "Times New Roman", serif;
	direction: ltr;
	white-space: nowrap;
}

.upw-data-source--prayer { color: #fff !important; }

@container (max-width: 270px) {
	.upw-prayer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* --------------------------------------------------------------------------
 * Karobar aur Tijarat
 * ----------------------------------------------------------------------- */
.upw-business-trade {
	--upw-card-border: #dedede;
	clear: both;
	width: 100%;
	margin-right: 0 !important;
	margin-left: 0 !important;
	padding: 0 3px;
	color: #222;
	font-family: inherit;
	direction: rtl;
}

.upw-business-header.block-head {
	display: flex !important;
	min-height: 60px;
	margin: 0 0 24px !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 4px;
	background: #f0f0f0;
	align-items: stretch;
	justify-content: space-between;
	flex-direction: row;
}

.upw-business-header h2 {
	display: flex;
	order: 1;
	min-width: 0;
	margin: 0 !important;
	padding: 0 0 0 16px !important;
	color: #444;
	font-size: clamp(21px, 2.3vw, 28px);
	font-weight: 500;
	align-items: center;
	gap: 12px;
}

.upw-business-heading-icon {
	display: inline-flex;
	width: 58px;
	height: 60px;
	margin: 0;
	background: var(--upw-business-accent, #f0aa00);
	color: #fff;
	align-items: center;
	justify-content: center;
}

.upw-business-heading-icon svg { width: 25px; height: 25px; }

.upw-business-more.block-more-btn {
	display: inline-flex;
	order: 2;
	align-self: center;
	margin: 0 10px !important;
	padding: 9px 13px !important;
	border: 1px solid #cfd3d7;
	border-radius: 6px;
	background: #fff;
	color: #333 !important;
	font-size: 12px;
	line-height: 1;
	text-decoration: none !important;
	align-items: center;
	gap: 4px;
}

.upw-market-ticker {
	display: flex;
	overflow: hidden;
	height: 44px;
	margin-bottom: 15px;
	border: 1px solid #dfe2e5;
	border-radius: 7px;
	background: #fff;
	direction: ltr;
}

.upw-market-ticker__badge {
	position: relative;
	z-index: 2;
	display: inline-flex;
	flex: 0 0 89px;
	background: var(--upw-business-badge, #d60000);
	color: #fff;
	font: 700 13px/1 Georgia, serif;
	align-items: center;
	justify-content: center;
}

.upw-market-ticker__viewport {
	overflow: hidden;
	flex: 1 1 auto;
}

.upw-market-ticker__track {
	display: flex;
	width: max-content;
	height: 100%;
	animation: upw-market-scroll var(--upw-ticker-duration, 60s) linear infinite;
	align-items: center;
}

.upw-market-ticker:hover .upw-market-ticker__track { animation-play-state: paused; }

.upw-market-tick {
	display: inline-flex;
	padding: 0 20px;
	font: 500 13px/1 Georgia, serif;
	direction: ltr;
	align-items: center;
	gap: 7px;
	white-space: nowrap;
}

.upw-market-tick--up { color: var(--upw-business-up, #009f55); }
.upw-market-tick--down { color: var(--upw-business-down, #d52b1e); }
.upw-market-tick--flat { color: #666; }
.upw-market-tick i { font-size: 8px; font-style: normal; }

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

.upw-business-main {
	display: grid;
	grid-template-columns: minmax(270px, 1fr) minmax(0, 2fr);
	gap: 16px;
	align-items: stretch;
}

.upw-business-main--markets-only { grid-template-columns: 1fr; }
.upw-business-main--news-only { grid-template-columns: 1fr; }

.upw-business-news,
.upw-news-slider,
.upw-news-slider__slides { min-width: 0; height: 100%; }

.upw-news-slider {
	position: relative;
	overflow: hidden;
	min-height: 284px;
	border-radius: 8px;
	background: #252525;
}

.upw-news-slide {
	position: absolute;
	inset: 0;
	animation: upw-news-in 0.28s ease;
}

.upw-news-slide[hidden] { display: none !important; }
.upw-news-slide > a { position: absolute; inset: 0; display: block; color: #fff !important; text-decoration: none !important; }
.upw-news-slide img,
.upw-news-slide__placeholder { display: block; width: 100%; height: 100%; object-fit: cover; }
.upw-news-slide__placeholder { background: linear-gradient(135deg, #343a40, #101214); }
.upw-news-slide__shade { position: absolute; inset: 35% 0 0; background: linear-gradient(transparent, rgba(0, 0, 0, 0.9)); }

.upw-news-slide__copy {
	position: absolute;
	right: 17px;
	bottom: 18px;
	left: 17px;
	z-index: 2;
	display: block;
	color: #fff;
	text-align: right;
}

.upw-news-slide__copy small {
	display: block;
	margin-bottom: 5px;
	color: var(--upw-business-accent, #f0aa00);
	font-size: 11px;
}

.upw-news-slide__copy strong {
	display: block;
	color: #fff;
	font-size: clamp(16px, 1.8vw, 21px);
	font-weight: 500;
	line-height: 1.55;
	font-family: 'AlQalam Telenor';
}

.upw-news-slider__dots {
	position: absolute;
	z-index: 4;
	bottom: 7px;
	left: 50%;
	display: flex;
	gap: 5px;
	transform: translateX(-50%);
}

.upw-news-slider__dots button {
	width: 6px;
	height: 6px;
	padding: 0;
	border: 0;
	border-radius: 99px;
	background: rgba(255, 255, 255, 0.5);
	cursor: pointer;
}

.upw-news-slider__dots button.is-active { width: 17px; background: var(--upw-business-accent, #f0aa00); }

@keyframes upw-news-in {
	from { opacity: 0.2; transform: scale(1.015); }
	to { opacity: 1; transform: scale(1); }
}

.upw-business-markets {
	display: flex;
	min-width: 0;
	flex-direction: column;
	gap: 15px;
	direction:ltr;
}

.upw-market-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
}

.upw-market-card {
	min-width: 0;
	border: 1px solid var(--upw-card-border);
	border-radius: 8px;
	background: #fff;
	text-align: center;
}

.upw-market-carousel {
	position: relative;
	min-width: 0;
	direction: ltr;
}

.upw-market-carousel--crypto { margin-top: 15px; }

.upw-market-carousel__viewport {
	overflow-x: auto;
	overflow-y: hidden;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}

.upw-market-carousel__viewport::-webkit-scrollbar { display: none; }

.upw-market-carousel__viewport:focus-visible {
	outline: 2px solid var(--upw-business-accent, #f0aa00);
	outline-offset: 3px;
}

.upw-market-carousel .upw-market-carousel__track {
	display: flex;
	width: auto;
	grid-template-columns: none;
}

.upw-market-carousel--currency .upw-market-card {
	flex: 0 0 calc((100% - 36px) / 4);
	scroll-snap-align: start;
}

.upw-market-carousel--crypto .upw-crypto-card {
	flex: 0 0 calc((100% - 44px) / 5);
	scroll-snap-align: start;
}

.upw-market-carousel .upw-scroll-arrow {
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.18s ease, transform 0.18s ease, background-color 0.18s ease;
}

.upw-market-carousel .upw-scroll-arrow--prev { left: 6px; }
.upw-market-carousel .upw-scroll-arrow--next { right: 6px; }

.upw-market-carousel:hover .upw-scroll-arrow,
.upw-market-carousel:focus-within .upw-scroll-arrow {
	opacity: 0.94;
	pointer-events: auto;
}

.upw-market-carousel:hover .upw-scroll-arrow:disabled,
.upw-market-carousel:focus-within .upw-scroll-arrow:disabled {
	opacity: 0.3;
	pointer-events: none;
}

.upw-market-carousel.is-no-overflow .upw-scroll-arrow { display: none; }

.upw-currency-card {
	display: flex;
	min-height: 116px;
	padding: 12px 7px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	direction: ltr;
}

.upw-currency-pair {
	display: flex;
	color: #555;
	font: 600 12px/1 Arial, sans-serif;
	align-items: center;
	gap: 8px;
}

.upw-currency-flags { display: flex; align-items: center; gap: 8px; color: #999; }
.upw-currency-flags img { display: block; width: 28px; height: 22px; object-fit: cover; border-radius: 2px; box-shadow: 0 0 0 1px rgba(0,0,0,.08); }
.upw-currency-card > strong { color: #222; font: 700 15px/1.1 Georgia, serif; white-space: nowrap; }

.upw-metal-card {
	display: flex;
	min-height: 149px;
	padding: 14px 7px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 9px;
	direction: ltr;
}

.upw-metal-card > span { color: #555; font: 600 12px/1.1 Arial, sans-serif; white-space: nowrap; }
.upw-metal-card img { width: 58px; height: 58px; object-fit: contain; }
.upw-metal-card strong { color: #222; font: 700 15px/1.1 Georgia, serif; white-space: nowrap; }

.upw-crypto-row {
	display: flex;
	gap: 11px;
	direction: ltr;
}

.upw-crypto-card {
	display: flex;
	min-height: 76px;
	padding: 10px 16px;
	border: 1px solid var(--upw-card-border);
	border-radius: 8px;
	background: #fff;
	align-items: center;
	gap: 12px;
	direction: ltr;
}

.upw-crypto-icon {
	display: inline-flex;
	flex: 0 0 36px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #f7931a;
	color: #fff;
	font: 700 22px/1 Arial, sans-serif;
	align-items: center;
	justify-content: center;
}

.upw-crypto-card--ethereum .upw-crypto-icon { background: #747da9; font-size: 17px; }
.upw-crypto-card--tether .upw-crypto-icon { background: #159c91; }
.upw-crypto-card--binancecoin .upw-crypto-icon { background: #f3ba2f; }
.upw-crypto-card--ripple .upw-crypto-icon { background: #111; }
.upw-crypto-card--solana .upw-crypto-icon { background: linear-gradient(135deg, #14f195, #9945ff); }
.upw-crypto-card--usd-coin .upw-crypto-icon { background: #2775ca; }
.upw-crypto-card--dogecoin .upw-crypto-icon { background: #c2a633; }
.upw-crypto-card--tron .upw-crypto-icon { background: #ef0027; }
.upw-crypto-card > div { min-width: 0; }
.upw-crypto-card > div > span { display: block; overflow: hidden; color: #555; font: 600 12px/1.25 Arial, sans-serif; text-overflow: ellipsis; white-space: nowrap; }
.upw-crypto-card small { color: #8c8c8c; font-size: 10px; }
.upw-crypto-card strong { display: block; margin-top: 3px; color: #222; font: 700 15px/1.1 Georgia, serif; white-space: nowrap; }

.upw-business-note {
	display: flex;
	margin-top: 9px;
	color: #777;
	font-size: 9px;
	line-height: 1.5;
	justify-content: space-between;
	gap: 12px;
}

.upw-business-note time { direction: ltr; white-space: nowrap; }

@media (max-width: 991px) {
	.upw-business-main { grid-template-columns: minmax(245px, 0.9fr) minmax(0, 1.5fr); }
	.upw-market-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.upw-news-slider { min-height: 390px; }
}

@media (max-width: 767px) {
	.upw-business-trade { padding: 0; }
	.upw-business-header.block-head { min-height: 54px; margin-bottom: 15px !important; }
	.upw-business-header h2 { font-size: 19px; }
	.upw-business-heading-icon { width: 52px; height: 54px; }
	.upw-business-more.block-more-btn { padding: 8px 9px !important; font-size: 10px; }
	.upw-business-main { display: flex; flex-direction: column; }
	.upw-business-news { order: 1; }
	.upw-business-markets { order: 2; }
	.upw-news-slider { min-height: clamp(240px, 62vw, 390px); }
	.upw-market-ticker__badge { flex-basis: 76px; }
	.upw-market-tick { padding: 0 13px; }
	.upw-market-carousel--currency .upw-market-card { flex-basis: calc((100% - 12px) / 2); }
	.upw-market-carousel--crypto .upw-crypto-card { flex-basis: calc((100% - 11px) / 2); }
	.upw-business-note { flex-direction: column; }
}

@media (hover: none), (pointer: coarse) {
	.upw-market-carousel .upw-scroll-arrow:not(:disabled) {
		opacity: 0.9;
		pointer-events: auto;
	}
}

@media (max-width: 380px) {
	.upw-weather-card { padding: 18px; }
	.upw-weather-temperature strong { font-size: 56px; }
	.upw-weather-icon { width: 72px; font-size: 52px; }
	.upw-weather-stats { gap: 6px; }
	.upw-weather-stats dt { letter-spacing: 0.04em; }
	.upw-prayer-card { padding: 13px; }
	.upw-prayer-grid { gap: 7px; }
	.upw-prayer-cell { min-height: 91px; }
	.upw-business-header h2 { padding-left: 7px !important; font-size: 17px; gap: 7px; }
	.upw-business-heading-icon { width: 45px; }
	.upw-business-more.block-more-btn span { display: none; }
}

@media (prefers-reduced-motion: reduce) {
	.upw-skeleton,
	.upw-market-ticker__track,
	.upw-news-slide { animation: none !important; }
	.upw-market-ticker__viewport { overflow-x: auto; }
	.upw-weather-forecast__viewport,
	.upw-market-carousel__viewport { scroll-behavior: auto; }
}
