:root {
	--yunda-primary: #1976d2;
	--yunda-primary-dark: #1565c0;
	--yunda-cyan: #00acc1;
	--yunda-cyan-light: #00bcd4;
	--yunda-purple: #7b1fa2;
	--yunda-bg: #f8f9fc;
	--yunda-bg-white: #ffffff;
	--yunda-text: #1a1a2e;
	--yunda-text-muted: rgba(26, 26, 46, 0.5);
	--yunda-text-soft: rgba(26, 26, 46, 0.35);
	--yunda-border: rgba(0, 0, 0, 0.06);
	--yunda-border-hover: rgba(25, 118, 210, 0.15);
	--yunda-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 0, 0, 0.02);
	--yunda-shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
	--yunda-shadow-blue: 0 4px 20px rgba(25, 118, 210, 0.12);
	--yunda-portal-accent: #1976d2;
	--yunda-portal-accent-light: #1976d2;
	--yunda-portal-accent-dark: #1565c0;
	--yunda-shadow-portal: 0 4px 6px -1px rgba(25, 118, 210, 0.2), 0 2px 4px -2px rgba(25, 118, 210, 0.2);
	--yunda-radius: 16px;
	--yunda-radius-lg: 20px;
	--yunda-header-h: 80px;
	--yunda-font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
	--yunda-font-display: 'Microsoft YaHei', 'PingFang SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--yunda-font-header: 'PingFang SC', 'Microsoft YaHei', -apple-system, BlinkMacSystemFont, sans-serif;
	--yunda-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	--yunda-footer-bg: #151b2b;
	--yunda-footer-text: rgba(255, 255, 255, 0.8);
	--yunda-footer-title: #fff;
	--yunda-footer-muted: rgba(255, 255, 255, 0.55);
	--yunda-footer-border: rgba(255, 255, 255, 0.1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
	scroll-behavior: smooth;
	scroll-padding-top: var(--yunda-header-h);
	overflow-x: clip;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

body {
	margin: 0;
	font-family: var(--yunda-font);
	font-size: 14px;
	background: var(--yunda-bg);
	color: var(--yunda-text);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: clip;
	max-width: 100%;
}

#main-content {
	overflow-x: clip;
	max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: 400;
	font-style: normal;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; }

.yunda-container {
	width: 100%;
	max-width: 1200px;
	margin-inline: auto;
	padding-inline: 24px;
}

.yunda-container--page {
	width: 100%;
	max-width: 1200px;
	margin-inline: auto;
	padding-inline: 24px;
}

.yunda-container--narrow { width: min(760px, calc(100% - 48px)); }

/* Cards */
.yunda-card {
	background: var(--yunda-bg-white);
	border: 1px solid rgba(0, 0, 0, 0.04);
	border-radius: var(--yunda-radius-lg);
	box-shadow: var(--yunda-shadow-sm);
	transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}

.yunda-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--yunda-shadow-md);
}

.yunda-card-flat {
	background: var(--yunda-bg-white);
	border: 1px solid rgba(0, 0, 0, 0.05);
	border-radius: var(--yunda-radius);
	transition: var(--yunda-transition);
}

.yunda-card-flat:hover {
	border-color: var(--yunda-border-hover);
	box-shadow: var(--yunda-shadow-blue);
}

/* Header — kaiyun flex layout */
.yunda-header-shell {
	position: relative;
	z-index: 1000;
}

.yunda-header {
	position: sticky;
	top: 0;
	z-index: 1002;
	font-family: var(--yunda-font-header);
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(24px);
}

@media (min-width: 1201px) {
	.yunda-header-shell {
		position: sticky;
		top: 0;
		background: rgba(255, 255, 255, 0.8);
		backdrop-filter: blur(24px);
	}

	.yunda-header {
		position: static;
		z-index: auto;
		background: transparent;
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
		border-bottom: none;
		box-shadow: none;
	}

	.yunda-header__bar {
		display: grid;
		grid-template-columns: minmax(132px, auto) minmax(0, 1fr) auto;
		align-items: center;
		gap: 12px 40px;
		max-width: 1280px;
		padding: 0 20px 0 8px;
	}

	.yunda-logo {
		margin-right: 28px;
	}

	.yunda-nav {
		position: static;
		left: auto;
		right: auto;
		top: auto;
		height: auto;
		display: flex;
		justify-content: flex-start;
		align-items: center;
		min-width: 0;
		padding-left: 24px;
		pointer-events: auto;
		z-index: auto;
	}

	.yunda-nav__list {
		pointer-events: auto;
		gap: 2px;
		max-width: 100%;
		justify-content: flex-start;
	}

	.yunda-nav__link {
		padding: 6px 10px;
		font-size: 0.8125rem;
		letter-spacing: -0.01em;
	}

	.yunda-header .yunda-logo__img,
	.yunda-header .yunda-logo img,
	.yunda-header .custom-logo-link img {
		height: 36px;
		max-width: 156px;
	}

	.yunda-header__actions {
		margin-left: 0;
	}

	.yunda-header__portal {
		min-width: 0;
		height: auto;
		min-height: 32px;
		padding: 6px 14px;
		font-size: 12px;
		gap: 0;
		border: none;
	}

	.yunda-header__portal-icon {
		display: none;
	}
}

@media (min-width: 1201px) and (max-width: 1360px) {
	.yunda-header__bar {
		gap: 10px 32px;
		padding: 0 16px 0 6px;
	}

	.yunda-logo {
		margin-right: 20px;
	}

	.yunda-nav {
		padding-left: 16px;
	}

	.yunda-nav__link {
		padding: 5px 8px;
		font-size: 12px;
	}

	.yunda-header .yunda-logo__img,
	.yunda-header .yunda-logo img,
	.yunda-header .custom-logo-link img {
		height: 34px;
		max-width: 142px;
	}

	.yunda-header__portal-label {
		font-size: 11px;
	}
}

.yunda-header__bar {
	display: flex;
	align-items: center;
	max-width: 1200px;
	height: var(--yunda-header-h);
	margin: 0 auto;
	padding: 0 24px;
	gap: 8px;
}

.yunda-logo {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.yunda-header .yunda-logo__img,
.yunda-header .yunda-logo img,
.yunda-header .custom-logo-link img {
	height: 38px;
	width: auto;
	max-width: 180px;
	display: block;
}

.yunda-logo--footer .yunda-logo__img,
.yunda-logo--footer img,
.yunda-logo__img--footer {
	width: 160px;
	max-width: 160px;
	height: auto;
	max-height: none;
	display: block;
	margin-bottom: 10px;
}

.yunda-logo__mark {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: linear-gradient(135deg, var(--yunda-primary), var(--yunda-cyan));
	display: grid;
	place-items: center;
	font-family: var(--yunda-font-display);
	font-weight: 700;
	font-size: 1rem;
	color: #fff;
}

.custom-logo-link img { max-height: 38px; width: auto; }

.yunda-nav {
	flex: 1;
	display: flex;
	justify-content: center;
	min-width: 0;
}

.yunda-nav__list {
	display: flex;
	align-items: center;
	gap: 4px;
	flex-wrap: nowrap;
	justify-content: center;
}

.yunda-nav__link {
	display: block;
	padding: 6px 16px;
	font-size: 0.875rem;
	font-weight: 500;
	color: rgba(26, 26, 46, 0.6);
	border-radius: 999px;
	transition: var(--yunda-transition);
	white-space: nowrap;
}

.yunda-nav__link:hover {
	color: var(--yunda-text);
}

.yunda-nav__link.is-active {
	background: rgba(25, 118, 210, 0.08);
	color: var(--yunda-primary);
}

.yunda-header__actions {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
	margin-left: auto;
}

.yunda-header__portal {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	width: auto;
	min-width: 96px;
	height: auto;
	min-height: 36px;
	padding: 8px 20px;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 600;
	font-family: var(--yunda-font-header);
	line-height: 1;
	letter-spacing: 0.01em;
	white-space: nowrap;
	cursor: pointer;
	text-decoration: none;
	border: none;
	background: var(--yunda-primary);
	color: #fff;
	box-shadow: none;
	transition:
		color 0.2s ease,
		background 0.2s ease,
		box-shadow 0.2s ease;
}

.yunda-header__portal:hover {
	color: #fff;
	border-color: transparent;
	background: var(--yunda-primary-dark);
	box-shadow: var(--yunda-shadow-portal);
	transform: none;
}

.yunda-header__portal-icon {
	display: block;
	flex-shrink: 0;
	width: 17px;
	height: 17px;
	opacity: 0.92;
}

.yunda-header__portal-icon svg,
.yunda-header__portal-icon {
	stroke: currentColor;
	fill: none;
}

.yunda-header__portal-label {
	line-height: 1;
	color: inherit;
}

.yunda-nav-toggle {
	display: none;
	padding: 8px;
	border-radius: 8px;
	color: rgba(26, 26, 46, 0.5);
}

.yunda-nav-toggle:hover { background: rgba(0, 0, 0, 0.04); }

.yunda-nav-backdrop {
	display: none;
	position: fixed;
	inset: var(--yunda-header-h) 0 0;
	z-index: 999;
	background: rgba(15, 23, 42, 0.38);
	backdrop-filter: blur(2px);
}

.yunda-nav-backdrop:not([hidden]) {
	display: block;
}

body.yunda-nav-open {
	overflow: hidden;
	overscroll-behavior: none;
}

/* Buttons */
.yunda-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 24px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 0.875rem;
	font-family: var(--yunda-font-display);
	transition: var(--yunda-transition);
	white-space: nowrap;
}

.yunda-btn--primary {
	background: var(--yunda-primary);
	color: #fff;
}

.yunda-btn--primary:hover {
	background: var(--yunda-primary-dark);
	box-shadow: 0 8px 24px rgba(25, 118, 210, 0.25);
	transform: translateY(-1px);
}

.yunda-btn--secondary {
	border: 1px solid rgba(26, 26, 46, 0.1);
	color: rgba(26, 26, 46, 0.65);
	background: transparent;
}

.yunda-btn--secondary:hover {
	border-color: rgba(25, 118, 210, 0.25);
	color: var(--yunda-primary);
	background: rgba(25, 118, 210, 0.05);
}

.yunda-link {
	color: var(--yunda-primary);
	font-weight: 600;
	font-size: 0.875rem;
	transition: var(--yunda-transition);
}

.yunda-link:hover { color: var(--yunda-cyan); }

/* Badge */
.yunda-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 16px;
	border-radius: 999px;
	font-size: 0.75rem;
	font-weight: 500;
	color: var(--yunda-primary);
	background: rgba(255, 255, 255, 0.65);
	border: 1px solid rgba(25, 118, 210, 0.15);
	box-shadow: var(--yunda-shadow-sm);
	backdrop-filter: blur(8px);
	margin-bottom: 24px;
}

.yunda-badge__dot {
	position: relative;
	width: 8px;
	height: 8px;
}

.yunda-badge__ping {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: var(--yunda-primary);
	opacity: 0.75;
	animation: yunda-ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.yunda-badge__core {
	position: relative;
	display: block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--yunda-primary);
}

@keyframes yunda-ping {
	75%, 100% { transform: scale(2); opacity: 0; }
}

/* Sections */
.yunda-section {
	padding: 80px 0;
	position: relative;
	overflow-x: clip;
	max-width: 100%;
}

.yunda-section:nth-child(even) {
	background: var(--yunda-bg-white);
}

.yunda-section__header {
	margin-bottom: 48px;
}

.yunda-section__title {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 700;
	color: var(--yunda-primary);
	margin: 0 0 8px;
	font-family: var(--yunda-font-display);
}

.yunda-section__title::before {
	content: '';
	display: block;
	width: 24px;
	height: 3px;
	border-radius: 2px;
	background: linear-gradient(90deg, var(--yunda-primary), var(--yunda-cyan-light));
	flex-shrink: 0;
}

.yunda-section__header {
	text-align: left;
}

.yunda-section__desc {
	color: rgba(26, 26, 46, 0.45);
	font-size: 0.9rem;
	margin: 0;
}

/* Hero — xk-sport style site section */
.yunda-hero {
	position: relative;
	padding: 0 0 48px;
	background: var(--yunda-bg) url('../images/hero/banner-bg.jpg') center / cover no-repeat;
	overflow: hidden;
}

.yunda-hero::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	height: 4rem;
	background: linear-gradient(to bottom, #dadff8, var(--yunda-bg));
	backdrop-filter: blur(2px);
	pointer-events: none;
}

.yunda-hero__bg {
	position: relative;
	z-index: 2;
	background-size: cover;
	background-position: center;
}

.yunda-hero__inner {
	position: relative;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	min-height: 470px;
	padding: 75px 0 10px;
}

.yunda-hero__info {
	flex: 0 1 594px;
	max-width: 594px;
	padding-right: 30px;
}

.yunda-hero__title {
	margin: 0;
	font-family: var(--yunda-font-display);
	font-size: clamp(2rem, 4.5vw, 3.5rem);
	font-weight: 600;
	line-height: 1.32;
	color: var(--yunda-primary);
	text-align: justify;
}

.yunda-hero__line {
	width: 52px;
	height: 5px;
	margin-top: 20px;
	background: var(--yunda-primary);
}

.yunda-hero__desc {
	width: 100%;
	margin: 20px 0 0;
	font-size: 14px;
	font-weight: 500;
	line-height: 28px;
	color: #3f5075;
	text-align: justify;
}

.yunda-hero__subtitle {
	margin: 0;
	font-family: var(--yunda-font-display);
	font-size: 32px;
	font-weight: 400;
	line-height: 1.2;
	color: var(--yunda-primary);
}

.yunda-hero__desc-list {
	display: none;
}

.yunda-hero__desc-list p {
	position: relative;
	margin: 0 0 6px 14px;
	font-size: 15px;
	line-height: 26px;
	color: #3f5075;
}

.yunda-hero__desc-list p::before {
	content: '';
	position: absolute;
	left: -14px;
	top: 11px;
	width: 5px;
	height: 5px;
	background: var(--yunda-primary);
	border-radius: 1px;
}

.yunda-hero__tips {
	display: inline-flex;
	align-items: center;
	position: relative;
	width: max-content;
	max-width: 100%;
	min-width: 270px;
	height: 24px;
	margin-top: 12px;
	padding: 0 12px 0 26px;
	border-radius: 15px;
	font-size: 12px;
	line-height: 1;
	color: #fff;
	background: linear-gradient(0deg, #1f5adb, #1f5adb), #2b44b0;
}

.yunda-hero__tips::before {
	content: '';
	position: absolute;
	left: 8px;
	width: 14px;
	height: 14px;
	background: center / cover url('../images/hero/tips.png');
}

.yunda-hero__sponsor {
	width: 100%;
	max-width: 500px;
	margin-top: 14px;
}

.yunda-hero__sponsor img {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 64px;
}

.yunda-hero__visual {
	position: absolute;
	right: -15px;
	bottom: 0;
	padding-left: 1%;
	width: min(58%, 760px);
	pointer-events: none;
}

.yunda-hero__figure {
	width: 100%;
	height: auto;
	object-fit: contain;
}

.yunda-hero__contract-wrap {
	position: relative;
	z-index: 3;
}

.yunda-hero__contract {
	margin-top: -40px;
	padding: 20px 48px 24px;
	border: 3px solid #fff;
	border-radius: 32px;
	background: linear-gradient(180deg, #fff 0%, #f3faff 100%);
	box-shadow: 0 8px 12px rgba(159, 177, 191, 0.25);
}

.yunda-hero__links {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.yunda-hero__links li {
	position: relative;
	display: flex;
	flex: 1;
	align-items: center;
	justify-content: center;
	min-height: 56px;
}

.yunda-hero__links li:not(:last-child)::after {
	content: '';
	position: absolute;
	right: -6px;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 24px;
	background: #dbe7f3;
}

.yunda-hero__links li > i:first-child {
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	background-size: cover;
	background-position: center;
}

.yunda-hero__link {
	margin: 0 12px;
	font-size: 16px;
	font-weight: 500;
	color: #3f5075;
	transition: var(--yunda-transition);
}

.yunda-hero__link:hover {
	color: var(--yunda-primary);
}

.yunda-hero__link-arrow {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	background: url('../images/hero/icon_arrow.png') center / cover no-repeat;
}

.yunda-hero__contract-line {
	height: 1px;
	margin-top: 20px;
	background: #dbe7f3;
}

.yunda-hero__contact-title {
	margin: 20px 0 12px;
	font-size: 16px;
	line-height: 28px;
	color: #3f5075;
}

.yunda-hero__contact-title span {
	color: var(--yunda-primary);
}

.yunda-hero__contact-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.yunda-hero__contact-item {
	display: flex;
	flex: 1;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-width: 0;
	padding: 10px 20px;
	border-radius: 20px;
	background: #e9f5ff;
}

.yunda-hero__contact-text {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0;
	font-size: 14px;
	color: #3f5075;
	white-space: nowrap;
}

.yunda-hero__contact-text i,
.yunda-hero__contact-icon-service {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	background-size: cover;
	background-position: center;
}

.yunda-hero__contact-icon-service {
	background-image: url('../images/hero/icon_customer.png');
}

.yunda-hero__contact-actions {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
}

.yunda-hero__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 88px;
	height: 36px;
	padding: 0 16px;
	border: 1px solid #c5d9eb;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 500;
	font-family: inherit;
	cursor: pointer;
	transition: var(--yunda-transition);
	text-decoration: none;
}

.yunda-hero__btn--ghost {
	background: #fff;
	color: var(--yunda-primary);
}

.yunda-hero__btn--ghost:hover {
	border-color: var(--yunda-primary);
	background: rgba(21, 112, 183, 0.06);
}

.yunda-hero__btn--primary {
	border-color: transparent;
	background: var(--yunda-primary);
	color: #fff;
	box-shadow: 0 4px 12px rgba(25, 118, 210, 0.25);
}

.yunda-hero__btn--primary:hover {
	background: var(--yunda-primary-dark);
}

.yunda-hero__btn.is-copied {
	border-color: #43a047;
	color: #43a047;
}

/* Phone mockup */
.yunda-phone-mockup {
	position: relative;
	max-width: 240px;
	margin-inline: auto;
}

.yunda-phone-mockup__frame {
	background: #fff;
	border-radius: 32px;
	padding: 10px;
	box-shadow: var(--yunda-shadow-md), 0 0 0 1px rgba(0, 0, 0, 0.04);
	border: 1px solid rgba(0, 0, 0, 0.06);
}

.yunda-phone-mockup__screen {
	border-radius: 24px;
	overflow: hidden;
	aspect-ratio: 9/19;
	background: linear-gradient(180deg, #eef2ff, #f8fafc);
}

.yunda-app-preview__header {
	height: 52px;
	background: linear-gradient(90deg, var(--yunda-primary), var(--yunda-cyan));
}

.yunda-app-preview__cards {
	padding: 12px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
}

.yunda-app-preview__cards span {
	height: 56px;
	border-radius: 10px;
	background: rgba(25, 118, 210, 0.06);
	border: 1px solid rgba(25, 118, 210, 0.08);
}

.yunda-app-preview__cards span:first-child {
	grid-column: span 2;
	height: 80px;
	background: linear-gradient(135deg, rgba(25, 118, 210, 0.12), rgba(0, 172, 193, 0.1));
}

/* Ad slot — reserved container for JS / embed code above About section */
.yunda-ad-slot {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
	box-sizing: border-box;
}

.yunda-ad-slot--before-about {
	margin-top: 24px;
	margin-bottom: 8px;
}

.yunda-ad-slot:empty {
	min-height: 0;
}

.yunda-ad-slot iframe,
.yunda-ad-slot img {
	max-width: 100%;
	height: auto;
	display: block;
	margin-inline: auto;
}

@media (max-width: 768px) {
	.yunda-ad-slot {
		padding-inline: 16px;
	}

	.yunda-ad-slot--before-about {
		margin-top: 16px;
		margin-bottom: 4px;
	}
}

/* Portal bar — platform entry card */
.yd-portal {
	width: 100%;
	margin: 0;
	padding: 18px 0 4px;
	font-family: var(--yunda-font-header);
	box-sizing: border-box;
}

.yd-portal *,
.yd-portal *::before,
.yd-portal *::after {
	box-sizing: border-box;
}

.yd-portal__card {
	max-width: 1180px;
	margin: 0 auto;
	padding: 18px 24px;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(25, 118, 210, 0.1);
	border-radius: 16px;
	box-shadow: 0 2px 20px rgba(25, 118, 210, 0.06);
}

.yd-portal__head {
	display: flex;
	align-items: center;
	gap: 16px;
}

.yd-portal__logo {
	flex-shrink: 0;
	width: 64px;
	height: 64px;
	border-radius: 12px;
	object-fit: cover;
	box-shadow: 0 3px 12px rgba(25, 118, 210, 0.12);
}

.yd-portal__info {
	flex: 1;
	min-width: 0;
}

.yd-portal__title {
	font-size: 17px;
	font-weight: 700;
	color: #1a1a2e;
	margin-bottom: 8px;
	line-height: 1.2;
}

.yd-portal__tags {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 16px;
}

.yd-portal__tag {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 13px;
	color: rgba(26, 26, 46, 0.72);
	white-space: nowrap;
}

.yd-portal__tag em {
	font-style: normal;
	font-size: 16px;
	font-weight: 700;
	color: #ff6b00;
}

.yd-portal__tag--hot svg { color: #ff6b00; }
.yd-portal__tag--ok { color: #00c853; }
.yd-portal__tag--ok svg { color: #00c853; }

.yd-portal__actions {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	gap: 10px;
	flex-shrink: 0;
	align-self: center;
	margin-left: auto;
	padding-left: 16px;
}

.yd-portal__btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 38px;
	border-radius: 6px;
	overflow: hidden;
	text-decoration: none;
	isolation: isolate;
	flex-shrink: 0;
	transition: transform 0.22s ease, color 0.22s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.yd-portal__btn > span {
	position: relative;
	z-index: 2;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.03em;
	white-space: nowrap;
}

.yd-portal__btn-inner {
	position: relative;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.02em;
	white-space: nowrap;
	line-height: 1;
}

.yd-portal__btn-label {
	line-height: 1;
}

.yd-portal__btn-icon {
	display: block;
	flex-shrink: 0;
	width: 17px;
	height: 17px;
	min-width: 17px;
	min-height: 17px;
	opacity: 0.95;
	overflow: visible;
	transition: opacity 0.22s ease, transform 0.22s ease;
}

.yd-portal__btn-icon--android,
.yd-portal__btn-icon--apple,
.yd-portal__btn-icon--reg,
.yd-portal__btn-icon--login,
.yd-portal__btn-icon--more {
	width: 17px;
	height: 17px;
	min-width: 17px;
	min-height: 17px;
}

.yd-portal__btn--android,
.yd-portal__btn--ios {
	overflow: visible;
}

@media (hover: hover) and (pointer: fine) {
	.yd-portal__btn:hover .yd-portal__btn-icon {
		opacity: 1;
		transform: scale(1.04);
	}

	.yd-portal__btn:hover > i::before {
		left: 190%;
	}

	.yd-portal__btn:hover {
		transform: translateY(-1px);
	}

	.yd-portal__btn--reg:hover,
	.yd-portal__btn--login:hover,
	.yd-portal__btn--more:hover {
		color: #fff;
		background: linear-gradient(180deg, rgba(79, 195, 247, 0.72) 0%, rgba(41, 182, 246, 0.55) 100%);
		border-color: #81d4fa;
		box-shadow:
			0 0 16px rgba(79, 195, 247, 0.55),
			0 0 32px rgba(79, 195, 247, 0.18),
			inset 0 0 16px rgba(255, 255, 255, 0.15);
	}
}

.yd-portal__btn--android { width: 108px; }
.yd-portal__btn--ios { width: 108px; }
.yd-portal__btn--reg:not(.yd-portal__btn--android):not(.yd-portal__btn--ios) { width: 96px; }
.yd-portal__btn--login { width: 112px; }
.yd-portal__btn--more { width: 128px; }

.yd-portal__btn--reg,
.yd-portal__btn--login,
.yd-portal__btn--more {
	color: #0288d1;
	background: linear-gradient(180deg, rgba(79, 195, 247, 0.22) 0%, rgba(79, 195, 247, 0.1) 100%);
	border: 1px solid rgba(79, 195, 247, 0.85);
	box-shadow:
		0 0 10px rgba(79, 195, 247, 0.28),
		inset 0 1px 0 rgba(255, 255, 255, 0.45),
		inset 0 0 14px rgba(79, 195, 247, 0.12);
}

.yd-portal__btn > i {
	position: absolute;
	inset: 0;
	border-radius: inherit;
	pointer-events: none;
	overflow: hidden;
}

.yd-portal__btn > i::before {
	content: "";
	position: absolute;
	top: 0;
	left: -130%;
	width: 50%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
	transform: skewX(-20deg);
	transition: left 0.55s ease;
}

.yd-portal__btn-icon--more {
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
	fill: none;
}

.yd-portal__btn--more .yd-portal__btn-inner {
	gap: 6px;
}

@media (max-width: 1180px) {
	.yd-portal__actions {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		max-width: min(100%, 620px);
		padding-bottom: 2px;
	}

	.yd-portal__actions::-webkit-scrollbar {
		display: none;
	}
}

@media (max-width: 900px) {
	.yd-portal__head {
		flex-wrap: wrap;
		align-items: center;
	}

	.yd-portal__actions {
		order: 4;
		width: 100%;
		max-width: none;
		margin: 8px 0 0;
		padding-left: 0;
		justify-content: flex-start;
	}
}

@media (max-width: 520px) {
	.yd-portal__card { padding: 14px 16px; }

	.yd-portal__actions {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 8px;
		align-items: stretch;
		overflow-x: visible;
	}

	.yd-portal__btn--android,
	.yd-portal__btn--ios,
	.yd-portal__btn--reg:not(.yd-portal__btn--android):not(.yd-portal__btn--ios),
	.yd-portal__btn--login {
		width: 100% !important;
		min-width: 0;
	}

	.yd-portal__btn--more {
		grid-column: 1 / -1;
		width: 100% !important;
	}

	.yd-portal__btn {
		justify-content: center;
		padding-inline: 10px !important;
		-webkit-tap-highlight-color: transparent;
	}

	.yd-portal__btn:active,
	.yd-portal__btn:focus {
		transform: none !important;
	}

	.yd-portal__btn:active > i::before,
	.yd-portal__btn:focus > i::before {
		left: -130% !important;
	}

	.yd-portal__btn:active .yd-portal__btn-icon,
	.yd-portal__btn:focus .yd-portal__btn-icon {
		opacity: 0.95 !important;
		transform: none !important;
	}

	.yd-portal__btn--reg:active,
	.yd-portal__btn--login:active,
	.yd-portal__btn--more:active,
	.yd-portal__btn--android:active,
	.yd-portal__btn--ios:active,
	.yd-portal__btn--reg:focus,
	.yd-portal__btn--login:focus,
	.yd-portal__btn--more:focus,
	.yd-portal__btn--android:focus,
	.yd-portal__btn--ios:focus {
		color: #0288d1 !important;
		background: linear-gradient(180deg, rgba(79, 195, 247, 0.22) 0%, rgba(79, 195, 247, 0.1) 100%) !important;
		border-color: rgba(79, 195, 247, 0.85) !important;
		box-shadow:
			0 0 10px rgba(79, 195, 247, 0.28),
			inset 0 1px 0 rgba(255, 255, 255, 0.45),
			inset 0 0 14px rgba(79, 195, 247, 0.12) !important;
	}
}

/* About — xk-sport style tab panel */
.yunda-about {
	padding: 80px 0 0;
	background: var(--yunda-bg-white);
	overflow: hidden;
}

.yunda-about.yunda-section:nth-child(even) {
	background: var(--yunda-bg-white);
}

.yunda-about__intro {
	max-width: 1200px;
}

.yunda-about__header {
	text-align: center;
	margin-bottom: 40px;
}

.yunda-about__title-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.yunda-about__title-deco {
	flex: 1;
	max-width: 140px;
	height: 10px;
	background-size: contain;
	background-repeat: no-repeat;
}

.yunda-about__title-deco--left {
	background-image: url("../images/faq-title-left.png");
	background-position: right center;
}

.yunda-about__title-deco--right {
	background-image: url("../images/faq-title-right.png");
	background-position: left center;
}

.yunda-section-title-deco {
	flex: 1;
	max-width: 140px;
	height: 10px;
	background-size: contain;
	background-repeat: no-repeat;
}

.yunda-section-title-deco--left {
	background-image: url("../images/faq-title-left.png");
	background-position: right center;
}

.yunda-section-title-deco--right {
	background-image: url("../images/faq-title-right.png");
	background-position: left center;
}

.yunda-about__title {
	margin: 0;
	font-family: var(--yunda-font-display);
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 700;
	color: var(--yunda-primary);
	line-height: 1.3;
}

.yunda-about__subtitle {
	margin: 12px 0 0;
	font-size: 14px;
	color: rgba(26, 26, 46, 0.45);
}

.yunda-about__stage {
	margin-top: 0;
	padding: 80px 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.yunda-about__stage-inner {
	max-width: 1200px;
}

.yunda-about__panel {
	position: relative;
	min-height: 552px;
	margin: 0 auto;
	padding: 34px 22px 34px 136px;
	border: 3px solid #fff;
	border-radius: 60px;
	background: linear-gradient(180deg, #fff 0%, #f6f8ff 100%);
	box-shadow: 0 8px 12px rgba(159, 177, 191, 0.25);
}

.yunda-about__nav {
	position: absolute;
	left: -24px;
	top: 110px;
	z-index: 2;
	list-style: none;
	margin: 0;
	padding: 0;
}

.yunda-about__nav li + li {
	margin-top: 36px;
}

.yunda-about__nav-btn {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	position: relative;
	width: 130px;
	height: 38px;
	padding: 8px 16px 8px 52px;
	border: none;
	border-radius: 40px;
	background: #fff;
	box-shadow: 0 4px 10px rgba(159, 177, 191, 0.25);
	color: #3f5075;
	font-family: var(--yunda-font-header);
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: var(--yunda-transition);
	text-align: right;
}

.yunda-about__nav-btn.is-active {
	color: #fff;
	background: linear-gradient(180deg, #42a5f5 0%, #1976d2 55%, #1565c0 100%);
	box-shadow: 0 4px 12px rgba(25, 118, 210, 0.35);
}

.yunda-about__nav-icon {
	position: absolute;
	top: -5px;
	left: 0;
	width: 48px;
	height: 48px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.yunda-about__content {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr;
	max-width: 465px;
	margin-top: 10px;
}

.yunda-about__pane {
	grid-area: 1 / 1;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(18px);
	transition:
		opacity 0.58s cubic-bezier(0.4, 0, 0.2, 1),
		transform 0.58s cubic-bezier(0.4, 0, 0.2, 1),
		visibility 0.58s;
	z-index: 0;
}

.yunda-about__pane.is-active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
	z-index: 1;
}

.yunda-about__pane .yunda-about__pane-head {
	transform: translateX(-16px);
	transition: transform 0.62s cubic-bezier(0.4, 0, 0.2, 1) 0.08s;
}

.yunda-about__pane.is-active .yunda-about__pane-head {
	transform: translateX(0);
}

.yunda-about__pane .yunda-about__pane-body {
	transform: translateX(16px);
	transition: transform 0.62s cubic-bezier(0.4, 0, 0.2, 1) 0.14s;
}

.yunda-about__pane.is-active .yunda-about__pane-body {
	transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
	.yunda-about__pane,
	.yunda-about__pane .yunda-about__pane-head,
	.yunda-about__pane .yunda-about__pane-body,
	.yunda-about__figure {
		transition: none;
		animation: none;
	}

	.yunda-about__pane.is-active,
	.yunda-about__pane.is-active .yunda-about__pane-head,
	.yunda-about__pane.is-active .yunda-about__pane-body {
		opacity: 1;
		visibility: visible;
		transform: none;
	}
}

.yunda-about__pane-head {
	display: flex;
	align-items: flex-end;
	gap: 6px;
}

.yunda-about__pane-title {
	margin: 0;
	font-family: var(--yunda-font-display);
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 700;
	line-height: 1.1;
	color: var(--yunda-primary);
	transform: matrix(1, 0, -0.18, 0.98, 0, 0);
}

.yunda-about__pane-subtitle {
	margin: 0 0 2px;
	align-self: flex-end;
	font-family: var(--yunda-font-display);
	font-size: 18px;
	font-weight: 400;
	font-style: italic;
	line-height: 1.2;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.92);
	text-shadow:
		var(--yunda-primary) 1px 0 0,
		var(--yunda-primary) 0 1px 0,
		var(--yunda-primary) -1px 0 0,
		var(--yunda-primary) 0 -1px 0;
	transform: matrix(1, 0, -0.22, 0.98, 0, 0);
}

.yunda-about__pane-body {
	max-height: 450px;
	margin-top: 8px;
	padding-right: 8px;
	overflow-y: auto;
}

.yunda-about__pane-body::-webkit-scrollbar {
	width: 4px;
}

.yunda-about__pane-body::-webkit-scrollbar-thumb {
	background: var(--yunda-primary);
	border-radius: 20px;
}

.yunda-about__pane-body p {
	margin: 17px 0 0;
	font-size: 14px;
	line-height: 1.65;
	color: rgba(26, 26, 46, 0.72);
	text-align: justify;
}

.yunda-about__pane-body p:first-child {
	margin-top: 32px;
}

.yunda-about__figure {
	position: absolute;
	top: -5px;
	right: -120px;
	z-index: 0;
	width: min(610px, 52vw);
	height: auto;
	max-height: 595px;
	object-fit: contain;
	pointer-events: none;
	user-select: none;
	transform: translateX(0) scale(1);
}

.yunda-about__figure.is-animating {
	animation: yunda-about-figure-in 0.62s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes yunda-about-figure-in {
	from {
		opacity: 0.35;
		transform: translateX(24px) scale(0.96);
	}

	to {
		opacity: 1;
		transform: translateX(0) scale(1);
	}
}

/* Venues — xk-sport hot-game style */
.yunda-venues {
	padding: 56px 0;
	background: var(--yunda-bg-white);
	overflow: hidden;
}

.yunda-venues.yunda-section:nth-child(even) {
	background: var(--yunda-bg-white);
}

.yunda-venues__header {
	text-align: center;
	margin-bottom: 28px;
}

.yunda-venues__title-wrap,
.yunda-platform__title-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.yunda-venues__title-deco,
.yunda-platform__title-deco {
	flex: 1;
	max-width: 140px;
	height: 10px;
	background-size: contain;
	background-repeat: no-repeat;
}

.yunda-venues__title-deco--left,
.yunda-platform__title-deco--left {
	background-image: url("../images/faq-title-left.png");
	background-position: right center;
}

.yunda-venues__title-deco--right,
.yunda-platform__title-deco--right {
	background-image: url("../images/faq-title-right.png");
	background-position: left center;
}

.yunda-venues__title,
.yunda-platform__title {
	margin: 0;
	font-family: var(--yunda-font-display);
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 700;
	color: var(--yunda-primary);
	line-height: 1.3;
}

.yunda-venues__subtitle,
.yunda-platform__subtitle {
	margin: 12px 0 0;
	font-size: 14px;
	color: rgba(26, 26, 46, 0.45);
}

.yunda-venues__body {
	margin-top: 28px;
}

.yunda-venues__nav-wrap {
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.yunda-venues__nav-wrap::-webkit-scrollbar {
	display: none;
}

.yunda-venues__nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	width: max-content;
	max-width: 100%;
	margin: 0 auto;
	padding: 6px;
	list-style: none;
	height: 52px;
	background: #e8f5ff;
	border-radius: 100px;
}

.yunda-venues__nav li {
	flex-shrink: 0;
}

.yunda-venues__nav-btn {
	display: block;
	height: 40px;
	padding: 0 14px;
	border: none;
	border-radius: 100px;
	background: transparent;
	color: #3f5075;
	font-family: var(--yunda-font-header);
	font-size: 14px;
	font-weight: 500;
	line-height: 40px;
	white-space: nowrap;
	cursor: pointer;
	transition: var(--yunda-transition);
}

.yunda-venues__nav-btn.is-active {
	color: var(--yunda-primary);
	background: linear-gradient(180deg, #fff 70.48%, #e8f5ff 110.71%);
	box-shadow: 0 4px 12px rgba(105, 168, 222, 0.25);
}

.yunda-venues__panels {
	display: grid;
	grid-template-columns: 1fr;
	max-width: 1200px;
	margin: 0 auto;
	padding: 12px 0 28px;
}

.yunda-venues__panel {
	grid-area: 1 / 1;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(18px);
	transition:
		opacity 0.58s cubic-bezier(0.4, 0, 0.2, 1),
		transform 0.58s cubic-bezier(0.4, 0, 0.2, 1),
		visibility 0.58s;
	z-index: 0;
}

.yunda-venues__panel.is-active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
	z-index: 1;
}

.yunda-venues__panel .yunda-venues__figure {
	transform: translateX(-16px) scale(0.97);
	transition: transform 0.62s cubic-bezier(0.4, 0, 0.2, 1) 0.08s;
}

.yunda-venues__panel.is-active .yunda-venues__figure {
	transform: translateX(0) scale(1);
}

.yunda-venues__panel .yunda-venues__card-inner {
	transform: translateX(16px);
	transition: transform 0.62s cubic-bezier(0.4, 0, 0.2, 1) 0.14s;
}

.yunda-venues__panel.is-active .yunda-venues__card-inner {
	transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
	.yunda-venues__panel,
	.yunda-venues__panel .yunda-venues__figure,
	.yunda-venues__panel .yunda-venues__card-inner {
		transition: none;
	}

	.yunda-venues__panel.is-active,
	.yunda-venues__panel.is-active .yunda-venues__figure,
	.yunda-venues__panel.is-active .yunda-venues__card-inner {
		opacity: 1;
		visibility: visible;
		transform: none;
	}
}

.yunda-venues__card {
	max-width: 1120px;
	margin: 0 auto;
}

.yunda-venues__card-stage {
	display: grid;
	grid-template-columns: minmax(260px, 44%) minmax(0, 56%);
	align-items: center;
	gap: 24px 32px;
}

.yunda-venues__card-shell {
	position: relative;
	width: 100%;
	min-width: 0;
}

.yunda-venues__figure {
	position: relative;
	left: auto;
	top: auto;
	z-index: 1;
	width: 100%;
	max-width: 460px;
	height: auto;
	max-height: 400px;
	margin: 0 auto;
	object-fit: contain;
	pointer-events: none;
	user-select: none;
}

.yunda-venues__card-inner {
	position: relative;
	width: 100%;
	min-height: 0;
	padding: 36px 32px 32px;
	border: 3px solid #fff;
	border-radius: 48px;
	background: linear-gradient(180deg, #fff 0%, #f6f8ff 100%);
	box-shadow: 0 8px 24px rgba(159, 177, 191, 0.28);
	box-sizing: border-box;
}

.yunda-venues__content {
	position: relative;
	top: auto;
	right: auto;
	width: 100%;
}

.yunda-venues__pane-head {
	display: flex;
	align-items: flex-end;
	gap: 6px;
	margin-bottom: 24px;
}

.yunda-venues__pane-title {
	margin: 0;
	font-family: var(--yunda-font-display);
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 700;
	line-height: 1.1;
	color: var(--yunda-primary);
	transform: matrix(1, 0, -0.18, 0.98, 0, 0);
}

.yunda-venues__pane-subtitle {
	margin: 0 0 2px;
	align-self: flex-end;
	font-family: var(--yunda-font-display);
	font-size: 18px;
	font-weight: 400;
	font-style: italic;
	line-height: 1.2;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.92);
	text-shadow:
		var(--yunda-primary) 1px 0 0,
		var(--yunda-primary) 0 1px 0,
		var(--yunda-primary) -1px 0 0,
		var(--yunda-primary) 0 -1px 0;
	transform: matrix(1, 0, -0.22, 0.98, 0, 0);
}

.yunda-venues__pane-body {
	max-height: 280px;
	padding-right: 6px;
	overflow-y: auto;
}

.yunda-venues__pane-body::-webkit-scrollbar {
	width: 4px;
}

.yunda-venues__pane-body::-webkit-scrollbar-thumb {
	background: var(--yunda-primary);
	border-radius: 20px;
}

.yunda-venues__pane-body p {
	margin: 0 0 12px;
	font-size: 14px;
	line-height: 1.65;
	color: rgba(26, 26, 46, 0.72);
	text-align: justify;
}

.yunda-venues__pane-body p:last-child {
	margin-bottom: 0;
}

/* Platform download — xk-sport style cards */
.yunda-platform {
	padding: 80px 0;
	background: var(--yunda-bg);
	overflow: hidden;
}

.yunda-platform__header {
	text-align: center;
	margin-bottom: 40px;
}

.yunda-platform__scroll {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	padding-bottom: 8px;
}

.yunda-platform__list {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0;
	list-style: none;
}

.yunda-platform__item {
	position: relative;
	min-width: 0;
	padding: 4px 16px 70px;
	border: 3px solid #fff;
	border-radius: 32px;
	background: linear-gradient(180deg, #fff 0%, #f6f8ff 100%);
	box-shadow: 0 8px 12px rgba(159, 177, 191, 0.25);
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.yunda-platform__item:hover {
	transform: scale(1.04);
	box-shadow: 0 12px 24px rgba(159, 177, 191, 0.32);
}

.yunda-platform__icon {
	width: min(279px, 100%);
	height: auto;
	max-height: 238px;
	margin: 0 auto;
	object-fit: contain;
}

.yunda-platform__name {
	margin: 18px 0 12px;
	font-size: clamp(1.1rem, 2vw, 1.5rem);
	font-weight: 600;
	line-height: 1.35;
}

.yunda-platform__name a {
	color: var(--yunda-primary);
	text-decoration: none;
}

.yunda-platform__name a:hover {
	color: var(--yunda-primary-dark);
}

.yunda-platform__desc {
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
	color: rgba(26, 26, 46, 0.65);
	text-align: justify;
}

.yunda-platform__btn {
	position: absolute;
	left: 50%;
	bottom: 22px;
	transform: translateX(-50%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 132px;
	height: 40px;
	border-radius: 999px;
	background: linear-gradient(180deg, #42a5f5 0%, #1976d2 55%, #1565c0 100%);
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
	transition: var(--yunda-transition);
}

.yunda-platform__btn:hover {
	background: linear-gradient(180deg, #64b5f6 0%, #1e88e5 100%);
	color: #fff;
}

/* Activity — premium promo cards */
.yunda-activity {
	position: relative;
	padding: 80px 0;
	background:
		radial-gradient(ellipse 70% 55% at 15% 0%, rgba(25, 118, 210, 0.07), transparent 55%),
		radial-gradient(ellipse 60% 45% at 90% 100%, rgba(0, 172, 193, 0.06), transparent 50%),
		var(--yunda-bg);
	overflow: hidden;
}

.yunda-activity__ambient {
	position: absolute;
	inset: 0;
	pointer-events: none;
	overflow: hidden;
}

.yunda-activity__orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(90px);
}

.yunda-activity__orb--blue {
	width: 360px;
	height: 360px;
	top: -80px;
	right: 10%;
	background: rgba(25, 118, 210, 0.1);
}

.yunda-activity__orb--cyan {
	width: 300px;
	height: 300px;
	bottom: -60px;
	left: -40px;
	background: rgba(0, 172, 193, 0.08);
}

.yunda-activity__container {
	position: relative;
	z-index: 1;
}

.yunda-activity__header {
	text-align: center;
	margin-bottom: 40px;
}

.yunda-activity__title-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.yunda-activity__title-deco {
	flex: 1;
	max-width: 140px;
	height: 10px;
	background-size: contain;
	background-repeat: no-repeat;
}

.yunda-activity__title-deco--left {
	background-image: url("../images/faq-title-left.png");
	background-position: right center;
}

.yunda-activity__title-deco--right {
	background-image: url("../images/faq-title-right.png");
	background-position: left center;
}

.yunda-activity__title {
	margin: 0;
	font-family: var(--yunda-font-display);
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 700;
	color: var(--yunda-primary);
	line-height: 1.3;
}

.yunda-activity__subtitle {
	margin: 12px 0 0;
	font-size: 14px;
	color: rgba(26, 26, 46, 0.45);
}

.yunda-activity__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.yunda-activity__grid .yunda-empty {
	grid-column: 1 / -1;
	text-align: center;
}

.yunda-activity__card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 100%;
	border: 3px solid #fff;
	border-radius: 28px;
	background: linear-gradient(180deg, #fff 0%, #f6f8ff 100%);
	box-shadow: 0 8px 24px rgba(159, 177, 191, 0.24);
	overflow: hidden;
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.yunda-activity__card:hover {
	transform: translateY(-8px);
	box-shadow: 0 16px 40px rgba(25, 118, 210, 0.16);
}

.yunda-activity__visual {
	position: relative;
	height: 168px;
	overflow: hidden;
}

.yunda-activity__card--vip .yunda-activity__visual {
	background: linear-gradient(135deg, #1565c0 0%, #42a5f5 45%, #ffd54f 100%);
}

.yunda-activity__card--promo .yunda-activity__visual {
	background: linear-gradient(135deg, #00838f 0%, #00acc1 50%, #4dd0e1 100%);
}

.yunda-activity__card--new .yunda-activity__visual {
	background: linear-gradient(135deg, #4527a0 0%, #7e57c2 45%, #42a5f5 100%);
}

.yunda-activity__card--default .yunda-activity__visual {
	background: linear-gradient(135deg, #1976d2 0%, #64b5f6 55%, #00bcd4 100%);
}

.yunda-activity__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.yunda-activity__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.yunda-activity__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.18);
	color: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(6px);
}

.yunda-activity__icon svg {
	width: 36px;
	height: 36px;
}

.yunda-activity__badge {
	position: absolute;
	top: 16px;
	left: 16px;
	z-index: 2;
	padding: 5px 14px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 600;
	color: #fff;
	background: rgba(0, 0, 0, 0.28);
	border: 1px solid rgba(255, 255, 255, 0.35);
	backdrop-filter: blur(8px);
}

.yunda-activity__shine {
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.22) 50%, transparent 70%);
	transform: translateX(-120%);
	transition: transform 0.6s ease;
}

.yunda-activity__card:hover .yunda-activity__shine {
	transform: translateX(120%);
}

.yunda-activity__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 24px 22px 26px;
}

.yunda-activity__name {
	margin: 0 0 10px;
	font-family: var(--yunda-font-display);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.4;
	color: #2d3453;
}

.yunda-activity__desc {
	flex: 1;
	margin: 0 0 20px;
	font-size: 14px;
	line-height: 1.65;
	color: rgba(26, 26, 46, 0.58);
	display: -webkit-box;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.yunda-activity__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	align-self: flex-start;
	min-width: 132px;
	height: 40px;
	padding: 0 18px;
	border-radius: 999px;
	background: linear-gradient(180deg, #42a5f5 0%, #1976d2 55%, #1565c0 100%);
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	box-shadow: 0 4px 12px rgba(25, 118, 210, 0.28);
	transition: var(--yunda-transition);
}

.yunda-activity__btn svg {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	transition: transform 0.25s ease;
}

.yunda-activity__btn:hover {
	background: linear-gradient(180deg, #64b5f6 0%, #1e88e5 100%);
	color: #fff;
}

.yunda-activity__btn:hover svg {
	transform: translateX(3px);
}

/* Playguide — milan tutorial layout, yunda colors */
.yunda-playguide {
	padding: 80px 0;
	background: linear-gradient(180deg, #eef6ff 0%, #f8f9fc 100%);
	overflow: hidden;
}

.yunda-playguide__header {
	text-align: center;
	margin-bottom: 40px;
}

.yunda-playguide__title-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.yunda-playguide__title-deco {
	flex: 1;
	max-width: 140px;
	height: 10px;
	background-size: contain;
	background-repeat: no-repeat;
}

.yunda-playguide__title-deco--left {
	background-image: url("../images/faq-title-left.png");
	background-position: right center;
}

.yunda-playguide__title-deco--right {
	background-image: url("../images/faq-title-right.png");
	background-position: left center;
}

.yunda-playguide__title {
	margin: 0;
	font-family: var(--yunda-font-display);
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 700;
	color: var(--yunda-primary);
	line-height: 1.3;
}

.yunda-playguide__subtitle {
	margin: 10px 0 0;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.12em;
	color: rgba(26, 26, 46, 0.45);
}

.yunda-playguide__intro {
	max-width: 920px;
	margin: 16px auto 0;
	font-size: 14px;
	line-height: 1.75;
	color: rgba(26, 26, 46, 0.62);
	text-align: center;
}

.yunda-playguide__stage {
	max-width: 1200px;
	margin: 0 auto;
}

.yunda-playguide__card {
	border-radius: 40px 40px 0 0;
	background: #fff;
	box-shadow: 0 20px 40px rgba(25, 118, 210, 0.12);
	overflow: visible;
}

.yunda-playguide__main {
	display: flex;
	align-items: stretch;
	min-height: 430px;
	padding: 40px 60px 40px 50px;
	overflow: visible;
}

.yunda-playguide__tabs {
	flex: 0 0 200px;
	margin-right: 20px;
}

.yunda-playguide__tab-list {
	display: flex;
	flex-direction: column;
	gap: 0;
	padding: 38px 0 40px;
	border: 12px solid rgba(25, 118, 210, 0.08);
	border-radius: 36px;
	background: linear-gradient(180deg, #f3f9ff 0%, #e8f4ff 100%);
}

.yunda-playguide__tab {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
	width: 100%;
	height: 51px;
	padding: 0 42px 0 16px;
	border: none;
	background: transparent;
	cursor: pointer;
	transition: var(--yunda-transition);
}

.yunda-playguide__tab-num {
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(25, 118, 210, 0.08);
	color: rgba(26, 26, 46, 0.45);
	font-size: 12px;
	font-weight: 700;
	transition: var(--yunda-transition);
}

.yunda-playguide__tab-label {
	min-width: 56px;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2;
	color: #3f5075;
	text-align: justify;
	transition: var(--yunda-transition);
}

.yunda-playguide__tab.is-active,
.yunda-playguide__tab:hover {
	background: linear-gradient(90deg, rgba(25, 118, 210, 0.12) 0%, rgba(25, 118, 210, 0.04) 100%);
}

.yunda-playguide__tab.is-active .yunda-playguide__tab-num,
.yunda-playguide__tab:hover .yunda-playguide__tab-num {
	background: linear-gradient(180deg, #42a5f5 0%, #1976d2 55%, #1565c0 100%);
	color: #fff;
	box-shadow: 0 4px 12px rgba(25, 118, 210, 0.28);
}

.yunda-playguide__tab.is-active .yunda-playguide__tab-label,
.yunda-playguide__tab:hover .yunda-playguide__tab-label {
	color: var(--yunda-primary);
}

.yunda-playguide__panes {
	position: relative;
	display: grid;
	grid-template-columns: 1fr;
	flex: 1;
	min-width: 0;
	min-height: 357px;
	padding: 38px 390px 40px 0;
	border-radius: 36px;
	background: linear-gradient(180deg, rgba(232, 245, 255, 0.9) 0%, rgba(246, 250, 255, 0.95) 100%);
	border: 1px solid rgba(25, 118, 210, 0.08);
	overflow: visible;
}

.yunda-playguide__pane {
	grid-area: 1 / 1;
	position: relative;
	width: 100%;
	min-height: 280px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(18px);
	transition:
		opacity 0.58s cubic-bezier(0.4, 0, 0.2, 1),
		transform 0.58s cubic-bezier(0.4, 0, 0.2, 1),
		visibility 0.58s;
	z-index: 0;
}

.yunda-playguide__pane.is-active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
	z-index: 1;
}

.yunda-playguide__pane .yunda-playguide__copy {
	transform: translateX(-16px);
	transition: transform 0.62s cubic-bezier(0.4, 0, 0.2, 1) 0.08s;
}

.yunda-playguide__pane.is-active .yunda-playguide__copy {
	transform: translateX(0);
}

.yunda-playguide__pane .yunda-playguide__shot {
	transform: translateX(24px) translateY(-50%) scale(0.97);
	transition: transform 0.62s cubic-bezier(0.4, 0, 0.2, 1) 0.14s;
}

.yunda-playguide__pane.is-active .yunda-playguide__shot {
	transform: translateX(0) translateY(-50%) scale(1);
}

@media (prefers-reduced-motion: reduce) {
	.yunda-playguide__pane,
	.yunda-playguide__pane .yunda-playguide__copy,
	.yunda-playguide__pane .yunda-playguide__shot {
		transition: none;
	}

	.yunda-playguide__pane.is-active,
	.yunda-playguide__pane.is-active .yunda-playguide__copy,
	.yunda-playguide__pane.is-active .yunda-playguide__shot {
		opacity: 1;
		visibility: visible;
		transform: none;
	}
}

.yunda-playguide__copy {
	max-width: 500px;
	padding: 26px 40px 10px;
	color: var(--yunda-text);
}

.yunda-playguide__pane-title {
	margin: 0;
	font-family: var(--yunda-font-display);
	font-size: 26px;
	font-weight: 700;
	line-height: 1.25;
	color: var(--yunda-primary);
}

.yunda-playguide__pane-line {
	width: 60px;
	height: 3px;
	margin-top: 10px;
	background: var(--yunda-primary);
	border-radius: 999px;
}

.yunda-playguide__pane-subtitle {
	margin: 10px 0 6px;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
	color: #3f5075;
}

.yunda-playguide__pane-desc {
	margin: 0;
	font-size: 14px;
	line-height: 1.65;
	color: rgba(26, 26, 46, 0.68);
	text-align: justify;
}

.yunda-playguide__shot {
	position: absolute;
	top: 50%;
	right: -350px;
	width: 286px;
	height: 286px;
	margin: 0 40px 0 0;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 16px 40px rgba(25, 118, 210, 0.18);
	background: #fff;
}

.yunda-playguide__shot img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.yunda-playguide__stats {
	display: flex;
	align-items: center;
	justify-content: space-around;
	gap: 24px;
	padding: 28px 40px 32px;
	background: linear-gradient(180deg, #42a5f5 0%, #1976d2 55%, #1565c0 100%);
}

.yunda-playguide__stat {
	position: relative;
	flex: 1;
	text-align: center;
	color: #fff;
}

.yunda-playguide__stat:not(:last-child)::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 1px;
	height: 50px;
	background: rgba(255, 255, 255, 0.18);
	transform: translateY(-50%);
}

.yunda-playguide__stat-value {
	font-size: clamp(1.75rem, 4vw, 3rem);
	font-weight: 700;
	line-height: 1.15;
}

.yunda-playguide__stat-label {
	margin-top: 6px;
	font-size: 16px;
	line-height: 1.35;
	color: rgba(255, 255, 255, 0.88);
}

/* News — worldcup2026.bet style */
.yunda-news {
	position: relative;
	padding: 80px 0;
	background: #f8f9fc;
	overflow-x: clip;
}

.yunda-news__container {
	max-width: 1200px;
}

.yunda-news__title {
	text-align: center;
	font-weight: 700;
	font-size: 30px;
	line-height: 40px;
	color: #2d3453;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	font-family: var(--yunda-font-display);
}

.yunda-news__title::before {
	content: "";
	display: block;
	height: 10px;
	margin-right: 20px;
	flex: 1;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: right;
	background-image: url("../images/faq-title-left.png");
}

.yunda-news__title::after {
	content: "";
	display: block;
	height: 10px;
	margin-left: 20px;
	flex: 1;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: left;
	background-image: url("../images/faq-title-right.png");
}

.yunda-news__subtitle {
	color: #545a74;
	font-size: 16px;
	line-height: 22px;
	margin: 8px auto 40px;
	text-align: center;
}

.yunda-news__list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.yunda-news__list .yunda-empty {
	grid-column: 1 / -1;
}

.yunda-news__item {
	background: #fff;
	border-radius: 12px;
	padding: 24px;
	box-shadow: 0 4px 20px rgba(43, 64, 151, 0.08);
	display: flex;
	flex-direction: column;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.yunda-news__item:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 28px rgba(43, 64, 151, 0.12);
}

.yunda-news__item:hover .yunda-news__item-title a {
	color: var(--yunda-primary);
}

.yunda-news__item-img {
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: 12px;
	overflow: hidden;
	margin-bottom: 24px;
	background: linear-gradient(135deg, rgba(25, 118, 210, 0.08), rgba(0, 188, 212, 0.06));
}

.yunda-news__item-img a {
	display: block;
	width: 100%;
	height: 100%;
}

.yunda-news__item-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.yunda-news__item-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(25, 118, 210, 0.12), rgba(0, 188, 212, 0.08));
}

.yunda-news__item-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-width: 0;
}

.yunda-news__item-title {
	margin: 0 0 12px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.6;
}

.yunda-news__item-title a {
	color: #2d3453;
	text-decoration: none;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	transition: color 0.3s ease;
}

.yunda-news__item-footer {
	display: flex;
	align-items: center;
	font-size: 14px;
	color: #545a74;
}

/* Homepage card meta — aligned with changyunyule.org posts-item-meta */
.yunda-news .posts-item-meta {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: nowrap;
	gap: 0;
	margin: 0;
	padding: 0;
	background: transparent;
	border: none;
}

.yunda-news .posts-item-meta__tag {
	display: inline-flex;
	align-items: center;
	max-width: 62%;
	padding: 6px 12px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.25;
	color: #2563eb;
	text-decoration: none;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	background: rgba(59, 130, 246, 0.12);
	border: 1px solid rgba(59, 130, 246, 0.2);
	transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.yunda-news .posts-item-meta__tag--static {
	cursor: default;
}

.yunda-news a.posts-item-meta__tag:hover {
	color: #1d4ed8;
	background: rgba(59, 130, 246, 0.18);
	border-color: rgba(59, 130, 246, 0.32);
}

.yunda-news .posts-item-meta__sep {
	flex-shrink: 0;
	margin: 0 10px;
	font-size: 12px;
	font-weight: 300;
	line-height: 1;
	color: #e0e0e0;
	user-select: none;
}

.yunda-news .posts-item-meta__date {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	flex-shrink: 0;
	padding: 0;
	border: none;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	font-size: 12px;
	font-weight: 400;
	font-variant-numeric: tabular-nums;
	line-height: 1;
	color: #718096;
	white-space: nowrap;
}

.yunda-news .posts-item-meta__icon {
	width: 13px;
	height: 13px;
	flex-shrink: 0;
	color: #718096;
	opacity: 0.85;
}

.yunda-news__list--archive {
	margin-top: 0;
}

/* Category archive page */
.yunda-page--archive {
	padding-top: 18px;
	padding-bottom: 88px;
}

main.yunda-page:has(> .yunda-breadcrumb + .yunda-page--archive) {
	padding-bottom: 0;
}

main.yunda-page:has(> .yunda-breadcrumb + .yunda-page--gushi) {
	padding-bottom: 0;
}

.yunda-page--archive.yunda-news {
	padding-top: 0;
	padding-bottom: 88px;
	padding-inline: 24px;
}

.yunda-archive__header {
	margin-bottom: 28px;
	text-align: center;
}

.yunda-archive__title-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-bottom: 0;
}

.yunda-archive__title-deco {
	flex: 1;
	max-width: 140px;
	height: 10px;
	background-size: contain;
	background-repeat: no-repeat;
}

.yunda-archive__title-deco--left {
	background-image: url("../images/faq-title-left.png");
	background-position: right center;
}

.yunda-archive__title-deco--right {
	background-image: url("../images/faq-title-right.png");
	background-position: left center;
}

.yunda-archive__title {
	margin: 0;
	font-size: clamp(1.35rem, 3vw, 1.75rem);
	font-weight: 700;
	line-height: 1.3;
	color: var(--yunda-primary);
	flex-shrink: 0;
}

.yunda-archive__subtitle {
	margin: 12px 0 0;
	font-size: 14px;
	line-height: 1.5;
	color: rgba(100, 116, 139, 0.9);
	letter-spacing: 0.02em;
}

.yunda-page--archive .yunda-archive-intro {
	margin: 16px auto 0;
	max-width: 820px;
	text-align: left;
}

.yunda-page--archive .yunda-news__item {
	padding: 0;
	overflow: hidden;
	border: 1px solid rgba(226, 232, 240, 0.95);
	border-radius: 12px;
	box-shadow: 0 4px 18px rgba(43, 64, 151, 0.07);
}

.yunda-page--archive .yunda-news__item-img {
	margin-bottom: 0;
	border-radius: 0;
}

.yunda-page--archive .yunda-news__item-content {
	padding: 16px 18px 18px;
}

.yunda-page--archive .yunda-news__item--pillar {
	border-color: rgba(37, 99, 235, 0.22);
	box-shadow: 0 8px 24px rgba(37, 99, 235, 0.1);
}

.yunda-page--archive .yunda-news__pillar-badge {
	top: 12px;
	left: 12px;
}

.yunda-page--archive .yunda-news__list--archive {
	margin-top: 28px;
}

.yunda-archive-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 40px;
	margin-bottom: 0;
	padding-top: 28px;
	border-top: 1px solid rgba(226, 232, 240, 0.88);
}

.yunda-archive-pagination--single {
	padding-top: 0;
	border-top: none;
	min-height: 48px;
}

/* 分页 — 编辑线框风 */
.yunda-archive-pagination--compact .yunda-archive-pagination__bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0;
	width: 100%;
	padding: 0;
	border-radius: 0;
	background: transparent;
	border: none;
	box-shadow: none;
}

.yunda-archive-pagination__group {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
	padding: 0 16px;
}

.yunda-archive-pagination__group--prev {
	padding-left: 0;
	border-right: 1px solid rgba(15, 23, 42, 0.08);
}

.yunda-archive-pagination__group--next {
	padding-right: 0;
	border-left: 1px solid rgba(15, 23, 42, 0.08);
}

.yunda-archive-pagination__center {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
	min-width: 0;
	flex: 1;
	padding: 0 24px;
}

.yunda-archive-pagination__status {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	margin: 0 auto;
	position: relative;
}

.yunda-archive-pagination__status .screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.yunda-archive-pagination__status-text {
	display: inline-flex;
	align-items: baseline;
	justify-content: center;
	gap: 14px;
	margin: 0;
	font-variant-numeric: tabular-nums;
}

.yunda-archive-pagination__status-current {
	color: var(--yunda-primary);
	font-size: 30px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.04em;
}

.yunda-archive-pagination__status-sep {
	display: block;
	width: 1px;
	height: 22px;
	background: rgba(15, 23, 42, 0.14);
	transform: rotate(18deg);
}

.yunda-archive-pagination__status-total {
	color: #94a3b8;
	font-size: 22px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.04em;
}

.yunda-archive-pagination__status-label {
	color: #64748b;
	font-size: 12px;
	line-height: 1.3;
	letter-spacing: 0.02em;
	white-space: nowrap;
}

.yunda-archive-pagination__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	min-height: 40px;
	padding: 0 14px;
	border-radius: 8px;
	border: 1px solid rgba(15, 23, 42, 0.12);
	background: #fff;
	color: #334155;
	font-size: 13px;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	transition:
		color 0.2s ease,
		border-color 0.2s ease,
		background 0.2s ease,
		box-shadow 0.2s ease;
}

.yunda-archive-pagination__btn svg {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}

.yunda-archive-pagination__btn--text {
	min-width: 52px;
	padding: 0 12px;
	color: #475569;
}

.yunda-archive-pagination a.yunda-archive-pagination__btn:hover {
	color: var(--yunda-primary);
	border-color: rgba(25, 118, 210, 0.35);
	background: rgba(25, 118, 210, 0.04);
	box-shadow: none;
	transform: none;
}

.yunda-archive-pagination__btn.is-disabled {
	color: #cbd5e1;
	border-color: rgba(148, 163, 184, 0.28);
	background: #f8fafc;
	cursor: not-allowed;
	box-shadow: none;
	transform: none;
}

.yunda-archive-pagination__jump {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0;
}

.yunda-archive-pagination__jump-label,
.yunda-archive-pagination__jump-suffix {
	color: #64748b;
	font-size: 12px;
	line-height: 1;
	white-space: nowrap;
}

.yunda-archive-pagination__jump-input {
	width: 72px;
	height: 36px;
	padding: 0 10px;
	border: 1px solid rgba(15, 23, 42, 0.12);
	border-radius: 8px;
	background: #fff;
	color: #1e293b;
	font-size: 13px;
	font-weight: 600;
	font-variant-numeric: tabular-nums;
	text-align: center;
}

.yunda-archive-pagination__jump-input:focus {
	outline: none;
	border-color: rgba(25, 118, 210, 0.45);
	box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.1);
}

.yunda-archive-pagination__jump-btn {
	height: 36px;
	padding: 0 14px;
	border: 1px solid var(--yunda-primary);
	border-radius: 8px;
	background: #fff;
	color: var(--yunda-primary);
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease;
}

.yunda-archive-pagination__jump-btn:hover {
	background: var(--yunda-primary);
	color: #fff;
	box-shadow: none;
}

.yunda-archive-pagination__btn:focus-visible,
.yunda-archive-pagination__jump-btn:focus-visible {
	outline: 2px solid rgba(25, 118, 210, 0.35);
	outline-offset: 2px;
}

@media (max-width: 768px) {
	.yunda-archive-pagination {
		margin-top: 24px;
		padding-top: 20px;
	}

	.yunda-archive-pagination--compact .yunda-archive-pagination__bar {
		display: grid;
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		grid-template-areas:
			"status status"
			"prev next";
		gap: 12px;
		align-items: stretch;
	}

	.yunda-archive-pagination__group {
		justify-content: stretch;
		padding: 0;
		border: none;
	}

	.yunda-archive-pagination__group--prev {
		grid-area: prev;
		order: unset;
	}

	.yunda-archive-pagination__center {
		grid-area: status;
		order: unset;
		padding: 0;
	}

	.yunda-archive-pagination__group--next {
		grid-area: next;
		order: unset;
	}

	.yunda-archive-pagination__group .yunda-archive-pagination__btn {
		width: 100%;
		min-height: 42px;
	}

	.yunda-archive-pagination--compact-extended .yunda-archive-pagination__jump {
		flex-wrap: wrap;
		justify-content: center;
	}

	.yunda-archive-pagination__btn {
		padding: 0 12px;
		font-size: 13px;
	}

	.yunda-archive-pagination__status {
		gap: 4px;
	}

	.yunda-archive-pagination__status-text {
		gap: 10px;
	}

	.yunda-archive-pagination__status-current {
		font-size: 22px;
	}

	.yunda-archive-pagination__status-total {
		font-size: 16px;
	}

	.yunda-archive-pagination__status-label {
		font-size: 11px;
	}

	.yunda-page--gushi .yunda-archive-pagination {
		margin-top: 16px;
		padding-top: 16px;
	}
}

@media (max-width: 768px) {
	main.yunda-page:has(> .yunda-breadcrumb--path-only + .yunda-page--archive) > .yunda-breadcrumb--path-only {
		padding-top: 6px;
	}

	.yunda-page--archive {
		padding-top: 8px;
		padding-bottom: 32px;
	}

	.yunda-page--archive.yunda-news {
		padding-top: 8px;
		padding-bottom: 32px;
		padding-inline: 16px;
	}

	.yunda-page--archive .yunda-archive__header {
		margin-bottom: 18px;
	}

	.yunda-archive__title-wrap {
		gap: 10px;
	}

	.yunda-archive__title-deco {
		max-width: 100px;
		height: 6px;
	}

	.yunda-archive__title {
		font-size: 1.2rem;
	}

	.yunda-archive__subtitle {
		margin-top: 8px;
		font-size: 13px;
	}

	.yunda-page--archive .yunda-archive-intro {
		margin-top: 8px;
		margin-bottom: 12px;
		padding: 14px 16px;
		border-radius: 10px;
	}

	.yunda-page--archive .yunda-news__list--archive {
		margin-top: 14px;
	}

	.yunda-page--archive .yunda-news__item-content {
		padding: 14px 14px 16px;
	}

	.yunda-page--archive .yunda-archive-pagination {
		margin-top: 20px;
		padding-top: 0;
		border-top: none;
	}

	.yunda-page--archive .yunda-archive-pagination--single {
		min-height: 0;
		margin-top: 0;
		padding: 0;
		border: 0;
	}
}

@media (max-width: 1024px) {
	.yunda-news__list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 16px;
	}

	.yunda-news__item {
		padding: 16px;
	}

	.yunda-news__item-img {
		margin-bottom: 16px;
	}

	.yunda-news__subtitle {
		margin-bottom: 30px;
	}
}

@media (max-width: 768px) {
	.yunda-news:not(.yunda-page--archive) {
		padding: 40px 0 24px;
	}

	.yunda-news__title {
		font-size: 18px;
		line-height: 1.5;
	}

	.yunda-news__title::before,
	.yunda-news__title::after {
		height: 6px;
		width: 100px;
		flex: initial;
	}

	.yunda-news__title::before {
		margin-right: 10px;
	}

	.yunda-news__title::after {
		margin-left: 10px;
	}

	.yunda-news__subtitle {
		margin-bottom: 20px;
		font-size: 14px;
		line-height: 18px;
	}

	.yunda-news__list {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.yunda-news__item-title {
		font-size: 15px;
	}

	.yunda-news__item-footer {
		font-size: 13px;
	}

	.yunda-news .posts-item-meta__tag {
		padding: 5px 10px;
		font-size: 11px;
	}

	.yunda-news .posts-item-meta__date {
		font-size: 11px;
	}

	.yunda-news .posts-item-meta__icon {
		width: 12px;
		height: 12px;
	}
}

/* FAQ — milan-web layout, yunda colors */
.yunda-faq {
	padding: 80px 0;
	background: linear-gradient(180deg, #f8f9fc 0%, #eef6ff 100%);
}

.yunda-faq__header {
	text-align: center;
	margin-bottom: 40px;
}

.yunda-faq__title-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.yunda-faq__title-deco {
	flex: 1;
	max-width: 140px;
	height: 10px;
	background-size: contain;
	background-repeat: no-repeat;
}

.yunda-faq__title-deco--left {
	background-image: url("../images/faq-title-left.png");
	background-position: right center;
}

.yunda-faq__title-deco--right {
	background-image: url("../images/faq-title-right.png");
	background-position: left center;
}

.yunda-faq__title {
	margin: 0;
	font-family: var(--yunda-font-display);
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 700;
	color: var(--yunda-primary);
	line-height: 1.3;
}

.yunda-faq__subtitle {
	margin: 10px 0 0;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.12em;
	color: rgba(26, 26, 46, 0.45);
}

.yunda-faq__intro {
	margin: 12px 0 0;
	font-size: 16px;
	line-height: 1.5;
	color: rgba(26, 26, 46, 0.55);
}

.yunda-faq__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.yunda-faq-item {
	display: flex;
	align-items: flex-start;
	gap: 24px;
	padding: 18px 24px;
	border-radius: 8px;
	transition: background-color 0.25s ease;
}

.yunda-faq-item:nth-child(odd) {
	background: rgba(25, 118, 210, 0.05);
}

.yunda-faq-item:nth-child(even) {
	background: rgba(25, 118, 210, 0.09);
}

.yunda-faq-item__badge {
	flex-shrink: 0;
	display: grid;
	place-items: center;
	width: 56px;
	height: 56px;
	border: 3px solid #fff;
	border-radius: 50%;
	background: linear-gradient(180deg, #42a5f5 0%, #1976d2 55%, #1565c0 100%);
	box-shadow: 0 0 0 2px rgba(25, 118, 210, 0.12);
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
}

.yunda-faq-item__desc {
	flex: 1;
	min-width: 0;
}

.yunda-faq-item__question {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
	padding: 0;
	border: none;
	background: transparent;
	text-align: left;
	cursor: pointer;
}

.yunda-faq-item__q {
	flex: 1;
	min-width: 0;
	font-family: var(--yunda-font-header);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.75;
	color: #3f5075;
}

.yunda-faq-item.is-open .yunda-faq-item__q {
	color: var(--yunda-primary);
}

.yunda-faq-item__toggle {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	margin-top: 4px;
	background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAMAAAC7IEhfAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAA8UExURUxpca6zx66zx66yyK6yyK6yyK+vz6+vx6+yx66zyK2xyK6zyK6zyK+vv6yxx66xyK2yx62wx6+0xK+zyNQ2goMAAAATdFJOUwCv78/fvxAgQICQn98QYFCgoDCFDAG1AAABNUlEQVR42rWU2Y6FIBBEaRBkcZs5//+vcxNURMFkHm69aMihqylb1LfllijDRzau4wvmLReJf8W0SSlJ3mGaVSOgoz+3bRoIz+Ys6OCuS2MAxN040zIaBzA1aWFz6qFZwF4XAohqaoN4sYDJtcHZQInJQDfeURdzD0F1FUpJQY99cD5LjpDUiyLkA6zg6/SmysDDcuyoOahJTdzDtjfuRpo95AGpuRBq8odpB1PNKZXJHli4QnbAOXMH6c6cTXnu2WYukzqD5bQRfVr7S3y/x9sxQAt49SIPazaE+AZu52zZ3E5/zuR/Y5ZL9gcXzLVd0zF3QzX9sTuScmvLgrhGvQTy+Nmm5wVgnj3NAoQKdUGDda0Y0KlcUlFTvsTDCLCSUjIawHZvSKGoYM2qa7TDRxIXp76sP/reE+FnlgMmAAAAAElFTkSuQmCC") center / cover no-repeat;
	transform: rotate(180deg);
	transition: transform 0.3s ease;
}

.yunda-faq-item.is-open .yunda-faq-item__toggle {
	transform: rotate(0);
}

.yunda-faq-item__answer {
	height: 0;
	overflow: hidden;
	transition: height 0.3s ease;
}

.yunda-faq-item__answer-inner {
	padding-top: 8px;
}

.yunda-faq-item__a {
	margin: 0;
	font-size: 14px;
	line-height: 1.75;
	color: rgba(26, 26, 46, 0.68);
	text-align: justify;
	letter-spacing: 0.02em;
}

.yunda-faq-item__a-label {
	font-weight: 600;
	color: rgba(26, 26, 46, 0.82);
}

.yunda-faq-item__a-more {
	margin: 8px 0 0;
	padding-left: 2em;
	font-size: 14px;
	line-height: 1.75;
	color: rgba(26, 26, 46, 0.68);
	text-align: justify;
	letter-spacing: 0.02em;
}

@media (max-width: 1023px) {
	.yunda-faq-item__answer {
		height: 0;
		overflow: hidden;
	}
}

@media (min-width: 1024px) {
	.yunda-faq-item__question {
		pointer-events: none;
		cursor: default;
	}

	.yunda-faq-item__toggle {
		display: none;
	}

	.yunda-faq-item__answer {
		height: auto !important;
		overflow: visible;
	}
}

/* Contact — premium channel cards */
.yunda-contact {
	position: relative;
	padding: 80px 0;
	background:
		radial-gradient(ellipse 65% 50% at 85% 0%, rgba(126, 87, 194, 0.07), transparent 55%),
		radial-gradient(ellipse 70% 55% at 10% 100%, rgba(25, 118, 210, 0.08), transparent 50%),
		#f6f8ff;
	overflow: hidden;
}

.yunda-contact.yunda-section:nth-child(even) {
	background:
		radial-gradient(ellipse 65% 50% at 85% 0%, rgba(126, 87, 194, 0.07), transparent 55%),
		radial-gradient(ellipse 70% 55% at 10% 100%, rgba(25, 118, 210, 0.08), transparent 50%),
		#f6f8ff;
}

.yunda-contact__ambient {
	position: absolute;
	inset: 0;
	pointer-events: none;
	overflow: hidden;
}

.yunda-contact__orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(90px);
}

.yunda-contact__orb--blue {
	width: 340px;
	height: 340px;
	bottom: -80px;
	right: 8%;
	background: rgba(25, 118, 210, 0.1);
}

.yunda-contact__orb--purple {
	width: 280px;
	height: 280px;
	top: -60px;
	left: 6%;
	background: rgba(126, 87, 194, 0.08);
}

.yunda-contact__container {
	position: relative;
	z-index: 1;
}

.yunda-contact__header {
	text-align: center;
	margin-bottom: 24px;
}

.yunda-contact__title-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.yunda-contact__title-deco {
	flex: 1;
	max-width: 140px;
	height: 10px;
	background-size: contain;
	background-repeat: no-repeat;
}

.yunda-contact__title-deco--left {
	background-image: url("../images/faq-title-left.png");
	background-position: right center;
}

.yunda-contact__title-deco--right {
	background-image: url("../images/faq-title-right.png");
	background-position: left center;
}

.yunda-contact__title {
	margin: 0;
	font-family: var(--yunda-font-display);
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 700;
	color: var(--yunda-primary);
	line-height: 1.3;
}

.yunda-contact__subtitle {
	margin: 12px 0 0;
	font-size: 14px;
	color: rgba(26, 26, 46, 0.45);
}

.yunda-contact__support {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: 0 auto 32px;
	padding: 10px 18px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid rgba(25, 118, 210, 0.12);
	box-shadow: 0 4px 16px rgba(25, 118, 210, 0.08);
}

.yunda-contact__container .yunda-contact__support {
	display: flex;
	width: fit-content;
	margin-left: auto;
	margin-right: auto;
}

.yunda-contact__support-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #25d366;
	box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.18);
	animation: yunda-contact-pulse 2s ease-in-out infinite;
}

@keyframes yunda-contact-pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.55; }
}

.yunda-contact__support-text {
	font-size: 13px;
	font-weight: 500;
	color: rgba(26, 26, 46, 0.62);
}

.yunda-contact__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}

.yunda-contact__card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 100%;
	border: 3px solid #fff;
	border-radius: 24px;
	background: linear-gradient(180deg, #fff 0%, #f8faff 100%);
	box-shadow: 0 8px 24px rgba(159, 177, 191, 0.22);
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.yunda-contact__card:hover {
	transform: translateY(-8px);
	box-shadow: 0 16px 36px rgba(25, 118, 210, 0.14);
}

.yunda-contact__visual {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 132px;
	overflow: hidden;
}

.yunda-contact__card--telegram .yunda-contact__visual {
	background: linear-gradient(135deg, #0277bd 0%, #039be5 50%, #4fc3f7 100%);
}

.yunda-contact__card--whatsapp .yunda-contact__visual {
	background: linear-gradient(135deg, #1b8a4a 0%, #25d366 50%, #69f0ae 100%);
}

.yunda-contact__card--chat .yunda-contact__visual {
	background: linear-gradient(135deg, #1565c0 0%, #1976d2 50%, #64b5f6 100%);
}

.yunda-contact__card--email .yunda-contact__visual {
	background: linear-gradient(135deg, #00838f 0%, #00acc1 50%, #4dd0e1 100%);
}

.yunda-contact__tag {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 2;
	padding: 4px 12px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 600;
	color: #fff;
	background: rgba(0, 0, 0, 0.22);
	border: 1px solid rgba(255, 255, 255, 0.32);
	backdrop-filter: blur(8px);
}

.yunda-contact__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.22);
	color: #fff;
	backdrop-filter: blur(8px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.yunda-contact__icon svg {
	width: 32px;
	height: 32px;
}

.yunda-contact__shine {
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.22) 50%, transparent 70%);
	transform: translateX(-120%);
	transition: transform 0.6s ease;
}

.yunda-contact__card:hover .yunda-contact__shine {
	transform: translateX(120%);
}

.yunda-contact__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 20px 18px 22px;
}

.yunda-contact__name {
	margin: 0 0 8px;
	font-family: var(--yunda-font-display);
	font-size: 17px;
	font-weight: 700;
	color: #2d3453;
}

.yunda-contact__desc {
	flex: 1;
	margin: 0 0 16px;
	font-size: 13px;
	line-height: 1.6;
	color: rgba(26, 26, 46, 0.55);
	word-break: break-word;
}

.yunda-contact__action {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 600;
	color: var(--yunda-primary);
	transition: gap 0.25s ease, color 0.25s ease;
}

.yunda-contact__action svg {
	width: 15px;
	height: 15px;
	transition: transform 0.25s ease;
}

.yunda-contact__card:hover .yunda-contact__action {
	color: var(--yunda-primary-dark);
}

.yunda-contact__card:hover .yunda-contact__action svg {
	transform: translateX(3px);
}
.yunda-accordion { display: flex; flex-direction: column; gap: 12px; }

.yunda-accordion__item { overflow: hidden; }

.yunda-accordion__item.is-open {
	border-color: rgba(25, 118, 210, 0.2);
	box-shadow: var(--yunda-shadow-blue);
}

.yunda-accordion__trigger {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 24px;
	text-align: left;
	color: rgba(26, 26, 46, 0.8);
	font-weight: 500;
	font-size: 0.9rem;
	gap: 16px;
}

.yunda-accordion__trigger svg {
	flex-shrink: 0;
	color: rgba(26, 26, 46, 0.25);
	transition: transform var(--yunda-transition);
}

.yunda-accordion__item.is-open .yunda-accordion__trigger svg {
	transform: rotate(180deg);
	color: var(--yunda-primary);
}

.yunda-accordion__panel {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease;
}

.yunda-accordion__item.is-open .yunda-accordion__panel { max-height: 400px; }

.yunda-accordion__content {
	padding: 0 24px 20px;
	color: rgba(26, 26, 46, 0.5);
	font-size: 0.875rem;
	line-height: 1.7;
}

/* Legacy accordion (fallback) */
.yunda-footer {
	padding: 40px 0 32px;
	background: var(--yunda-footer-bg);
	border-top: none;
	color: var(--yunda-footer-text);
}

.yunda-footer .yunda-container {
	max-width: 1200px;
	padding-inline: 0;
}

.yunda-footer__grid {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 80px;
	width: 100%;
	max-width: 1200px;
	margin-inline: auto;
}

.yunda-footer__about {
	flex: 1;
	min-width: 0;
}

.yunda-footer__navigation {
	flex: 1;
	min-width: 0;
	height: 100%;
	display: flex;
	flex-direction: column;
	margin: 0;
	padding: 0;
	list-style: none;
}

.yunda-footer__navigation-item {
	margin-top: 24px;
}

.yunda-footer__navigation-item:first-child {
	margin-top: 0;
}

.yunda-footer__navigation-title {
	margin: 0;
	font-size: 18px;
	font-weight: 600;
	line-height: 24px;
	color: var(--yunda-footer-title);
	font-family: var(--yunda-font-display);
}

.yunda-footer__url-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	grid-template-columns: repeat(4, 120px);
	column-gap: 20px;
	row-gap: 12px;
}

.yunda-footer__url-item {
	width: auto;
	margin: 0;
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	text-align: left;
}

.yunda-footer__nav-link {
	display: block;
	width: 100%;
	padding: 0;
	border-radius: 0;
	background: none;
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	color: var(--yunda-footer-text);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: var(--yunda-transition);
}

.yunda-footer__nav-link:hover,
.yunda-footer__nav-link:focus-visible {
	color: var(--yunda-cyan-light);
	background: none;
}

.yunda-footer__nav-link.is-active {
	background: none;
	color: var(--yunda-footer-text);
}

.yunda-footer__brand {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	gap: 0;
	font-weight: 600;
	font-size: 0.95rem;
	margin-bottom: 0;
}

.yunda-footer__brand .yunda-logo--footer {
	display: block;
	line-height: 0;
}

.yunda-footer__brand .custom-logo-link img {
	max-height: none;
	width: 160px;
	max-width: 160px;
	height: auto;
	margin-bottom: 10px;
}

.yunda-footer__desc {
	margin: 0;
	max-width: 100%;
	font-size: 14px;
	line-height: 24px;
	color: var(--yunda-footer-text);
	text-align: justify;
}

.yunda-footer__divider {
	height: 0;
	border-top: 1px dashed var(--yunda-footer-border);
	background: none;
	margin: 20px 24px 24px;
}

.yunda-footer__copy {
	margin: 0;
	padding-inline: 24px;
	text-align: center;
	font-size: 14px;
	line-height: 1.6;
	color: var(--yunda-footer-muted);
}

.yunda-footer__copy a {
	color: var(--yunda-footer-text);
	transition: var(--yunda-transition);
}

.yunda-footer__copy a:hover {
	color: var(--yunda-cyan-light);
}

.yunda-empty {
	text-align: center;
	color: rgba(26, 26, 46, 0.4);
	grid-column: 1 / -1;
}

.yunda-page {
	padding: calc(var(--yunda-header-h) + 40px) 0 80px;
}

main.yunda-page:has(> .yunda-breadcrumb:first-child) {
	padding-top: 0;
}

main.yunda-page:has(> .yunda-breadcrumb:first-child) > .yunda-breadcrumb {
	padding-top: 10px;
}

main.yunda-page:has(> .yunda-container.yunda-single) {
	padding-bottom: 0;
}

/* Breadcrumb */
.yunda-breadcrumb {
	padding: 0;
	background: transparent;
}

.yunda-breadcrumb__inner {
	position: relative;
	background: var(--yunda-bg-white);
	border: 1px solid var(--yunda-border);
	border-radius: 12px;
	box-shadow: var(--yunda-shadow-sm);
	overflow: hidden;
}

.yunda-breadcrumb__inner::before {
	content: '';
	position: absolute;
	left: 0;
	top: 10px;
	bottom: 10px;
	width: 3px;
	border-radius: 0 3px 3px 0;
	background: linear-gradient(180deg, var(--yunda-primary), var(--yunda-cyan));
}

.yunda-breadcrumb__list {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	gap: 0;
	list-style: none;
	margin: 0;
	padding: 0 12px 0 10px;
	font-size: 13px;
	line-height: 1.4;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior-x: contain;
	scrollbar-width: none;
}

.yunda-breadcrumb__list::-webkit-scrollbar {
	display: none;
}

.yunda-breadcrumb__item {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	min-width: 0;
}

.yunda-breadcrumb__item--current {
	flex: 1 1 auto;
	min-width: 0;
}

.yunda-breadcrumb__link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 11px 10px;
	color: var(--yunda-text-muted);
	white-space: nowrap;
	border-radius: 8px;
	transition: color var(--yunda-transition), background var(--yunda-transition);
}

.yunda-breadcrumb__link:hover {
	color: var(--yunda-primary);
	background: rgba(25, 118, 210, 0.06);
}

.yunda-breadcrumb__icon {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	opacity: 0.75;
}

.yunda-breadcrumb__sep {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	color: rgba(26, 26, 46, 0.18);
	padding: 0 1px;
}

.yunda-breadcrumb__sep svg {
	width: 14px;
	height: 14px;
}

.yunda-breadcrumb__current {
	display: block;
	padding: 11px 4px 11px 0;
	color: var(--yunda-text);
	font-weight: 600;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	min-width: 0;
	max-width: min(42vw, 520px);
}

@media (max-width: 768px) {
	main.yunda-page:has(> .yunda-breadcrumb:first-child) > .yunda-breadcrumb {
		padding-top: 8px;
	}

	.yunda-breadcrumb:not(.yunda-breadcrumb--path-only) {
		padding-top: 8px;
	}

	.yunda-breadcrumb:not(.yunda-breadcrumb--path-only) .yunda-breadcrumb__inner {
		display: flex;
		flex-direction: column;
		gap: 6px;
		padding: 12px 14px;
		background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
		border: 1px solid rgba(226, 232, 240, 0.95);
		border-radius: 10px;
		box-shadow: none;
		overflow: visible;
	}

	.yunda-breadcrumb:not(.yunda-breadcrumb--path-only) .yunda-breadcrumb__inner::before {
		display: none;
	}

	.yunda-breadcrumb:not(.yunda-breadcrumb--path-only) .yunda-breadcrumb__label {
		margin: 0;
		font-size: 11px;
		font-weight: 600;
		line-height: 1.2;
		letter-spacing: 0.08em;
		color: rgba(100, 116, 139, 0.95);
	}

	.yunda-breadcrumb:not(.yunda-breadcrumb--path-only) .yunda-breadcrumb__list {
		flex-wrap: nowrap;
		overflow-x: auto;
		padding: 0;
		font-size: 14px;
		line-height: 1.5;
		font-weight: 500;
		gap: 0;
	}

	.yunda-breadcrumb:not(.yunda-breadcrumb--path-only) .yunda-breadcrumb__link {
		padding: 2px 4px;
		gap: 6px;
		color: rgba(51, 65, 85, 0.92);
		border-radius: 6px;
	}

	.yunda-breadcrumb:not(.yunda-breadcrumb--path-only) .yunda-breadcrumb__link:hover,
	.yunda-breadcrumb:not(.yunda-breadcrumb--path-only) .yunda-breadcrumb__link:active {
		color: var(--yunda-primary);
		background: rgba(25, 118, 210, 0.06);
	}

	.yunda-breadcrumb:not(.yunda-breadcrumb--path-only) .yunda-breadcrumb__icon {
		width: 16px;
		height: 16px;
		opacity: 0.92;
		color: var(--yunda-primary);
	}

	.yunda-breadcrumb:not(.yunda-breadcrumb--path-only) .yunda-breadcrumb__sep {
		padding: 0 2px;
		color: rgba(148, 163, 184, 0.95);
	}

	.yunda-breadcrumb:not(.yunda-breadcrumb--path-only) .yunda-breadcrumb__sep svg {
		width: 14px;
		height: 14px;
	}

	.yunda-breadcrumb:not(.yunda-breadcrumb--path-only) .yunda-breadcrumb__current {
		padding: 2px 4px;
		font-size: 14px;
		font-weight: 600;
	}

	/* 分类/文章：双行路径 — 上行祖先链，下行当前页 */
	.yunda-breadcrumb--path-only .yunda-breadcrumb__inner {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 10px 12px;
		background: linear-gradient(180deg, #f8fafc 0%, #f4f7fb 100%);
		border: 1px solid rgba(226, 232, 240, 0.95);
		border-radius: 10px;
		box-shadow: none;
		overflow: visible;
	}

	.yunda-breadcrumb--path-only .yunda-breadcrumb__inner::before {
		display: none;
	}

	.yunda-breadcrumb--path-only .yunda-breadcrumb__label {
		margin: 0 0 8px;
		padding-bottom: 8px;
		border-bottom: 1px solid rgba(226, 232, 240, 0.92);
		font-size: 11px;
		font-weight: 600;
		line-height: 1.2;
		letter-spacing: 0.06em;
		color: rgba(100, 116, 139, 0.95);
	}

	.yunda-breadcrumb--path-only .yunda-breadcrumb__list {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		gap: 0;
		overflow: visible;
		padding: 0;
		font-size: 13px;
		line-height: 1.45;
		font-weight: 500;
	}

	.yunda-breadcrumb--path-only .yunda-breadcrumb__link {
		padding: 3px 5px;
		gap: 5px;
		color: rgba(51, 65, 85, 0.92);
		border-radius: 6px;
	}

	.yunda-breadcrumb--path-only .yunda-breadcrumb__link:hover,
	.yunda-breadcrumb--path-only .yunda-breadcrumb__link:active {
		color: var(--yunda-primary);
		background: rgba(25, 118, 210, 0.06);
	}

	.yunda-breadcrumb--path-only .yunda-breadcrumb__icon {
		width: 15px;
		height: 15px;
		opacity: 0.92;
		color: var(--yunda-primary);
	}

	.yunda-breadcrumb--path-only .yunda-breadcrumb__sep {
		padding: 0 1px;
		color: rgba(148, 163, 184, 0.9);
	}

	.yunda-breadcrumb--path-only .yunda-breadcrumb__sep svg {
		width: 13px;
		height: 13px;
	}

	.yunda-breadcrumb--path-only .yunda-breadcrumb__sep:has(+ .yunda-breadcrumb__item--current) {
		display: none;
	}

	.yunda-breadcrumb--path-only .yunda-breadcrumb__item--current {
		flex: 1 1 100%;
		margin-top: 6px;
		min-width: 0;
	}

	.yunda-breadcrumb--path-only .yunda-breadcrumb__current {
		display: block;
		padding: 8px 10px;
		border-radius: 8px;
		background: rgba(25, 118, 210, 0.07);
		color: var(--yunda-primary);
		font-size: 14px;
		font-weight: 600;
		line-height: 1.45;
		white-space: normal;
		word-break: break-word;
		overflow: visible;
		text-overflow: unset;
		max-width: none;
	}

	.yunda-breadcrumb--path-only ~ .yunda-container.yunda-single,
	.yunda-breadcrumb--path-only ~ .yunda-container.yunda-page,
	main.yunda-page:has(> .yunda-breadcrumb--path-only + .yunda-container) > .yunda-container {
		padding-top: 12px;
	}

	.yunda-breadcrumb--path-only ~ .yunda-page--archive,
	main.yunda-page:has(> .yunda-breadcrumb--path-only + .yunda-page--archive) > .yunda-page--archive {
		padding-top: 8px;
	}
}

@media (min-width: 769px) {
	.yunda-breadcrumb--path-only {
		padding-top: 10px;
	}

	.yunda-breadcrumb--path-only .yunda-breadcrumb__inner {
		display: flex;
		align-items: center;
		gap: 14px;
		min-height: 44px;
		padding: 0 18px 0 14px;
		background: linear-gradient(180deg, #fafbfd 0%, #f3f6fa 100%);
		border: 1px solid rgba(226, 232, 240, 0.92);
		border-radius: 10px;
		box-shadow: none;
		overflow: visible;
	}

	.yunda-breadcrumb--path-only .yunda-breadcrumb__inner::before {
		top: 8px;
		bottom: 8px;
		width: 3px;
	}

	.yunda-breadcrumb--path-only .yunda-breadcrumb__label {
		flex-shrink: 0;
		margin: 0;
		padding-right: 14px;
		border-right: 1px solid rgba(226, 232, 240, 0.95);
		font-size: 12px;
		font-weight: 600;
		line-height: 1;
		letter-spacing: 0.04em;
		color: rgba(100, 116, 139, 0.92);
		white-space: nowrap;
	}

	.yunda-breadcrumb--path-only .yunda-breadcrumb__list {
		flex: 1;
		min-width: 0;
		flex-wrap: nowrap;
		overflow-x: visible;
		padding: 8px 0;
		font-size: 14px;
		line-height: 1.45;
		font-weight: 500;
	}

	.yunda-breadcrumb--path-only .yunda-breadcrumb__link {
		padding: 6px 10px;
		color: rgba(71, 85, 105, 0.9);
		border-radius: 6px;
	}

	.yunda-breadcrumb--path-only .yunda-breadcrumb__link:hover {
		color: var(--yunda-primary);
		background: rgba(25, 118, 210, 0.07);
	}

	.yunda-breadcrumb--path-only .yunda-breadcrumb__icon {
		width: 15px;
		height: 15px;
		color: var(--yunda-primary);
		opacity: 0.88;
	}

	.yunda-breadcrumb--path-only .yunda-breadcrumb__sep {
		color: rgba(148, 163, 184, 0.85);
	}

	.yunda-breadcrumb--path-only .yunda-breadcrumb__current {
		max-width: min(38vw, 480px);
		padding: 6px 4px 6px 0;
		font-size: 14px;
		font-weight: 600;
	}

	.yunda-breadcrumb--path-only .yunda-breadcrumb__sep svg {
		width: 14px;
		height: 14px;
	}

	.yunda-breadcrumb--path-only ~ .yunda-container.yunda-single,
	.yunda-breadcrumb--path-only ~ .yunda-container.yunda-page,
	main.yunda-page:has(> .yunda-breadcrumb--path-only + .yunda-container) > .yunda-container {
		padding-top: 14px;
	}
}

@media (min-width: 768px) {
	.yunda-breadcrumb:not(.yunda-breadcrumb--path-only) {
		padding-top: 20px;
	}

	.yunda-breadcrumb:not(.yunda-breadcrumb--path-only) .yunda-breadcrumb__inner {
		border-radius: 14px;
	}

	.yunda-breadcrumb:not(.yunda-breadcrumb--path-only) .yunda-breadcrumb__list {
		flex-wrap: wrap;
		overflow-x: visible;
		padding-inline: 16px 14px;
	}

	.yunda-breadcrumb:not(.yunda-breadcrumb--path-only) .yunda-breadcrumb__link {
		padding: 12px 12px;
	}

	.yunda-breadcrumb:not(.yunda-breadcrumb--path-only) .yunda-breadcrumb__current {
		padding: 12px 0;
		white-space: normal;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
		overflow: hidden;
		text-overflow: ellipsis;
	}
}

/* Single article */
.yunda-single {
	padding-top: 16px;
	padding-bottom: 80px;
}

.yunda-single__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 32px;
	align-items: start;
}

.yunda-single__main {
	min-width: 0;
}

@media (min-width: 1024px) {
	.yunda-single__layout {
		grid-template-columns: minmax(0, 1fr) 300px;
		gap: 28px;
	}
}

/* Article meta — changyunyule.org style */
.yunda-article .article-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0;
	margin: 0;
	padding: 0;
}

.yunda-article .article-meta__primary,
.yunda-article .article-meta__secondary {
	display: contents;
}

.yunda-article .article-meta__tag {
	display: inline-flex;
	align-items: center;
	max-width: 62%;
	padding: 6px 12px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.25;
	color: #2563eb;
	text-decoration: none;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	background: rgba(59, 130, 246, 0.12);
	border: 1px solid rgba(59, 130, 246, 0.2);
	transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.yunda-article .article-meta__tag:hover {
	color: #1d4ed8;
	background: rgba(59, 130, 246, 0.18);
	border-color: rgba(59, 130, 246, 0.32);
}

.yunda-article .article-meta__sep {
	flex-shrink: 0;
	margin: 0 10px;
	font-size: 12px;
	font-weight: 300;
	line-height: 1;
	color: #e0e0e0;
	user-select: none;
}

.yunda-article .article-meta__date,
.yunda-article .article-meta__updated,
.yunda-article .article-meta__read,
.yunda-article .article-meta__views {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	flex-shrink: 0;
	font-size: 12px;
	font-weight: 400;
	font-variant-numeric: tabular-nums;
	line-height: 1;
	color: #718096;
	white-space: nowrap;
}

.yunda-article .article-meta__icon {
	width: 13px;
	height: 13px;
	flex-shrink: 0;
	color: #718096;
	opacity: 0.85;
}

/* Single sidebar */
.yunda-sidebar {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.yunda-sidebar__module {
	background: #fff;
	border-radius: 12px;
	padding: 20px 18px;
	box-shadow: 0 4px 20px rgba(43, 64, 151, 0.08);
}

.yunda-sidebar__heading {
	margin: 0 0 16px;
	font-size: 16px;
	font-weight: 700;
	color: #1a1a2e;
	line-height: 1.3;
}

.yunda-sidebar__list {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.yunda-sidebar__item {
	display: grid;
	grid-template-columns: 72px minmax(0, 1fr);
	gap: 12px;
	align-items: start;
}

.yunda-sidebar__item.is-current .yunda-sidebar__title a {
	color: var(--yunda-primary);
}

.yunda-sidebar__thumb {
	display: block;
	width: 72px;
	height: 54px;
	border-radius: 8px;
	overflow: hidden;
	background: linear-gradient(135deg, rgba(25, 118, 210, 0.08), rgba(0, 172, 193, 0.06));
}

.yunda-sidebar__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.yunda-sidebar__thumb-placeholder {
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(25, 118, 210, 0.12), rgba(0, 172, 193, 0.08));
}

.yunda-sidebar__title {
	margin: 0 0 6px;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.45;
}

.yunda-sidebar__title a {
	color: #2d3453;
	text-decoration: none;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.yunda-sidebar__title a:hover {
	color: var(--yunda-primary);
}

.yunda-sidebar__date {
	font-size: 12px;
	color: #718096;
}

.yunda-sidebar__more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	width: 100%;
	min-height: 44px;
	padding: 0 18px;
	border-radius: 10px;
	border: 1px solid rgba(25, 118, 210, 0.18);
	background: rgba(25, 118, 210, 0.04);
	color: var(--yunda-primary);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.yunda-sidebar__more svg {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}

.yunda-sidebar__more:hover {
	background: rgba(25, 118, 210, 0.08);
	border-color: rgba(25, 118, 210, 0.28);
	color: var(--yunda-primary-dark);
}

.yunda-sidebar__more:focus-visible {
	outline: 2px solid rgba(25, 118, 210, 0.35);
	outline-offset: 2px;
}

@media (max-width: 1023px) {
	.yunda-sidebar {
		order: 2;
	}

	.yunda-single__main {
		order: 1;
	}
}

@media (max-width: 768px) {
	.yunda-article .article-meta {
		flex-direction: column;
		align-items: flex-start;
		gap: 6px;
	}

	.yunda-article .article-meta__primary,
	.yunda-article .article-meta__secondary {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		width: 100%;
		gap: 0;
	}

	.yunda-article .article-meta__secondary {
		display: none;
	}

	.yunda-article .article-meta__tag {
		max-width: 100%;
		padding: 5px 10px;
		font-size: 11px;
	}

	.yunda-article .article-meta__sep {
		margin: 0 7px;
	}

	.yunda-article .article-meta__date,
	.yunda-article .article-meta__updated,
	.yunda-article .article-meta__read,
	.yunda-article .article-meta__views {
		font-size: 11px;
	}

	.yunda-article .article-meta__icon {
		width: 12px;
		height: 12px;
	}
}

@media (min-width: 768px) {
	.yunda-single {
		padding-top: 20px;
	}
}

.yunda-article {
	overflow: hidden;
	padding: 0;
	margin-bottom: 32px;
	width: 100%;
}

.yunda-article.yunda-card:hover {
	transform: none;
	box-shadow: var(--yunda-shadow-sm);
}

.yunda-article__header {
	padding: 24px 24px 0;
	text-align: left;
}

@media (min-width: 768px) {
	.yunda-article__header {
		padding: 40px 40px 0;
	}
}

.yunda-article__title {
	margin: 0 0 16px;
	font-size: 24px;
	font-weight: 700;
	color: #1a1a2e;
	font-family: var(--yunda-font-display);
	line-height: 1.4;
	max-width: none;
}

.yunda-article__meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 1em;
	font-size: 14px;
	color: rgba(26, 26, 46, 0.55);
}

.yunda-article__meta-item {
	display: flex;
	align-items: center;
}

.yunda-article__meta-item--line {
	border-right: 1px solid #e9edf9;
	height: 1em;
	padding-right: 1em;
}

.yunda-article__meta-label {
	color: rgba(26, 26, 46, 0.55);
}

.yunda-article__meta-value {
	color: rgba(26, 26, 46, 0.55);
}

.yunda-article__meta-item a.yunda-article__meta-value {
	color: var(--yunda-primary);
	text-decoration: none;
}

.yunda-article__meta-item a.yunda-article__meta-value:hover {
	color: var(--yunda-primary-dark);
}

.yunda-article__content {
	padding: 20px 24px 24px;
	color: rgba(26, 26, 46, 0.7);
	line-height: 1.8;
	font-size: 14px;
	max-width: none;
}

@media (min-width: 768px) {
	.yunda-article__content {
		padding: 20px 40px 40px;
	}
}

.yunda-article__content,
.yunda-article__content * {
	max-width: 100% !important;
	box-sizing: border-box;
}

.yunda-article__content > * {
	width: 100% !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
}

.yunda-article__content [style*="max-width"] {
	max-width: 100% !important;
	width: 100% !important;
}

.yunda-article__content > *:first-child { margin-top: 0; }
.yunda-article__content > *:last-child { margin-bottom: 0; }

.yunda-article__content h2,
.yunda-article__content h3,
.yunda-article__content h4 {
	color: #1a1a2e;
	font-family: var(--yunda-font-display);
	margin: 1.6em 0 0.8em;
	line-height: 1.4;
	border-bottom: none;
	padding-bottom: 0;
}

.yunda-article__content h2 { font-size: 1.25rem; }
.yunda-article__content h3 { font-size: 1.1rem; }

.yunda-article__content p {
	margin: 0 0 1em;
	text-indent: 0;
	color: rgba(26, 26, 46, 0.7);
}

.yunda-article__content ul,
.yunda-article__content ol {
	margin: 0 0 1em;
	padding-left: 1.4em;
}

.yunda-article__content li { margin-bottom: 0.4em; }

.yunda-article__content a {
	color: var(--yunda-primary);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.yunda-article__content img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	margin: 1em 0;
}

.yunda-article__content blockquote {
	margin: 1.5em 0;
	padding: 16px 20px;
	border-left: 3px solid var(--yunda-primary);
	background: rgba(25, 118, 210, 0.04);
	border-radius: 0 8px 8px 0;
	color: rgba(26, 26, 46, 0.6);
}

.yunda-article__content script[type="application/ld+json"],
.yunda-article__content p:has(script[type="application/ld+json"]) {
	display: none !important;
}

.yunda-article__footer {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 24px;
	padding: 22px 28px 26px;
	border-top: 1px solid rgba(226, 232, 240, 0.95);
}

.yunda-article__footer-prev,
.yunda-article__footer-next {
	min-width: 0;
}

.yunda-article__footer-next {
	text-align: right;
}

.yunda-article__footer-label {
	margin: 0 0 8px;
	font-size: 12px;
	font-weight: 500;
	color: rgba(100, 116, 139, 0.88);
	letter-spacing: 0.02em;
}

.yunda-article__footer-link {
	display: block;
	color: var(--yunda-text);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.5;
	text-decoration: none;
	transition: color var(--yunda-transition);
}

.yunda-article__footer-link:hover {
	color: var(--yunda-primary);
}

.yunda-article__footer-empty {
	margin: 0;
	font-size: 14px;
	font-weight: 400;
	color: rgba(148, 163, 184, 0.92);
}

.yunda-article__footer-prev.is-empty .yunda-article__footer-empty,
.yunda-article__footer-next.is-empty .yunda-article__footer-empty {
	color: rgba(148, 163, 184, 0.88);
}

@media (max-width: 768px) {
	.yunda-article__footer {
		grid-template-columns: 1fr;
		gap: 18px;
		padding: 18px 18px 22px;
	}

	.yunda-article__footer-next {
		text-align: left;
	}

	.yunda-article__footer-link {
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
		font-size: 14px;
	}
}

/* Read more — changyun vertical list (single article) */
.yunda-single__main .posts-read-more {
	margin-top: 32px;
}

.yunda-single__main .posts-read-more > .module-title {
	margin: 0 0 18px;
	padding: 0 0 0 14px;
	border-left: 3px solid var(--yunda-primary);
	font-size: 18px;
	font-weight: 600;
	line-height: 1.4;
	color: var(--yunda-text);
}

.yunda-single__main .posts-read-more .posts-list {
	margin: 0;
	padding: 0;
	border: 1px solid rgba(226, 232, 240, 0.95);
	border-radius: 12px;
	background: #fff;
	box-shadow: var(--yunda-shadow-sm);
	overflow: hidden;
}

.yunda-single__main .posts-read-more .posts-item {
	display: flex;
	gap: 20px;
	padding: 20px 22px;
	margin: 0;
	border: none;
	border-bottom: 1px solid rgba(226, 232, 240, 0.92);
	border-radius: 0;
	background: transparent;
	transition: background 0.2s ease;
	cursor: pointer;
}

.yunda-single__main .posts-read-more .posts-item:last-child {
	border-bottom: none;
}

.yunda-single__main .posts-read-more .posts-item:hover {
	background: rgba(25, 118, 210, 0.04);
}

.yunda-single__main .posts-read-more .posts-item:hover .posts-item-title a {
	color: var(--yunda-primary);
}

.yunda-single__main .posts-read-more .posts-item-img {
	width: 220px;
	aspect-ratio: 16 / 10;
	flex-shrink: 0;
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid rgba(226, 232, 240, 0.95);
	background: rgba(25, 118, 210, 0.06);
	box-shadow: 0 4px 14px rgba(43, 64, 151, 0.08);
}

.yunda-single__main .posts-read-more .posts-item-img a {
	display: block;
	width: 100%;
	height: 100%;
}

.yunda-single__main .posts-read-more .posts-item-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.yunda-single__main .posts-read-more .posts-item-img-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(25, 118, 210, 0.12), rgba(0, 188, 212, 0.08));
}

.yunda-single__main .posts-read-more .posts-item-content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	flex: 1;
	min-width: 0;
}

.yunda-single__main .posts-read-more .posts-item-title {
	margin: 0 0 8px;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
}

.yunda-single__main .posts-read-more .posts-item-title a {
	color: rgba(26, 26, 46, 0.9);
	text-decoration: none;
	transition: color var(--yunda-transition);
}

.yunda-single__main .posts-read-more .posts-item-desc {
	margin: 0;
	color: rgba(100, 116, 139, 0.92);
	font-size: 14px;
	line-height: 1.65;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.yunda-single__main .posts-read-more .posts-item-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px dashed rgba(226, 232, 240, 0.95);
	color: rgba(100, 116, 139, 0.88);
	font-size: 12px;
}

.yunda-single__main .posts-read-more .posts-item-footer-left,
.yunda-single__main .posts-read-more .posts-item-footer-right {
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.yunda-single__main .posts-read-more .posts-date {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	color: rgba(100, 116, 139, 0.88);
	font-size: 12px;
	white-space: nowrap;
}

.yunda-single__main .posts-read-more .posts-date-icon,
.yunda-single__main .posts-read-more .posts-eye-icon {
	width: 13px;
	height: 13px;
	flex-shrink: 0;
	color: #718096;
	opacity: 0.9;
}

.yunda-single__main .posts-read-more .posts-item-footer-right {
	color: rgba(100, 116, 139, 0.82);
}

@media (max-width: 768px) {
	.yunda-single__main .posts-read-more {
		margin-top: 24px;
	}

	.yunda-single__main .posts-read-more > .module-title {
		margin-bottom: 14px;
		font-size: 16px;
	}

	.yunda-single__main .posts-read-more .posts-item {
		flex-direction: column;
		gap: 14px;
		padding: 16px;
	}

	.yunda-single__main .posts-read-more .posts-item-img {
		width: 100%;
		height: auto;
	}

	.yunda-single__main .posts-read-more .posts-item-title {
		font-size: 15px;
	}

	.yunda-single__main .posts-read-more .posts-item-desc {
		font-size: 13px;
	}
}

.yunda-page__title {
	font-size: 1.75rem;
	margin-bottom: 12px;
	color: var(--yunda-primary);
}

.yunda-archive-intro {
	margin-bottom: 28px;
	padding: 20px 22px;
	background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
	border: 1px solid rgba(226, 232, 240, 0.95);
	border-radius: 12px;
}

.yunda-archive-intro__subtitle {
	margin: 0 0 10px;
	font-size: 15px;
	font-weight: 600;
	color: #2d3453;
}

.yunda-archive-intro__desc {
	font-size: 14px;
	line-height: 1.75;
	color: rgba(26, 26, 46, 0.62);
}

.yunda-archive-intro__desc p {
	margin: 0;
}

.yunda-news__item--pillar {
	position: relative;
	border: 1px solid rgba(37, 99, 235, 0.22);
	box-shadow: 0 8px 24px rgba(37, 99, 235, 0.1);
}

.yunda-news__pillar-badge {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 2;
	padding: 4px 10px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 600;
	color: #fff;
	background: linear-gradient(135deg, #2563eb, #1d4ed8);
	box-shadow: 0 2px 8px rgba(37, 99, 235, 0.28);
}

.yunda-page__meta {
	color: rgba(26, 26, 46, 0.4);
	margin-bottom: 24px;
}

.yunda-page__content {
	color: rgba(26, 26, 46, 0.6);
	line-height: 1.8;
}

/* Responsive — xk-sport mobile rem scale (rest.css) */
@media (max-width: 1200px) {
	:root {
		--yunda-mobile-rem: 42.67px;
		--yunda-header-h: 46px;
	}
}

@media (min-width: 330px) and (max-width: 1200px) {
	:root {
		--yunda-mobile-rem: 44px;
	}
}

@media (min-width: 360px) and (max-width: 1200px) {
	:root {
		--yunda-mobile-rem: 48px;
	}
}

@media (min-width: 375px) and (max-width: 1200px) {
	:root {
		--yunda-mobile-rem: 50px;
	}
}

@media (min-width: 390px) and (max-width: 1200px) {
	:root {
		--yunda-mobile-rem: 52px;
	}
}

@media (min-width: 414px) and (max-width: 1200px) {
	:root {
		--yunda-mobile-rem: 55.2px;
	}
}

@media (min-width: 440px) and (max-width: 1200px) {
	:root {
		--yunda-mobile-rem: 58px;
	}
}

@media (min-width: 480px) and (max-width: 1200px) {
	:root {
		--yunda-mobile-rem: 64px;
	}
}

@media (min-width: 500px) and (max-width: 1200px) {
	:root {
		--yunda-mobile-rem: 68px;
	}
}

@media (min-width: 540px) and (max-width: 1200px) {
	:root {
		--yunda-mobile-rem: 72px;
	}
}

@media (max-width: 1200px) {
	.yunda-nav__link {
		padding: 6px 12px;
		font-size: 0.8125rem;
	}

	.yunda-header-shell {
		position: static;
		height: var(--yunda-header-h);
	}

	.yunda-header {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		width: 100%;
		z-index: 1002;
		background: #fff;
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
	}

	.yunda-header__bar {
		position: relative;
		justify-content: space-between;
		max-width: none;
		height: var(--yunda-header-h);
		padding: 0 calc(var(--yunda-mobile-rem) * 0.4);
		gap: calc(var(--yunda-mobile-rem) * 0.12);
	}

	.yunda-header .yunda-logo__img,
	.yunda-header .yunda-logo img,
	.yunda-header .custom-logo-link img {
		height: calc(var(--yunda-mobile-rem) * 0.52);
		width: auto;
		max-width: min(calc(var(--yunda-mobile-rem) * 2.4), 44vw);
		max-height: calc(var(--yunda-mobile-rem) * 0.52);
		object-fit: contain;
	}

	.yunda-header__portal {
		display: inline-flex;
		flex-shrink: 0;
		width: auto;
		min-width: calc(var(--yunda-mobile-rem) * 2.05);
		max-width: 46vw;
		height: auto;
		min-height: calc(var(--yunda-mobile-rem) * 0.56);
		padding: calc(var(--yunda-mobile-rem) * 0.08) calc(var(--yunda-mobile-rem) * 0.2);
		gap: calc(var(--yunda-mobile-rem) * 0.05);
		border: none;
		font-size: 14px;
		line-height: 20px;
	}

	.yunda-header__portal-icon {
		width: 17px;
		height: 17px;
	}

	.yunda-header__portal-label {
		overflow: hidden;
		text-overflow: ellipsis;
		font-size: inherit;
		line-height: inherit;
	}

	.yunda-nav-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		flex-shrink: 0;
		width: calc(var(--yunda-mobile-rem) * 0.4);
		height: calc(var(--yunda-mobile-rem) * 0.4);
		margin-left: calc(var(--yunda-mobile-rem) * 0.24);
		padding: calc(var(--yunda-mobile-rem) * 0.02);
		color: var(--yunda-primary);
	}

	.yunda-nav-toggle__icon {
		display: block;
		width: calc(var(--yunda-mobile-rem) * 0.36);
		height: calc(var(--yunda-mobile-rem) * 0.36);
	}

	.yunda-nav {
		position: fixed;
		top: var(--yunda-header-h);
		left: 0;
		right: 0;
		z-index: 1001;
		flex: unset;
		max-height: 0;
		overflow: hidden;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		overscroll-behavior: contain;
		background: #fff;
		padding: 0;
		border-bottom: none;
		box-shadow: none;
		transform: none;
		opacity: 1;
		pointer-events: none;
		transition: max-height 0.2s ease-out;
		justify-content: flex-start;
	}

	.yunda-nav.is-open {
		max-height: calc(100dvh - var(--yunda-header-h));
		pointer-events: auto;
		padding: min(9px, 2.4vw) 0 max(20px, env(safe-area-inset-bottom));
	}

	.yunda-nav__list {
		flex-direction: column;
		align-items: stretch;
		width: 100%;
		flex-wrap: nowrap;
	}

	.yunda-nav__link {
		display: flex;
		align-items: center;
		position: relative;
		min-height: min(42px, 11.2vw);
		padding: 0 min(15px, 4vw);
		border-radius: 0;
		font-size: clamp(13px, 3.73vw, 14px);
		font-weight: 500;
		color: #3f5075;
	}

	.yunda-nav__link.is-active {
		background: transparent;
		color: var(--yunda-primary);
	}

	.yunda-nav__link.is-active::before {
		content: '';
		position: absolute;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
		width: min(3px, 0.8vw);
		height: min(14px, 3.73vw);
		background: var(--yunda-primary);
		border-top-right-radius: 3px;
		border-bottom-right-radius: 3px;
	}

	.yunda-nav-backdrop {
		inset: var(--yunda-header-h) 0 0;
		background: rgba(0, 0, 0, 0.2);
		backdrop-filter: none;
	}

	.yunda-about__title-deco,
	.yunda-venues__title-deco,
	.yunda-platform__title-deco,
	.yunda-activity__title-deco,
	.yunda-playguide__title-deco,
	.yunda-contact__title-deco,
	.yunda-section-title-deco {
		display: block;
		flex: initial;
		max-width: none;
		width: min(100px, 26.67vw);
		height: min(6px, 1.6vw);
	}

	.yunda-about__title-wrap,
	.yunda-venues__title-wrap,
	.yunda-platform__title-wrap,
	.yunda-activity__title-wrap,
	.yunda-playguide__title-wrap,
	.yunda-contact__title-wrap {
		gap: min(6px, 1.6vw);
	}

	.yunda-about__title,
	.yunda-venues__title,
	.yunda-platform__title,
	.yunda-activity__title,
	.yunda-playguide__title,
	.yunda-contact__title {
		font-size: clamp(18px, 5.33vw, 30px);
		line-height: 1.5;
	}

	.yunda-about__subtitle,
	.yunda-venues__subtitle,
	.yunda-platform__subtitle,
	.yunda-activity__subtitle,
	.yunda-playguide__subtitle,
	.yunda-contact__subtitle {
		font-size: clamp(12px, 3.2vw, 16px);
		line-height: 1.5;
		margin-top: min(6px, 1.07vw);
	}

	.yunda-footer__brand {
		display: none;
	}

	.yunda-playguide {
		padding: 56px 0;
	}

	.yunda-playguide__intro {
		padding-inline: 16px;
		font-size: 13px;
		text-align: justify;
	}

	.yunda-playguide__card {
		border-radius: 24px 24px 0 0;
	}

	.yunda-playguide__main {
		flex-direction: column;
		min-height: 0;
		padding: 0;
	}

	.yunda-playguide__tabs {
		flex: none;
		margin: 0;
	}

	.yunda-playguide__tab-list {
		flex-direction: row;
		overflow-x: auto;
		gap: 0;
		padding: 0 14px;
		border: none;
		border-radius: 0;
		background: transparent;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}

	.yunda-playguide__tab-list::-webkit-scrollbar {
		display: none;
	}

	.yunda-playguide__tab-list li {
		flex-shrink: 0;
	}

	.yunda-playguide__tab {
		flex-direction: column;
		justify-content: center;
		gap: 4px;
		width: auto;
		min-width: 72px;
		height: 76px;
		padding: 8px 12px;
		border-radius: 16px;
	}

	.yunda-playguide__tab-label {
		min-width: 0;
		font-size: 14px;
		text-align: center;
	}

	.yunda-playguide__tab.is-active,
	.yunda-playguide__tab:hover {
		background: rgba(25, 118, 210, 0.1);
	}

	.yunda-playguide__panes {
		min-height: 0;
		padding: 16px 0 0;
		border: none;
		border-radius: 0;
		background: transparent;
	}

	.yunda-playguide__copy {
		max-width: none;
		padding: 16px 16px 0;
	}

	.yunda-playguide__pane-title {
		font-size: 20px;
	}

	.yunda-playguide__pane-subtitle {
		font-size: 14px;
	}

	.yunda-playguide__pane-desc {
		font-size: 13px;
		line-height: 1.7;
	}

	.yunda-playguide__shot {
		position: relative;
		top: auto;
		right: auto;
		width: auto;
		height: auto;
		margin: 16px 16px 0;
		border-radius: 16px;
	}

	.yunda-playguide__pane .yunda-playguide__shot {
		transform: scale(0.96);
	}

	.yunda-playguide__pane.is-active .yunda-playguide__shot {
		transform: scale(1);
	}

	.yunda-playguide__stats {
		flex-wrap: wrap;
		justify-content: space-between;
		gap: 12px;
		padding: 20px 16px 24px;
	}

	.yunda-playguide__stat {
		flex: 0 0 calc(50% - 6px);
		padding: 16px 12px;
		border-radius: 16px;
		background: rgba(255, 255, 255, 0.08);
	}

	.yunda-playguide__stat:not(:last-child)::after {
		display: none;
	}

	.yunda-playguide__stat-value {
		font-size: 1.75rem;
	}

	.yunda-playguide__stat-label {
		font-size: 13px;
	}

	.yunda-hero {
		padding-bottom: 0;
		background-position: center top;
		overflow: visible;
	}

	.yunda-hero::after {
		display: none;
	}

	.yunda-hero .yunda-hero__inner {
		display: block;
		width: 100%;
		max-width: none;
		min-height: 0;
		margin-inline: 0;
		padding: 30px 0 0;
	}

	.yunda-hero__info {
		display: block;
		width: 100%;
		max-width: none;
		padding: 0;
		text-align: left;
	}

	.yunda-hero__title {
		width: fit-content;
		max-width: none;
		margin: 0;
		padding: 0 0 0 20px;
		font-size: 44px;
		line-height: 52px;
		letter-spacing: -0.5px;
		text-align: left;
		white-space: nowrap;
		word-break: keep-all;
		overflow-wrap: normal;
	}

	.yunda-hero__subtitle {
		padding-left: 20px;
		font-size: 24px;
		line-height: 1.2;
		margin-top: 0;
	}

	.yunda-hero__line {
		display: none;
	}

	.yunda-hero__desc-block {
		width: 100%;
		padding: 12px 0 0 20px;
	}

	.yunda-hero__desc--intro {
		display: none !important;
	}

	.yunda-hero__desc-list {
		display: block;
	}

	.yunda-hero__desc-list p {
		display: flex;
		align-items: center;
		margin: 0 0 6px 12px;
		font-size: 12px;
		line-height: normal;
		text-align: left;
	}

	.yunda-hero__desc-list p::before {
		left: -12px;
		top: 50%;
		transform: translateY(-50%);
	}

	.yunda-hero__tips {
		display: inline-flex;
		align-self: flex-start;
		margin: 15px 0 14px 20px;
		min-width: 0;
		width: 290px;
		max-width: calc(100% - 40px);
		height: 25px;
		padding: 0 12px 0 30px;
		font-size: 13px;
		line-height: 25px;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.yunda-hero__sponsor,
	.yunda-hero__visual {
		display: none !important;
	}

	.yunda-ad-slot--before-about {
		margin-top: 16px;
		margin-bottom: 0;
		position: relative;
		z-index: 3;
	}

	.yunda-ad-slot--before-about + .yunda-about.yunda-section {
		padding-top: 30px;
	}

	.yd-portal {
		padding-top: 0;
		padding-bottom: 0;
	}

	.yunda-about {
		padding-top: 22px;
	}

	.yunda-about__header {
		margin-bottom: 0;
	}

	.yunda-about__stage {
		position: relative;
		padding: 0;
		margin-inline: 10px;
		background-image: none !important;
	}

	.yunda-about__stage-inner {
		max-width: none;
		width: 100%;
		padding-inline: 0;
	}

	.yunda-about__panel {
		display: flex;
		flex-direction: column;
		min-height: 0;
		width: 100%;
		margin-top: 90px;
		padding: 270px 18px 18px;
		border-width: 1px;
		border-radius: 24px;
	}

	.yunda-about__figure {
		display: block;
		position: absolute;
		z-index: 1;
		top: -90px;
		left: 0;
		right: 0;
		width: 100%;
		max-width: none;
		height: 360px;
		transform: none;
		object-fit: contain;
	}

	.yunda-about__figure.is-animating {
		animation: yunda-about-figure-in-mobile 0.62s cubic-bezier(0.4, 0, 0.2, 1);
	}

	@keyframes yunda-about-figure-in-mobile {
		from {
			opacity: 0.35;
			transform: scale(0.96);
		}

		to {
			opacity: 1;
			transform: scale(1);
		}
	}

	.yunda-about__nav {
		position: relative;
		left: auto;
		right: auto;
		top: auto;
		z-index: 2;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 16px;
		padding: 0;
	}

	.yunda-about__nav-wrap {
		position: relative;
		z-index: 2;
		width: 100%;
	}

	.yunda-about__nav li + li {
		margin-top: 0;
	}

	.yunda-about__nav-btn {
		width: 102px;
		min-width: 102px;
		height: 28px;
		padding: 0 12px 0 0;
		font-size: 12px;
		font-weight: 500;
	}

	.yunda-about__nav-icon {
		width: 32px;
		height: 32px;
		top: -2px;
		left: -2px;
	}

	.yunda-about__content {
		max-width: none;
		width: 100%;
		margin-top: 10px;
		padding-top: 15px;
	}

	.yunda-about__pane-title {
		font-size: 18px;
		transform: none;
	}

	.yunda-about__pane-subtitle {
		font-size: 12px;
		transform: none;
	}

	.yunda-about__pane-body {
		max-height: none;
		overflow: visible;
		padding-right: 0;
	}

	.yunda-about__pane-body p {
		font-size: 13px;
		line-height: 1.7;
		margin-top: 6px;
	}

	.yunda-about__pane-body p:first-child {
		margin-top: 16px;
	}

	.yunda-venues {
		padding: 20px 0 24px;
	}

	.yunda-about.yunda-section {
		padding-bottom: 28px;
	}

	#venues + .yunda-activity.yunda-section {
		padding-top: 28px;
	}

	.yunda-venues .yunda-container {
		padding-inline: 0;
	}

	.yunda-venues__header {
		margin-bottom: 14px;
		padding-inline: 16px;
	}

	.yunda-venues__body {
		margin-top: 6px;
	}

	.yunda-venues__nav-wrap {
		padding-inline: 16px;
		scroll-padding-inline: 16px;
		scroll-behavior: smooth;
	}

	.yunda-venues__nav {
		justify-content: flex-start;
		width: max-content;
		max-width: none;
		min-width: 0;
		margin-inline: 0;
		height: auto;
		min-height: 52px;
		flex-wrap: nowrap;
		padding: 6px 8px;
		gap: 4px;
	}

	.yunda-venues__nav li {
		flex-shrink: 0;
	}

	.yunda-venues__nav-btn {
		height: 40px;
		padding: 0 12px;
		font-size: clamp(13px, 3.73vw, 14px);
		line-height: 40px;
	}

	.yunda-venues__panels {
		padding: 6px 16px 12px;
	}

	.yunda-venues__card-stage {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 0;
	}

	.yunda-venues__figure {
		position: relative;
		top: auto;
		left: auto;
		z-index: 2;
		width: min(300px, 82vw);
		max-width: 100%;
		height: auto;
		margin: 0 auto -32px;
		transform: none;
		object-fit: contain;
	}

	.yunda-venues__panel .yunda-venues__figure,
	.yunda-venues__panel.is-active .yunda-venues__figure {
		transform: none;
	}

	.yunda-venues__card-inner {
		position: relative;
		z-index: 1;
		width: 100%;
		min-height: 0;
		padding: 44px 16px 18px;
		border-radius: 24px;
		border-width: 2px;
	}

	.yunda-venues__pane-head {
		justify-content: flex-start;
		margin-bottom: 10px;
		margin-top: 0;
	}

	.yunda-venues__pane-title,
	.yunda-venues__pane-subtitle {
		transform: none;
	}

	.yunda-venues__pane-title {
		font-size: 18px;
	}

	.yunda-venues__pane-subtitle {
		font-size: 12px;
		color: rgba(25, 118, 210, 0.45);
		text-shadow: none;
		letter-spacing: 0.08em;
	}

	.yunda-venues__pane-body {
		max-height: none;
		overflow: visible;
		padding-right: 0;
	}

	.yunda-venues__pane-body p {
		font-size: 13px;
		line-height: 1.65;
		margin-bottom: 10px;
		text-align: left;
	}

	.yunda-platform__list {
		gap: 16px;
	}
}

@media (max-width: 1080px) {
	.yunda-platform__list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 1024px) {
	.yunda-platform {
		padding: 56px 0;
	}

	.yunda-platform__scroll {
		overflow-x: auto;
		margin-inline: -16px;
		padding-inline: 16px;
	}

	.yunda-platform__list {
		display: flex;
		flex-wrap: nowrap;
		width: max-content;
		min-width: 100%;
		padding-inline: 4px;
	}

	.yunda-platform__item {
		flex: 0 0 min(280px, 78vw);
	}
}

@media (max-width: 1024px) {
	.yunda-faq {
		padding-top: 40px;
	}

	.yunda-faq__subtitle {
		margin-bottom: 30px;
	}

	.yunda-hero__contract {
		margin-top: -24px;
		padding: 20px 24px;
	}

	.yunda-hero__links {
		flex-wrap: wrap;
		justify-content: center;
	}

	.yunda-hero__links li {
		flex: 1 1 calc(50% - 8px);
		min-width: 140px;
	}

	.yunda-hero__links li::after {
		display: none;
	}

	.yunda-hero__contact-row {
		flex-direction: column;
		align-items: stretch;
	}

	.yunda-hero__contact-item {
		flex-direction: column;
		align-items: flex-start;
	}

	.yunda-hero__contact-text {
		white-space: normal;
	}

	.yunda-platform__list {
		gap: 12px;
	}

	.yunda-platform__item {
		flex: 0 0 min(280px, 78vw);
		padding-bottom: 64px;
	}

	.yunda-activity__grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.yunda-contact__grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.yunda-footer__grid {
		flex-direction: column;
		gap: 32px;
	}

	.yunda-footer__navigation-item + .yunda-footer__navigation-item {
		margin-top: 20px;
	}

	.yunda-footer__navigation-title {
		font-size: 16px;
	}

	.yunda-footer__url-list {
		grid-template-columns: repeat(4, 120px);
	}
}

@media (max-width: 960px) {
	.yunda-logo__text { display: none; }
}

@media (max-width: 768px) {
	.yunda-section { padding: 64px 0; }

	.yunda-about.yunda-section {
		padding-bottom: 24px;
	}

	.yunda-venues.yunda-section {
		padding: 12px 0 16px;
	}

	#venues + .yunda-activity.yunda-section {
		padding-top: 24px;
	}

	.yunda-faq {
		padding: 40px 0 36px;
	}

	.yunda-faq__title-wrap {
		gap: 10px;
	}

	.yunda-faq__title-deco {
		max-width: 100px;
		height: 6px;
	}

	.yunda-faq__title {
		font-size: 18px;
	}

	.yunda-faq__subtitle {
		margin-top: 4px;
		font-size: 12px;
	}

	.yunda-faq__intro {
		font-size: 14px;
		margin-top: 8px;
	}

	.yunda-faq__list {
		margin-top: 8px;
	}

	.yunda-faq-item {
		gap: 16px;
		padding: 16px 0;
		border-radius: 0;
		background: transparent !important;
		border-bottom: 1px solid rgba(25, 118, 210, 0.12);
	}

	.yunda-faq-item:last-child {
		border-bottom: none;
	}

	.yunda-faq-item__badge {
		width: 48px;
		height: 48px;
		font-size: 16px;
		border-width: 2px;
	}

	.yunda-faq-item__q {
		font-size: 15px;
		line-height: 1.6;
	}

	.yunda-faq-item__a,
	.yunda-faq-item__a-more {
		font-size: 13px;
		line-height: 1.65;
	}

	.yunda-activity__grid,
	.yunda-contact__grid {
		grid-template-columns: 1fr;
	}

	.yunda-activity__visual {
		height: 150px;
	}

	.yunda-contact__visual {
		height: 120px;
	}

	.yunda-contact__support-text {
		font-size: 12px;
	}

	.yunda-footer {
		padding-top: 8px;
		padding-bottom: 24px;
	}

	.yunda-footer__grid {
		gap: 24px;
	}

	.yunda-footer .yunda-container {
		padding-inline: 16px;
	}

	.yunda-footer__url-list {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		column-gap: 12px;
	}

	.yunda-article__header,
	.yunda-article__content {
		padding: 16px 20px;
	}

	.yunda-article__header {
		padding-bottom: 0;
	}

	.yunda-article__title {
		font-size: 18px;
		font-weight: 600;
		line-height: 1.32;
		margin-bottom: 12px;
	}

	.yunda-page {
		padding-bottom: 40px;
	}

	.yunda-single {
		padding-bottom: 32px;
	}

	.yunda-article {
		margin-bottom: 32px;
	}

	.yunda-container,
	.yunda-container--page {
		padding-inline: 16px;
	}

	.yunda-hero .yunda-hero__inner {
		padding-inline: 0;
	}

	.yunda-hero__links li {
		flex: 1 1 100%;
		justify-content: flex-start;
	}

	.yunda-hero__contact-actions {
		width: 100%;
	}

	.yunda-hero__btn {
		flex: 1;
	}
}

@media (max-width: 640px) {
	.yunda-platform__item {
		flex: 0 0 min(260px, 88vw);
		border-radius: 24px;
	}
}

@media (max-width: 480px) {
	.yunda-hero__contract-wrap {
		margin-top: 8px;
	}

	.yunda-hero__contract {
		border-radius: 20px;
		padding: 16px;
		margin-top: -16px;
	}

	.yunda-hero__links li {
		flex: 1 1 100%;
		min-width: 0;
	}

	.yunda-hero__link {
		font-size: 15px;
	}

	.yunda-hero__contact-title {
		font-size: 14px;
		line-height: 1.6;
	}

	.yunda-hero__btn {
		width: 100%;
		min-height: 44px;
	}

	.yunda-about__stage {
		margin-inline: 0;
	}

	.yunda-about__panel {
		margin-top: 72px;
		padding: 210px 14px 16px;
		border-radius: 20px;
	}

	.yunda-about__figure {
		top: -72px;
		height: 260px;
	}

	.yunda-about__nav-wrap {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		margin: 0 -6px;
		padding: 0 6px 4px;
	}

	.yunda-about__nav-wrap::-webkit-scrollbar {
		display: none;
	}

	.yunda-about__nav {
		justify-content: flex-start;
		width: max-content;
		min-width: 100%;
		gap: 10px;
	}

	.yunda-about__nav-btn {
		width: 96px;
		min-width: 96px;
	}

	.yunda-activity__visual {
		height: 168px;
	}

	.yunda-activity__body {
		padding: 20px 18px 22px;
	}

	.yunda-contact__support {
		flex-wrap: wrap;
		justify-content: center;
		text-align: center;
		padding: 10px 14px;
	}

	.yunda-contact__grid {
		gap: 14px;
	}

	.yunda-footer__url-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.yd-portal {
		padding-top: 0;
	}

	.yd-portal__title {
		font-size: 15px;
	}

	.yd-portal__tags {
		gap: 6px 10px;
	}

	.yd-portal__tag {
		font-size: 12px;
	}

	.yunda-venues__nav-btn {
		padding: 0 10px;
		font-size: 13px;
	}

	.yunda-venues__figure {
		width: min(268px, 78vw);
		margin-bottom: -24px;
	}

	.yunda-venues__card-inner {
		padding-top: 36px;
	}
}

/* ===== Jiuyou-style sections (v1.15) ===== */

.yunda-gift,
.yunda-why,
.yunda-preview,
.yunda-feedback,
.yunda-dynamic {
	padding: 80px 0;
	background: var(--yunda-bg-white);
}

.yunda-gift__header,
.yunda-why__header,
.yunda-preview__header,
.yunda-feedback__header,
.yunda-dynamic__header {
	text-align: center;
	margin-bottom: 40px;
}

.yunda-gift__title-wrap,
.yunda-why__title-wrap,
.yunda-preview__title-wrap,
.yunda-feedback__title-wrap,
.yunda-dynamic__title-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.yunda-gift__title-deco,
.yunda-why__title-deco,
.yunda-preview__title-deco,
.yunda-feedback__title-deco,
.yunda-dynamic__title-deco {
	flex: 1;
	max-width: 140px;
	height: 10px;
	background-size: contain;
	background-repeat: no-repeat;
}

.yunda-gift__title-deco--left,
.yunda-why__title-deco--left,
.yunda-preview__title-deco--left,
.yunda-feedback__title-deco--left,
.yunda-dynamic__title-deco--left {
	background-image: url("../images/faq-title-left.png");
	background-position: right center;
}

.yunda-gift__title-deco--right,
.yunda-why__title-deco--right,
.yunda-preview__title-deco--right,
.yunda-feedback__title-deco--right,
.yunda-dynamic__title-deco--right {
	background-image: url("../images/faq-title-right.png");
	background-position: left center;
}

.yunda-gift__title,
.yunda-why__title,
.yunda-preview__title,
.yunda-feedback__title,
.yunda-dynamic__title {
	margin: 0;
	font-family: var(--yunda-font-display);
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 700;
	color: var(--yunda-primary);
	line-height: 1.3;
}

.yunda-gift__subtitle,
.yunda-why__subtitle,
.yunda-preview__subtitle,
.yunda-feedback__subtitle,
.yunda-dynamic__subtitle {
	margin: 12px 0 0;
	font-size: 14px;
	color: rgba(26, 26, 46, 0.45);
	letter-spacing: 0.04em;
}

/* Gift table */
.yunda-gift__table {
	max-width: 960px;
	margin: 0 auto;
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid rgba(25, 118, 210, 0.12);
	box-shadow: 0 8px 32px rgba(25, 118, 210, 0.08);
}

.yunda-gift__thead,
.yunda-gift__row {
	display: grid;
	grid-template-columns: 1fr 1fr 2fr;
}

.yunda-gift__thead {
	background: linear-gradient(90deg, var(--yunda-primary), var(--yunda-cyan));
	color: #fff;
	font-weight: 600;
	font-size: 15px;
}

.yunda-gift__thead > div,
.yunda-gift__row > div {
	padding: 14px 18px;
	text-align: center;
	border-bottom: 1px solid rgba(25, 118, 210, 0.08);
}

.yunda-gift__row {
	background: #fff;
	font-size: 14px;
	color: #1a1a2e;
	transition: background 0.2s ease;
}

.yunda-gift__row:hover {
	background: rgba(25, 118, 210, 0.03);
}

.yunda-gift__row--special {
	background: linear-gradient(90deg, rgba(255, 193, 7, 0.08), rgba(255, 152, 0, 0.06));
}

.yunda-gift__row--special > div:nth-child(3) {
	color: #e65100;
	font-weight: 600;
}

.yunda-gift__foot {
	margin: 0;
	padding: 16px;
	text-align: center;
	font-size: 14px;
	color: rgba(26, 26, 46, 0.65);
	background: #f5f9ff;
}

/* Why choose */
.yunda-why__body {
	display: grid;
	grid-template-columns: minmax(240px, 360px) 1fr;
	gap: 40px;
	align-items: start;
}

.yunda-why__banner img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 16px;
	box-shadow: 0 12px 40px rgba(25, 118, 210, 0.12);
}

.yunda-why__list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.yunda-why__item {
	display: flex;
	gap: 16px;
	padding: 20px;
	background: #fff;
	border: 1px solid rgba(25, 118, 210, 0.1);
	border-radius: 12px;
	transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.yunda-why__item:hover {
	box-shadow: 0 8px 24px rgba(25, 118, 210, 0.1);
	transform: translateY(-2px);
}

.yunda-why__index {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 14px;
	color: var(--yunda-primary);
	background: linear-gradient(135deg, rgba(25, 118, 210, 0.12), rgba(0, 172, 193, 0.1));
	border: 1px solid rgba(25, 118, 210, 0.15);
}

.yunda-why__item-title {
	margin: 0 0 8px;
	font-size: 16px;
	font-weight: 700;
	color: #1a1a2e;
	line-height: 1.4;
}

.yunda-why__item-desc {
	margin: 0;
	font-size: 14px;
	line-height: 1.75;
	color: rgba(26, 26, 46, 0.72);
}

/* App preview */
.yunda-preview__body {
	display: grid;
	grid-template-columns: minmax(220px, 1fr) minmax(280px, 1.2fr);
	gap: 32px;
	align-items: center;
}

.yunda-preview__main img {
	width: 100%;
	max-width: 420px;
	height: auto;
	display: block;
	margin: 0 auto;
	filter: drop-shadow(0 16px 40px rgba(25, 118, 210, 0.15));
}

.yunda-preview__side {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.yunda-preview__card {
	margin: 0;
	text-align: center;
}

.yunda-preview__card img {
	width: 100%;
	max-width: 160px;
	height: auto;
	display: block;
	margin: 0 auto;
}

.yunda-preview__card figcaption {
	margin-top: 10px;
	font-size: 13px;
	font-weight: 600;
	color: var(--yunda-primary);
}

/* User feedback */
.yunda-feedback__list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.yunda-feedback__item {
	display: flex;
	gap: 16px;
	padding: 22px;
	background: #fff;
	border: 1px solid rgba(25, 118, 210, 0.1);
	border-radius: 14px;
	transition: box-shadow 0.25s ease;
}

.yunda-feedback__item:hover {
	box-shadow: 0 8px 28px rgba(25, 118, 210, 0.1);
}

.yunda-feedback__avatar {
	flex-shrink: 0;
}

.yunda-feedback__avatar img {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid rgba(25, 118, 210, 0.15);
}

.yunda-feedback__name {
	display: block;
	margin-bottom: 8px;
	font-size: 14px;
	font-weight: 700;
	color: var(--yunda-primary);
}

.yunda-feedback__text {
	margin: 0;
	font-size: 14px;
	line-height: 1.75;
	color: rgba(26, 26, 46, 0.72);
}

/* Dynamic tabs */
.yunda-dynamic__panel {
	max-width: 960px;
	margin: 0 auto;
}

.yunda-dynamic__nav {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin: 0 0 28px;
	padding: 6px;
	list-style: none;
	background: #e8f5ff;
	border-radius: 100px;
	width: fit-content;
	margin-inline: auto;
}

.yunda-dynamic__nav-btn {
	border: none;
	background: transparent;
	padding: 0 24px;
	height: 40px;
	border-radius: 100px;
	font-family: var(--yunda-font-header);
	font-size: 14px;
	font-weight: 500;
	color: #3f5075;
	cursor: pointer;
	transition: var(--yunda-transition);
}

.yunda-dynamic__nav-btn.is-active {
	color: var(--yunda-primary);
	background: linear-gradient(180deg, #fff 70%, #e8f5ff 110%);
	box-shadow: 0 4px 12px rgba(105, 168, 222, 0.25);
}

.yunda-dynamic__pane {
	display: none;
	opacity: 0;
	transform: translateY(8px);
	transition: opacity 0.45s ease, transform 0.45s ease;
}

.yunda-dynamic__pane.is-active {
	display: block;
	opacity: 1;
	transform: translateY(0);
}

.yunda-dynamic__list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.yunda-dynamic__item {
	display: grid;
	grid-template-columns: 72px 1fr 40px;
	gap: 16px;
	align-items: start;
	padding: 20px;
	background: #fff;
	border: 1px solid rgba(25, 118, 210, 0.1);
	border-radius: 12px;
	transition: box-shadow 0.2s ease;
}

.yunda-dynamic__item:hover {
	box-shadow: 0 6px 20px rgba(25, 118, 210, 0.08);
}

.yunda-dynamic__day {
	display: block;
	font-size: 28px;
	font-weight: 700;
	color: var(--yunda-primary);
	line-height: 1;
}

.yunda-dynamic__month {
	font-size: 13px;
	color: rgba(26, 26, 46, 0.45);
}

.yunda-dynamic__item-title {
	margin: 0 0 8px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
}

.yunda-dynamic__item-title a {
	color: #1a1a2e;
	text-decoration: none;
}

.yunda-dynamic__item-title a:hover {
	color: var(--yunda-primary);
}

.yunda-dynamic__excerpt {
	margin: 0;
	font-size: 13px;
	line-height: 1.7;
	color: rgba(26, 26, 46, 0.62);
}

.yunda-dynamic__arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	color: var(--yunda-primary);
	background: rgba(25, 118, 210, 0.08);
	transition: background 0.2s ease;
}

.yunda-dynamic__arrow:hover {
	background: rgba(25, 118, 210, 0.16);
}

@media (max-width: 1024px) {
	.yunda-why__body {
		grid-template-columns: 1fr;
	}

	.yunda-why__banner {
		max-width: 320px;
		margin: 0 auto;
	}

	.yunda-preview__body {
		grid-template-columns: 1fr;
	}

	.yunda-preview__side {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 768px) {
	.yunda-gift,
	.yunda-why,
	.yunda-preview,
	.yunda-feedback,
	.yunda-dynamic {
		padding: 56px 0;
	}

	.yunda-gift__thead,
	.yunda-gift__row {
		grid-template-columns: 1fr 1fr 1.5fr;
		font-size: 12px;
	}

	.yunda-gift__thead > div,
	.yunda-gift__row > div {
		padding: 10px 8px;
	}

	.yunda-feedback__list {
		grid-template-columns: 1fr;
	}

	.yunda-preview__side {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.yunda-dynamic__item {
		grid-template-columns: 56px 1fr;
	}

	.yunda-dynamic__arrow {
		display: none;
	}

	.yunda-dynamic__nav {
		width: 100%;
		max-width: 100%;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		justify-content: flex-start;
		border-radius: 12px;
	}

	.yunda-dynamic__nav-btn {
		flex-shrink: 0;
		padding: 0 18px;
	}
}

/* 404 — legacy light theme */
.yunda-404 {
	max-width: 560px;
	margin: 48px auto 80px;
	padding: 48px 24px 56px;
	text-align: center;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.06);
	border-radius: 16px;
	box-shadow: var(--yunda-shadow-md);
}

.yunda-404__code {
	margin: 0;
	font-size: 72px;
	font-weight: 700;
	line-height: 1;
	color: var(--yunda-primary);
}

.yunda-404__title {
	margin: 16px 0 0;
	font-size: 22px;
	font-weight: 700;
	color: var(--yunda-text);
}

.yunda-404__desc {
	margin: 12px 0 0;
	color: rgba(26, 26, 46, 0.55);
	font-size: 14px;
	line-height: 1.65;
}

.yunda-404__btn {
	display: inline-block;
	margin-top: 28px;
	padding: 10px 28px;
	border-radius: 999px;
	background: var(--yunda-primary);
	color: #fff;
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	transition: var(--yunda-transition);
}

.yunda-404__btn:hover {
	background: var(--yunda-primary-dark);
	color: #fff;
}

/* Archive pagination */
.yunda-page .navigation,
.yunda-page .nav-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin-top: 32px;
}

.yunda-page .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	height: 36px;
	padding: 0 12px;
	border-radius: 999px;
	border: 1px solid rgba(0, 0, 0, 0.08);
	color: rgba(26, 26, 46, 0.65);
	font-size: 14px;
	text-decoration: none;
	transition: var(--yunda-transition);
}

.yunda-page .page-numbers.current,
.yunda-page .page-numbers:hover {
	background: var(--yunda-primary);
	border-color: var(--yunda-primary);
	color: #fff;
}

/* Gushi all-posts hub (/gushi/) — ob-web list + sidebar */
.yunda-page--gushi {
	padding-top: 12px;
	padding-bottom: 88px;
}

.yunda-breadcrumb--path-only + .yunda-page--gushi {
	padding-top: 12px;
}

.yunda-page--gushi .yunda-archive__header {
	margin-bottom: 32px;
}

.yunda-gushi__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 380px;
	gap: 40px;
	align-items: start;
}

.yunda-gushi__main {
	min-width: 0;
}

.yunda-gushi__list {
	background: #fff;
	border-radius: 12px;
	padding: 24px;
	box-shadow: 0 4px 20px rgba(43, 64, 151, 0.08);
}

.yunda-gushi__item {
	display: flex;
	gap: 20px;
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.yunda-gushi__item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.yunda-gushi__item:hover .yunda-gushi__item-title a {
	color: var(--yunda-primary);
}

.yunda-gushi__item-img {
	width: 200px;
	aspect-ratio: 16 / 9;
	flex-shrink: 0;
	border-radius: 12px;
	overflow: hidden;
	background: linear-gradient(135deg, rgba(25, 118, 210, 0.12), rgba(0, 188, 212, 0.08));
}

.yunda-gushi__item-img a {
	display: block;
	width: 100%;
	height: 100%;
}

.yunda-gushi__item-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.yunda-gushi__item-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(25, 118, 210, 0.12), rgba(0, 188, 212, 0.08));
}

.yunda-gushi__item-content {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 14px;
}

.yunda-gushi__item-body {
	min-width: 0;
}

.yunda-gushi__item-title {
	margin: 0 0 8px;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.45;
}

.yunda-gushi__item-title a {
	color: #2d3453;
	text-decoration: none;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	transition: color 0.2s ease;
}

.yunda-gushi__item-desc {
	margin: 0;
	font-size: 14px;
	line-height: 1.65;
	color: #718096;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.yunda-gushi__item-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 4px;
	font-size: 13px;
	color: #718096;
}

.yunda-gushi__item-footer-left,
.yunda-gushi__item-footer-right {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	flex-shrink: 0;
}

.yunda-gushi__date {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 13px;
	line-height: 1;
	color: #718096;
	white-space: nowrap;
}

.yunda-gushi__meta-icon {
	width: 14px;
	height: 14px;
	flex-shrink: 0;
	color: #718096;
	opacity: 0.9;
}

.yunda-gushi__sidebar {
	position: sticky;
	top: 96px;
}

.yunda-gushi__sidebar-module {
	background: transparent;
	padding: 0;
	box-shadow: none;
}

.yunda-gushi__sidebar-heading {
	margin: 0 0 20px;
	font-size: 20px;
	font-weight: 700;
	color: var(--yunda-text);
	line-height: 1.5;
}

.yunda-gushi__sidebar-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding: 20px;
	border-radius: 12px;
	background: var(--yunda-bg-white);
	border: 1px solid rgba(226, 232, 240, 0.95);
	box-shadow: 0 4px 20px rgba(43, 64, 151, 0.08);
}

.yunda-gushi__sidebar-item {
	display: flex;
	gap: 12px;
	align-items: stretch;
}

.yunda-gushi__sidebar-item:hover .yunda-gushi__sidebar-title a {
	color: var(--yunda-primary);
}

.yunda-gushi__sidebar-img {
	position: relative;
	flex-shrink: 0;
	width: 100px;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	overflow: hidden;
	background: linear-gradient(135deg, rgba(25, 118, 210, 0.08), rgba(0, 172, 193, 0.06));
}

.yunda-gushi__sidebar-img a {
	display: block;
	width: 100%;
	height: 100%;
}

.yunda-gushi__sidebar-img:has(.yunda-gushi__sidebar-img--logo)::after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 12px;
	background: var(--yunda-primary);
	opacity: 0.05;
	z-index: 0;
}

.yunda-gushi__sidebar-img img {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.yunda-gushi__sidebar-img .yunda-gushi__sidebar-img--logo {
	width: 90%;
	height: auto;
	max-height: 100%;
	object-fit: contain;
}

.yunda-gushi__sidebar-body {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 6px;
}

.yunda-gushi__sidebar-title {
	margin: 0;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.5;
}

.yunda-gushi__sidebar-title a {
	color: #2d3453;
	text-decoration: none;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	transition: color 0.2s ease;
}

.yunda-gushi__sidebar-date {
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
	color: #718096;
}

.yunda-page--gushi .yunda-archive-pagination {
	margin-top: 24px;
}

@media (max-width: 1023px) {
	.yunda-gushi__layout {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.yunda-gushi__sidebar {
		position: static;
	}

	.yunda-gushi__sidebar-heading {
		margin-bottom: 16px;
		font-size: 18px;
	}

	.yunda-gushi__sidebar-list {
		gap: 16px;
		padding: 16px;
	}

	.yunda-gushi__sidebar-title {
		font-size: 14px;
	}

	.yunda-gushi__sidebar-date {
		font-size: 13px;
	}
}

@media (max-width: 768px) {
	.yunda-page--gushi {
		padding-bottom: 64px;
	}

	.yunda-gushi__list {
		padding: 16px;
	}

	.yunda-gushi__item {
		flex-direction: column;
		gap: 14px;
	}

	.yunda-gushi__item-img {
		width: 100%;
	}

	.yunda-gushi__item-title {
		font-size: 16px;
	}

	.yunda-gushi__item-desc,
	.yunda-gushi__date,
	.yunda-gushi__item-footer {
		font-size: 13px;
	}
}
