/* Unit-grid bento — row height = column width; placement via athens-grid.js */

html.athens-grid-html,
body.athens-grid-body {
	margin: 0;
	min-width: 0;
	overflow-x: clip;
	background: #e7e4da;
	scrollbar-width: none !important; /* Firefox */
	-ms-overflow-style: none !important; /* IE / Edge legacy */
}

/* Site shell：滚动常落在 html / #page，不只 body */
html:has(body.athens-grid-body),
html.athens-grid-html,
html.athens-grid-html body,
body.athens-grid-body,
body.athens-grid-body #page,
body.athens-grid-body .site,
body.athens-grid-body #content,
body.athens-grid-body .site-content,
body.athens-grid-body #primary,
body.athens-grid-body .ast-container {
	scrollbar-width: none !important;
	-ms-overflow-style: none !important;
}

html:has(body.athens-grid-body)::-webkit-scrollbar,
html.athens-grid-html::-webkit-scrollbar,
html.athens-grid-html body::-webkit-scrollbar,
body.athens-grid-body::-webkit-scrollbar,
body.athens-grid-body #page::-webkit-scrollbar,
body.athens-grid-body .site::-webkit-scrollbar,
body.athens-grid-body #content::-webkit-scrollbar,
body.athens-grid-body .site-content::-webkit-scrollbar,
body.athens-grid-body #primary::-webkit-scrollbar,
body.athens-grid-body .ast-container::-webkit-scrollbar {
	display: none !important;
	width: 0 !important;
	height: 0 !important;
	background: transparent !important;
}

.athens,
.athens * {
	box-sizing: border-box;
}

.athens {
	/* Palette test 2026-08-09 */
	--athens-bg: #edebe3;
	--athens-border: #d6d0c3;
	--athens-panel: #f1efe8;
	--athens-inner: #f7f5f0;
	--athens-muted: #756d60;
	--athens-blue: #756d60;
	--athens-gold: #a8322d;
	--athens-gold-hover: #8f2724;
	--athens-ink: #403a32;
	--athens-inset: clamp(12px, 2.2vw, 40px);
	--athens-hero-overlap: clamp(36px, 8vw, 72px);
	--athens-focus: rgba(168, 50, 45, 0.45);
	--athens-ease: cubic-bezier(0.16, 1, 0.3, 1);
	--cols: 3;
	--unit: calc(100vw / var(--cols));
	width: 100%;
	min-height: 100dvh;
	font-family: "Songti SC", "STSong", "Noto Serif SC", "Source Han Serif SC", Georgia, serif;
	color: var(--athens-ink);
	background: var(--athens-bg);
}

.athens-grid {
	display: grid;
	width: 100%;
	grid-template-columns: repeat(var(--cols), minmax(0, 1fr));
	grid-auto-rows: var(--unit);
	gap: 0;
	padding: 2px;
	background: var(--athens-bg);
}

@media (max-width: 809.98px) {
	.athens {
		--cols: 2;
	}

	.athens-grid {
		padding: 1px;
	}

	/* 3:1 横幅 — JS 已将行高缩为「跨列宽÷3」，格口即 3:1；画面铺满格口 */
	.athens-tile[data-aspect-lock='3/1'] .athens-visual {
		width: 100%;
		height: 100%;
	}

	.athens-tile[data-aspect-lock='3/1'].athens-cell--hero {
		background: transparent;
		border-color: transparent;
		box-shadow: none;
	}

	.athens-tile[data-aspect-lock='3/1'] .athens-visual--hero {
		background: var(--athens-panel);
		border: 1px solid var(--athens-border);
		border-radius: clamp(12px, 1.4vw, 18px);
		box-shadow:
			0 2px 14px rgba(83, 58, 33, 0.06),
			inset 0 1px 0 rgba(255, 255, 255, 0.45);
	}

	.athens-tile[data-aspect-lock='3/1'] .athens-visual--relief:not(.athens-hero-bg) .home-v2-relief-stage {
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
		aspect-ratio: auto;
	}

	.athens-tile[data-aspect-lock='3/1']:not(.athens-cell--hero) .home-v2-relief-stage__sizer {
		display: none;
	}

	.athens-tile[data-aspect-lock='3/1']:not(.athens-cell--hero) .home-v2-relief-stage__canvas,
	.athens-tile[data-aspect-lock='3/1']:not(.athens-cell--hero) .home-v2-relief-stage__canvas--absolute {
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
	}

	.athens-tile[data-aspect-lock='3/1'] .athens-relief-actions {
		width: 100%;
		height: 100%;
		box-sizing: border-box;
	}

	/* 1:3 竖幅（若使用 data-ratio="1/3"） */
	.athens-tile[data-aspect-lock='1/3'] .athens-visual {
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.athens-tile[data-aspect-lock='1/3'] .home-v2-relief-stage {
		position: relative;
		inset: auto;
		width: 100%;
		height: auto;
		aspect-ratio: 1 / 3;
	}

	/* Hero 2:1 — 手机格口加高；浮雕仍按素材 3:1 等比适配靠右（裁左） */
	.athens-tile[data-aspect-lock='2/1'].athens-cell--hero {
		background: transparent;
		border-color: transparent;
		box-shadow: none;
	}

	.athens-tile[data-aspect-lock='2/1'].athens-cell--hero .athens-visual--hero {
		background: var(--athens-panel);
		border-radius: 8px;
		box-shadow:
			0 2px 14px rgba(83, 58, 33, 0.06),
			inset 0 1px 0 rgba(255, 255, 255, 0.45);
	}

	.athens-tile[data-aspect-lock='2/1'].athens-cell--hero .athens-hero-bg .home-v2-relief-stage {
		top: 0;
		right: 0;
		left: auto;
		width: auto;
		height: 100%;
		aspect-ratio: 3 / 1;
		transform: none;
	}
}

/* Tiles fill their grid footprint exactly */
.athens-tile {
	position: relative;
	min-width: 0;
	min-height: 0;
	overflow: hidden;
	border: 2px solid var(--athens-border);
	background: var(--athens-panel);
}

.athens-tile__scroll {
	width: 100%;
	height: 100%;
	padding: 24px;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}

.athens-cell--hero {
	background: transparent;
}

/* Hero 与总背景融合：外层透明；负 margin-bottom 使下方整块内容上移覆盖 hero 底缘 */
.athens-tile.athens-cell--hero {
	position: relative;
	z-index: 1;
	margin-bottom: calc(var(--athens-hero-overlap) * -1);
	border-color: transparent;
	background: transparent;
	box-shadow: none;
}

.athens-grid > .athens-tile:not(.athens-cell--hero) {
	position: relative;
	z-index: 2;
}

.athens-cell--visual {
	background: var(--athens-inner);
}

.athens-cell--column {
	background: var(--athens-panel);
}

.athens-cell--pack,
.athens-cell--faqs-banner,
.athens-cell--faqs-tile,
.athens-cell--legend,
.athens-cell--warehouses,
.athens-cell--day,
.athens-cell--nav {
	background: var(--athens-panel);
}

/* Nav menu — 清淡列表风（对齐学习中心参考） */
.athens-cell--nav {
	display: block;
	padding: 0;
	overflow: hidden;
}

.athens-nav-tile {
	--nav-pad: clamp(5px, 1.4cqw, 9px);
	--nav-gap: clamp(5px, 1.2cqw, 8px);

	position: relative;
	container-type: size;
	container-name: athens-nav-tile;
	display: block;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	min-width: 0;
	min-height: 0;
	padding: 0;
	overflow: hidden;
}

.athens-nav-tile__sections {
	position: absolute;
	inset: var(--nav-pad);
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	grid-template-rows: minmax(0, 1fr);
	gap: var(--nav-gap);
	min-height: 0;
	overflow: hidden;
}

/* 桌面四宫格：闻思修 / 修行助手 / 活动 / 请购 同处 1×1 */
.athens-nav-tile--quad .athens-nav-tile__sections {
	inset: 0;
	grid-template-rows: repeat(2, minmax(0, 1fr));
	gap: 1px;
}

.athens-nav-tile--quad .athens-nav-section {
	border-radius: 0;
	box-shadow: none;
}

/* 手机单格（1 section / 1×1）：单列铺满，无内层边距圆角框 */
.athens-nav-tile:not(.athens-nav-tile--quad) .athens-nav-tile__sections {
	grid-template-columns: minmax(0, 1fr);
	inset: 0;
}

.athens-nav-tile:not(.athens-nav-tile--quad) .athens-nav-section {
	border: 0;
	box-shadow: none;
	border-radius: 0;
}

.athens-nav-section {
	--nav-gold: var(--athens-gold);
	--nav-ink: rgba(79, 54, 30, 0.92);

	container-type: inline-size;
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 0;
	padding: clamp(8px, 2.4cqi, 14px) clamp(8px, 2.6cqi, 14px) clamp(10px, 3cqi, 16px);
	border: 1px solid var(--athens-bg);
	border-radius: 0;
	overflow: hidden;
	background: var(--athens-panel);
	box-shadow: none;
}

.athens-nav-section__head {
	position: relative;
	z-index: 2;
	flex: 0 0 auto;
	padding-bottom: clamp(5px, 1.4cqi, 8px);
	margin-bottom: clamp(4px, 1.2cqi, 7px);
	border-bottom: 1px solid rgba(126, 91, 54, 0.12);
}

.athens-nav-section__title {
	margin: 0;
	color: var(--nav-gold);
	font-family: "Noto Serif SC", "Songti SC", serif;
	font-size: clamp(10px, 9cqi, 14px);
	font-weight: 400;
	line-height: 1.25;
	letter-spacing: 0.08em;
}

.athens-nav-section__list {
	position: relative;
	z-index: 2;
	flex: 1 1 auto;
	margin: 0;
	padding: 0;
	list-style: none;
	overflow: hidden;
	font: clamp(8px, 6.4cqi, 18px) / 1.85 "Noto Sans SC", "PingFang SC", sans-serif;
}

.athens-nav-section__list li {
	margin: 0;
}

.athens-nav-section__link {
	display: flex;
	align-items: center;
	gap: clamp(5px, 2cqi, 8px);
	color: var(--nav-ink);
	text-decoration: none;
	transition: color 0.15s ease;
}

.athens-nav-section__link:hover {
	color: var(--nav-gold);
}

.athens-nav-section__icon {
	display: inline-grid;
	flex-shrink: 0;
	width: clamp(14px, 10cqi, 18px);
	height: clamp(14px, 10cqi, 18px);
	place-items: center;
	color: var(--nav-gold);
	opacity: 0.78;
}

.athens-nav-section__svg {
	width: 100%;
	height: 100%;
}

.athens-nav-section__emoji {
	display: block;
	font-size: clamp(10px, 7.5cqi, 13px);
	line-height: 1;
	opacity: 0.85;
}

.athens-nav-section__text {
	flex: 1;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.athens-nav-section__decor {
	position: absolute;
	z-index: 0;
	right: -8%;
	bottom: -10%;
	width: clamp(52px, 38cqi, 88px);
	pointer-events: none;
	color: rgba(163, 112, 46, 0.28);
	opacity: 0.55;
}

.athens-nav-section__decor .athens-nav-section__relief-svg {
	display: block;
	width: 100%;
	height: auto;
	filter: none;
}

.athens-nav-section--sunburst .athens-nav-section__decor {
	right: 50%;
	bottom: -6%;
	width: clamp(48px, 34cqi, 72px);
	transform: translateX(50%);
}

.athens-nav-section--wheel-cloud .athens-nav-section__decor {
	right: -10%;
	bottom: -12%;
	width: clamp(56px, 40cqi, 90px);
}

.athens-cell--feast {
	padding: 0;
	border: 0;
	background: transparent;
}

/* Quick entry — 2×2 mini cards in 1/1 tile */
.athens-cell--quick {
	display: block;
	padding: 0;
	overflow: hidden;
	background: var(--athens-panel);
	container-type: size;
	container-name: athens-quick-cell;
}

/* 快捷入口：原样复制左侧四联菜单分割（gap 1px + 同色细边框） */
.athens-quick-grid {
	position: absolute;
	inset: 0;
	display: grid;
	box-sizing: border-box;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	grid-template-rows: repeat(2, minmax(0, 1fr));
	gap: 1px;
	padding: 0;
	background: var(--athens-panel);
}

.athens-quick-card {
	/* 以整块 1×1 格口为容器，避免四宫格每格过小导致字号上限过低 */
	--qc-pad-x: clamp(6px, 3.2cqw, 14px);
	--qc-pad-y: clamp(6px, 3.5cqh, 14px);
	--qc-pad-b: clamp(8px, 5cqh, 14px);
	--qc-icon: clamp(30px, 17cqmin, 56px);
	--qc-icon-gap: clamp(3px, 2.2cqh, 8px);
	--qc-title: clamp(11px, 5cqmin, 16px);
	--qc-sub: clamp(9px, 3.6cqmin, 12px);
	--qc-text-gap: clamp(2px, 1cqmin, 4px);
	--qc-arrow: clamp(12px, 3.8cqmin, 15px);

	position: relative;
	display: flex;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	min-width: 0;
	min-height: 0;
	max-width: 100%;
	max-height: 100%;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: var(--qc-icon-gap);
	overflow: hidden;
	padding: var(--qc-pad-y) var(--qc-pad-x) var(--qc-pad-b);
	border: 1px solid var(--athens-bg);
	border-radius: 0;
	background: var(--athens-panel);
	box-shadow: none;
	color: var(--athens-gold);
	text-align: center;
	text-decoration: none;
	transition:
		background 0.2s ease,
		color 0.2s ease,
		border-color 0.2s ease;
}

.athens-quick-card:not(.athens-quick-card--red):hover {
	border-color: rgba(156, 106, 44, 0.28);
	background: #ebe6dc;
	box-shadow: none;
	transform: none;
}

.athens-quick-card__icon {
	display: grid;
	flex-shrink: 0;
	width: var(--qc-icon);
	height: var(--qc-icon);
	place-items: center;
	color: inherit;
	opacity: 0.78;
	filter: none;
}

.athens-quick-card__svg {
	width: 100%;
	height: 100%;
	stroke-width: 1.6;
}

.athens-quick-card__body {
	display: flex;
	flex: 0 1 auto;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: var(--qc-text-gap);
	width: 100%;
	max-width: 100%;
	min-height: 0;
	padding-inline: 2px;
}

.athens-quick-card__title {
	display: -webkit-box;
	overflow: hidden;
	margin: 0;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	font-family: "Noto Serif SC", "Songti SC", serif;
	font-size: var(--qc-title);
	font-weight: 600;
	line-height: 1.28;
	letter-spacing: 0.04em;
	word-break: keep-all;
}

.athens-quick-card__subtitle {
	display: -webkit-box;
	overflow: hidden;
	margin: 0;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	color: rgba(93, 64, 37, 0.68);
	font-family: "Noto Sans SC", "PingFang SC", sans-serif;
	font-size: var(--qc-sub);
	font-weight: 400;
	line-height: 1.32;
	letter-spacing: 0.01em;
	word-break: keep-all;
}

.athens-quick-card__arrow {
	display: none !important;
}

@media (min-width: 810px) {
	.athens-quick-card {
		--qc-icon: clamp(38px, 19cqmin, 72px);
		--qc-title: clamp(13px, 5.8cqmin, 19px);
		--qc-sub: clamp(10px, 4.2cqmin, 14px);
		--qc-pad-x: clamp(8px, 3.5cqw, 16px);
		--qc-pad-y: clamp(8px, 4cqh, 16px);
	}
}

/* 格口偏小时副标题单行，减少叠字折叠 */
@container athens-quick-cell (max-width: 360px) {
	.athens-quick-card__subtitle {
		-webkit-line-clamp: 1;
		line-clamp: 1;
	}
}

@container athens-quick-cell (max-height: 280px) {
	.athens-quick-card {
		--qc-icon: clamp(26px, 14cqmin, 40px);
		--qc-icon-gap: 2px;
	}

	.athens-quick-card__title {
		-webkit-line-clamp: 2;
		line-clamp: 2;
	}

	.athens-quick-card__subtitle {
		-webkit-line-clamp: 1;
		line-clamp: 1;
	}
}

@media (min-width: 480px) {
	.athens-quick-grid {
		gap: 1px;
		padding: 0;
	}
}

.athens-quick-card--red {
	border: 1px solid rgba(156, 106, 44, 0.18);
	color: #f7dfbf;
	background: #a82f28;
	box-shadow: none;
}

.athens-quick-card--red:hover {
	border-color: rgba(156, 106, 44, 0.28);
	color: #fff8ef;
	background: #b83830;
	box-shadow: none;
}

.athens-quick-card--red .athens-quick-card__subtitle {
	color: rgba(255, 236, 211, 0.85);
}

.athens-quick-card--red .athens-quick-card__arrow {
	opacity: 0.75;
}

.athens-quick-card--red:hover {
	border-color: transparent;
	color: #fff8ef;
	background: #b83830;
	box-shadow: none;
}

.athens-quick-card--red:hover .athens-quick-card__subtitle {
	color: rgba(255, 244, 230, 0.92);
}

/* Facts inset panel */
.athens-inset {
	position: absolute;
	inset: var(--athens-inset);
	display: flex;
}

.athens-panel {
	display: flex;
	width: 100%;
	height: 100%;
	flex-direction: column;
	justify-content: space-between;
	padding: clamp(12px, 2vw, 24px);
	border: 1px solid var(--athens-bg);
	border-radius: 2px;
	background: var(--athens-inner);
	overflow: auto;
}

.athens-panel__title {
	margin: 0;
	color: var(--athens-gold);
	font-size: clamp(18px, 2.5vw, 32px);
	font-weight: 700;
	text-align: center;
	letter-spacing: 0.04em;
	text-transform: none;
}

.athens-panel__stack {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: clamp(8px, 2vw, 24px);
}

.athens-canvas {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	min-height: 56px;
	padding: 16px 20px;
	border-radius: 4px;
	background: var(--athens-inner);
}

.athens-canvas__label {
	flex-shrink: 0;
	color: var(--athens-gold);
	font-size: 15px;
	font-weight: 700;
	text-transform: none;
}

.athens-canvas__text,
.athens-canvas__link {
	color: var(--athens-ink);
	font-size: 13px;
	font-weight: 500;
	text-align: right;
	text-transform: none;
	text-decoration: none;
	word-break: break-word;
}

.athens-canvas__link:hover {
	color: var(--athens-gold);
	text-decoration: underline;
}

.athens-canvas--block {
	flex-direction: column;
	align-items: stretch;
	gap: 10px;
	margin-bottom: 8px;
}

.athens-block__meta strong {
	display: block;
	color: var(--athens-blue);
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
}

.athens-block__meta h3 {
	margin: 6px 0 0;
	color: var(--athens-blue);
	font-size: 18px;
	font-weight: 700;
}

.athens-canvas--block p {
	margin: 0;
	font-size: 13px;
	line-height: 1.5;
}

.athens-visual {
	display: grid;
	width: 100%;
	height: 100%;
	place-items: center;
	background:
		repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.03) 0 1px, transparent 1px 48px),
		repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.03) 0 1px, transparent 1px 48px),
		var(--athens-inner);
}

.athens-visual span {
	padding: 8px 14px;
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.72);
	color: rgba(7, 85, 187, 0.85);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
}

.athens-visual--hero {
	position: relative;
	display: grid;
	grid-template: 1fr / 1fr;
	align-items: stretch;
	justify-items: stretch;
	width: 100%;
	height: 100%;
	min-height: 0;
	overflow: hidden;
	background: var(--athens-panel);
}

.athens-visual--hero > .athens-hero-bg,
.athens-visual--hero > .athens-hero-copy {
	grid-area: 1 / 1;
	width: 100%;
	height: 100%;
	min-width: 0;
	min-height: 0;
}

.athens-visual--hero > .athens-hero-bg {
	position: relative;
	z-index: 1;
	overflow: hidden;
	background: transparent;
	pointer-events: auto;
}

.athens-visual--hero > .athens-hero-copy {
	position: relative;
	z-index: 2;
	overflow: hidden;
	pointer-events: none;
}

/* Hero 浮雕：素材 3:1 原比例放进格口（高=100%，宽按比例），靠右；不拉伸。
   叠在下方区块后：靠 .athens-cell--hero 的负 margin（--athens-hero-overlap），不是拉高画布 */
.athens-cell--hero .athens-hero-bg .home-v2-relief-stage {
	position: absolute;
	top: 0;
	right: 0;
	left: auto;
	bottom: auto;
	width: auto;
	height: 100%;
	aspect-ratio: 3 / 1;
	min-width: 0;
	min-height: 0;
	transform: none;
}

.athens-cell--hero .athens-hero-bg .home-v2-relief-stage__sizer {
	display: none;
}

.athens-cell--hero .athens-hero-bg .home-v2-relief-stage__canvas,
.athens-cell--hero .athens-hero-bg .home-v2-relief-stage__canvas--absolute {
	position: absolute !important;
	inset: 0 !important;
	right: 0 !important;
	width: 100% !important;
	height: 100% !important;
	max-width: none;
	max-height: none;
}

.athens-hero-copy {
	position: relative;
	z-index: 2;
	display: flex;
	width: 100%;
	height: 100%;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: clamp(20px, 4vw, 48px) clamp(24px, 5vw, 56px);
	pointer-events: none;
}

.athens-hero-copy__eyebrow,
.athens-hero-copy__title,
.athens-hero-copy__subtitle,
.athens-hero-copy__search {
	margin-left: 0;
	padding-left: 0;
	align-self: flex-start;
	text-align: left;
}

.athens-hero-copy__eyebrow {
	margin: 0 0 12px;
	color: rgba(122, 72, 48, 0.52);
	/* Brand mark: clean sans — quieter than the gatha */
	font-family: "PingFang SC", "Hiragino Sans GB", "Noto Sans SC", "Microsoft YaHei", sans-serif;
	font-size: clamp(22px, 2vw, 34px);
	font-weight: 500;
	letter-spacing: 0.06em;
	line-height: 1.2;
	text-shadow: 0 1px 0 rgba(255, 248, 236, 0.35);
}

.athens-hero-copy__title {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0;
	margin: 0 0 12px;
	max-width: none;
	padding: 0;
	border: 0;
	background: none;
	box-shadow: none;
	color: #7a2020;
	-webkit-text-fill-color: #7a2020;
	/* Gatha: classical kai for literary presence */
	font-family: "Kaiti SC", "STKaiti", "KaiTi", "Noto Serif SC", "Songti SC", serif;
	font-size: clamp(28px, 2.8vw, 40px);
	font-weight: 700;
	line-height: 1.18;
	letter-spacing: 0.04em;
	text-shadow:
		0 1px 0 rgba(255, 248, 236, 0.88),
		0 -1px 0 rgba(92, 24, 24, 0.12),
		1px 2px 0 rgba(156, 106, 44, 0.1),
		0 3px 14px rgba(122, 32, 32, 0.14),
		0 14px 34px rgba(156, 106, 44, 0.2);
}

.athens-hero-copy__title-line {
	display: block;
	margin: 0;
	padding: 0;
	border: 0;
	background: none !important;
	box-shadow: none !important;
	color: #7a2020 !important;
	-webkit-text-fill-color: #7a2020 !important;
	line-height: 1.18;
	letter-spacing: inherit;
	white-space: nowrap;
	text-shadow: inherit;
}

.athens-hero-copy__title-line + .athens-hero-copy__title-line {
	margin-top: 0.06em;
}

.athens-hero-copy__subtitle {
	margin: 0 0 28px;
	max-width: none;
	color: rgba(122, 32, 32, 0.64);
	font-family: "Noto Serif SC", "Songti SC", "STSong", serif;
	font-size: clamp(16px, 1.35vw, 20px);
	font-weight: 500;
	letter-spacing: 0.04em;
	line-height: 1.35;
}

.athens-hero-copy__search {
	margin: 0;
	padding: 0;
	border: 1px solid rgba(163, 112, 46, 0.35);
	border-radius: 999px;
	max-width: 480px;
	width: min(100%, 480px);
	background: rgba(255, 255, 255, 0.45);
	pointer-events: auto;
	overflow: hidden;
}

.athens-hero-copy__search-input {
	display: block;
	width: 100%;
	margin: 0;
	padding: 16px 22px;
	border: 0;
	background: transparent;
	color: rgba(93, 64, 37, 0.88);
	font-family: "PingFang SC", "Noto Sans SC", "Hiragino Sans GB", sans-serif;
	font-size: 16px;
	line-height: 1.3;
	outline: none;
}

.athens-hero-copy__search-input::placeholder {
	color: rgba(93, 64, 37, 0.55);
}

.athens-hero-copy__note {
	display: none;
}

.athens-sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.athens-visual--relief {
	position: relative;
	padding: 0;
	background: var(--athens-panel);
}

.athens-visual--relief .home-v2-relief-stage {
	position: absolute;
	inset: 0;
	z-index: 2;
	width: 100%;
	height: 100%;
	pointer-events: auto;
	touch-action: none;
	-webkit-user-select: none;
	user-select: none;
}

.home-v2-relief-stage__canvas {
	position: relative;
	z-index: 1;
	display: block;
	width: 100%;
	height: 100%;
	touch-action: none;
}

.home-v2-relief-stage__poster {
	position: absolute;
	inset: 0;
	z-index: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	pointer-events: none;
	user-select: none;
}

.home-v2-relief-stage__canvas--absolute {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.home-v2-relief-stage__sizer {
	width: 100%;
	pointer-events: none;
}

.athens-visual--relief .home-v2-relief-stage__sizer + .home-v2-relief-stage__canvas--absolute {
	position: absolute;
	inset: 0;
	height: 100%;
	padding-bottom: 0;
}

/* Overlay CTAs above relief canvas (pointer-events only on buttons). */
.athens-relief-actions {
	position: absolute;
	z-index: 5;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding: clamp(10px, 2vw, 16px);
	pointer-events: none;
}

.athens-relief-actions--bottom-left {
	right: auto;
	bottom: 0;
	left: 0;
	align-items: flex-end;
}

.athens-relief-actions--bottom-right {
	right: 0;
	bottom: 0;
	left: auto;
	justify-content: flex-end;
}

.athens-relief-actions--top-right {
	top: 0;
	right: 0;
	bottom: auto;
	left: auto;
	justify-content: flex-end;
}

.athens-relief-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 10px 18px;
	border: 1px solid rgba(163, 112, 46, 0.45);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.88);
	color: var(--athens-ink);
	pointer-events: auto;
	font-family: "Noto Sans SC", "PingFang SC", sans-serif;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
	box-shadow: 0 2px 10px rgba(83, 58, 33, 0.12);
	backdrop-filter: blur(6px);
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.athens-relief-btn:hover {
	border-color: var(--athens-gold-hover);
	color: var(--athens-gold-hover);
}

.athens-relief-btn--primary {
	border-color: transparent;
	background: var(--athens-gold);
	color: #fff;
}

.athens-relief-btn--primary:hover {
	background: var(--athens-gold-hover);
	color: #fff;
}

.athens-relief-btn--ghost {
	border-color: rgba(255, 255, 255, 0.55);
	background: rgba(255, 255, 255, 0.35);
	color: var(--athens-ink);
}

.athens-pillar {
	position: absolute;
	inset: 24px 18%;
	width: auto;
	background:
		linear-gradient(90deg, rgba(0, 0, 0, 0.06) 0%, transparent 35%, rgba(255, 255, 255, 0.45) 50%, transparent 65%, rgba(0, 0, 0, 0.05) 100%),
		linear-gradient(180deg, #ebe6de 0%, #d8cdb8 100%);
	border-radius: 6px 6px 10px 10px;
	box-shadow: inset 2px 0 4px rgba(255, 255, 255, 0.65);
}

.athens-pillar::before,
.athens-pillar::after {
	content: "";
	position: absolute;
	left: -6px;
	width: calc(100% + 12px);
	height: 18px;
	border-radius: 3px;
	background: linear-gradient(180deg, #efe8dc, #d5c5a8);
}

.athens-pillar::after {
	bottom: 0;
}

.athens-column-copy {
	position: relative;
	z-index: 1;
	padding: 28px 22px;
	font-size: 14px;
	line-height: 1.65;
	text-transform: none;
}

.athens-column-copy__title {
	margin: 0 0 16px;
	color: var(--athens-gold);
	font-size: 18px;
	font-weight: 700;
}

.athens-column-copy__quote {
	margin: 0;
	padding: 0;
	border: 0;
}

.athens-column-copy__quote p {
	margin: 0 0 14px;
	font-size: 15px;
	line-height: 1.7;
}

.athens-column-copy__quote footer {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 12px;
	color: rgba(93, 64, 37, 0.72);
	font-size: 12px;
}

.athens-column-copy__quote cite {
	font-style: normal;
	font-weight: 700;
}

.athens-column-copy__handle {
	opacity: 0.8;
}

/* ---------- 闻法课表（2×1，数据来自活动时间表） ---------- */
.athens-cell--schedule {
	display: block;
	padding: 0;
	overflow: hidden;
}

.athens-schedule {
	display: flex;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	flex-direction: column;
	padding: clamp(14px, 1.8cqw, 20px);
}

.athens-schedule__empty {
	margin: auto;
	padding: 0 8px;
	max-width: 22em;
	color: rgba(79, 54, 30, 0.72);
	font-size: clamp(15px, 1.35vw, 18px);
	line-height: 1.55;
	text-align: center;
}

.athens-schedule__empty a {
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

.athens-schedule__list {
	display: grid;
	flex: 1 1 auto;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(6px, 0.9cqw, 8px);
	align-content: start;
	margin: 0;
	padding: 0;
	list-style: none;
	min-height: 0;
}

.athens-schedule__item {
	margin: 0;
	min-width: 0;
}

.athens-schedule__card {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: clamp(8px, 1vw, 10px);
	min-height: 52px;
	padding: 8px 10px;
	border: 1px solid rgba(156, 106, 44, 0.12);
	border-radius: clamp(6px, 0.8vw, 8px);
	background: #f7f5f0;
	color: inherit;
	text-decoration: none;
	transition: border-color 0.2s ease, background 0.2s ease;
}

.athens-schedule__name-wrap {
	container-type: inline-size;
	container-name: athens-schedule-title;
	min-width: 0;
}

.athens-schedule__card:hover {
	border-color: rgba(156, 106, 44, 0.26);
	background: #faf8f4;
}

.athens-schedule__card--today {
	border-color: rgba(156, 106, 44, 0.22);
	background: #fbf9f4;
}

.athens-schedule__when {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2px;
	min-width: 42px;
	padding-right: 2px;
	border-right: 1px solid rgba(156, 106, 44, 0.1);
}

.athens-schedule__time {
	color: var(--athens-gold);
	font-family: "Noto Sans SC", "PingFang SC", ui-monospace, monospace;
	font-size: clamp(12px, 1.2vw, 14px);
	font-weight: 600;
	line-height: 1.1;
	letter-spacing: 0.02em;
}

.athens-schedule__date {
	color: rgba(79, 54, 30, 0.68);
	font-family: "Noto Sans SC", "PingFang SC", sans-serif;
	font-size: clamp(13px, 1.15vw, 14px);
	line-height: 1.2;
	white-space: nowrap;
}

.athens-schedule__card--today .athens-schedule__date {
	color: rgba(156, 106, 44, 0.88);
	font-weight: 600;
}

.athens-schedule__name {
	display: block;
	overflow: hidden;
	min-width: 0;
	color: var(--athens-ink);
	font-family: "Noto Serif SC", "Songti SC", serif;
	font-size: clamp(12px, 11cqi, 15px);
	font-weight: 500;
	line-height: 1.32;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.athens-schedule__arrow {
	align-self: center;
	color: rgba(156, 106, 44, 0.38);
	font-size: 16px;
	font-weight: 300;
	line-height: 1;
}

.athens-schedule__card:hover .athens-schedule__arrow {
	color: var(--athens-gold);
}

@media (min-width: 810px) {
	.athens-schedule {
		padding: clamp(16px, 2vw, 24px);
	}

	.athens-schedule__list {
		gap: 10px;
	}

	.athens-schedule__card {
		gap: 14px;
		min-height: 76px;
		padding: 12px 16px;
	}

	.athens-schedule__when {
		min-width: 58px;
		padding-right: 6px;
	}

	.athens-schedule__time {
		font-size: clamp(15px, 1.1vw, 17px);
	}

	.athens-schedule__date {
		font-size: 14px;
	}

	.athens-schedule__name {
		font-size: clamp(11px, 10cqi, 28px);
		font-weight: 600;
		letter-spacing: 0.02em;
	}

	.athens-schedule__arrow {
		font-size: 20px;
	}
}

@media (max-width: 809.98px) {
	.athens-schedule {
		min-height: 0;
		padding: 10px 10px 8px;
		overflow: hidden;
	}

	.athens-schedule__list {
		flex: 1 1 auto;
		grid-template-columns: minmax(0, 1fr);
		align-content: start;
		min-height: 0;
		overflow-x: hidden;
		overflow-y: auto;
		scrollbar-width: thin;
		-webkit-overflow-scrolling: touch;
	}

	.athens-schedule__card {
		min-height: 46px;
		padding: 7px 9px;
	}

	.athens-schedule__name {
		font-size: clamp(8px, 10.5cqi, 13px);
	}
}

/* ---------- 今日课程 / 今日活动（固定 2×1） ---------- */
.athens-cell--today-courses {
	display: block;
	padding: 0;
	overflow: hidden;
	background: var(--athens-panel);
	container-type: size;
	container-name: athens-today-cell;
}

.athens-cell--today-courses[data-ratio="2/1"] .athens-today--bare {
	padding: clamp(10px, 2.4cqmin, 16px);
}

.athens-cell--today-courses[data-ratio="2/1"] .athens-today__empty {
	max-width: 22em;
	font-size: clamp(16px, 1.5vw, 20px);
}

.athens-today {
	display: flex;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	flex-direction: column;
	gap: clamp(8px, 2cqh, 12px);
	padding: clamp(12px, 3cqmin, 18px);
}

.athens-today--bare {
	gap: 0;
	padding: 0;
}

.athens-today--past {
	gap: clamp(6px, 1.6cqh, 10px);
	padding: clamp(8px, 2cqmin, 12px);
}

.athens-today__label {
	flex: 0 0 auto;
	margin: 0;
}

.athens-today__label-text {
	display: inline-block;
	padding-left: 8px;
	border-left: 1px solid var(--athens-gold);
	color: var(--athens-gold);
	font-family: "Songti SC", "STSong", "Noto Serif SC", serif;
	font-size: clamp(12px, 3.8cqmin, 15px);
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1.2;
}

.athens-today__date {
	flex-shrink: 1;
	min-width: 0;
	color: rgba(79, 54, 30, 0.62);
	font-family: "Noto Sans SC", "PingFang SC", sans-serif;
	font-size: clamp(11px, 2.8cqmin, 13px);
	font-weight: 600;
	line-height: 1.2;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.athens-today__head {
	display: flex;
	flex: 0 0 auto;
	align-items: baseline;
	justify-content: space-between;
	gap: 10px;
}

.athens-today__title {
	margin: 0;
	padding-left: 10px;
	border-left: 1px solid var(--athens-gold);
	color: var(--athens-gold);
	font-family: "Songti SC", "STSong", "Noto Serif SC", serif;
	font-size: clamp(14px, 5cqmin, 18px);
	font-weight: 700;
	letter-spacing: 0.06em;
}

.athens-today__more {
	flex-shrink: 0;
	color: rgba(79, 54, 30, 0.62);
	font-size: 13px;
	text-decoration: none;
}

.athens-today__more:hover {
	color: var(--athens-gold);
}

.athens-today__empty {
	margin: auto;
	padding: 0 8px;
	max-width: 18em;
	color: rgba(79, 54, 30, 0.72);
	font-size: clamp(15px, 1.35vw, 18px);
	line-height: 1.55;
	text-align: center;
}

.athens-today__list {
	display: grid;
	flex: 1 1 auto;
	gap: clamp(8px, 2cqh, 10px);
	margin: 0;
	padding: 0;
	list-style: none;
	min-height: 0;
	overflow: hidden;
}

.athens-today__list--count-1 {
	grid-template-columns: minmax(0, 1fr);
	grid-template-rows: minmax(0, 1fr);
}

.athens-today__list--count-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	grid-template-rows: minmax(0, 1fr);
}

.athens-cell--today-courses[data-ratio="2/1"] .athens-today__list--count-2 {
	gap: clamp(8px, 1.6cqmin, 12px);
}

.athens-today__list--count-3,
.athens-today__list--count-4 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	grid-template-rows: repeat(2, minmax(0, 1fr));
	overflow: auto;
	scrollbar-width: thin;
}

.athens-today__item {
	display: flex;
	margin: 0;
	min-height: 0;
}

.athens-today__card {
	display: flex;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	min-height: 0;
	flex: 1 1 auto;
	flex-direction: column;
	padding: 0;
	border-radius: clamp(10px, 2.4cqmin, 14px);
	background: #f7f5f0;
	box-shadow: 0 1px 3px rgba(83, 58, 33, 0.05);
	color: inherit;
	overflow: hidden;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.athens-today__card-head {
	display: flex;
	flex: 0 0 auto;
	align-items: flex-start;
	justify-content: space-between;
	gap: clamp(6px, 2cqmin, 10px);
	padding: clamp(10px, 2.8cqmin, 14px) clamp(10px, 2.8cqmin, 14px) clamp(8px, 2cqmin, 10px);
	border-bottom: 1px solid rgba(156, 106, 44, 0.1);
	background: #faf8f4;
}

.athens-today__head-main {
	container-type: inline-size;
	container-name: athens-today-title;
	flex: 1 1 auto;
	min-width: 0;
}

.athens-today__card-body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	min-height: 0;
	padding: clamp(8px, 2.2cqmin, 12px) clamp(10px, 2.8cqmin, 14px) clamp(10px, 2.8cqmin, 14px);
	overflow-x: hidden;
	overflow-y: auto;
	scrollbar-width: thin;
	scrollbar-color: rgba(156, 106, 44, 0.28) transparent;
}

.athens-today__card:hover {
	border-color: rgba(156, 106, 44, 0.24);
	box-shadow: 0 2px 8px rgba(83, 58, 33, 0.07);
}

.athens-today__card--live {
	border-color: rgba(156, 106, 44, 0.22);
	background: #f9f7f2;
}

.athens-today__card--live .athens-today__card-head {
	background: #fbf9f4;
}

.athens-today__card--upcoming {
	border-color: rgba(156, 106, 44, 0.2);
}

.athens-today__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	margin-bottom: clamp(4px, 1.2cqh, 6px);
}

.athens-today__time {
	color: var(--athens-gold);
	font-family: "Noto Sans SC", "PingFang SC", ui-monospace, monospace;
	font-size: clamp(11px, 3.2cqmin, 13px);
	font-weight: 600;
	line-height: 1.2;
	white-space: nowrap;
}

.athens-today__badge {
	flex-shrink: 0;
	padding: 3px 8px;
	border-radius: 999px;
	background: rgba(156, 106, 44, 0.14);
	color: var(--athens-gold);
	font-family: "Noto Sans SC", "PingFang SC", sans-serif;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.3;
}

.athens-today__badge--soon {
	background: rgba(79, 54, 30, 0.08);
	color: rgba(79, 54, 30, 0.72);
}

.athens-today__badge--past {
	background: rgba(79, 54, 30, 0.06);
	color: rgba(79, 54, 30, 0.58);
}

.athens-today__name {
	display: block;
	max-width: 100%;
	margin: 0;
	color: var(--athens-ink);
	font-family: "Noto Serif SC", "Songti SC", serif;
	font-size: clamp(13px, 3.5cqmin, 16px);
	font-weight: 600;
	line-height: 1.35;
	word-break: break-word;
}

.athens-today__name--link {
	display: block;
	max-width: 100%;
	color: var(--athens-ink);
	text-decoration: none;
	white-space: normal;
}

.athens-today__name--link:hover {
	color: var(--athens-gold);
}

.athens-today__details {
	display: flex;
	flex: 0 0 auto;
	flex-direction: column;
	gap: clamp(8px, 2cqh, 10px);
	min-height: 0;
	min-width: 0;
}

.athens-today__meta,
.athens-today__panels {
	flex-shrink: 0;
}

.athens-today__meta {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.athens-today__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.athens-today__chips--corner {
	flex: 0 0 auto;
	flex-direction: column;
	flex-wrap: nowrap;
	align-items: flex-end;
	gap: 4px;
}

.athens-today__chip {
	display: inline-flex;
	align-items: center;
	padding: 4px 10px;
	border-radius: 999px;
	font-family: "Noto Sans SC", "PingFang SC", sans-serif;
	font-size: clamp(11px, 2.6cqmin, 13px);
	font-weight: 600;
	line-height: 1.35;
	white-space: nowrap;
}

.athens-today__chip--format,
.athens-today__chip--book {
	border: 1px solid rgba(156, 106, 44, 0.18);
	background: #faf8f4;
	color: rgba(79, 54, 30, 0.78);
}

.athens-today__context {
	margin: 0;
	color: rgba(79, 54, 30, 0.62);
	font-family: "Noto Sans SC", "PingFang SC", sans-serif;
	font-size: clamp(10px, 2.6cqmin, 11px);
	line-height: 1.4;
}

.athens-today__desc-panel {
	padding: clamp(8px, 2.2cqmin, 10px) clamp(9px, 2.4cqmin, 11px);
	border-radius: clamp(6px, 1.8cqmin, 8px);
	border: 1px solid rgba(156, 106, 44, 0.14);
	background: #faf8f4;
}

.athens-today__desc-panel--scroll {
	flex: 0 0 auto;
	min-height: 0;
	margin-top: 0;
	overflow: visible;
}

.athens-today__description {
	color: rgba(79, 54, 30, 0.84);
	font-family: "Noto Sans SC", "PingFang SC", sans-serif;
	font-size: clamp(12px, 2.9cqmin, 14px);
	line-height: 1.58;
}

.athens-today__description p {
	margin: 0 0 0.45em;
}

.athens-today__description p:last-child {
	margin-bottom: 0;
}

.athens-today__panels {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(4px, 1.2cqmin, 6px);
	align-items: start;
}

.athens-today__panel {
	padding: clamp(5px, 1.6cqmin, 7px) clamp(6px, 1.8cqmin, 8px);
	border-radius: clamp(5px, 1.6cqmin, 7px);
	border: 1px solid rgba(156, 106, 44, 0.12);
	background: #faf8f4;
	min-width: 0;
}

.athens-today__panel--time,
.athens-today__panel--zoom,
.athens-today__panel--venue {
	background: #faf8f4;
	border-color: rgba(156, 106, 44, 0.12);
}

.athens-today__panel--time {
	grid-column: 1 / -1;
	padding: clamp(4px, 1.4cqmin, 6px) clamp(6px, 1.8cqmin, 8px);
}

.athens-today__panel--time .athens-today__panel-head {
	gap: 4px;
	margin-bottom: 3px;
}

.athens-today__panel--time .athens-today__panel-title {
	font-size: clamp(9px, 2.4cqmin, 10px);
	color: rgba(79, 54, 30, 0.72);
}

/* 仿 lms-timezone-cell：矩形小卡，一行两个 */
.athens-today__tz-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(3px, 1.1cqmin, 5px);
	margin: 0;
	padding: 0;
	list-style: none;
}

.athens-today__tz-tile {
	display: flex;
	box-sizing: border-box;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2px;
	min-height: clamp(26px, 7cqh, 34px);
	padding: clamp(3px, 1.1cqmin, 5px) clamp(3px, 1cqmin, 5px);
	border-radius: clamp(4px, 1.4cqmin, 6px);
	border: 1px solid rgba(156, 106, 44, 0.12);
	background: #f7f5f0;
	text-align: center;
}

.athens-today__tz-label {
	color: rgba(79, 54, 30, 0.58);
	font-family: "Noto Sans SC", "PingFang SC", sans-serif;
	font-size: clamp(7px, 2cqmin, 9px);
	font-weight: 500;
	line-height: 1.25;
}

.athens-today__tz-time {
	color: var(--athens-ink);
	font-family: "Noto Sans SC", "PingFang SC", ui-monospace, monospace;
	font-size: clamp(8px, 2.2cqmin, 10px);
	font-weight: 600;
	font-variant-numeric: tabular-nums;
	line-height: 1.25;
	letter-spacing: 0.02em;
	word-break: break-word;
}

.athens-today__panel--zoom {
	grid-column: 1 / -1;
	padding: clamp(8px, 2.2cqmin, 10px) clamp(9px, 2.4cqmin, 11px);
}

.athens-today__panel--location {
	grid-column: 1 / -1;
	padding: clamp(8px, 2.2cqmin, 10px) clamp(9px, 2.4cqmin, 11px);
}

.athens-today__panels--locations {
	grid-template-columns: minmax(0, 1fr);
	flex: 0 0 auto;
	min-height: 0;
	overflow: visible;
}

.athens-today__panels--schedule-detail {
	grid-template-columns: minmax(0, 1fr);
	flex: 0 0 auto;
	min-height: 0;
	overflow: visible;
	gap: clamp(6px, 1.6cqh, 8px);
}

.athens-today__panel--location .athens-today__panel-head {
	gap: 7px;
	margin-bottom: clamp(6px, 1.6cqh, 8px);
}

.athens-today__panel--location .athens-today__panel-title {
	font-size: clamp(10px, 2.8cqmin, 12px);
}

.athens-today__panel--location .athens-today__credentials {
	margin-bottom: clamp(6px, 1.6cqh, 8px);
}

.athens-today__panel--location .athens-today__action--zoom {
	margin-bottom: clamp(8px, 2cqh, 10px);
}

.athens-today__addresses {
	display: flex;
	flex-direction: column;
	gap: clamp(6px, 1.6cqh, 8px);
	padding-top: clamp(6px, 1.6cqh, 8px);
	border-top: 1px solid rgba(156, 106, 44, 0.12);
}

.athens-today__addresses--solo {
	padding-top: 0;
	border-top: 0;
}

.athens-today__addr {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 10px;
	min-width: 0;
}

.athens-today__addr-main {
	flex: 1 1 auto;
	min-width: 0;
}

.athens-today__addr-name {
	margin: 0 0 2px;
	color: var(--athens-ink);
	font-family: "Noto Serif SC", "Songti SC", serif;
	font-size: clamp(11px, 2.8cqmin, 13px);
	font-weight: 600;
	line-height: 1.3;
}

.athens-today__addr-text {
	margin: 0;
	color: rgba(79, 54, 30, 0.72);
	font-family: "Noto Sans SC", "PingFang SC", sans-serif;
	font-size: clamp(10px, 2.5cqmin, 12px);
	line-height: 1.4;
	word-break: break-word;
}

.athens-today__action--nav {
	flex-shrink: 0;
	align-self: center;
	padding: 4px 8px;
	border: 1px solid rgba(156, 106, 44, 0.22);
	border-radius: 6px;
	background: #fff;
	color: var(--athens-gold);
	font-size: clamp(10px, 2.4cqmin, 11px);
	font-weight: 600;
	line-height: 1.3;
	text-decoration: none;
	white-space: nowrap;
}

.athens-today__action--nav:hover {
	border-color: rgba(156, 106, 44, 0.4);
	color: var(--athens-ink);
}

.athens-today__panel--zoom .athens-today__panel-head {
	gap: 7px;
	margin-bottom: clamp(6px, 1.6cqh, 8px);
}

.athens-today__panel--zoom .athens-today__panel-title {
	font-size: clamp(10px, 2.8cqmin, 12px);
}

.athens-today__credentials {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: clamp(6px, 1.6cqh, 8px);
}

.athens-today__credential {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 8px;
	border-radius: 6px;
	border: 1px solid rgba(156, 106, 44, 0.16);
	background: #fff;
	box-shadow: 0 1px 2px rgba(83, 58, 33, 0.04);
}

.athens-today__credential-label {
	color: rgba(79, 54, 30, 0.58);
	font-family: "Noto Sans SC", "PingFang SC", sans-serif;
	font-size: clamp(9px, 2.4cqmin, 10px);
	font-weight: 500;
}

.athens-today__credential-value {
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--athens-ink);
	font-family: ui-monospace, "SF Mono", Menlo, monospace;
	font-size: clamp(10px, 2.6cqmin, 11px);
	font-weight: 700;
	line-height: 1.2;
}

.athens-today__credential-value--muted {
	color: rgba(79, 54, 30, 0.55);
	font-family: "Noto Sans SC", "PingFang SC", sans-serif;
	font-weight: 500;
}

.athens-today__panel--zoom .athens-today__credentials {
	gap: 6px;
	margin-bottom: clamp(6px, 1.6cqh, 8px);
}

.athens-today__panel--zoom .athens-today__action {
	margin-top: 0;
	padding: 5px 10px;
	font-size: clamp(9px, 2.5cqmin, 11px);
}

.athens-today__panel--venue {
	padding: clamp(4px, 1.4cqmin, 6px) clamp(6px, 1.8cqmin, 8px);
}

.athens-today__venue-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	min-width: 0;
}

.athens-today__venue-name {
	margin: 0;
	flex: 1 1 auto;
	min-width: 0;
	overflow: hidden;
	color: var(--athens-ink);
	font-family: "Noto Serif SC", "Songti SC", serif;
	font-size: clamp(9px, 2.5cqmin, 11px);
	font-weight: 600;
	line-height: 1.25;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.athens-today__panel-head {
	display: flex;
	align-items: center;
	gap: 5px;
	margin-bottom: clamp(4px, 1.2cqh, 6px);
}

.athens-today__panel-title {
	margin: 0;
	color: rgba(79, 54, 30, 0.78);
	font-family: "Noto Serif SC", "Songti SC", serif;
	font-size: clamp(10px, 2.8cqmin, 12px);
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: 0.03em;
}

.athens-today__action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-top: 0;
	padding: 4px 9px;
	border-radius: 999px;
	border: 1px solid transparent;
	font-family: "Noto Sans SC", "PingFang SC", sans-serif;
	font-size: clamp(9px, 2.5cqmin, 11px);
	font-weight: 600;
	line-height: 1.3;
	text-decoration: none;
	transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.athens-today__action--zoom,
.athens-today__action--maps {
	border-color: rgba(156, 106, 44, 0.2);
	background: #f3f0ea;
	color: var(--athens-ink);
	padding: 3px 7px;
	font-size: clamp(8px, 2.2cqmin, 10px);
}

.athens-today__action--zoom:hover,
.athens-today__action--maps:hover {
	border-color: rgba(156, 106, 44, 0.3);
	background: #ebe6de;
	color: var(--athens-gold);
}

/* 1 门课：单卡占满可用区域 */
.athens-today__list--count-1 .athens-today__card-head {
	padding: clamp(14px, 4cqmin, 20px) clamp(14px, 4cqmin, 20px) clamp(10px, 2.8cqmin, 12px);
}

.athens-today__list--count-1 .athens-today__card-body {
	padding: clamp(10px, 2.8cqmin, 14px) clamp(14px, 4cqmin, 20px) clamp(14px, 4cqmin, 20px);
}

.athens-today__list--count-1 .athens-today__time {
	font-size: clamp(13px, 4cqmin, 16px);
}

.athens-today__list--count-1 .athens-today__name,
.athens-today__list--count-1 .athens-today__name--link {
	font-size: clamp(15px, 4cqmin, 20px);
	line-height: 1.32;
}

.athens-today__list--count-1 .athens-today__description {
	font-size: clamp(11px, 3.2cqmin, 14px);
}

.athens-today__list--count-1 .athens-today__panels {
	gap: clamp(4px, 1.2cqmin, 6px);
}

/* 2 门课：上下各半，面板单列更省高 */
.athens-today__list--count-2 .athens-today__panels {
	grid-template-columns: minmax(0, 1fr);
}

.athens-today__list--count-2 .athens-today__panel--time {
	grid-column: auto;
}

.athens-today__list--count-2 .athens-today__card-head {
	padding: clamp(10px, 3cqmin, 14px) clamp(10px, 3cqmin, 14px) clamp(8px, 2.2cqmin, 10px);
}

.athens-today__list--count-2 .athens-today__name,
.athens-today__list--count-2 .athens-today__name--link {
	font-size: clamp(13px, 3.2cqmin, 16px);
}

.athens-today__list--count-2 .athens-today__tz-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(3px, 1.2cqmin, 5px);
}

.athens-today__list--count-2 .athens-today__tz-tile {
	min-height: clamp(24px, 6.5cqh, 30px);
	padding: 2px 3px;
}

.athens-today__list--count-2 .athens-today__tz-label {
	font-size: clamp(7px, 1.9cqmin, 8px);
}

.athens-today__list--count-2 .athens-today__tz-time {
	font-size: clamp(7px, 2cqmin, 9px);
}

@container athens-today-cell (max-width: 180px) {
	.athens-today__tz-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 810px) {
	.athens-today__title {
		font-size: clamp(16px, 4.5cqmin, 20px);
	}

	.athens-today__time {
		font-size: clamp(12px, 3.4cqmin, 14px);
	}

	.athens-today__description,
	.athens-today__tz-time {
		font-size: clamp(13px, 3cqmin, 15px);
	}

	.athens-today__list--count-1 .athens-today__name,
	.athens-today__list--count-1 .athens-today__name--link {
		font-size: clamp(16px, 4.2cqmin, 22px);
	}

	.athens-today__list--count-2 .athens-today__name,
	.athens-today__list--count-2 .athens-today__name--link {
		font-size: clamp(14px, 3.4cqmin, 17px);
	}
}

/* 今日课程 — 手机 / 小格口紧凑 */
@media (max-width: 809.98px) {
	.athens-today--bare {
		padding: 6px;
		gap: 0;
	}

	.athens-today__list {
		gap: 6px;
	}

	.athens-today__list--count-2,
	.athens-today__list--count-3,
	.athens-today__list--count-4 {
		overflow-y: auto;
		scrollbar-width: thin;
		-webkit-overflow-scrolling: touch;
	}

	.athens-today__card {
		border-radius: 10px;
	}

	.athens-today__card-head {
		flex-wrap: wrap;
		align-items: flex-start;
		gap: 5px;
		padding: 8px 8px 6px;
	}

	.athens-today__list--count-1 .athens-today__card-head,
	.athens-today__list--count-2 .athens-today__card-head {
		padding: 8px 8px 6px;
	}

	.athens-today__head-main {
		flex: 1 1 auto;
		min-width: 0;
	}

	.athens-today__chips--corner {
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
		justify-content: flex-start;
		width: 100%;
		gap: 4px;
	}

	.athens-today__top {
		flex-wrap: wrap;
		gap: 4px 6px;
		margin-bottom: 4px;
	}

	/* 往昔：年月日独占一行，避免两列并排时被时间/角标挤成省略号 */
	.athens-today__date {
		flex: 1 1 100%;
		min-width: 0;
		max-width: 100%;
		white-space: normal;
		overflow: visible;
		text-overflow: unset;
		font-size: clamp(11px, 3cqmin, 12px);
		line-height: 1.3;
		word-break: keep-all;
	}

	.athens-today__time {
		font-size: clamp(10px, 2.8cqmin, 11px);
	}

	.athens-today__list--count-1 .athens-today__time {
		font-size: clamp(10px, 2.8cqmin, 11px);
	}

	.athens-today__badge {
		padding: 1px 6px;
		font-size: 9px;
	}

	.athens-today__name,
	.athens-today__name--link,
	.athens-today__list--count-1 .athens-today__name,
	.athens-today__list--count-1 .athens-today__name--link,
	.athens-today__list--count-2 .athens-today__name,
	.athens-today__list--count-2 .athens-today__name--link {
		line-height: 1.3;
	}

	.athens-today__card-body {
		display: flex;
		flex: 1 1 auto;
		flex-direction: column;
		min-height: 0;
		padding: 6px 8px 8px;
		overflow-x: hidden;
		overflow-y: auto;
		scrollbar-width: thin;
		-webkit-overflow-scrolling: touch;
	}

	.athens-today__list--count-1 .athens-today__card-body,
	.athens-today__list--count-2 .athens-today__card-body {
		padding: 6px 8px 8px;
	}

	.athens-today__details {
		display: flex;
		flex: 0 0 auto;
		flex-direction: column;
		gap: 6px;
		min-width: 0;
	}

	.athens-today__desc-panel--scroll {
		flex: 0 0 auto;
		min-height: clamp(72px, 26cqh, 108px);
		margin-top: 0;
		overflow: visible;
	}

	.athens-today__list--count-1 .athens-today__desc-panel--scroll {
		min-height: clamp(88px, 34cqh, 132px);
	}

	.athens-today__list--count-2 .athens-today__desc-panel--scroll {
		min-height: clamp(56px, 22cqh, 84px);
	}

	.athens-today__context {
		font-size: clamp(9px, 2.4cqmin, 10px);
		line-height: 1.35;
	}

	.athens-today__chip {
		padding: 1px 6px;
		font-size: 8px;
	}

	.athens-today__panels {
		grid-template-columns: minmax(0, 1fr);
		gap: 4px;
	}

	.athens-today__list--count-2 .athens-today__panels {
		grid-template-columns: minmax(0, 1fr);
	}

	.athens-today__panel--time,
	.athens-today__panel--zoom {
		grid-column: auto;
	}

	.athens-today__panel {
		padding: 4px 5px;
	}

	.athens-today__panel-title,
	.athens-today__panel--time .athens-today__panel-title,
	.athens-today__panel--zoom .athens-today__panel-title {
		font-size: 9px;
	}

	.athens-today__tz-grid {
		gap: 3px;
	}

	.athens-today__tz-tile {
		min-height: 22px;
		padding: 2px 3px;
	}

	.athens-today__list--count-2 .athens-today__tz-tile {
		min-height: 20px;
	}

	.athens-today__tz-label,
	.athens-today__list--count-2 .athens-today__tz-label {
		font-size: 7px;
	}

	.athens-today__tz-time,
	.athens-today__list--count-2 .athens-today__tz-time {
		font-size: clamp(7px, 2cqmin, 8px);
	}

	.athens-today__desc-panel {
		padding: 7px 8px;
	}

	.athens-today__description,
	.athens-today__list--count-1 .athens-today__description {
		font-size: clamp(10px, 2.7cqmin, 11px);
		line-height: 1.5;
	}

	.athens-today__credentials {
		gap: 4px;
		margin-bottom: 4px;
	}

	.athens-today__credential {
		gap: 4px;
		padding: 3px 6px;
	}

	.athens-today__credential-label {
		font-size: 8px;
	}

	.athens-today__credential-value {
		font-size: 9px;
	}

	.athens-today__action,
	.athens-today__panel--zoom .athens-today__action {
		padding: 3px 7px;
		font-size: 9px;
	}

	.athens-today__venue-name {
		font-size: clamp(9px, 2.5cqmin, 10px);
	}
}

@container athens-today-cell (max-width: 220px) {
	.athens-today--bare {
		padding: 5px;
	}

	.athens-today__card-head {
		padding: 6px 6px 5px;
	}

	.athens-today__card-body {
		padding: 5px 6px 6px;
	}

	.athens-today__time {
		font-size: clamp(9px, 2.6cqmin, 10px);
	}

	.athens-today__tz-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.athens-today__desc-panel--scroll {
		min-height: clamp(64px, 24cqh, 92px);
	}

	.athens-today__list--count-1 .athens-today__desc-panel--scroll {
		min-height: clamp(76px, 30cqh, 108px);
	}

	.athens-today__list--count-2 .athens-today__desc-panel--scroll {
		min-height: clamp(48px, 20cqh, 72px);
	}
}

/* ---------- 1×1 藏历今日卡片 ---------- */
.athens-cell--today-card {
	display: block;
	padding: 0;
	overflow: hidden;
	background: var(--athens-panel);
	container-type: size;
	container-name: athens-today-card-cell;
}

.athens-today-card {
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	min-height: 0;
	padding: 0;
}

.athens-today-card__surface {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	min-height: 0;
	border: 0;
	border-radius: 0;
	background: #f7f5f0;
	box-shadow: none;
	overflow: hidden;
}

.athens-today-card__fallback {
	display: grid;
	flex: 1 1 auto;
	place-items: center;
	padding: 12px;
	color: rgba(79, 54, 30, 0.62);
	font-family: "Noto Sans SC", "PingFang SC", sans-serif;
	font-size: clamp(15px, 1.35vw, 18px);
	line-height: 1.55;
	text-align: center;
}

.athens-today-card__plugin-root {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	width: 100%;
	min-height: 0;
	margin: 0;
	padding: 0;
}

.athens-today-card .hide-button,
.athens-today-card .expand-handle {
	display: none !important;
}

/* 顶栏：藏历月 + 日期 + 星期（一行，杜绝插件 absolute 叠字） */
.athens-today-card .card-content {
	display: grid !important;
	position: relative !important;
	flex: 1 1 auto;
	grid-template-columns: minmax(0, 1fr);
	grid-template-rows: auto auto minmax(0, 1fr) auto;
	grid-template-areas:
		"head"
		"labels"
		"events"
		"hair";
	gap: 0;
	width: 100%;
	height: 100%;
	min-height: 0;
	color: var(--athens-ink);
	font-family: "Noto Sans SC", "PingFang SC", sans-serif;
	text-decoration: none !important;
}

.athens-today-card .today-card-head {
	grid-area: head;
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 8px;
	min-width: 0;
	padding: clamp(10px, 2.8cqmin, 14px);
	border-bottom: 1px solid rgba(156, 106, 44, 0.1);
	background: #faf8f4;
}

.athens-today-card .today-card-tags,
.athens-today-card .today-card-date,
.athens-today-card .today-card-weekday,
.athens-today-card .today-card-labels,
.athens-today-card .today-card-events,
.athens-today-card .today-card-haircut-days,
.athens-today-card .today-card-head {
	position: static !important;
	top: auto !important;
	right: auto !important;
	left: auto !important;
	bottom: auto !important;
	inset: auto !important;
	z-index: auto !important;
	float: none !important;
	transform: none !important;
}

.athens-today-card .today-card-tags {
	display: flex;
	flex: 0 1 auto;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 4px;
	min-width: 0;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
}

.athens-today-card .today-card-tag.month-name {
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: var(--athens-gold);
	font-family: "Noto Serif SC", "Songti SC", serif;
	font-size: clamp(15px, 3.6cqmin, 18px);
	font-weight: 700;
	line-height: 1.2;
	white-space: nowrap;
}

.athens-today-card .today-card-tag:not(.month-name),
.athens-today-card .today-card-solar-term,
.athens-today-card .today-card-festival {
	display: inline-flex;
	align-items: center;
	padding: 4px 9px;
	border: 1px solid rgba(156, 106, 44, 0.18);
	border-radius: 999px;
	background: #fff;
	color: rgba(79, 54, 30, 0.78);
	font-size: clamp(11px, 2.4cqmin, 13px);
	font-weight: 600;
	line-height: 1.3;
}

.athens-today-card .today-card-date {
	flex: 1 1 auto;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--athens-ink);
	font-family: "Noto Serif SC", "Songti SC", serif;
	font-size: clamp(15px, 3.6cqmin, 18px);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.02em;
	white-space: nowrap;
	text-align: center;
}

.athens-today-card .today-card-weekday {
	flex: 0 0 auto;
	align-self: baseline;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: rgba(79, 54, 30, 0.68);
	font-size: clamp(12px, 2.8cqmin, 14px);
	font-weight: 600;
	line-height: 1.2;
	white-space: nowrap;
}

/* 农历 / 藏历双列 */
.athens-today-card .today-card-labels {
	grid-area: labels;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(8px, 1.8cqmin, 10px);
	padding: clamp(10px, 2.4cqmin, 12px) clamp(10px, 2.8cqmin, 14px);
	border-bottom: 1px solid rgba(156, 106, 44, 0.1);
}

.athens-today-card .today-card-label {
	display: flex;
	align-items: center;
	gap: 7px;
	min-width: 0;
	margin: 0;
	padding: clamp(7px, 1.8cqmin, 10px) clamp(8px, 2cqmin, 12px);
	border-radius: 10px;
	background: #fff;
	font-size: clamp(13px, 3cqmin, 15px);
	line-height: 1.35;
}

.athens-today-card .today-card-label-tag {
	display: inline-flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: 1.45em;
	height: 1.45em;
	border-radius: 50%;
	background: rgba(79, 54, 30, 0.1);
	color: rgba(79, 54, 30, 0.74);
	font-size: 0.78em;
	font-weight: 700;
	line-height: 1;
}

.athens-today-card .today-card-label-tag.tibetan {
	background: rgba(163, 112, 46, 0.14);
	color: var(--athens-gold);
}

.athens-today-card .today-card-label-text {
	overflow: hidden;
	color: rgba(79, 54, 30, 0.9);
	font-weight: 600;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* 事件区：占满中间空间，内容仍从顶部排列 */
.athens-today-card .today-card-events {
	grid-area: events;
	display: flex;
	flex-direction: column;
	align-content: flex-start;
	justify-content: flex-start;
	align-self: stretch;
	gap: clamp(6px, 1.6cqmin, 8px);
	min-height: 0;
	margin: 0;
	padding: clamp(10px, 2.4cqmin, 14px) clamp(10px, 2.8cqmin, 14px);
	overflow-x: hidden;
	overflow-y: auto;
	scrollbar-width: thin;
	-webkit-overflow-scrolling: touch;
}

.athens-today-card .today-card-event-item {
	display: inline-flex;
	align-self: flex-start;
	max-width: 100%;
	margin: 0;
	padding: 7px 14px;
	border: 1px solid rgba(156, 106, 44, 0.18);
	border-radius: 999px;
	background: rgba(255, 252, 247, 0.96);
	color: rgba(79, 54, 30, 0.9);
	font-size: clamp(14px, 3.2cqmin, 17px);
	font-weight: 600;
	line-height: 1.35;
}

.athens-today-card .today-card-event-item--muted {
	border-color: transparent;
	background: transparent;
	padding-left: 0;
	padding-right: 0;
	border-radius: 0;
	color: rgba(79, 54, 30, 0.5);
	font-weight: 500;
}

.athens-today-card .today-card-haircut-item {
	margin: 0;
	padding: 0 2px;
	color: rgba(79, 54, 30, 0.66);
	font-size: clamp(13px, 2.8cqmin, 14px);
	line-height: 1.4;
}

/* 底部理发吉日：清晰列表，不再挤成一段微字 */
.athens-today-card .today-card-haircut-days {
	grid-area: hair;
	display: flex;
	flex-direction: column;
	gap: clamp(8px, 1.8cqmin, 10px);
	flex-shrink: 0;
	align-self: stretch;
	min-width: 0;
	padding: clamp(10px, 2.2cqmin, 14px) clamp(10px, 2.8cqmin, 14px) clamp(12px, 2.4cqmin, 14px);
	border-top: 1px solid rgba(156, 106, 44, 0.1);
	background: #f5f1ea;
	color: rgba(79, 54, 30, 0.82);
}

.athens-today-card .today-card-haircut-days-title {
	margin: 0;
	color: rgba(79, 54, 30, 0.66);
	font-size: clamp(13px, 2.8cqmin, 14px);
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.3;
}

.athens-today-card .today-card-haircut-days-empty {
	margin: 0;
	color: rgba(79, 54, 30, 0.52);
	font-size: clamp(13px, 2.8cqmin, 14px);
	line-height: 1.4;
}

.athens-today-card .today-card-haircut-days-list {
	display: flex;
	flex-direction: column;
	gap: clamp(6px, 1.5cqmin, 8px);
	margin: 0;
	padding: 0;
	list-style: none;
	min-height: 0;
}

.athens-today-card .haircut-day-item {
	display: grid;
	grid-template-columns: minmax(5em, auto) minmax(0, 1fr);
	gap: 6px 10px;
	align-items: baseline;
	margin: 0;
	min-width: 0;
}

.athens-today-card .haircut-day-name {
	color: var(--athens-gold);
	font-size: clamp(14px, 3cqmin, 16px);
	font-weight: 700;
	line-height: 1.4;
	white-space: nowrap;
}

.athens-today-card .haircut-day-desc {
	min-width: 0;
	color: rgba(79, 54, 30, 0.8);
	font-size: clamp(14px, 3cqmin, 16px);
	font-weight: 500;
	line-height: 1.4;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* 格口较宽：事件 | 理发 并排（仅桌面视口，避免手机大屏误触发） */
@media (min-width: 810px) {
@container athens-today-card-cell (min-width: 300px) and (min-height: 300px) {
	.athens-today-card .card-content {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
		grid-template-rows: auto auto minmax(0, 1fr);
		grid-template-areas:
			"head head"
			"labels labels"
			"events hair";
	}

	.athens-today-card .today-card-events {
		align-self: stretch;
		justify-content: center;
		border-right: 1px solid rgba(156, 106, 44, 0.08);
		padding-right: clamp(10px, 2.2cqmin, 14px);
	}

	.athens-today-card .today-card-haircut-days {
		align-self: stretch;
		justify-content: center;
		min-height: 0;
		border-top: 0;
		background: transparent;
		padding-top: clamp(10px, 2.4cqmin, 14px);
	}

	.athens-today-card .haircut-day-item {
		grid-template-columns: minmax(0, 1fr);
		gap: 3px;
		padding: 8px 0;
		border-bottom: 1px solid rgba(156, 106, 44, 0.08);
	}

	.athens-today-card .haircut-day-item:last-child {
		border-bottom: 0;
		padding-bottom: 0;
	}

	.athens-today-card .haircut-day-name {
		white-space: normal;
		font-size: clamp(15px, 3.2cqmin, 17px);
	}

	.athens-today-card .haircut-day-desc {
		white-space: normal;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
		text-overflow: unset;
		font-size: clamp(15px, 3.2cqmin, 17px);
	}

	.athens-today-card .today-card-haircut-days-title {
		font-size: clamp(13px, 2.8cqmin, 15px);
	}

	.athens-today-card .today-card-event-item {
		font-size: clamp(15px, 3.4cqmin, 18px);
		padding: 8px 16px;
	}
}
}

/* 格口较矮：整体可滚 */
@container athens-today-card-cell (max-height: 260px) {
	.athens-today-card__surface {
		overflow-y: auto;
		scrollbar-width: thin;
		-webkit-overflow-scrolling: touch;
	}

	.athens-today-card .card-content {
		height: auto;
		min-height: 100%;
	}

	.athens-today-card .today-card-events {
		overflow: visible;
	}

	.athens-today-card .today-card-haircut-days-list {
		max-height: none;
		overflow: visible;
	}
}

@media (max-width: 809.98px) {
	.athens-today-card {
		padding: 0;
	}

	.athens-today-card__surface {
		border-radius: 0;
		overflow: hidden;
	}

	.athens-today-card .card-content {
		display: grid !important;
		grid-template-columns: minmax(0, 1fr);
		grid-template-rows: auto auto minmax(0, 1fr) auto;
		grid-template-areas:
			"head"
			"labels"
			"events"
			"hair";
		height: 100%;
		min-height: 0;
	}

	.athens-today-card .today-card-head {
		grid-area: head;
		gap: 6px;
		padding: 8px 10px;
	}

	.athens-today-card .today-card-tags {
		flex: 0 1 auto;
		padding: 0;
		border: 0;
		background: transparent;
	}

	.athens-today-card .today-card-date {
		flex: 1 1 auto;
		padding: 0;
		border: 0;
		background: transparent;
		font-size: 13px !important;
		line-height: 1.2 !important;
		text-align: center;
	}

	.athens-today-card .today-card-weekday {
		flex: 0 0 auto;
		padding: 0;
		border: 0;
		background: transparent;
		font-size: 11px !important;
		line-height: 1.2 !important;
	}

	.athens-today-card .today-card-tag.month-name {
		font-size: 13px !important;
		line-height: 1.2 !important;
	}

	.athens-today-card .today-card-solar-term,
	.athens-today-card .today-card-festival,
	.athens-today-card .today-card-tag:not(.month-name) {
		display: none;
	}

	.athens-today-card .today-card-labels {
		grid-area: labels !important;
		display: grid !important;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		flex-direction: unset;
		gap: 0;
		padding: 4px 10px 6px;
		border-bottom: 1px solid rgba(156, 106, 44, 0.1);
		background: #faf8f4;
	}

	.athens-today-card .today-card-label {
		gap: 4px;
		min-width: 0;
		padding: 0 4px;
		border-radius: 0;
		background: transparent;
		font-size: 10px !important;
		line-height: 1.25;
	}

	.athens-today-card .today-card-label + .today-card-label {
		border-left: 1px solid rgba(156, 106, 44, 0.14);
	}

	.athens-today-card .today-card-label-tag {
		width: 1.1em;
		height: 1.1em;
		font-size: 8px;
	}

	.athens-today-card .today-card-label-text {
		font-size: 10px !important;
	}

	.athens-today-card .today-card-events {
		grid-area: events !important;
		align-self: start;
		gap: 4px;
		min-height: 0;
		padding: 8px 10px;
		overflow: hidden;
		border: 0;
	}

	.athens-today-card .today-card-event-item {
		padding: 4px 8px;
		font-size: 12px;
		line-height: 1.3;
	}

	.athens-today-card .today-card-haircut-item {
		display: none;
	}

	.athens-today-card .today-card-haircut-days {
		grid-area: hair !important;
		align-self: stretch;
		gap: 4px;
		padding: 6px 10px 8px;
		border-top: 1px solid rgba(156, 106, 44, 0.1);
		background: #faf8f4;
	}

	.athens-today-card .today-card-haircut-days-title {
		font-size: 10px;
		letter-spacing: 0.04em;
		margin-bottom: 2px;
	}

	.athens-today-card .today-card-haircut-days-list {
		gap: 4px;
	}

	.athens-today-card .haircut-day-item {
		grid-template-columns: auto minmax(0, 1fr);
		gap: 1px 8px;
		align-items: baseline;
		padding: 1px 0;
	}

	.athens-today-card .haircut-day-name {
		font-size: 11px;
		line-height: 1.35;
	}

	.athens-today-card .haircut-day-desc {
		font-size: 11px;
		line-height: 1.35;
		justify-self: start;
		text-align: left;
	}
}

/* 窄格口：与手机同样压缩顶栏 */
@container athens-today-card-cell (max-width: 240px) {
	.athens-today-card__surface {
		overflow: hidden;
	}

	.athens-today-card .card-content {
		grid-template-columns: minmax(0, 1fr);
		grid-template-rows: auto auto minmax(0, 1fr) auto;
		grid-template-areas:
			"head"
			"labels"
			"events"
			"hair";
		height: 100%;
		min-height: 0;
	}

	.athens-today-card .today-card-head {
		gap: 4px;
		padding: 6px 8px;
	}

	.athens-today-card .today-card-date {
		font-size: 12px !important;
	}

	.athens-today-card .today-card-weekday {
		font-size: 10px !important;
	}

	.athens-today-card .today-card-tag.month-name {
		font-size: 12px !important;
	}

	.athens-today-card .today-card-labels {
		grid-area: labels !important;
		display: grid !important;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0;
		padding: 2px 8px 4px;
		border-bottom: 1px solid rgba(156, 106, 44, 0.1);
		background: #faf8f4;
	}

	.athens-today-card .today-card-label {
		padding: 0 4px;
		background: transparent;
		font-size: 9px !important;
	}

	.athens-today-card .today-card-events {
		grid-area: events !important;
		align-self: start;
		min-height: 0;
		overflow: hidden;
	}

	.athens-today-card .today-card-haircut-days {
		grid-area: hair !important;
		align-self: stretch;
	}

	.athens-today-card .today-card-event-item {
		display: -webkit-box;
		overflow: hidden;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
		padding: 0;
		border: 0;
		border-radius: 0;
		background: transparent;
	}

	.athens-today-card .today-card-haircut-days-list {
		max-height: none;
		overflow: visible;
	}
}

@media (max-width: 809.98px) {
	@container athens-today-card-cell (max-height: 260px) {
		.athens-today-card__surface {
			overflow-x: hidden;
			overflow-y: auto;
		}

		.athens-today-card .today-card-events {
			overflow: hidden;
		}

		.athens-today-card .today-card-haircut-days-list {
			overflow: visible;
			max-height: none;
		}
	}
}

/* ---------- 音乐圆盘（Wild Week Athens：唱片 + 中心播放钮 + 静音） ---------- */
.athens-cell--music-disc {
	display: block;
	padding: 0;
	overflow: hidden;
	background: var(--athens-bg);
	container-type: size;
	container-name: athens-music-disc-cell;
}

.athens-music-disc {
	/*
	 * 内部图像相对「格子满圆」的尺寸（只缩图；外层圆形遮罩始终满格）。
	 * 1 = 铺满；0.92～0.96 = 略收，边缘不被裁。
	 */
	--disc-art-scale: 0.94;
	position: relative;
	display: flex;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	user-select: none;
	background: var(--athens-panel);
}

/* 唯一圆形遮罩：取格子短边做正圆，避免非 1:1 格口把盘面挤扁 */
.athens-music-disc__platter {
	position: relative;
	flex: 0 0 auto;
	width: min(100%, 100cqmin);
	height: min(100%, 100cqmin);
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	overflow: hidden;
	cursor: grab;
	touch-action: none;
	background: var(--athens-panel);
	/* Keep mask still; spin the art inside (smoother on iOS Safari). */
	transform: translateZ(0);
}

.athens-music-disc.is-dragging .athens-music-disc__platter {
	cursor: grabbing;
}

.athens-music-disc__art {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: calc(var(--disc-art-scale) * 100%);
	height: calc(var(--disc-art-scale) * 100%);
	aspect-ratio: 1 / 1;
	object-fit: contain;
	pointer-events: none;
	-webkit-user-drag: none;
	transform: translate(-50%, -50%);
	transform-origin: center;
	backface-visibility: hidden;
}

.athens-music-disc__art.is-spinning {
	animation-name: athens-music-disc-spin;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	/* duration + delay set inline so play/pause keep the same angle */
}

@keyframes athens-music-disc-spin {
	from {
		transform: translate(-50%, -50%) rotate(0deg);
	}
	to {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}

@media (prefers-reduced-motion: reduce) {
	.athens-music-disc__art.is-spinning {
		animation: none !important;
	}
}

/* Center play — clamp 30→60，区块正中；子元素按 60 基准等比 */
.athens-music-disc__play {
	--play-size: clamp(10px, 7cqmin, 60px);
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 12;
	width: var(--play-size);
	height: var(--play-size);
	padding: 0;
	border: 0;
	border-radius: 0;
	overflow: clip;
	background: transparent !important;
	background-color: transparent !important;
	box-shadow: none !important;
	outline: none;
	cursor: pointer;
	transform: translate(-50%, -50%);
	text-decoration: none;
	appearance: none;
	-webkit-appearance: none;
}

.athens-music-disc__play:hover,
.athens-music-disc__play:focus,
.athens-music-disc__play:focus-visible,
.athens-music-disc__play:active {
	background: transparent !important;
	background-color: transparent !important;
	box-shadow: none !important;
	outline: none;
	color: inherit;
}

/* .framer-v0d4vg — blue disk; Framer loops rotate:360 on THIS node (hover) */
.athens-music-disc__play-disk {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1;
	border-radius: 999px;
	background: #5b1916;
	overflow: clip;
	will-change: transform;
	transform: none;
	transform-origin: 50% 50%;
}

.athens-music-disc__play:hover .athens-music-disc__play-disk,
.athens-music-disc__play:focus-visible .athens-music-disc__play-disk {
	animation: athens-music-disc-orbit 4s linear infinite;
}

/*
 * Pattern enter/exit as center scale (Framer motion layout looks like this;
 * left:-15 ↔ left:50% CSS morph reads as side-shift, so we use scale).
 * Endpoints: 91px → 55px, opacity 0 → 1, ease 0.2s [.12,.23,.5,1]
 */
.athens-music-disc__play-pattern {
	position: absolute;
	top: 50%;
	left: 50%;
	width: calc(var(--play-size) * 55 / 60);
	height: calc(var(--play-size) * 55 / 60);
	aspect-ratio: 1 / 1;
	opacity: 0;
	background-color: #e8e8e8;
	-webkit-mask: url("../media/music-disc/button-pattern.svg") center / contain no-repeat;
	mask: url("../media/music-disc/button-pattern.svg") center / contain no-repeat;
	transform: translate(-50%, -50%) scale(calc(91 / 55));
	transform-origin: center;
	pointer-events: none;
	will-change: transform, opacity;
	transition:
		opacity 0.2s cubic-bezier(0.12, 0.23, 0.5, 1),
		transform 0.2s cubic-bezier(0.12, 0.23, 0.5, 1);
}

.athens-music-disc__play:hover .athens-music-disc__play-pattern,
.athens-music-disc__play:focus-visible .athens-music-disc__play-pattern {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
}

/* pressed: disk → left:50% + translateX(-50%); pattern opacity .54 */
.athens-music-disc__play:active .athens-music-disc__play-disk {
	top: auto;
	bottom: 0;
	left: 50%;
	height: unset;
	width: 100%;
	aspect-ratio: 1 / 1;
	transform: translateX(-50%);
	animation: none;
}

.athens-music-disc__play:active .athens-music-disc__play-pattern {
	opacity: 0.54;
	transform: translate(-50%, -50%) scale(1);
}

/* .framer-4tykg9 triangle — sibling of disk, does NOT rotate */
.athens-music-disc__play-icon {
	position: absolute;
	top: 51%;
	left: 51%;
	z-index: 1;
	width: calc(var(--play-size) * 44 / 60);
	height: 72%;
	aspect-ratio: 1 / 1;
	display: none;
	background-color: #e8e8e8;
	transform: translate(-50%, -50%);
	pointer-events: none;
}

.athens-music-disc__play-icon--play {
	-webkit-mask: url("../media/music-disc/play-triangle.svg") center / contain no-repeat;
	mask: url("../media/music-disc/play-triangle.svg") center / contain no-repeat;
}

.athens-music-disc__play-icon--pause {
	-webkit-mask: url("../media/music-disc/pause-bars.svg") center / 70% no-repeat;
	mask: url("../media/music-disc/pause-bars.svg") center / 70% no-repeat;
}

.athens-music-disc:not(.is-playing) .athens-music-disc__play-icon--play,
.athens-music-disc.is-playing .athens-music-disc__play-icon--pause {
	display: block;
}

/* Framer __framer__loop on blue disk: rotate 360, 4s, ease [0,0,1,1] */
@keyframes athens-music-disc-orbit {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

/* Track title — bottom-left, 妙音供养 current song */
.athens-music-disc__track {
	position: absolute;
	left: clamp(8px, 3.5cqmin, 14px);
	bottom: clamp(8px, 3.5cqmin, 14px);
	z-index: 11;
	max-width: min(62%, 14ch);
	margin: 0;
	overflow: hidden;
	color: #5b1916;
	font-family: "Noto Sans SC", "PingFang SC", sans-serif;
	font-size: clamp(9px, 3cqmin, 14px);
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: 0.02em;
	text-overflow: ellipsis;
	white-space: nowrap;
	pointer-events: none;
}

/* Prev / next — bottom-right */
.athens-music-disc__skip {
	position: absolute;
	right: clamp(2px, 1.2cqmin, 8px);
	bottom: clamp(2px, 1.2cqmin, 8px);
	z-index: 11;
	display: flex;
	align-items: center;
	gap: 2px;
}

.athens-music-disc__skip-btn {
	display: inline-flex;
	box-sizing: border-box;
	width: clamp(26px, 10cqmin, 44px);
	height: clamp(26px, 10cqmin, 44px);
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	background-color: transparent !important;
	background-image: none !important;
	box-shadow: none !important;
	outline: none;
	color: #5b1916 !important;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	transition: opacity 0.2s ease;
	clip-path: none !important;
	filter: none !important;
	transform: none !important;
	text-decoration: none !important;
}

.athens-music-disc__skip-btn:hover,
.athens-music-disc__skip-btn:focus,
.athens-music-disc__skip-btn:focus-visible,
.athens-music-disc__skip-btn:active {
	border: 0 !important;
	background: transparent !important;
	background-color: transparent !important;
	background-image: none !important;
	box-shadow: none !important;
	outline: none;
	color: #330f0d !important;
	opacity: 0.82;
	clip-path: none !important;
	filter: none !important;
	transform: none !important;
}

.athens-music-disc__skip-btn svg {
	display: block;
	width: 18px;
	height: 18px;
}

@media (max-width: 809.98px) {
	.athens-music-disc__skip {
		right: 0;
		bottom: 0;
	}
}

/* ---------- 法会活动格：上师微博轮播（保留样式，当前未使用） ---------- */
.athens-cell--disc {
	display: block;
	padding: 0;
	overflow: hidden;
	background: var(--athens-panel);
	container-type: size;
	container-name: athens-disc-cell;
}

.athens-disc-weibo {
	display: flex;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	flex-direction: column;
	min-height: 0;
	padding: clamp(8px, 2.4cqmin, 12px);
	gap: clamp(6px, 1.8cqmin, 8px);
}

.athens-disc-weibo__bar {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	min-width: 0;
}

.athens-disc-weibo__identity {
	display: flex;
	align-items: center;
	gap: 6px;
	min-width: 0;
}

.athens-disc-weibo__meta {
	display: flex;
	align-items: center;
	min-width: 0;
	line-height: 1;
}

.athens-disc-weibo__avatar {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: clamp(24px, 7cqmin, 32px);
	height: clamp(24px, 7cqmin, 32px);
	overflow: hidden;
	border-radius: 50%;
	border: 1px solid rgba(156, 106, 44, 0.18);
	background: #faf8f4;
}

.athens-disc-weibo__avatar img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.athens-disc-weibo__avatar-fallback {
	color: var(--athens-gold);
	font-family: "Noto Serif SC", "Songti SC", serif;
	font-size: clamp(11px, 3.2cqmin, 14px);
	font-weight: 700;
}

.athens-disc-weibo__name {
	display: inline-flex;
	align-items: center;
	gap: 3px;
	color: var(--athens-ink);
	font-family: "Noto Serif SC", "Songti SC", serif;
	font-size: clamp(11px, 3.2cqmin, 14px);
	font-weight: 600;
	line-height: 1;
	white-space: nowrap;
}

.athens-disc-weibo__verified {
	width: clamp(12px, 3.4cqmin, 14px);
	height: clamp(12px, 3.4cqmin, 14px);
	color: var(--athens-gold);
}

.athens-disc-weibo__random {
	display: inline-flex;
	flex-shrink: 0;
	align-items: center;
	gap: 4px;
	padding: 4px 8px;
	border: 1px solid rgba(156, 106, 44, 0.16);
	border-radius: 999px;
	background: #faf8f4;
	color: rgba(79, 54, 30, 0.72);
	font-family: "Noto Sans SC", "PingFang SC", sans-serif;
	font-size: clamp(10px, 2.8cqmin, 11px);
	line-height: 1;
	cursor: pointer;
	transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}

.athens-disc-weibo__random:hover {
	border-color: rgba(156, 106, 44, 0.3);
	background: #f3f0ea;
	color: var(--athens-gold);
}

.athens-disc-weibo__random-icon {
	width: clamp(12px, 3.4cqmin, 14px);
	height: clamp(12px, 3.4cqmin, 14px);
}

.athens-disc-weibo__random.is-loading,
.athens-weibo-banner__random.is-loading {
	pointer-events: none;
	opacity: 0.88;
}

.athens-disc-weibo__random.is-loading .athens-disc-weibo__random-icon,
.athens-weibo-banner__random.is-loading .athens-weibo-banner__random-icon {
	animation: athensWeiboRandomSpin 0.75s linear infinite;
}

.athens-disc-weibo__random.is-loading:hover,
.athens-weibo-banner__random.is-loading:hover {
	color: rgba(79, 54, 30, 0.72);
	border-color: rgba(156, 106, 44, 0.16);
	background: #faf8f4;
}

.athens-disc-weibo__random:disabled,
.athens-weibo-banner__random:disabled {
	cursor: wait;
}

.athens-disc-weibo__empty {
	display: flex;
	flex: 1 1 auto;
	align-items: center;
	justify-content: center;
	margin: 0;
	color: rgba(79, 54, 30, 0.68);
	font-size: clamp(15px, 1.3vw, 17px);
	line-height: 1.5;
	text-align: center;
}

.athens-disc-weibo__stage {
	display: grid;
	flex: 1 1 auto;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: stretch;
	gap: 4px;
	min-height: 0;
}

.athens-disc-weibo__viewport-shell {
	position: relative;
	flex: 1 1 auto;
	min-width: 0;
	min-height: 0;
	height: 100%;
}

.athens-disc-weibo__viewport {
	overflow-x: auto;
	overflow-y: hidden;
	height: 100%;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	-ms-overflow-style: none;
	min-width: 0;
	border-radius: clamp(8px, 2.2cqmin, 10px);
}

.athens-disc-weibo__viewport::-webkit-scrollbar {
	display: none;
}

.athens-disc-weibo__track {
	display: flex;
	height: 100%;
	min-height: 0;
}

.athens-disc-weibo__slide {
	flex: 0 0 100%;
	width: 100%;
	height: 100%;
	min-height: 0;
	scroll-snap-align: start;
	scroll-snap-stop: always;
}

.athens-disc-weibo__card {
	display: flex;
	position: relative;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	flex-direction: column;
	min-height: 0;
	overflow: hidden;
	border: 1px solid rgba(156, 106, 44, 0.12);
	border-radius: clamp(3px, 2.2cqmin, 3px);
	background: #f7f5f0;
	color: inherit;
}

.athens-disc-weibo__media-stage {
	display: flex;
	position: relative;
	flex: 1 1 auto;
	flex-direction: column;
	min-height: 0;
	overflow: hidden;
}

.athens-disc-weibo__media {
	position: relative;
	flex: 1 1 auto;
	width: 100%;
	min-height: 0;
	overflow: hidden;
	border: 0;
	padding: 0;
	background: #ebe6de;
	text-align: left;
}

.athens-disc-weibo__media--expandable {
	cursor: zoom-in;
}

.athens-disc-weibo__media img,
.athens-disc-weibo__video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.athens-disc-weibo__media--text {
	background:
		linear-gradient(145deg, rgba(163, 112, 46, 0.08) 0%, rgba(247, 245, 240, 0.95) 100%),
		repeating-linear-gradient(
			-12deg,
			transparent,
			transparent 10px,
			rgba(156, 106, 44, 0.04) 10px,
			rgba(156, 106, 44, 0.04) 11px
		);
}

.athens-disc-weibo__media--video::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 45%, rgba(47, 34, 22, 0.42) 100%);
	pointer-events: none;
}

.athens-disc-weibo__video-badge,
.athens-disc-weibo__pic-count {
	position: absolute;
	top: 6px;
	right: 6px;
	padding: 2px 6px;
	border-radius: 999px;
	background: rgba(47, 34, 22, 0.55);
	color: #fff;
	font-size: 9px;
	font-weight: 600;
	line-height: 1.3;
}

.athens-disc-weibo__content {
	display: flex;
	flex: 0 0 auto;
	flex-direction: column;
	justify-content: flex-start;
	min-height: 0;
	padding: clamp(7px, 2cqmin, 10px) clamp(9px, 2.4cqmin, 11px);
	border-top: 1px solid rgba(156, 106, 44, 0.1);
	background: #faf8f4;
}

.athens-disc-weibo__text,
.athens-disc-weibo__text-toggle {
	display: -webkit-box;
	overflow: hidden;
	flex: 0 0 auto;
	width: 100%;
	min-width: 0;
	max-height: calc(1.45 * 3 * 1em);
	margin: 0;
	padding: 0;
	border: 0;
	background: none;
	color: rgba(79, 54, 30, 0.86);
	font-family: "Noto Serif SC", "Songti SC", serif;
	font-size: clamp(11px, 3cqmin, 13px);
	line-height: 1.45;
	text-align: left;
	cursor: pointer;
	word-break: break-word;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	line-clamp: 3;
}

.athens-disc-weibo__time {
	position: absolute;
	top: clamp(5px, 1.4cqmin, 7px);
	left: clamp(5px, 1.4cqmin, 7px);
	z-index: 2;
	max-width: calc(100% - 56px);
	padding: 2px 6px;
	border-radius: 999px;
	background: rgba(47, 34, 22, 0.55);
	color: #fff;
	font-family: "Noto Sans SC", "PingFang SC", sans-serif;
	font-size: clamp(9px, 2.5cqmin, 11px);
	font-weight: 600;
	line-height: 1.3;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	pointer-events: none;
}

.athens-disc-weibo__like {
	position: absolute;
	right: clamp(5px, 1.4cqmin, 7px);
	bottom: clamp(5px, 1.4cqmin, 7px);
	z-index: 3;
	display: inline-flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	gap: 4px;
	min-width: clamp(56px, 16cqmin, 70px);
	height: clamp(22px, 6.2cqmin, 28px);
	padding: 0 clamp(8px, 2.2cqmin, 10px);
	border: 1px solid rgba(156, 106, 44, 0.24);
	border-radius: 999px;
	background: rgba(250, 248, 244, 0.94);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	color: rgba(79, 54, 30, 0.82);
	font-family: "Noto Sans SC", "PingFang SC", sans-serif;
	font-size: clamp(10px, 2.8cqmin, 12px);
	font-weight: 600;
	line-height: 1;
	box-shadow: 0 1px 4px rgba(83, 58, 33, 0.12);
	cursor: pointer;
	transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.athens-disc-weibo__like:hover {
	border-color: rgba(156, 106, 44, 0.38);
	background: rgba(243, 240, 234, 0.96);
	color: var(--athens-gold);
	box-shadow: 0 2px 6px rgba(83, 58, 33, 0.14);
}

.athens-disc-weibo__like.liking {
	opacity: 0.7;
	cursor: wait;
}

.athens-disc-weibo__like.liked {
	animation: athensWeiboLikePulse 0.6s ease-out;
}

@keyframes athensWeiboLikePulse {
	0% { transform: scale(1); }
	50% { transform: scale(1.08); }
	100% { transform: scale(1); }
}

@keyframes athensWeiboRandomSpin {
	to { transform: rotate(360deg); }
}

@keyframes athensWeiboRandomLoader {
	from { transform: translate(-50%, -50%) rotate(0deg); }
	to { transform: translate(-50%, -50%) rotate(360deg); }
}

.athens-disc-weibo__like-icon {
	font-size: clamp(12px, 3.4cqmin, 14px);
	line-height: 1;
}

.athens-disc-weibo__like-count {
	font-weight: 600;
	line-height: 1;
}

.athens-disc-weibo__expand {
	position: absolute;
	inset: 0;
	z-index: 4;
	display: flex;
	flex-direction: column;
	min-height: 0;
	padding: clamp(8px, 2.2cqmin, 10px);
	border-radius: inherit;
	background: rgba(247, 245, 240, 0.94);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}

.athens-disc-weibo__expand[hidden] {
	display: none !important;
}

.athens-disc-weibo__expand-scroll {
	flex: 1 1 auto;
	overflow-y: auto;
	min-height: 0;
	padding-right: 2px;
	scrollbar-width: thin;
}

.athens-disc-weibo__expand-text {
	margin: 0;
	color: rgba(47, 34, 22, 0.92);
	font-family: "Noto Serif SC", "Songti SC", serif;
	font-size: clamp(11px, 3.2cqmin, 14px);
	line-height: 1.55;
	white-space: pre-wrap;
	word-break: break-word;
}

.athens-disc-weibo__expand-close {
	flex: 0 0 auto;
	align-self: flex-end;
	margin-top: 6px;
	padding: 4px 10px;
	border: 1px solid rgba(156, 106, 44, 0.2);
	border-radius: 999px;
	background: #faf8f4;
	color: rgba(79, 54, 30, 0.72);
	font-family: "Noto Sans SC", "PingFang SC", sans-serif;
	font-size: clamp(10px, 2.8cqmin, 11px);
	cursor: pointer;
}

.athens-disc-weibo__expand-close:hover {
	border-color: rgba(156, 106, 44, 0.34);
	color: var(--athens-gold);
}

.athens-disc-weibo__card.is-expanded .athens-disc-weibo__media {
	filter: blur(2px) brightness(0.92);
}

.athens-disc-weibo__expand--media {
	padding: 0;
	gap: 0;
	background: rgba(30, 22, 14, 0.92);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.athens-disc-weibo__expand--media .athens-disc-weibo__expand-scroll {
	position: absolute;
	inset: 0;
	display: flex;
	flex: none;
	flex-direction: column;
	min-height: 0;
	overflow: auto;
	-ms-overflow-style: none;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}

.athens-disc-weibo__expand--media .athens-disc-weibo__expand-scroll::-webkit-scrollbar {
	display: none;
	width: 0;
	height: 0;
}

.athens-disc-weibo__media-expand-scroll--images {
	align-items: center;
	justify-content: flex-start;
	gap: 0;
	touch-action: none;
}

.athens-disc-weibo__media-expand-scroll--images.is-pannable {
	cursor: grab;
}

.athens-disc-weibo__media-expand-scroll--images.is-pannable.is-dragging {
	cursor: grabbing;
}

.athens-disc-weibo__media-expand-scroll--images.is-dragging .athens-disc-weibo__media-expand-img {
	pointer-events: none;
	-webkit-user-drag: none;
	user-select: none;
}

.athens-disc-weibo__media-expand-scroll--video {
	align-items: center;
	justify-content: center;
	padding: clamp(4px, 1.2cqmin, 6px);
	box-sizing: border-box;
}

.athens-disc-weibo__media-expand-img {
	display: block;
	flex-shrink: 0;
	width: 100%;
	max-width: none;
	height: auto;
	margin: 0;
	border-radius: 0;
	-webkit-user-drag: none;
	user-select: none;
}

.athens-disc-weibo__media-expand-img.is-wide {
	width: auto;
	height: 100%;
	max-height: 100%;
	min-width: 0;
}

.athens-disc-weibo__media-expand-img.is-tall {
	width: 100%;
	height: auto;
}

.athens-disc-weibo__media-expand-video {
	display: block;
	width: 100%;
	height: auto;
	max-height: 100%;
	flex: 0 1 auto;
	min-height: 0;
	border-radius: 4px;
	background: #000;
	object-fit: contain;
}

.athens-disc-weibo__expand--media .athens-disc-weibo__expand-close--overlay {
	position: absolute;
	right: clamp(6px, 1.8cqmin, 8px);
	bottom: clamp(6px, 1.8cqmin, 8px);
	z-index: 6;
	flex: none;
	align-self: auto;
	margin: 0;
	padding: 3px 9px;
	border-color: rgba(255, 255, 255, 0.28);
	background: rgba(30, 22, 14, 0.55);
	color: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}

.athens-disc-weibo__expand--media .athens-disc-weibo__expand-close--overlay:hover {
	border-color: rgba(255, 255, 255, 0.42);
	background: rgba(30, 22, 14, 0.72);
	color: #fff;
}

.athens-disc-weibo__nav {
	display: flex;
	align-self: center;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: clamp(20px, 5.5cqmin, 24px);
	height: clamp(28px, 8cqmin, 36px);
	padding: 0;
	border: 1px solid rgba(156, 106, 44, 0.14);
	border-radius: 6px;
	background: #faf8f4;
	color: rgba(79, 54, 30, 0.72);
	font-size: clamp(14px, 4cqmin, 18px);
	line-height: 1;
	cursor: pointer;
	transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}

.athens-disc-weibo__nav:hover:not(:disabled) {
	border-color: rgba(156, 106, 44, 0.28);
	background: #f3f0ea;
	color: var(--athens-gold);
}

.athens-disc-weibo__nav:disabled {
	opacity: 0.35;
	cursor: default;
}

.athens-disc-weibo__dots {
	display: flex;
	flex: 0 0 auto;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 5px;
	min-height: 12px;
}

.athens-disc-weibo__dot {
	width: 5px;
	height: 5px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(156, 106, 44, 0.22);
	cursor: pointer;
	transition: transform 0.18s ease, background 0.18s ease;
}

.athens-disc-weibo__dot.is-active {
	transform: scale(1.35);
	background: var(--athens-gold);
}

.athens-disc-weibo__dot--random {
	width: 7px;
	height: 7px;
	border-radius: 2px;
	transform: rotate(45deg);
}

.athens-disc-weibo__dot--random.is-active {
	transform: rotate(45deg) scale(1.2);
}

.athens-disc-weibo__random-host {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 0;
}

.athens-disc-weibo__random-host.is-loading {
	pointer-events: none;
}

.athens-disc-weibo__random-host.is-loading::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 5;
	background: rgba(247, 245, 240, 0.78);
	-webkit-backdrop-filter: blur(3px);
	backdrop-filter: blur(3px);
}

.athens-disc-weibo__random-host.is-loading::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 6;
	width: clamp(22px, 6cqmin, 28px);
	height: clamp(22px, 6cqmin, 28px);
	border: 2px solid rgba(163, 112, 46, 0.16);
	border-top-color: var(--athens-gold);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	animation: athensWeiboRandomLoader 0.75s linear infinite;
}

.athens-disc-weibo__card--random-empty {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	background:
		linear-gradient(145deg, rgba(163, 112, 46, 0.06) 0%, rgba(247, 245, 240, 0.98) 100%),
		repeating-linear-gradient(
			-12deg,
			transparent,
			transparent 10px,
			rgba(156, 106, 44, 0.03) 10px,
			rgba(156, 106, 44, 0.03) 11px
		);
}

.athens-disc-weibo__random-placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px;
	text-align: center;
}

.athens-disc-weibo__random-placeholder-icon {
	width: clamp(22px, 6.5cqmin, 28px);
	height: clamp(22px, 6.5cqmin, 28px);
	color: rgba(156, 106, 44, 0.45);
}

.athens-disc-weibo__random-placeholder p {
	margin: 0;
	color: rgba(79, 54, 30, 0.55);
	font-family: "Noto Sans SC", "PingFang SC", sans-serif;
	font-size: clamp(10px, 2.8cqmin, 11px);
	line-height: 1.5;
}

/* 上师微博 — 手机 / 小格口紧凑 */
@container athens-disc-cell (max-width: 360px) {
	.athens-disc-weibo__avatar {
		width: clamp(14px, 4cqmin, 18px);
		height: clamp(14px, 4cqmin, 18px);
	}

	.athens-disc-weibo__verified {
		width: clamp(8px, 2.2cqmin, 10px);
		height: clamp(8px, 2.2cqmin, 10px);
	}

	.athens-disc-weibo__stage {
		display: flex;
		flex: 1 1 auto;
		flex-direction: column;
		position: relative;
		min-height: 0;
	}

	.athens-disc-weibo__nav {
		display: flex;
		position: absolute;
		top: 34%;
		z-index: 6;
		width: clamp(18px, 5cqmin, 22px);
		height: clamp(24px, 6.8cqmin, 28px);
		border: 0;
		border-radius: 999px;
		background: rgba(47, 34, 22, 0.48);
		color: #fff;
		font-size: clamp(13px, 3.6cqmin, 15px);
		transform: translateY(-50%);
		-webkit-backdrop-filter: blur(4px);
		backdrop-filter: blur(4px);
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
	}

	.athens-disc-weibo__nav--prev {
		left: 5px;
	}

	.athens-disc-weibo__nav--next {
		right: 5px;
	}

	.athens-disc-weibo__nav:hover:not(:disabled) {
		background: rgba(47, 34, 22, 0.62);
		color: #fff;
	}

	.athens-disc-weibo__dots {
		display: none;
	}

	.athens-disc-weibo .athens-disc-weibo__text,
	.athens-disc-weibo .athens-disc-weibo__text-toggle {
		display: -webkit-box;
		overflow: hidden;
		flex: 0 0 auto;
		font-size: clamp(9px, 2.5cqmin, 10px);
		line-height: 1.4;
		max-height: calc(1.4 * 2 * 1em);
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
		line-clamp: 2;
		margin-bottom: 5px;
	}

	.athens-disc-weibo__content {
		padding: 6px 7px;
	}

	.athens-disc-weibo__time {
		top: 5px;
		left: 5px;
		max-width: calc(100% - 48px);
		padding: 2px 5px;
		font-size: clamp(8px, 2.2cqmin, 9px);
	}

	.athens-disc-weibo__like {
		right: 5px;
		bottom: 5px;
		min-width: clamp(46px, 13cqmin, 52px);
		height: clamp(18px, 5.2cqmin, 22px);
		padding: 0 7px;
		font-size: clamp(8px, 2.2cqmin, 9px);
	}

	.athens-disc-weibo__like-icon {
		font-size: clamp(10px, 2.8cqmin, 11px);
	}
}

@media (max-width: 809.98px) {
	.athens-disc-weibo {
		padding: 6px;
		gap: 4px;
	}

	.athens-disc-weibo__bar {
		gap: 4px;
	}

	.athens-disc-weibo__identity {
		gap: 4px;
	}

	.athens-disc-weibo__avatar {
		width: clamp(14px, 4cqmin, 18px);
		height: clamp(14px, 4cqmin, 18px);
	}

	.athens-disc-weibo__name {
		font-size: clamp(10px, 2.8cqmin, 12px);
	}

	.athens-disc-weibo__verified {
		width: clamp(8px, 2.2cqmin, 10px);
		height: clamp(8px, 2.2cqmin, 10px);
	}

	.athens-disc-weibo__random {
		padding: 3px 6px;
		font-size: 9px;
	}

	.athens-disc-weibo__random-icon {
		width: 11px;
		height: 11px;
	}

	.athens-disc-weibo__stage {
		display: flex;
		flex: 1 1 auto;
		flex-direction: column;
		position: relative;
		min-height: 0;
	}

	.athens-disc-weibo__nav {
		display: flex;
		position: absolute;
		top: 34%;
		z-index: 6;
		width: clamp(18px, 5cqmin, 22px);
		height: clamp(24px, 6.8cqmin, 28px);
		border: 0;
		border-radius: 999px;
		background: rgba(47, 34, 22, 0.48);
		color: #fff;
		font-size: clamp(13px, 3.6cqmin, 15px);
		transform: translateY(-50%);
		-webkit-backdrop-filter: blur(4px);
		backdrop-filter: blur(4px);
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
	}

	.athens-disc-weibo__nav--prev {
		left: 5px;
	}

	.athens-disc-weibo__nav--next {
		right: 5px;
	}

	.athens-disc-weibo__nav:hover:not(:disabled) {
		background: rgba(47, 34, 22, 0.62);
		color: #fff;
	}

	.athens-disc-weibo__dots {
		display: none;
	}

	.athens-disc-weibo .athens-disc-weibo__text,
	.athens-disc-weibo .athens-disc-weibo__text-toggle {
		display: -webkit-box;
		overflow: hidden;
		flex: 0 0 auto;
		font-size: clamp(9px, 2.5cqmin, 10px);
		line-height: 1.4;
		max-height: calc(1.4 * 2 * 1em);
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
		line-clamp: 2;
		margin-bottom: 5px;
	}

	.athens-disc-weibo__expand-text {
		font-size: clamp(10px, 2.8cqmin, 11px);
		line-height: 1.45;
	}

	.athens-disc-weibo__content {
		padding: 6px 7px;
	}

	.athens-disc-weibo__time {
		top: 5px;
		left: 5px;
		max-width: calc(100% - 48px);
		padding: 2px 5px;
		font-size: clamp(8px, 2.2cqmin, 9px);
	}

	.athens-disc-weibo__like {
		right: 5px;
		bottom: 5px;
		min-width: clamp(46px, 13cqmin, 52px);
		height: clamp(18px, 5.2cqmin, 22px);
		padding: 0 7px;
		font-size: clamp(8px, 2.2cqmin, 9px);
	}

	.athens-disc-weibo__like-icon {
		font-size: clamp(10px, 2.8cqmin, 11px);
	}

	.athens-disc-weibo__video-badge,
	.athens-disc-weibo__pic-count {
		top: 4px;
		right: 4px;
		padding: 1px 5px;
		font-size: 8px;
	}

	.athens-disc-weibo__expand-close {
		padding: 3px 8px;
		font-size: 9px;
	}

	.athens-disc-weibo__expand--media .athens-disc-weibo__expand-close--overlay {
		right: 5px;
		bottom: 5px;
		padding: 2px 7px;
		font-size: 9px;
	}
}

.athens-block__meta h3 a {
	color: var(--athens-gold);
	text-decoration: none;
}

.athens-block__meta h3 a:hover {
	text-decoration: underline;
}

.athens-day__head {
	margin-bottom: 16px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--athens-border);
}

.athens-day__head h2 {
	margin: 0;
	color: var(--athens-blue);
	font-size: 24px;
	font-weight: 700;
	text-transform: uppercase;
}

.athens-day__head p {
	margin: 6px 0 0;
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
}

.athens-legend {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: 16px;
}

.athens-legend__row {
	display: grid;
	grid-template-columns: 48px 1fr;
	gap: 12px;
	align-items: center;
	min-height: 44px;
	padding: 10px 14px;
	border-radius: 4px;
	background: var(--athens-inner);
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
}

.athens-legend__row span:first-child {
	color: var(--athens-blue);
}

.athens-panel__title--small {
	font-size: clamp(18px, 2.2vw, 24px);
}

.athens-faqs-banner {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.athens-faqs-banner__intro {
	margin: 0;
	text-align: center;
	color: rgba(79, 54, 30, 0.78);
	font-size: clamp(15px, 1.3vw, 17px);
	line-height: 1.55;
}

.athens-faq-list {
	margin: 16px 0 0;
	padding: 0;
	list-style: none;
}

.athens-faq-list li {
	padding: 14px 0;
	border-bottom: 1px solid var(--athens-border);
	font-size: 13px;
	font-weight: 600;
	text-transform: none;
}

.athens-faq-list--horizontal {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px 20px;
	margin-top: 12px;
}

.athens-faq-list--horizontal li {
	padding: 12px 14px;
	border: 0;
	border-radius: 4px;
	background: var(--athens-inner);
	font-size: 12px;
	line-height: 1.45;
}

.athens-faq-list--compact {
	margin-top: 10px;
}

.athens-faq-list--compact li {
	padding: 10px 0;
	font-size: 12px;
	line-height: 1.5;
}

@media (max-width: 809.98px) {
	.athens-faq-list--horizontal {
		grid-template-columns: 1fr;
	}
}

/* ============================================================
   Athens 美化增强层 — 不改变 athens-grid / section 大结构，
   仅提升配色层次、对比度、质感与移动端可读性。
   ============================================================ */

/* 1. 配色测试 — 暖米底 + 品牌朱红 */
.athens {
	--athens-bg: #edebe3;
	--athens-border: #edebe3;
	--athens-panel: #f9f7f0;
	--athens-inner: #edebe3;
	--athens-muted: #756d60;
	--athens-blue: #756d60;
	--athens-gold: #a8322d;
	--athens-gold-hover: #8f2724;
	--athens-ink: #403a32;
	--athens-focus: rgba(168, 50, 45, 0.45);
	--athens-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html.athens-grid-html,
body.athens-grid-body {
	--athens-bg: #edebe3;
	background: var(--athens-bg);
}

.athens {
	background: var(--athens-bg);
}

/* 卡片网格：圆角 + 轻间距 + 柔和投影（unit 由 athens-grid.js 扣除 gap/padding 计算） */
.athens-grid {
	gap: 1px;
	padding: 1px;
	background: var(--athens-bg);
}

.athens-tile {
	border: 1px solid var(--athens-border);
	border-radius: 8px;
	box-shadow:
		0 2px 14px rgba(83, 58, 33, 0.06),
		inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

/* ---------- 2. Hero：米色底上用深墨文字 ---------- */
.athens-tile.athens-cell--hero {
	border-color: transparent;
	background: transparent;
	box-shadow: none;
}

.athens-cell--hero .athens-hero-copy {
	isolation: isolate;
}

.athens-cell--hero .athens-hero-copy::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	pointer-events: none;
}

.athens-hero-copy__eyebrow {
	color: rgba(122, 72, 48, 0.52);
	font-family: "PingFang SC", "Hiragino Sans GB", "Noto Sans SC", "Microsoft YaHei", sans-serif;
	font-size: clamp(22px, 2vw, 34px);
	font-weight: 500;
	letter-spacing: 0.06em;
	text-shadow: 0 1px 0 rgba(255, 248, 236, 0.35);
}

.athens-hero-copy__title {
	color: #7a2020;
	-webkit-text-fill-color: #7a2020;
	text-shadow:
		0 1px 0 rgba(255, 248, 236, 0.88),
		0 -1px 0 rgba(92, 24, 24, 0.12),
		1px 2px 0 rgba(156, 106, 44, 0.1),
		0 3px 14px rgba(122, 32, 32, 0.14),
		0 14px 34px rgba(156, 106, 44, 0.2);
	letter-spacing: 0.04em;
	max-width: none;
	font-family: "Kaiti SC", "STKaiti", "KaiTi", "Noto Serif SC", "Songti SC", serif;
	font-size: clamp(28px, 2.8vw, 40px);
	line-height: 1.18;
	background: none;
	box-shadow: none;
}

.athens-hero-copy__subtitle {
	color: rgba(122, 32, 32, 0.68);
	text-shadow:
		0 1px 0 rgba(255, 248, 236, 0.55),
		0 2px 10px rgba(156, 106, 44, 0.12);
	max-width: none;
	font-size: clamp(16px, 1.35vw, 20px);
	letter-spacing: 0.04em;
}

@keyframes athensHeroReveal {
	from {
		opacity: 0;
		transform: translateY(12px);
	}

	to {
		opacity: 1;
		transform: none;
	}
}

@keyframes athensHeroInk {
	0%,
	100% {
		filter: drop-shadow(0 8px 16px rgba(156, 106, 44, 0.12));
	}

	50% {
		filter: drop-shadow(0 10px 22px rgba(156, 106, 44, 0.22));
	}
}

.athens-hero-copy__search {
	border-color: rgba(156, 106, 44, 0.28);
	background: rgba(255, 252, 247, 0.96);
	box-shadow: 0 6px 18px rgba(79, 54, 30, 0.08);
	backdrop-filter: blur(3px);
}

.athens-hero-copy__search-input {
	color: rgba(79, 54, 30, 0.92);
}

.athens-hero-copy__search-input::placeholder {
	color: rgba(79, 54, 30, 0.45);
}

/* Hero FiboSearch — same as header search, pill styling */
.athens-hero-copy__search .dgwt-wcas-search-wrapp {
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
}

.athens-hero-copy__search .dgwt-wcas-sf-wrapp {
	display: block !important;
	position: relative !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}

.athens-hero-copy__search .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type="search"].dgwt-wcas-search-input,
.athens-hero-copy__search .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type="text"].dgwt-wcas-search-input,
.athens-hero-copy__search .dgwt-wcas-style-pirx.dgwt-wcas-style-pirx-compact .dgwt-wcas-sf-wrapp input[type="search"].dgwt-wcas-search-input,
.athens-hero-copy__search .dgwt-wcas-style-pirx.dgwt-wcas-style-pirx-compact .dgwt-wcas-sf-wrapp input[type="text"].dgwt-wcas-search-input {
	box-sizing: border-box !important;
	height: auto !important;
	min-height: 48px !important;
	padding: 12px 18px 12px 48px !important;
	padding-top: 12px !important;
	padding-right: 18px !important;
	padding-bottom: 12px !important;
	padding-left: 48px !important;
	border: 0 !important;
	border-radius: 999px !important;
	background: transparent !important;
	box-shadow: none !important;
	color: rgba(79, 54, 30, 0.92) !important;
	font-family: "PingFang SC", "Noto Sans SC", "Hiragino Sans GB", sans-serif !important;
	font-size: 14px !important;
	line-height: 1.3 !important;
}

.athens-hero-copy__search .dgwt-wcas-sf-wrapp input.dgwt-wcas-search-input::placeholder {
	color: rgba(79, 54, 30, 0.45) !important;
	opacity: 1;
}

.athens-hero-copy__search .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit,
.athens-hero-copy__search .dgwt-wcas-style-pirx.dgwt-wcas-style-pirx-compact .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit {
	position: absolute !important;
	left: 14px !important;
	right: auto !important;
	top: 50% !important;
	bottom: auto !important;
	transform: translateY(-50%) !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 22px !important;
	height: 22px !important;
	min-width: 22px !important;
	min-height: 22px !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	color: #7a2020 !important;
	pointer-events: none !important;
}

.athens-hero-copy__search .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit svg,
.athens-hero-copy__search .dgwt-wcas-style-pirx.dgwt-wcas-style-pirx-compact .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit svg {
	display: block !important;
	width: 18px !important;
	height: 18px !important;
}

.athens-hero-copy__search .dgwt-wcas-style-pirx.dgwt-wcas-search-filled .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit,
.athens-hero-copy__search .dgwt-wcas-style-pirx.dgwt-wcas-style-pirx-compact.dgwt-wcas-search-filled .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit {
	left: auto !important;
	right: 14px !important;
	pointer-events: auto !important;
}

.athens-hero-copy__search .dgwt-wcas-style-pirx.dgwt-wcas-search-filled .dgwt-wcas-sf-wrapp input[type="search"].dgwt-wcas-search-input,
.athens-hero-copy__search .dgwt-wcas-style-pirx.dgwt-wcas-search-filled .dgwt-wcas-sf-wrapp input[type="text"].dgwt-wcas-search-input,
.athens-hero-copy__search .dgwt-wcas-style-pirx.dgwt-wcas-style-pirx-compact.dgwt-wcas-search-filled .dgwt-wcas-sf-wrapp input[type="search"].dgwt-wcas-search-input,
.athens-hero-copy__search .dgwt-wcas-style-pirx.dgwt-wcas-style-pirx-compact.dgwt-wcas-search-filled .dgwt-wcas-sf-wrapp input[type="text"].dgwt-wcas-search-input {
	padding-left: 18px !important;
	padding-right: 48px !important;
}

.athens-hero-copy__search .dgwt-wcas-preloader {
	right: 14px !important;
	left: auto !important;
	margin-right: 0 !important;
}

.athens-hero-copy__note {
	display: none;
}

/* ---------- 3. 占位视觉块：从"蓝图网格 + 蓝徽标"改为典雅题字面板 ---------- */
.athens-cell--visual .athens-visual:not(.athens-visual--relief):not(.athens-visual--hero) {
	position: relative;
	background:
		radial-gradient(circle at 50% 46%, rgba(255, 255, 255, 0.5), transparent 42%),
		linear-gradient(160deg, #efeae0 0%, var(--athens-panel) 52%, #ddd6c7 100%);
}

/* 柔和的同心法轮印记水印 */
.athens-cell--visual .athens-visual:not(.athens-visual--relief):not(.athens-visual--hero)::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 46%;
	width: clamp(90px, 18cqmin, 150px);
	aspect-ratio: 1;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	border: 1px solid rgba(156, 106, 44, 0.14);
	box-shadow:
		0 0 0 7px rgba(156, 106, 44, 0.05),
		inset 0 0 0 6px rgba(156, 106, 44, 0.06);
	pointer-events: none;
}

.athens-cell--visual .athens-visual:not(.athens-visual--relief):not(.athens-visual--hero) span {
	position: relative;
	padding: 9px 22px;
	border: 1px solid rgba(156, 106, 44, 0.3);
	border-radius: 3px;
	background: rgba(255, 253, 249, 0.7);
	color: var(--athens-gold);
	font-family: "Noto Serif SC", "Songti SC", serif;
	font-size: clamp(14px, 1.5vw, 18px);
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: none;
	box-shadow: 0 2px 8px rgba(83, 58, 33, 0.08);
	backdrop-filter: blur(2px);
}

/* ---------- 4. 导航卡片：扁平纸面 ---------- */
.athens-nav-section {
	border-color: var(--athens-bg);
	background: var(--athens-panel);
	box-shadow: none;
}

.athens-nav-section__head {
	border-bottom-color: rgba(156, 106, 44, 0.28);
}

.athens-nav-section__title {
	color: var(--athens-gold);
	font-weight: 700;
}

.athens-nav-section__icon {
	opacity: 0.92;
}

/* ---------- 5. 面板标题：居中金色装饰线 ---------- */
.athens-panel__title {
	position: relative;
	padding-bottom: 14px;
}

.athens-panel__title::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 72px;
	height: 2px;
	transform: translateX(-50%);
	border-radius: 2px;
	background: linear-gradient(90deg, transparent, var(--athens-gold), transparent);
}

.athens-panel__title--small {
	padding-bottom: 12px;
}

.athens-panel__title--small::after {
	width: 48px;
}

/* ---------- 6. 列表勋章：图例行圆形金边章 ---------- */
.athens-legend__row {
	border: 1px solid rgba(156, 106, 44, 0.1);
	background: linear-gradient(180deg, #fbf9f4 0%, var(--athens-inner) 100%);
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.athens-legend__row:hover {
	border-color: rgba(156, 106, 44, 0.3);
	box-shadow: 0 2px 8px rgba(83, 58, 33, 0.08);
}

.athens-legend__row span:first-child {
	display: inline-grid;
	place-items: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: 1px solid rgba(156, 106, 44, 0.32);
	background: radial-gradient(circle at 32% 26%, #ffffff, #ece6d8);
	color: var(--athens-gold);
	font-family: "Noto Serif SC", "Songti SC", serif;
	font-size: 13px;
	font-weight: 600;
	box-shadow:
		inset 0 1px 2px rgba(255, 255, 255, 0.7),
		0 1px 2px rgba(83, 58, 33, 0.08);
}

/* ---------- 7. 法会 / 活动 区块卡片 ---------- */
.athens-canvas--block {
	padding: 14px 16px;
	border: 1px solid rgba(156, 106, 44, 0.12);
	border-radius: 6px;
	background: linear-gradient(180deg, #fbf9f4 0%, var(--athens-inner) 100%);
}

.athens-day__head h2 {
	letter-spacing: 0.04em;
}

/* ---------- 8. FAQ 横幅 / 紧凑列表打磨 ---------- */
.athens-faq-list--horizontal li {
	border: 1px solid rgba(156, 106, 44, 0.1);
	background: linear-gradient(180deg, #fbf9f4 0%, var(--athens-inner) 100%);
	transition: border-color 0.2s ease;
}

.athens-faq-list--horizontal li:hover {
	border-color: rgba(156, 106, 44, 0.28);
}

/* ---------- 9. 上师微博立柱：金边题头 ---------- */
.athens-column-copy__title {
	position: relative;
	padding-left: 14px;
}

.athens-column-copy__title::before {
	content: "";
	position: absolute;
	left: 0;
	top: 2px;
	bottom: 2px;
	width: 1px;
	border-radius: 1px;
	background: linear-gradient(180deg, var(--athens-gold), rgba(156, 106, 44, 0.2));
}

/* ---------- 浮雕装饰带（网格与页脚之间：莲花 / 法轮 / 宝塔） ---------- */
.athens-relief-band {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	gap: clamp(40px, 9vw, 130px);
	padding: clamp(20px, 4vw, 48px) clamp(16px, 4vw, 56px) clamp(4px, 1vw, 12px);
	color: var(--athens-gold);
}

.athens-relief-band__motif {
	display: block;
	opacity: 0.22;
}

.athens-relief-band__motif svg {
	display: block;
	height: auto;
}

.athens-relief-band__motif--lotus svg {
	width: clamp(64px, 11vw, 120px);
}

.athens-relief-band__motif--wheel svg {
	width: clamp(54px, 9vw, 96px);
}

.athens-relief-band__motif--pagoda svg {
	width: clamp(42px, 7vw, 74px);
}

/* ---------- 页脚 ---------- */
.athens-footer {
	position: relative;
	overflow: hidden;
	margin: 0 clamp(10px, 1.4vw, 22px) 0;
	padding: clamp(28px, 4vw, 52px) clamp(20px, 4vw, 64px) clamp(20px, 2.4vw, 30px);
	border-top: 1px solid var(--athens-border);
	color: var(--athens-ink);
}

.athens-footer__lion {
	position: absolute;
	bottom: 0;
	z-index: 0;
	color: var(--athens-gold);
	opacity: 0.12;
	pointer-events: none;
}

.athens-footer__lion svg {
	display: block;
	width: clamp(70px, 9vw, 120px);
	height: auto;
}

.athens-footer__lion--left {
	left: clamp(6px, 2vw, 32px);
}

.athens-footer__lion--right {
	right: clamp(6px, 2vw, 32px);
	transform: scaleX(-1);
}

.athens-footer__inner {
	position: relative;
	z-index: 1;
	max-width: 1180px;
	margin: 0 auto;
}

.athens-footer__cols {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
	gap: clamp(18px, 2.6vw, 40px);
	align-items: start;
}

.athens-footer__col-title {
	margin: 0 0 clamp(10px, 1.2vw, 16px);
	color: var(--athens-gold);
	font-family: "Noto Serif SC", "Songti SC", serif;
	font-size: clamp(14px, 1.3vw, 16px);
	font-weight: 700;
	letter-spacing: 0.06em;
}

.athens-footer__list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: clamp(7px, 0.9vw, 11px);
}

.athens-footer__list a {
	color: rgba(79, 54, 30, 0.82);
	font-size: clamp(14px, 1.15vw, 15px);
	text-decoration: none;
	transition: color 0.2s ease;
}

.athens-footer__list a:hover {
	color: var(--athens-gold);
}

.athens-footer__qr {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0;
}

.athens-footer__qr-label {
	margin: 0 0 clamp(10px, 1.2vw, 16px);
	color: var(--athens-gold);
	font-family: "Noto Serif SC", "Songti SC", serif;
	font-size: clamp(14px, 1.3vw, 16px);
	font-weight: 700;
	letter-spacing: 0.06em;
}

.athens-footer__social {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
	max-width: none;
}

.athens-footer__social-link {
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	border: 1px solid var(--athens-border);
	background: transparent;
	color: rgba(79, 54, 30, 0.72);
	text-decoration: none;
	transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.athens-footer__social-link svg {
	width: 16px;
	height: 16px;
	display: block;
}

.athens-footer__social-link:hover,
.athens-footer__social-link:focus-visible {
	background: rgba(156, 106, 44, 0.08);
	border-color: rgba(156, 106, 44, 0.45);
	color: var(--athens-gold);
	outline: none;
	transform: translateY(-1px);
}

.athens-footer__qr-box {
	display: grid;
	place-items: center;
	width: clamp(68px, 7vw, 88px);
	height: clamp(68px, 7vw, 88px);
	padding: 8px;
	border: 1px solid var(--athens-border);
	border-radius: 10px;
	background: #fff;
	color: var(--athens-ink);
	box-shadow: 0 2px 10px rgba(83, 58, 33, 0.08);
}

.athens-footer__qr-box img,
.athens-footer__qr-box svg {
	width: 100%;
	height: 100%;
}

.athens-footer__copy {
	margin: clamp(22px, 3vw, 38px) 0 0;
	padding-top: clamp(14px, 1.8vw, 22px);
	border-top: 1px solid var(--athens-border);
	color: rgba(79, 54, 30, 0.62);
	font-size: 13px;
	letter-spacing: 0.04em;
	text-align: center;
}

@media (max-width: 809.98px) {
	.athens-relief-band {
		gap: 22px;
		padding: 14px 12px 0;
		opacity: 0.85;
	}

	.athens-relief-band__motif--lotus svg {
		width: 36px;
	}

	.athens-relief-band__motif--wheel svg {
		width: 30px;
	}

	.athens-relief-band__motif--pagoda svg {
		width: 24px;
	}

	.athens-footer {
		margin: 0 8px 0;
		padding: 14px 12px calc(12px + env(safe-area-inset-bottom, 0px));
	}

	.athens-footer__cols {
		/* 三栏链接并排，避免第三栏落单留白 */
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 10px 8px;
	}

	.athens-footer__col-title {
		margin: 0 0 6px;
		font-size: 11px;
		letter-spacing: 0.04em;
		line-height: 1.25;
	}

	.athens-footer__list {
		gap: 4px;
	}

	.athens-footer__list a {
		display: block;
		min-height: 0;
		padding: 1px 0;
		font-size: 11px;
		line-height: 1.35;
	}

	.athens-footer__qr {
		grid-column: 1 / -1;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 10px;
		margin-top: 8px;
		text-align: center;
	}

	.athens-footer__qr-box {
		width: 44px;
		height: 44px;
		padding: 4px;
		border-radius: 6px;
		box-shadow: none;
	}

	.athens-footer__qr-label {
		font-size: 12px;
		letter-spacing: 0.06em;
		margin: 0;
	}

	.athens-footer__social {
		justify-content: center;
		gap: 6px;
	}

	.athens-footer__social-link {
		width: 32px;
		height: 32px;
	}

	.athens-footer__social-link svg {
		width: 14px;
		height: 14px;
	}

	.athens-footer__copy {
		margin: 12px 0 0;
		padding-top: 10px;
		font-size: 10px;
		line-height: 1.4;
	}

	.athens-footer__lion svg {
		width: 40px;
	}

	.athens-footer__lion {
		opacity: 0.08;
	}
}

/* ---------- 上师微博：头像卡片 + 认证 + 轮播点 ---------- */
.athens-weibo {
	display: flex;
	flex-direction: column;
	gap: clamp(12px, 1.6vw, 20px);
	width: 100%;
	height: 100%;
	padding: clamp(18px, 2vw, 28px);
}

.athens-weibo__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
}

.athens-weibo__title {
	position: relative;
	margin: 0;
	padding-left: 0;
	color: var(--athens-gold);
	font-family: "Songti SC", "STSong", "Noto Serif SC", serif;
	font-size: clamp(15px, 1.5vw, 19px);
	font-weight: 700;
	letter-spacing: 0.06em;
}

.athens-weibo__title::before {
	display: none;
}

.athens-weibo__more {
	flex-shrink: 0;
	color: rgba(93, 64, 37, 0.6);
	font-size: 12px;
	text-decoration: none;
	transition: color 0.2s ease;
}

.athens-weibo__more:hover {
	color: var(--athens-gold);
}

.athens-weibo__author {
	display: flex;
	align-items: center;
	gap: clamp(10px, 1.2vw, 14px);
}

.athens-weibo__avatar {
	display: grid;
	flex-shrink: 0;
	place-items: center;
	width: clamp(46px, 5vw, 60px);
	height: clamp(46px, 5vw, 60px);
	overflow: hidden;
	border: 2px solid #fff;
	border-radius: 50%;
	background:
		radial-gradient(circle at 35% 28%, #fbf7ef, #e9e0cf);
	color: var(--athens-gold);
	box-shadow: 0 3px 10px rgba(83, 58, 33, 0.14);
}

.athens-weibo__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.athens-weibo__avatar svg {
	width: 60%;
	height: 60%;
	opacity: 0.72;
}

.athens-weibo__meta {
	display: flex;
	min-width: 0;
	flex-direction: column;
	gap: 3px;
}

.athens-weibo__name {
	display: flex;
	align-items: center;
	gap: 5px;
	color: var(--athens-ink);
	font-size: clamp(14px, 1.4vw, 17px);
	font-weight: 700;
}

.athens-weibo__verified {
	flex-shrink: 0;
	width: 16px;
	height: 16px;
	color: var(--athens-gold);
}

.athens-weibo__handle {
	overflow: hidden;
	color: rgba(93, 64, 37, 0.55);
	font-size: 12px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.athens-weibo__quote {
	display: flex;
	flex: 1;
	align-items: center;
	margin: 0;
	padding: 0;
	border: 0;
}

.athens-weibo__quote p {
	margin: 0;
	color: var(--athens-ink);
	font-size: clamp(14px, 1.45vw, 17px);
	line-height: 1.85;
}

.athens-weibo__foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.athens-weibo__foot time {
	color: rgba(93, 64, 37, 0.5);
	font-size: 12px;
}

.athens-weibo__dots {
	display: flex;
	align-items: center;
	gap: 6px;
}

.athens-weibo__dots i {
	display: block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: rgba(156, 106, 44, 0.3);
	transform-origin: left center;
	transition: transform 0.2s var(--athens-ease, ease), background 0.2s var(--athens-ease, ease);
}

.athens-weibo__dots i.is-active {
	border-radius: 3px;
	background: var(--athens-gold);
	transform: scaleX(3);
}

/* ---------- 1×2 上师微博立柱：上图 1×1 + 引用风下文 ---------- */
.athens-cell--weibo-banner {
	display: block;
	padding: 0;
	overflow: hidden;
	background: var(--athens-panel);
	container-type: size;
	container-name: athens-weibo-banner-cell;
}

.athens-weibo-banner {
	display: flex;
	position: relative;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	flex-direction: column;
	gap: clamp(6px, 1.8cqmin, 10px);
	padding: clamp(6px, 1.8cqmin, 10px);
	min-height: 0;
}

.athens-weibo-banner__bar {
	display: flex;
	position: absolute;
	top: clamp(6px, 1.8cqmin, 10px);
	left: clamp(6px, 1.8cqmin, 10px);
	right: clamp(6px, 1.8cqmin, 10px);
	z-index: 6;
	flex: 0 0 auto;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	min-width: 0;
	padding: clamp(8px, 1.8cqmin, 12px);
	pointer-events: none;
}

.athens-weibo-banner__identity {
	display: flex;
	align-items: center;
	gap: clamp(6px, 1.6cqmin, 8px);
	min-width: 0;
	max-width: calc(100% - 72px);
	padding: 4px 10px 4px 4px;
	border-radius: 999px;
	background: rgba(47, 34, 22, 0.42);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	pointer-events: auto;
}

.athens-weibo-banner__avatar {
	display: grid;
	flex-shrink: 0;
	width: clamp(26px, 7cqmin, 34px);
	height: clamp(26px, 7cqmin, 34px);
	overflow: hidden;
	border-radius: 50%;
	border: 1px solid rgba(255, 248, 239, 0.45);
	background: #ebe6de;
	place-items: center;
}

.athens-weibo-banner__avatar img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.athens-weibo-banner__avatar-fallback {
	color: rgba(79, 54, 30, 0.55);
	font-family: "Noto Serif SC", "Songti SC", serif;
	font-size: clamp(12px, 3.2cqmin, 14px);
	font-weight: 600;
	line-height: 1;
}

.athens-weibo-banner__name {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	min-width: 0;
	overflow: hidden;
	color: #fff8ef;
	font-family: "Noto Sans SC", "PingFang SC", sans-serif;
	font-size: clamp(12px, 3.2cqmin, 14px);
	font-weight: 600;
	line-height: 1.2;
	text-overflow: ellipsis;
	white-space: nowrap;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.athens-weibo-banner__verified {
	flex-shrink: 0;
	width: clamp(12px, 3.4cqmin, 14px);
	height: clamp(12px, 3.4cqmin, 14px);
	color: #f0d08a;
}

.athens-weibo-banner__random {
	display: inline-flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	gap: 5px;
	box-sizing: border-box;
	min-height: clamp(26px, 7cqmin, 34px);
	height: clamp(26px, 7cqmin, 34px);
	padding: 0 12px;
	border: 1px solid rgba(255, 248, 239, 0.35);
	border-radius: 999px;
	background: rgba(47, 34, 22, 0.42);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	color: #fff8ef;
	font-family: "Noto Sans SC", "PingFang SC", sans-serif;
	font-size: clamp(11px, 3cqmin, 13px);
	font-weight: 600;
	line-height: 1;
	cursor: pointer;
	pointer-events: auto;
	transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}

.athens-weibo-banner__random:hover {
	border-color: rgba(255, 248, 239, 0.55);
	background: rgba(47, 34, 22, 0.58);
	color: #fff8ef;
}

.athens-weibo-banner__random-icon {
	width: clamp(14px, 3.8cqmin, 16px);
	height: clamp(14px, 3.8cqmin, 16px);
}

.athens-weibo-banner__random-host {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 0;
}

.athens-weibo-banner__random-host.is-loading {
	pointer-events: none;
}

.athens-weibo-banner__random-host.is-loading::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 5;
	background: rgba(247, 245, 240, 0.78);
	-webkit-backdrop-filter: blur(3px);
	backdrop-filter: blur(3px);
}

.athens-weibo-banner__random-host.is-loading::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 6;
	width: clamp(24px, 6.5cqmin, 30px);
	height: clamp(24px, 6.5cqmin, 30px);
	border: 2px solid rgba(163, 112, 46, 0.16);
	border-top-color: var(--athens-gold);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	animation: athensWeiboRandomLoader 0.75s linear infinite;
}

.athens-weibo-banner__slide-inner--empty .athens-weibo-banner__media-stage--empty {
	background:
		linear-gradient(145deg, rgba(163, 112, 46, 0.06) 0%, rgba(247, 245, 240, 0.95) 100%);
}

.athens-weibo-banner__body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	min-height: 0;
}

.athens-weibo-banner__viewport-shell {
	position: relative;
	flex: 1 1 auto;
	min-width: 0;
	min-height: 0;
	height: 100%;
	overflow: hidden;
	isolation: isolate;
	clip-path: inset(0);
}

.athens-weibo-banner__viewport {
	overflow-x: auto;
	overflow-y: hidden;
	height: 100%;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	/* Size slides against this scrollport, not the growing track. */
	container-type: inline-size;
	overscroll-behavior-x: contain;
}

.athens-weibo-banner__viewport::-webkit-scrollbar {
	display: none;
}

.athens-weibo-banner__track {
	display: flex;
	height: 100%;
	min-height: 0;
	gap: 0;
}

.athens-weibo-banner__slide {
	box-sizing: border-box;
	/* 100cqi = viewport width; avoids % flex-basis subpixel bleed. */
	flex: 0 0 100cqi;
	width: 100cqi;
	min-width: 100cqi;
	max-width: 100cqi;
	height: 100%;
	min-height: 0;
	overflow: hidden;
	scroll-snap-align: start;
	scroll-snap-stop: always;
}

.athens-weibo-banner__slide-inner {
	display: flex;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	flex-direction: column;
	gap: clamp(8px, 1cqh, 10px);
	min-width: 0;
	min-height: 0;
	overflow: hidden;
}

.athens-weibo-banner__slide-inner.athens-disc-weibo__card {
	border: 0;
	background: transparent;
	border-radius: 0;
}

.athens-weibo-banner__media-stage {
	display: flex;
	position: relative;
	flex: 0 0 auto;
	flex-direction: column;
	width: 100%;
	aspect-ratio: 1 / 1;
	min-height: 0;
	overflow: hidden;
	border-radius: clamp(6px, 1vw, 10px);
}

.athens-weibo-banner__media-stage .athens-disc-weibo__media {
	flex: 1 1 auto;
	height: 100%;
	border-radius: inherit;
}

.athens-weibo-banner__media-stage .athens-disc-weibo__media--text {
	display: grid;
	place-items: center;
}

.athens-weibo-banner__media-stage .athens-disc-weibo__like {
	right: clamp(6px, 1.4cqmin, 10px);
	bottom: clamp(6px, 1.4cqmin, 10px);
	z-index: 4;
}

.athens-weibo-banner__media-stage .athens-disc-weibo__pic-count,
.athens-weibo-banner__media-stage .athens-disc-weibo__video-badge {
	top: auto;
	right: auto;
	bottom: clamp(6px, 1.4cqmin, 10px);
	left: clamp(6px, 1.4cqmin, 10px);
	z-index: 4;
	padding: 3px 8px;
	font-size: 11px;
}

.athens-weibo-banner__slide-inner .athens-disc-weibo__expand--media {
	border-radius: clamp(8px, 1vw, 12px);
	overflow: hidden;
}

.athens-weibo-banner__slide-inner .athens-disc-weibo__media-expand-img,
.athens-weibo-banner__slide-inner .athens-disc-weibo__media-expand-video {
	border-radius: clamp(8px, 1vw, 12px);
}

.athens-weibo-banner__placeholder {
	font-size: clamp(28px, 5vw, 40px);
	opacity: 0.45;
}

.athens-weibo-banner__copy {
	display: flex;
	flex: 1 1 0;
	flex-direction: column;
	gap: clamp(3px, 0.5cqh, 5px);
	min-height: 0;
	overflow: hidden;
}

.athens-weibo-banner__quote {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	justify-content: safe center;
	margin: 0;
	padding: 0;
	border: 0;
	min-height: 0;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
	scrollbar-color: rgba(163, 112, 46, 0.28) transparent;
}

.athens-weibo-banner__quote::-webkit-scrollbar {
	width: 4px;
}

.athens-weibo-banner__quote::-webkit-scrollbar-thumb {
	border-radius: 999px;
	background: rgba(163, 112, 46, 0.28);
}

.athens-weibo-banner__quote p {
	flex: 0 0 auto;
	margin: 0;
	color: rgba(62, 44, 28, 0.9);
	font-family: "Noto Sans SC", "PingFang SC", sans-serif;
	font-size: clamp(12px, 1.25vw, 15px);
	font-weight: 400;
	line-height: 1.68;
	letter-spacing: 0.01em;
}

@media (min-width: 810px) {
	.athens-weibo-banner__quote p {
		font-size: clamp(25px, 2.4vw, 28px);
		line-height: 1.65;
	}
}

.athens-weibo-banner__copy > .athens-weibo-banner__foot {
	display: none;
}

.athens-weibo-banner__foot {
	flex: 0 0 auto;
	justify-content: flex-start;
}

.athens-weibo-banner__foot time {
	color: rgba(93, 64, 37, 0.5);
	font-size: 12px;
}

.athens-weibo-banner__fallback {
	flex: 1 1 auto;
}

.athens-weibo-banner__nav {
	display: grid;
	border: 0;
	border-radius: 50%;
	cursor: pointer;
	place-items: center;
	transition: background 0.2s ease, opacity 0.2s ease, color 0.2s ease;
}

.athens-weibo-banner__footer {
	display: grid;
	flex: 0 0 auto;
	grid-template-columns: 32px minmax(0, 1fr) 32px;
	align-items: center;
	gap: 8px;
	min-height: 32px;
	padding-top: clamp(4px, 0.6cqh, 6px);
}

.athens-weibo-banner__nav--footer.athens-weibo-banner__nav--prev {
	justify-self: start;
}

.athens-weibo-banner__date {
	grid-column: 2;
	justify-self: center;
	min-width: 0;
	color: rgba(79, 54, 30, 0.78);
	font-family: "Noto Serif SC", "Songti SC", serif;
	font-size: clamp(14px, 3.6cqmin, 16px);
	font-weight: 600;
	line-height: 1.2;
	text-align: center;
	letter-spacing: 0.04em;
	white-space: nowrap;
}

.athens-weibo-banner__nav--footer.athens-weibo-banner__nav--next {
	justify-self: end;
	grid-column: 3;
}

.athens-weibo-banner__nav--footer {
	display: inline-grid;
	flex-shrink: 0;
	align-self: center;
	box-sizing: border-box;
	width: 32px;
	height: 32px;
	min-width: 32px;
	max-width: 32px;
	min-height: 32px;
	max-height: 32px;
	padding: 0;
	aspect-ratio: 1 / 1;
	border: 1px solid rgba(156, 106, 44, 0.24);
	border-radius: 50%;
	background: radial-gradient(circle at 32% 28%, #fff 0%, #ece6d8 52%, #dfd6c8 100%);
	color: var(--athens-gold);
	font-family: "Noto Serif SC", "Songti SC", serif;
	font-size: 17px;
	font-weight: 600;
	line-height: 1;
	place-items: center;
	box-shadow:
		inset 0 1px 2px rgba(255, 255, 255, 0.82),
		inset 0 -1px 2px rgba(83, 58, 33, 0.12),
		0 1px 3px rgba(83, 58, 33, 0.1);
	transition:
		border-color 0.18s ease,
		color 0.18s ease,
		box-shadow 0.18s ease,
		transform 0.18s ease;
}

.athens-weibo-banner__nav--footer:hover:not(:disabled) {
	border-color: rgba(163, 112, 46, 0.4);
	color: #8a5a22;
	box-shadow:
		inset 0 1px 3px rgba(255, 255, 255, 0.9),
		inset 0 -1px 2px rgba(83, 58, 33, 0.08),
		0 2px 6px rgba(83, 58, 33, 0.14);
}

.athens-weibo-banner__nav--footer:active:not(:disabled) {
	transform: translateY(1px);
	box-shadow:
		inset 0 2px 4px rgba(83, 58, 33, 0.16),
		inset 0 -1px 1px rgba(255, 255, 255, 0.5),
		0 1px 2px rgba(83, 58, 33, 0.06);
}

.athens-weibo-banner__nav:disabled {
	opacity: 0.35;
	cursor: default;
}

@media (max-width: 809.98px) {
	.athens-weibo-banner {
		padding: 6px;
		gap: 6px;
	}

	.athens-weibo-banner__bar {
		top: 6px;
		left: 6px;
		right: 6px;
		padding: 4px;
		gap: 4px;
	}

	.athens-weibo-banner__identity {
		box-sizing: border-box;
		gap: 3px;
		height: 20px;
		min-height: 20px;
		max-height: 20px;
		padding: 0 6px 0 2px;
	}

	.athens-weibo-banner__avatar {
		width: 16px;
		height: 16px;
	}

	.athens-weibo-banner__avatar-fallback {
		font-size: 8px;
	}

	.athens-weibo-banner__name {
		gap: 2px;
		font-size: 10px;
		font-weight: 600;
		line-height: 1;
	}

	.athens-weibo-banner__verified {
		width: 8px;
		height: 8px;
	}

	.athens-weibo-banner__random {
		box-sizing: border-box;
		min-height: 20px;
		height: 20px;
		max-height: 20px;
		padding: 0 8px;
		font-size: 10px;
	}

	.athens-weibo-banner__random-icon {
		width: 11px;
		height: 11px;
	}

	.athens-weibo-banner__footer {
		grid-template-columns: 26px minmax(0, 1fr) 26px;
		gap: 4px;
		min-height: 26px;
		padding-top: 0;
	}

	.athens-weibo-banner__nav--footer {
		width: 26px;
		height: 26px;
		min-width: 26px;
		max-width: 26px;
		min-height: 26px;
		max-height: 26px;
		font-size: 14px;
	}

	.athens-weibo-banner__date {
		font-size: 11px;
		letter-spacing: 0.02em;
	}

	.athens-weibo-banner__slide-inner {
		gap: 4px;
	}

	.athens-weibo-banner__media-stage {
		flex: 0 0 auto;
		aspect-ratio: 1 / 1;
		border-radius: clamp(6px, 1vw, 10px);
	}

	.athens-weibo-banner__copy {
		flex: 1 1 auto;
		min-height: 0;
		gap: 2px;
	}

	.athens-weibo-banner__quote {
		min-height: 0;
	}

	.athens-weibo-banner__quote p {
		font-size: 11px;
		font-weight: 400;
		line-height: 1.4;
		letter-spacing: 0;
	}

	.athens-weibo-banner__foot time {
		font-size: 9px;
	}
}

/* ---------- 导航：列表均匀铺开 + 统一右下角法轮角标（桌面/手机一致） ---------- */
/* 列表沿整列高度均匀分布，内容位于角标上方、不覆盖角标 */
.athens-nav-section__list {
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	padding-bottom: clamp(6px, 3cqi, 12px);
}

.athens-nav-section__list li + li {
	border-top: 1px solid rgba(156, 106, 44, 0.12);
}

.athens-nav-section__link {
	position: relative;
	z-index: 2;
}

/* 角标统一：固定右下角、大小一致、置于文字下层、低调装饰 */
.athens-nav-section__decor,
.athens-nav-section--sunburst .athens-nav-section__decor,
.athens-nav-section--wheel-cloud .athens-nav-section__decor {
	right: clamp(8px, 4cqi, 15px);
	bottom: clamp(8px, 4cqi, 15px);
	left: auto;
	width: clamp(40px, 17cqi, 56px);
	transform: none;
	opacity: 0.48;
}

/* ============================================================
   移动端（≤ 809.98px）：Hero 文字/搜索 + 原有移动端规则
   ============================================================ */
@media (max-width: 809.98px) {
	/* Hero only — do not restyle other tiles here */
	.athens-tile[data-aspect-lock='2/1'].athens-cell--hero .athens-visual--hero .athens-hero-copy {
		justify-content: center;
		align-items: flex-start;
		padding: clamp(12px, 3.5vw, 18px) clamp(14px, 4vw, 20px);
	}

	.athens-tile.athens-cell--hero .athens-visual--hero {
		border-bottom-left-radius: clamp(6px, 1.2vw, 10px);
		border-bottom-right-radius: clamp(6px, 1.2vw, 10px);
	}

	.athens-hero-copy__eyebrow {
		margin: 0 0 2px;
		color: rgba(122, 32, 32, 0.62);
		font-size: 10px;
		font-weight: 600;
		letter-spacing: 0.14em;
		line-height: 1.1;
	}

	.athens-hero-copy__title {
		display: flex;
		flex-direction: column;
		gap: 0;
		margin: 0 0 2px;
		max-width: none;
		color: #7a2020;
		font-size: 15px;
		font-weight: 700;
		line-height: 1;
		letter-spacing: 0.02em;
		background: none;
		box-shadow: none;
		-webkit-text-fill-color: #7a2020;
	}

	.athens-hero-copy__title-line {
		display: block;
		margin: 0;
		padding: 0;
		border: 0;
		background: none !important;
		box-shadow: none !important;
		color: #7a2020 !important;
		-webkit-text-fill-color: #7a2020 !important;
		line-height: 1;
		white-space: nowrap;
	}

	.athens-hero-copy__title-line + .athens-hero-copy__title-line {
		margin-top: -0.32em;
	}

	.athens-hero-copy__subtitle {
		margin: 0 0 8px;
		color: rgba(122, 32, 32, 0.55);
		font-size: 10px;
		font-weight: 500;
		letter-spacing: 0.04em;
		line-height: 1.15;
		max-width: none;
	}

	.athens-hero-copy__search {
		display: block;
		flex: 0 0 auto;
		align-self: flex-start;
		width: 11.5em;
		max-width: 72%;
		margin: 0;
	}

	.athens-hero-copy__search-input,
	.athens-hero-copy__search .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type="search"].dgwt-wcas-search-input,
	.athens-hero-copy__search .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type="text"].dgwt-wcas-search-input,
	.athens-hero-copy__search .dgwt-wcas-style-pirx.dgwt-wcas-style-pirx-compact .dgwt-wcas-sf-wrapp input[type="search"].dgwt-wcas-search-input,
	.athens-hero-copy__search .dgwt-wcas-style-pirx.dgwt-wcas-style-pirx-compact .dgwt-wcas-sf-wrapp input[type="text"].dgwt-wcas-search-input {
		min-height: 30px !important;
		height: 30px !important;
		padding: 4px 10px 4px 32px !important;
		padding-top: 4px !important;
		padding-right: 10px !important;
		padding-bottom: 4px !important;
		padding-left: 32px !important;
		font-size: 12px !important;
		line-height: 1.2 !important;
	}

	.athens-hero-copy__search .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit,
	.athens-hero-copy__search .dgwt-wcas-style-pirx.dgwt-wcas-style-pirx-compact .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit {
		left: 8px !important;
		right: auto !important;
		top: 50% !important;
		width: 14px !important;
		height: 14px !important;
		transform: translateY(-50%) !important;
	}

	.athens-hero-copy__search .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit svg,
	.athens-hero-copy__search .dgwt-wcas-style-pirx.dgwt-wcas-style-pirx-compact .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit svg {
		width: 13px !important;
		height: 13px !important;
	}

	.athens-hero-copy__note {
		display: none;
	}

	/* 手机四宫格导航（4×1/1） */
	.athens-nav-tile:not(.athens-nav-tile--quad) .athens-nav-tile__sections {
		grid-template-columns: minmax(0, 1fr);
	}

	.athens-nav-tile {
		--nav-pad: clamp(8px, 1.6cqw, 12px);
		--nav-gap: clamp(7px, 1.6cqw, 11px);
	}

	.athens-nav-section {
		padding: 6px 8px 5px;
	}

	.athens-nav-section__title {
		font-size: 11px;
		letter-spacing: 0.06em;
		line-height: 1.15;
	}

	.athens-nav-section__head {
		padding-bottom: 4px;
		margin-bottom: 2px;
	}

	.athens-nav-section__list {
		/* Share cell height equally — fits 3 or 4 items without clipping */
		justify-content: stretch;
		gap: 0;
		min-height: 0;
		padding-bottom: 0;
		font-family: "Noto Sans SC", "PingFang SC", sans-serif;
		font-size: 11px;
		font-weight: 400;
		line-height: 1.15;
		overflow: hidden;
	}

	.athens-nav-section__list > li {
		display: flex;
		flex: 1 1 0;
		align-items: center;
		min-height: 0;
	}

	/* 变宽后取消省略号截断，长菜单项允许自然换行、完整呈现 */
	.athens-nav-section__text {
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
	}

	.athens-nav-section__link {
		align-items: center;
		gap: 5px;
		width: 100%;
		min-height: 0;
		height: 100%;
		padding: 0;
	}

	.athens-nav-section__icon {
		width: 13px;
		height: 13px;
	}

	.athens-nav-section__decor,
	.athens-nav-section--sunburst .athens-nav-section__decor,
	.athens-nav-section--wheel-cloud .athens-nav-section__decor {
		right: 4px;
		bottom: 4px;
		width: clamp(28px, 16cqi, 36px);
		opacity: 0.32;
	}

	/* 四宫格：缩小字号/图标/内边距，避免副文案被裁切 */
	.athens-quick-card {
		min-height: 0;
		--qc-pad-x: 4px;
		--qc-pad-y: 4px;
		--qc-pad-b: 5px;
		--qc-icon: clamp(18px, 28%, 26px);
		--qc-icon-gap: 2px;
		--qc-title: clamp(10px, 3.8cqmin, 12px);
		--qc-sub: clamp(8px, 2.8cqmin, 10px);
		--qc-text-gap: 1px;
		--qc-arrow: 10px;
		gap: 2px;
		justify-content: center;
	}

	.athens-quick-card__title {
		line-height: 1.15;
		letter-spacing: 0.02em;
		-webkit-line-clamp: 1;
		line-clamp: 1;
	}

	.athens-quick-card__subtitle {
		display: none;
	}

	.athens-quick-card__arrow {
		display: none;
	}

	.athens-relief-btn {
		min-height: 44px;
		padding: 10px 18px;
		font-size: 14px;
	}

	a.athens-legend__row--link {
		min-height: 48px;
	}

	.athens-footer {
		padding: 14px 12px calc(12px + env(safe-area-inset-bottom, 0px));
	}

	.athens-footer__cols {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 10px 8px;
	}

	.athens-footer__col-title {
		margin: 0 0 6px;
		font-size: 11px;
	}

	.athens-footer__list a {
		display: block;
		align-items: unset;
		min-height: 0;
		font-size: 11px;
	}

	.athens-footer__copy {
		margin-top: 12px;
		padding-top: 10px;
		font-size: 10px;
		line-height: 1.4;
	}

	.athens-relief-band {
		gap: 22px;
		padding: 14px 12px 0;
		opacity: 0.85;
	}
}

/* ============================================================
   桌面端（≥ 810px）：导航卡内容饱满化，填满 1×1 方格、消除留白
   ============================================================ */
@media (min-width: 810px) {
	.athens-nav-section {
		padding: clamp(16px, 2.6cqi, 24px) clamp(16px, 2.8cqi, 24px) clamp(16px, 2.8cqi, 24px);
	}

	.athens-nav-section__head {
		padding-bottom: clamp(9px, 1.5cqi, 13px);
		margin-bottom: clamp(6px, 1.2cqi, 10px);
	}

	.athens-nav-section__title {
		font-size: clamp(15px, 9cqi, 20px);
		letter-spacing: 0.1em;
	}

	/* 列表字号放大、行距舒展（均匀铺开规则见上方共享层） */
	.athens-nav-section__list {
		font-size: clamp(13px, 5.8cqi, 17px);
		line-height: 1.5;
	}

	.athens-nav-section__link {
		padding: clamp(7px, 1.7cqi, 13px) 2px;
		gap: clamp(8px, 2.2cqi, 13px);
	}

	.athens-nav-section__icon {
		width: clamp(18px, 11cqi, 24px);
		height: clamp(18px, 11cqi, 24px);
	}

	.athens-nav-section__emoji {
		font-size: clamp(13px, 8cqi, 18px);
	}
}

/* ---------- 课程轮播（2×1 格，数据来自 lms_course） ---------- */
.athens-cell--course-carousel {
	display: block;
	padding: 0;
	overflow: hidden;
	background: var(--athens-panel);
}

.athens-course-carousel {
	display: flex;
	width: 100%;
	height: 100%;
	flex-direction: column;
	gap: clamp(6px, 1cqh, 10px);
	padding: 0;
	box-sizing: border-box;
}

.athens-course-carousel__foot {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	min-height: 14px;
}

.athens-course-carousel__more {
	flex-shrink: 0;
	color: rgba(79, 54, 30, 0.62);
	font-size: 12px;
	text-decoration: none;
	transition: color 0.2s ease;
}

.athens-course-carousel__more:hover {
	color: var(--athens-gold);
}

.athens-course-carousel__empty {
	margin: auto;
	padding: 0 8px;
	max-width: 22em;
	color: rgba(79, 54, 30, 0.72);
	font-size: clamp(15px, 1.35vw, 18px);
	line-height: 1.55;
	text-align: center;
}

.athens-course-carousel__empty a {
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

.athens-course-carousel__body {
	position: relative;
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	min-height: 0;
}

.athens-course-carousel__viewport-shell {
	position: relative;
	flex: 1 1 auto;
	min-width: 0;
	min-height: 0;
	height: 100%;
}

.athens-course-carousel__viewport {
	container-type: inline-size;
	container-name: athens-course-carousel-viewport;
	overflow-x: auto;
	overflow-y: hidden;
	height: 100%;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.athens-course-carousel__viewport::-webkit-scrollbar {
	display: none;
}

.athens-course-carousel__track {
	display: flex;
	gap: clamp(8px, 1.2vw, 12px);
	height: 100%;
	min-height: 0;
}

.athens-course-carousel__slide {
	flex: 0 0 100cqi;
	height: 100%;
	min-height: 0;
	scroll-snap-align: start;
	scroll-snap-stop: always;
}

.athens-course-carousel__card {
	display: block;
	height: 100%;
	overflow: hidden;
	border-radius: clamp(8px, 1vw, 12px);
	background: #e8e0d4;
	box-shadow: 0 2px 10px rgba(83, 58, 33, 0.06);
	color: inherit;
	text-decoration: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.athens-course-carousel__card:hover {
	border-color: rgba(156, 106, 44, 0.32);
	box-shadow: 0 6px 18px rgba(83, 58, 33, 0.12);
	transform: translateY(-1px);
}

.athens-course-carousel__media {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 100%;
	min-height: 0;
	background: #f9f7ee;
}

.athens-course-carousel__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.athens-course-carousel__card:hover .athens-course-carousel__media img {
	transform: scale(1.04);
}

.athens-course-carousel__placeholder {
	display: grid;
	width: 100%;
	height: 100%;
	place-items: center;
	font-size: clamp(28px, 5vw, 40px);
	opacity: 0.45;
}

.athens-course-carousel__badge {
	position: absolute;
	top: 8px;
	z-index: 2;
	max-width: calc(50% - 12px);
	padding: 6px 11px;
	border-radius: 999px;
	background: rgba(255, 252, 247, 0.94);
	backdrop-filter: blur(6px);
	font-family: "Noto Sans SC", "PingFang SC", sans-serif;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.3;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	box-shadow: 0 1px 6px rgba(83, 58, 33, 0.12);
}

.athens-course-carousel__badge--category {
	left: 8px;
	color: var(--athens-gold);
}

.athens-course-carousel__badge--lessons {
	right: 8px;
	color: rgba(79, 54, 30, 0.82);
}

.athens-course-carousel__copy {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	display: flex;
	align-items: flex-end;
	min-height: 0;
	padding: 36px 12px 11px;
	background: linear-gradient(
		180deg,
		rgba(48, 32, 18, 0) 0%,
		rgba(48, 32, 18, 0.42) 38%,
		rgba(38, 25, 12, 0.78) 100%
	);
	pointer-events: none;
	transition: background 0.25s ease;
}

.athens-course-carousel__card:hover .athens-course-carousel__copy {
	background: linear-gradient(
		180deg,
		rgba(48, 32, 18, 0) 0%,
		rgba(48, 32, 18, 0.5) 32%,
		rgba(38, 25, 12, 0.86) 100%
	);
}

.athens-course-carousel__name {
	display: -webkit-box;
	overflow: hidden;
	margin: 0;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	color: #fffaf3;
	font-family: "Noto Sans SC", "PingFang SC", "Helvetica Neue", sans-serif;
	font-size: clamp(13px, 1.35vw, 15px);
	font-weight: 500;
	line-height: 1.38;
	letter-spacing: 0.02em;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.28);
}

.athens-course-carousel__nav {
	position: absolute;
	top: 50%;
	z-index: 4;
	display: inline-grid;
	box-sizing: border-box;
	width: 34px;
	height: 34px;
	min-width: 34px;
	max-width: 34px;
	min-height: 34px;
	max-height: 34px;
	padding: 0;
	aspect-ratio: 1 / 1;
	border: 0;
	border-radius: 50%;
	background: rgba(47, 34, 22, 0.48);
	color: #fff;
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	place-items: center;
	transform: translateY(-50%);
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
	transition: background 0.2s ease, opacity 0.2s ease;
}

.athens-course-carousel__nav--prev {
	left: clamp(6px, 1.2vw, 10px);
}

.athens-course-carousel__nav--next {
	right: clamp(6px, 1.2vw, 10px);
}

.athens-course-carousel__nav:hover:not(:disabled) {
	background: rgba(47, 34, 22, 0.62);
	color: #fff;
}

.athens-course-carousel__nav:disabled {
	opacity: 0.35;
	cursor: default;
}

.athens-course-carousel__dots {
	display: flex;
	flex: 1 1 auto;
	align-items: center;
	justify-content: flex-start;
	gap: 6px;
	min-height: 14px;
	min-width: 0;
}

.athens-course-carousel__dot {
	width: 6px;
	height: 6px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(156, 106, 44, 0.28);
	cursor: pointer;
	transform-origin: left center;
	transition: transform 0.2s var(--athens-ease, ease), background 0.2s var(--athens-ease, ease);
}

.athens-course-carousel__dot.is-active {
	border-radius: 3px;
	background: var(--athens-gold);
	transform: scaleX(3);
}

@media (min-width: 810px) {
	.athens-course-carousel__name {
		font-size: clamp(17px, 2vw, 24px);
		font-weight: 600;
		line-height: 1.34;
	}
}

@media (max-width: 809.98px) {
	.athens-course-carousel {
		padding: 8px 8px 6px;
	}

	.athens-course-carousel__nav {
		width: 30px;
		height: 30px;
		min-width: 30px;
		max-width: 30px;
		min-height: 30px;
		max-height: 30px;
		font-size: 18px;
	}

	.athens-course-carousel__nav--prev {
		left: 5px;
	}

	.athens-course-carousel__nav--next {
		right: 5px;
	}

	.athens-course-carousel__more {
		font-size: 11px;
	}

	.athens-course-carousel__name {
		font-size: 13px;
		line-height: 1.3;
	}

	.athens-course-carousel__meta,
	.athens-course-carousel__cat,
	.athens-course-carousel__lessons {
		font-size: 10px;
		line-height: 1.25;
	}
}

/* ============================================================
   Polish pass — focus / press / accent lock / type rhythm
   ============================================================ */

.athens a:focus-visible,
.athens button:focus-visible,
.athens input:focus-visible,
.athens [tabindex]:focus-visible {
	outline: 2px solid var(--athens-focus);
	outline-offset: 3px;
}

.athens-hero-copy__search:focus-within {
	border-color: rgba(236, 192, 121, 0.95);
	box-shadow:
		0 0 0 3px rgba(236, 192, 121, 0.28),
		0 8px 22px rgba(60, 12, 9, 0.2);
}

.athens-quick-card:active {
	transform: scale(0.98);
}

.athens-relief-btn {
	transition:
		background 0.22s var(--athens-ease),
		color 0.22s var(--athens-ease),
		border-color 0.22s var(--athens-ease),
		transform 0.18s var(--athens-ease),
		box-shadow 0.22s var(--athens-ease);
}

.athens-relief-btn:active {
	transform: translateY(1px) scale(0.98);
}

.athens-nav-section__link {
	border-radius: 2px;
	transition: color 0.18s var(--athens-ease), opacity 0.18s var(--athens-ease);
}

.athens-nav-section__link:active {
	opacity: 0.72;
}

.athens-footer__list a:focus-visible {
	outline-offset: 2px;
	border-radius: 2px;
}

.athens-block__meta strong,
.athens-block__meta h3 {
	color: var(--athens-gold);
	text-transform: none;
	letter-spacing: 0.02em;
}

.athens-block__meta strong {
	font-family: "PingFang SC", "Noto Sans SC", sans-serif;
	font-size: 12px;
	font-weight: 600;
	opacity: 0.86;
}

.athens-day__head h2 {
	color: var(--athens-gold);
	font-family: "Songti SC", "STSong", "Noto Serif SC", serif;
	font-size: clamp(20px, 2.4vw, 26px);
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: none;
	text-wrap: balance;
}

.athens-day__head p {
	color: rgba(79, 54, 30, 0.62);
	font-family: "PingFang SC", "Noto Sans SC", sans-serif;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.04em;
	text-transform: none;
}

.athens-legend__row {
	text-transform: none;
	font-weight: 500;
	letter-spacing: 0.02em;
}

.athens-legend__row:active {
	transform: translateY(1px);
}

.athens-faq-list li,
.athens-faq-list--horizontal li,
.athens-faq-list--compact li {
	font-weight: 500;
	color: rgba(79, 54, 30, 0.88);
}

.athens-tile__scroll {
	scrollbar-width: thin;
	scrollbar-color: rgba(156, 106, 44, 0.35) transparent;
}

.athens-panel__title,
.athens-footer__col-title {
	text-wrap: balance;
}

.athens-footer__list a {
	color: rgba(79, 54, 30, 0.78);
}

.athens-footer__copy {
	color: rgba(79, 54, 30, 0.58);
}

.athens-quick-card {
	transition: background 0.2s var(--athens-ease), color 0.2s var(--athens-ease);
}

.athens-quick-card--red:active {
	transform: scale(0.98);
}

.athens-course-carousel__card:active,
.athens-schedule__card:active {
	transform: scale(0.99);
}

@media (prefers-reduced-motion: reduce) {
	.athens *,
	.athens *::before,
	.athens *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}

	.athens-quick-card:active,
	.athens-relief-btn:active,
	.athens-quick-card--red:active,
	.athens-course-carousel__card:active,
	.athens-schedule__card:active {
		transform: none;
	}
}

@media (prefers-reduced-transparency: reduce) {
	.athens-hero-copy__search,
	.athens-relief-btn,
	.athens-cell--visual .athens-visual:not(.athens-visual--relief):not(.athens-visual--hero) span {
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
	}

	.athens-hero-copy__search {
		background: #fffaf3;
	}

	.athens-relief-btn {
		background: #fffaf3;
	}
}

/* ============================================================
   Critique Top3 — harden links + distill floors + typeset mins
   ============================================================ */

.athens-nav-section__title {
	font-size: clamp(13px, 9cqi, 17px);
}

.athens-nav-section__list {
	font-size: clamp(13px, 6.4cqi, 18px);
	line-height: 1.7;
}

.athens-quick-card {
	--qc-title: clamp(14px, 5.2cqmin, 18px);
	--qc-sub: clamp(12px, 4cqmin, 14px);
}

@media (min-width: 810px) {
	.athens-quick-card {
		--qc-title: clamp(15px, 5.8cqmin, 20px);
		--qc-sub: clamp(13px, 4.2cqmin, 15px);
	}
}

.athens-legend {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

a.athens-legend__row--link {
	text-decoration: none;
	color: inherit;
	cursor: pointer;
}

a.athens-legend__row--link:hover {
	border-color: rgba(156, 106, 44, 0.3);
	box-shadow: 0 2px 8px rgba(83, 58, 33, 0.08);
}

.athens-legend__row:not(.athens-legend__row--link) {
	cursor: default;
}

.athens-legend__row:not(.athens-legend__row--link):hover {
	border-color: rgba(156, 106, 44, 0.1);
	box-shadow: none;
	transform: none;
}

.athens-faq-list a {
	color: inherit;
	text-decoration: none;
	display: block;
}

.athens-faq-list a:hover {
	color: var(--athens-gold);
}

.athens-faq-list--horizontal li:has(a):hover {
	border-color: rgba(156, 106, 44, 0.28);
}

.athens-cell--day {
	display: none;
}

.athens-faq-list li,
.athens-faq-list--horizontal li,
.athens-faq-list--compact li {
	font-size: clamp(13px, 1.2vw, 15px);
	font-weight: 500;
}

.athens-legend__row {
	font-size: clamp(13px, 1.2vw, 15px);
	text-transform: none;
}

/* ============================================================
   Site shell header (Max Mega Menu) above Athens grid
   ============================================================ */

body.athens-grid-body .ast-desktop-header,
body.athens-grid-body .ast-mobile-header,
body.athens-grid-body #mega-menu-wrap-primary {
	position: relative;
	z-index: 40;
}

body.athens-grid-body .athens {
	position: relative;
	z-index: 1;
}

/* Avoid Astra content max-width clipping the full-bleed unit grid */
body.athens-grid-body #content,
body.athens-grid-body #primary,
body.athens-grid-body .site-content,
body.athens-grid-body .ast-container {
	max-width: none;
	width: 100%;
	padding-left: 0;
	padding-right: 0;
	margin: 0;
}

body.athens-grid-body #content > .ast-container,
body.athens-grid-body .site-content > .ast-container {
	max-width: none;
	padding: 0;
}

/* ============================================================
   Desktop typeset floor (PC legibility)
   ============================================================ */

@media (min-width: 810px) {
	/* Beat Astra `.entry-content h1` / `h1 { font-size: 2em }` so gatha stays hero-scale. */
	body.athens-grid-body .athens .athens-cell--hero .athens-hero-copy {
		align-items: flex-start;
	}

	body.athens-grid-body .athens .athens-cell--hero .athens-hero-copy__eyebrow,
	body.athens-grid-body .athens .athens-cell--hero h1.athens-hero-copy__title,
	body.athens-grid-body .athens .athens-cell--hero .athens-hero-copy__subtitle,
	body.athens-grid-body .athens .athens-cell--hero .athens-hero-copy__search {
		margin-left: 0 !important;
		padding-left: 0 !important;
		align-self: flex-start;
		text-align: left;
	}

	body.athens-grid-body .athens .athens-cell--hero .athens-hero-copy__eyebrow {
		margin: 0 0 14px;
		font-family: "PingFang SC", "Hiragino Sans GB", "Noto Sans SC", "Microsoft YaHei", sans-serif !important;
		font-size: clamp(24px, 1.9vw, 30px) !important;
		font-weight: 500;
		letter-spacing: 0.06em;
		line-height: 1.2;
		color: rgba(122, 64, 48, 0.962) !important;
		text-shadow: 0 1px 0 rgba(255, 248, 236, 0.35);
		animation: athensHeroReveal 0.85s var(--athens-ease) both;
	}

	body.athens-grid-body .athens .athens-cell--hero h1.athens-hero-copy__title {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
		margin: 0 0 12px;
		font-family: "Kaiti SC", "STKaiti", "KaiTi", "Noto Serif SC", "Songti SC", serif !important;
		font-size: clamp(32px, 2.85vw, 44px) !important;
		font-weight: 700 !important;
		line-height: 1.16 !important;
		letter-spacing: 0.04em;
		color: #7a2020 !important;
		-webkit-text-fill-color: #7a2020 !important;
		background: none !important;
		box-shadow: none !important;
		text-shadow:
			0 1px 0 rgba(255, 248, 236, 0.9),
			0 -1px 0 rgba(92, 24, 24, 0.14),
			1px 2px 0 rgba(156, 106, 44, 0.12),
			0 3px 16px rgba(122, 32, 32, 0.16),
			0 16px 38px rgba(156, 106, 44, 0.24);
		animation:
			athensHeroReveal 0.95s var(--athens-ease) 0.12s both,
			athensHeroInk 5.5s ease-in-out 1.1s infinite;
	}

	body.athens-grid-body .athens .athens-cell--hero h1.athens-hero-copy__title .athens-hero-copy__title-line {
		display: block;
		margin: 0;
		padding: 0;
		font-size: inherit !important;
		font-weight: inherit !important;
		line-height: inherit !important;
		letter-spacing: inherit !important;
		color: inherit !important;
		-webkit-text-fill-color: inherit !important;
		background: none !important;
		box-shadow: none !important;
		white-space: nowrap;
		text-shadow: inherit;
	}

	body.athens-grid-body .athens .athens-cell--hero h1.athens-hero-copy__title .athens-hero-copy__title-line + .athens-hero-copy__title-line {
		margin-top: 0.08em;
		animation: athensHeroReveal 0.95s var(--athens-ease) 0.22s both;
	}

	body.athens-grid-body .athens .athens-cell--hero .athens-hero-copy__subtitle {
		margin: 0 0 28px;
		font-family: "Noto Serif SC", "Songti SC", "STSong", serif !important;
		font-size: clamp(16px, 1.25vw, 19px) !important;
		font-weight: 500;
		letter-spacing: 0.04em;
		line-height: 1.35;
		color: rgba(122, 32, 32, 0.68);
		text-shadow:
			0 1px 0 rgba(255, 248, 236, 0.55),
			0 2px 12px rgba(156, 106, 44, 0.14);
		animation: athensHeroReveal 0.9s var(--athens-ease) 0.28s both;
	}

	body.athens-grid-body .athens .athens-cell--hero .athens-hero-copy__search {
		animation: athensHeroReveal 0.9s var(--athens-ease) 0.38s both;
	}

	.athens-relief-btn {
		min-height: 42px;
		padding: 10px 20px;
		font-size: 15px;
	}

	.athens-schedule__empty,
	.athens-today__empty,
	.athens-course-carousel__empty,
	.athens-today-card__fallback {
		font-size: clamp(16px, 1.2vw, 18px);
	}

	.athens-course-carousel__more {
		font-size: 13px;
	}

	.athens-today-card .today-card-haircut-days {
		font-size: inherit;
	}

	.athens-today-card .today-card-weekday {
		font-size: 15px;
		color: rgba(79, 54, 30, 0.72);
	}

	.athens-today-card .today-card-label {
		font-size: 15px;
		padding: 9px 12px;
	}

	.athens-today-card .today-card-label-text {
		font-size: 15px;
	}

	.athens-today-card .today-card-date {
		font-size: 18px;
	}

	.athens-today-card .today-card-tag.month-name {
		font-size: 18px;
	}

	.athens-today-card .today-card-haircut-days-title {
		font-size: 14px;
		color: rgba(79, 54, 30, 0.68);
	}

	.athens-today-card .haircut-day-name,
	.athens-today-card .haircut-day-desc {
		font-size: 16px;
	}

	.athens-today-card .today-card-event-item {
		font-size: 16px;
	}

	.athens-today-card .today-card-haircut-item {
		font-size: 14px;
	}

	.athens-canvas__text,
	.athens-canvas__link {
		font-size: 14px;
	}

	.athens-block__meta strong {
		font-size: 13px;
	}
}

/* ============================================================
   Bolder pass — amplify Athens peaks (nav / quick / titles / chrome)
   Keep packing, relief craft, and weibo quote untouched.
   ============================================================ */

.athens-tile {
	box-shadow: none;
}

.athens-tile.athens-cell--hero {
	box-shadow: none;
}

.athens-panel__title {
	font-size: clamp(20px, 2.6vw, 34px);
	letter-spacing: 0.05em;
}

.athens-legend__row {
	font-size: clamp(14px, 1.25vw, 16px);
	min-height: 48px;
}

.athens-faq-list li,
.athens-faq-list--horizontal li,
.athens-faq-list--compact li {
	font-size: clamp(14px, 1.25vw, 16px);
}

@media (min-width: 810px) {
	.athens-nav-section__title {
		font-size: clamp(15px, 8cqi, 20px);
	}

	.athens-nav-section__list {
		font-size: clamp(14px, 6cqi, 18px);
		line-height: 1.75;
	}

	.athens-schedule__name {
		font-size: clamp(14px, 11cqi, 17px);
	}

	.athens-schedule__time {
		font-size: clamp(15px, 1.2vw, 18px);
	}

	.athens-today__more,
	.athens-course-carousel__more {
		font-size: 14px;
		font-weight: 600;
	}

	.athens-footer__col-title {
		font-size: 17px;
	}

	.athens-footer__list a {
		font-size: 15px;
	}

	.athens-footer__copy {
		font-size: 14px;
		color: rgba(79, 54, 30, 0.68);
	}

	.athens-footer__qr-label {
		font-size: 17px;
		color: var(--athens-gold);
	}

	.athens-course-carousel__badge {
		font-size: 13px;
	}

	.athens-faqs-banner__intro {
		font-size: 16px;
	}

	.athens-relief-btn {
		min-height: 44px;
		font-size: 16px;
		padding: 11px 22px;
	}

	.athens-quick-card__icon {
		opacity: 0.9;
	}

	.athens-block__meta strong {
		font-size: 13px;
		letter-spacing: 0.04em;
	}
}

/* ============================================================
   Substance widgets — live shelves (warehouse / ebook / course / sun)
   ============================================================ */

.athens-cell--warehouse-shelf,
.athens-cell--ebook-shelf,
.athens-cell--course-picks,
.athens-cell--leaderboard,
.athens-cell--sun-clock,
.athens-cell--temples {
	display: block;
	padding: 0;
	overflow: hidden;
	background: var(--athens-panel);
}

.athens-substance {
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	min-height: 0;
	padding: clamp(12px, 1.6vw, 18px);
	font-family: "Noto Sans SC", "PingFang SC", sans-serif;
}

.athens-substance__head {
	display: flex;
	flex-shrink: 0;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: clamp(10px, 1.4vw, 14px);
}

.athens-substance__title {
	margin: 0;
	color: var(--athens-gold);
	font-family: "Noto Serif SC", "Songti SC", serif;
	font-size: clamp(16px, 1.5vw, 20px);
	font-weight: 700;
	letter-spacing: 0.04em;
}

.athens-substance__more {
	flex-shrink: 0;
	color: rgba(79, 54, 30, 0.62);
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
}

.athens-substance__more:hover {
	color: var(--athens-gold);
}

.athens-substance__empty {
	margin: auto 0;
	color: rgba(79, 54, 30, 0.62);
	font-size: clamp(15px, 1.3vw, 17px);
	text-align: center;
}

/* --- Product shelf (1×2): dense cover grid, fills cell --- */

.athens-warehouse-shelf {
	padding: clamp(14px, 1.8vw, 20px);
	padding-bottom: clamp(12px, 1.6vw, 16px);
}

.athens-warehouse-shelf .athens-substance__head {
	margin-bottom: clamp(12px, 1.6vw, 16px);
}

.athens-warehouse-shelf__grid {
	display: grid;
	flex: 1 1 auto;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	grid-template-rows: repeat(4, minmax(0, 1fr));
	align-content: stretch;
	gap: clamp(10px, 1.35vw, 14px);
	height: 100%;
	min-height: 0;
	margin: 0;
	padding: 0;
	list-style: none;
	overflow: hidden;
}

.athens-warehouse-shelf__grid > li {
	display: grid;
	place-items: center;
	min-width: 0;
	min-height: 0;
	container-type: size;
}

.athens-warehouse-shelf__tile {
	position: relative;
	/* Inscribe a square in the grid cell — avoids tall overlap when rows are short. */
	width: min(100cqw, 100cqh);
	height: auto;
	aspect-ratio: 1 / 1;
	max-width: 100%;
	max-height: 100%;
	min-height: 0;
	overflow: visible;
	border-radius: 12px;
	isolation: isolate;
	background: transparent;
	box-shadow: none;
	color: inherit;
	text-decoration: none;
	transition: transform 0.22s var(--athens-ease);
}

.athens-warehouse-shelf__tile:hover {
	transform: translateY(-2px);
}

.athens-warehouse-shelf__media {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	border: 1px solid rgba(83, 58, 33, 0.08);
	border-radius: 12px;
	isolation: isolate;
	/* Blur filter paints outside the box; force round clip. */
	clip-path: inset(0 round 12px);
	background: linear-gradient(165deg, #fafaf9, #f9f7ee, #f9f7ee);
	box-shadow:
		inset 0 1px 2px rgba(255, 255, 255, 0.85),
		0 2px 8px rgba(83, 58, 33, 0.06);
	transition: box-shadow 0.25s ease;
}

.athens-warehouse-shelf__tile:hover .athens-warehouse-shelf__media {
	box-shadow:
		inset 0 1px 2px rgba(255, 255, 255, 0.9),
		0 6px 18px rgba(83, 58, 33, 0.12);
}

/* Cover-derived ambient background — same idea as ebook shelf */
.athens-warehouse-shelf__media::before {
	content: "";
	position: absolute;
	inset: -12%;
	z-index: 0;
	border-radius: inherit;
	background-image: var(--cover-bg, none);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	opacity: 0.42;
	filter: blur(80px);
	transform: translateZ(0);
	pointer-events: none;
}

.athens-warehouse-shelf__media img {
	position: relative;
	z-index: 1;
	display: block;
	width: auto;
	height: auto;
	max-width: 78%;
	max-height: 72%;
	object-fit: contain;
	object-position: center;
	border-radius: 6px;
	box-shadow: 0 3px 12px rgba(40, 24, 12, 0.16);
}

.athens-warehouse-shelf__media-fallback {
	position: relative;
	z-index: 1;
	display: block;
	width: 58%;
	aspect-ratio: 1 / 1;
	border-radius: 6px;
	background: linear-gradient(160deg, #f7f2e8, #e0d4bf);
	box-shadow: 0 3px 12px rgba(40, 24, 12, 0.12);
}

.athens-warehouse-shelf__badges {
	position: absolute;
	top: 7px;
	left: 7px;
	z-index: 3;
	display: flex;
	flex-flow: row wrap;
	align-items: flex-start;
	align-content: flex-start;
	gap: 4px;
	max-width: calc(100% - 14px);
	pointer-events: none;
}

.athens-warehouse-shelf__badge {
	position: relative !important;
	top: auto !important;
	right: auto !important;
	bottom: auto !important;
	left: auto !important;
	display: inline-flex;
	flex: 0 1 auto;
	max-width: 100%;
	padding: 3px 8px;
	overflow: hidden;
	border-radius: 999px;
	background: rgba(255, 252, 247, 0.94);
	color: var(--athens-gold);
	font-size: 10px;
	font-weight: 700;
	line-height: 1.3;
	white-space: nowrap;
	text-overflow: ellipsis;
	box-shadow: 0 1px 4px rgba(83, 58, 33, 0.12);
}

.athens-warehouse-shelf__badge--category {
	color: rgba(79, 54, 30, 0.78);
}

.athens-warehouse-shelf__caption {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding: 18px 9px 8px;
	border-radius: 0 0 12px 12px;
	background: linear-gradient(180deg, transparent 0%, rgba(255, 252, 247, 0.92) 62%);
	color: var(--athens-ink);
	min-width: 0;
	pointer-events: none;
}

.athens-warehouse-shelf__name {
	overflow: hidden;
	color: var(--athens-ink);
	font-family: "Noto Serif SC", "Songti SC", serif;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.3;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.athens-warehouse-shelf__price {
	color: rgba(79, 54, 30, 0.62);
	font-size: 10px;
	font-weight: 500;
}

.athens-warehouse-shelf__price .woocommerce-Price-amount {
	color: inherit;
}

@media (max-width: 809.98px) {
	/* Compact 1×1: no title, no nested frame — product fills the cell. */
	.athens-cell--warehouse-shelf-compact,
	.athens-cell--warehouse-shelf-compact .athens-substance,
	.athens-warehouse-shelf--compact {
		padding: 0;
	}

	.athens-warehouse-shelf--compact .athens-substance__head {
		display: none;
	}

	.athens-warehouse-shelf--compact .athens-warehouse-shelf__grid {
		grid-template-columns: minmax(0, 1fr);
		grid-template-rows: minmax(0, 1fr);
		gap: 0;
		height: 100%;
	}

	.athens-warehouse-shelf--compact .athens-warehouse-shelf__grid > li {
		height: 100%;
	}

	.athens-warehouse-shelf--compact .athens-warehouse-shelf__grid > li:nth-child(n + 2) {
		display: none;
	}

	.athens-warehouse-shelf--compact .athens-warehouse-shelf__tile {
		width: 100%;
		height: 100%;
		max-width: none;
		max-height: none;
		aspect-ratio: auto;
		border-radius: 0;
	}

	.athens-warehouse-shelf--compact .athens-warehouse-shelf__media {
		inset: 0;
		border: 0;
		border-radius: 0;
		clip-path: none;
		background: transparent;
		box-shadow: none;
	}

	.athens-warehouse-shelf--compact .athens-warehouse-shelf__media::before {
		display: none;
	}

	.athens-warehouse-shelf--compact .athens-warehouse-shelf__badges,
	.athens-warehouse-shelf--compact .athens-warehouse-shelf__badge {
		display: none;
	}

	.athens-warehouse-shelf--compact .athens-warehouse-shelf__media img {
		max-width: 88%;
		max-height: 78%;
		border-radius: 8px;
		box-shadow: none;
	}

	.athens-warehouse-shelf--compact .athens-warehouse-shelf__caption {
		padding: 22px 10px 10px;
		border-radius: 0;
		background: linear-gradient(180deg, transparent 0%, rgba(250, 246, 238, 0.92) 58%);
	}

	.athens-warehouse-shelf--compact .athens-warehouse-shelf__name {
		font-size: 12px;
		font-weight: 600;
		line-height: 1.3;
		letter-spacing: 0;
		white-space: normal;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
		text-overflow: clip;
	}
}

/* --- Ebook shelf (2×1): library-style two-row grid --- */

.athens-ebook-shelf {
	padding-bottom: 10px;
}

.athens-ebook-shelf__grid {
	display: grid;
	flex: 1 1 auto;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	grid-template-rows: repeat(2, minmax(0, 1fr));
	gap: clamp(10px, 1.2vw, 14px);
	height: 100%;
	min-height: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.athens-ebook-shelf__grid > li {
	min-width: 0;
	min-height: 0;
	height: 100%;
}

.athens-ebook-shelf__card {
	display: flex;
	flex-direction: column;
	gap: 7px;
	height: 100%;
	min-height: 0;
	color: inherit;
	text-decoration: none;
	transition: transform 0.22s var(--athens-ease);
}

.athens-ebook-shelf__card:hover {
	transform: translateY(-2px);
}

.athens-ebook-shelf__thumb {
	position: relative;
	display: flex;
	flex: 1 1 auto;
	align-items: center;
	justify-content: center;
	min-height: 0;
	overflow: hidden;
	border: 1px solid rgba(83, 58, 33, 0.08);
	border-radius: 12px;
	background: linear-gradient(165deg, #fafaf9, #f9f7ee, #f9f7ee);
	box-shadow:
		inset 0 1px 2px rgba(255, 255, 255, 0.85),
		0 2px 8px rgba(83, 58, 33, 0.06);
	transition: box-shadow 0.25s ease;
}

.athens-ebook-shelf__card:hover .athens-ebook-shelf__thumb {
	box-shadow:
		inset 0 1px 2px rgba(255, 255, 255, 0.9),
		0 6px 18px rgba(83, 58, 33, 0.12);
}

/* Cover-derived ambient background — same idea as 电子图书馆 */
.athens-ebook-shelf__thumb::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background-image: var(--cover-bg, none);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 140%;
	opacity: 0.42;
	filter: blur(18px);
	pointer-events: none;
}

.athens-ebook-shelf__thumb img {
	position: relative;
	z-index: 1;
	display: block;
	width: auto;
	height: auto;
	max-width: 86%;
	max-height: 90%;
	object-fit: contain;
	object-position: center;
	border-radius: 6px;
	box-shadow: 0 3px 12px rgba(40, 24, 12, 0.16);
}

.athens-ebook-shelf__thumb-fallback {
	position: relative;
	z-index: 1;
	display: grid;
	place-items: center;
	width: 58%;
	aspect-ratio: 2 / 3;
	padding: 8px;
	border-radius: 6px;
	background: linear-gradient(160deg, #f7f2e8, #e0d4bf);
	color: var(--athens-gold);
	font-family: "Noto Serif SC", "Songti SC", serif;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.35;
	text-align: center;
	box-shadow: 0 3px 12px rgba(40, 24, 12, 0.12);
}

.athens-ebook-shelf__meta {
	display: flex;
	flex-shrink: 0;
	flex-direction: column;
	gap: 1px;
	min-width: 0;
	padding: 0 2px;
	text-align: center;
}

.athens-ebook-shelf__cat {
	overflow: hidden;
	color: rgba(79, 54, 30, 0.55);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.03em;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.athens-ebook-shelf__name {
	display: -webkit-box;
	overflow: hidden;
	color: var(--athens-ink);
	font-family: "Noto Serif SC", "Songti SC", serif;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.3;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

@media (max-width: 1280px) {
	.athens-ebook-shelf__grid {
		grid-template-columns: repeat(5, minmax(0, 1fr));
	}

	.athens-ebook-shelf__grid > li:nth-child(n + 11) {
		display: none;
	}
}

@media (max-width: 1100px) {
	.athens-ebook-shelf__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.athens-ebook-shelf__grid > li:nth-child(n + 9) {
		display: none;
	}
}

@media (max-width: 810px) {
	.athens-ebook-shelf__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		grid-template-rows: minmax(0, 1fr);
		gap: 10px 12px;
	}

	.athens-ebook-shelf__grid > li:nth-child(n + 4) {
		display: none;
	}

	.athens-ebook-shelf__card {
		gap: 6px;
		overflow: hidden;
	}

	.athens-ebook-shelf__thumb {
		flex: 1 1 auto;
		min-height: 0;
		border-radius: 10px;
	}

	.athens-ebook-shelf__thumb img {
		max-width: 82%;
		max-height: 90%;
	}

	.athens-ebook-shelf__meta {
		flex: 0 0 auto;
		gap: 0;
		padding: 0 2px;
		min-height: 1.35em;
	}

	.athens-ebook-shelf__cat {
		display: none;
	}

	.athens-ebook-shelf__name {
		font-size: 12px;
		line-height: 1.3;
		-webkit-line-clamp: 2;
	}
}

@media (max-width: 809.98px) {
	.athens-cell--ebook-shelf .athens-substance {
		padding: 10px;
	}

	.athens-cell--ebook-shelf .athens-substance__head {
		margin-bottom: 8px;
	}

	.athens-ebook-shelf {
		padding-bottom: 6px;
	}
}

/* --- Course picks (2×1) --- */

.athens-course-picks__grid {
	display: grid;
	flex: 1 1 auto;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	grid-template-rows: repeat(2, minmax(0, 1fr));
	gap: 10px;
	min-height: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.athens-course-picks__card {
	display: grid;
	grid-template-columns: 72px minmax(0, 1fr);
	gap: 10px;
	align-items: center;
	height: 100%;
	padding: 8px;
	border: 1px solid rgba(156, 106, 44, 0.12);
	border-radius: 10px;
	background: linear-gradient(180deg, #fbf9f4 0%, var(--athens-inner) 100%);
	color: inherit;
	text-decoration: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.athens-course-picks__card:hover {
	border-color: rgba(156, 106, 44, 0.32);
	box-shadow: 0 3px 12px rgba(83, 58, 33, 0.08);
}

.athens-course-picks__media {
	display: block;
	width: 72px;
	height: 72px;
	overflow: hidden;
	border-radius: 8px;
	background: #ebe6dc;
}

.athens-course-picks__media img,
.athens-course-picks__media-fallback {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.athens-course-picks__media-fallback {
	background: linear-gradient(145deg, #efe8dc, #d9cebc);
}

.athens-course-picks__body {
	display: flex;
	flex-direction: column;
	gap: 3px;
	min-width: 0;
}

.athens-course-picks__cat {
	color: var(--athens-gold);
	font-size: 11px;
	font-weight: 700;
}

.athens-course-picks__name {
	display: -webkit-box;
	overflow: hidden;
	color: var(--athens-ink);
	font-family: "Noto Serif SC", "Songti SC", serif;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.35;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.athens-course-picks__lessons {
	color: rgba(79, 54, 30, 0.58);
	font-size: 12px;
}

/* --- Leaderboard (2×1) — BIA cover cards --- */

.athens-leaderboard {
	padding-bottom: 8px;
}

.athens-leaderboard__list {
	display: grid;
	flex: 1 1 auto;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	grid-auto-rows: minmax(56px, 1fr);
	gap: 7px;
	min-height: 0;
	margin: 0;
	padding: 0;
	list-style: none;
	overflow: auto;
}

.athens-leaderboard__list > li {
	min-width: 0;
	min-height: 0;
}

.athens-leaderboard__row {
	position: relative;
	display: grid;
	grid-template-columns: 26px 42px minmax(0, 1fr) auto;
	gap: 8px;
	align-items: center;
	height: 100%;
	min-height: 56px;
	padding: 8px 10px;
	overflow: hidden;
	border: 1px solid rgba(156, 106, 44, 0.12);
	border-radius: 10px;
	background: linear-gradient(180deg, #fbf9f4 0%, var(--athens-inner) 100%);
	color: inherit;
	text-decoration: none;
	isolation: isolate;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

a.athens-leaderboard__row:hover {
	transform: translateY(-1px);
	box-shadow: 0 4px 14px rgba(83, 58, 33, 0.12);
}

.athens-leaderboard__media,
.athens-leaderboard__shade {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.athens-leaderboard__media {
	z-index: 0;
	background-color: #c9b89a;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.athens-leaderboard__shade {
	z-index: 1;
	background: linear-gradient(90deg, rgba(28, 16, 8, 0.72) 0%, rgba(28, 16, 8, 0.48) 55%, rgba(28, 16, 8, 0.62) 100%);
}

.athens-leaderboard__row > :not(.athens-leaderboard__media):not(.athens-leaderboard__shade) {
	position: relative;
	z-index: 2;
}

.athens-leaderboard__row.has-cover {
	border-color: transparent;
	color: #fff8ef;
}

.athens-leaderboard__row.is-self:not(.has-cover) {
	border-color: rgba(156, 106, 44, 0.36);
	background: linear-gradient(180deg, #fff8ef 0%, #f5ecdf 100%);
}

.athens-leaderboard__row.is-self.has-cover .athens-leaderboard__shade {
	background: linear-gradient(90deg, rgba(48, 28, 10, 0.78) 0%, rgba(96, 62, 22, 0.55) 100%);
	box-shadow: inset 0 0 0 1px rgba(255, 214, 150, 0.35);
}

.athens-leaderboard__rank {
	color: rgba(79, 54, 30, 0.45);
	font-family: "Noto Serif SC", "Songti SC", serif;
	font-size: 15px;
	font-weight: 700;
	text-align: center;
	text-shadow: none;
}

.athens-leaderboard__row.has-cover .athens-leaderboard__rank {
	color: #fff;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}

.athens-leaderboard__row.is-top-1 .athens-leaderboard__rank {
	color: #b8860b;
}

.athens-leaderboard__row.is-top-2 .athens-leaderboard__rank {
	color: #8a8478;
}

.athens-leaderboard__row.is-top-3 .athens-leaderboard__rank {
	color: #a67c52;
}

.athens-leaderboard__row.has-cover.is-top-1 .athens-leaderboard__rank,
.athens-leaderboard__row.has-cover.is-top-2 .athens-leaderboard__rank,
.athens-leaderboard__row.has-cover.is-top-3 .athens-leaderboard__rank {
	color: #ffe6a8;
}

.athens-leaderboard__avatar {
	display: block;
	width: 42px;
	height: 42px;
	overflow: hidden;
	border-radius: 50%;
	background: #ebe6dc;
	box-shadow:
		0 0 0 2px rgba(255, 255, 255, 0.55),
		0 2px 8px rgba(0, 0, 0, 0.18);
}

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

.athens-leaderboard__info {
	display: flex;
	flex-direction: column;
	gap: 1px;
	min-width: 0;
}

.athens-leaderboard__name {
	display: flex;
	align-items: center;
	gap: 5px;
	overflow: hidden;
	color: var(--athens-ink);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.3;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.athens-leaderboard__row.has-cover .athens-leaderboard__name {
	color: #fff;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}

.athens-leaderboard__you {
	flex-shrink: 0;
	padding: 0 5px;
	border-radius: 999px;
	background: rgba(156, 106, 44, 0.14);
	color: var(--athens-gold);
	font-size: 10px;
	font-weight: 700;
	line-height: 1.5;
}

.athens-leaderboard__row.has-cover .athens-leaderboard__you {
	background: rgba(255, 248, 239, 0.22);
	color: #fff8ef;
}

.athens-leaderboard__meta {
	overflow: hidden;
	color: rgba(79, 54, 30, 0.55);
	font-size: 11px;
	font-weight: 500;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.athens-leaderboard__row.has-cover .athens-leaderboard__meta {
	color: rgba(255, 248, 239, 0.86);
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.athens-leaderboard__points {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 0;
	flex-shrink: 0;
}

.athens-leaderboard__score {
	color: var(--athens-gold);
	font-family: "Noto Serif SC", "Songti SC", serif;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
}

.athens-leaderboard__row.has-cover .athens-leaderboard__score {
	color: #ffe6a8;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.athens-leaderboard__pts-label {
	color: rgba(79, 54, 30, 0.48);
	font-size: 10px;
	font-weight: 600;
}

.athens-leaderboard__row.has-cover .athens-leaderboard__pts-label {
	color: rgba(255, 248, 239, 0.75);
}

.athens-leaderboard__self {
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	gap: 5px;
	margin-top: 8px;
	padding-top: 8px;
	border-top: 1px dashed rgba(156, 106, 44, 0.18);
}

.athens-leaderboard__self-label {
	color: rgba(79, 54, 30, 0.55);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.04em;
}

.athens-leaderboard__self .athens-leaderboard__row {
	min-height: 52px;
}

@media (max-width: 900px) {
	.athens-leaderboard__list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

/* 手机：两列 × 3 行 = 6 人，均分填满，不滚动 */
@media (max-width: 809.98px) {
	.athens-cell--leaderboard .athens-substance {
		padding: 10px;
	}

	.athens-cell--leaderboard .athens-substance__head {
		margin-bottom: 8px;
	}

	.athens-leaderboard {
		padding-bottom: 4px;
		min-height: 0;
		overflow: hidden;
	}

	.athens-leaderboard__list {
		display: grid;
		flex: 1 1 auto;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-template-rows: repeat(3, minmax(0, 1fr));
		grid-auto-rows: unset;
		gap: 6px;
		min-height: 0;
		height: 100%;
		overflow: hidden;
	}

	.athens-leaderboard__list > li {
		min-width: 0;
		min-height: 0;
		height: 100%;
	}

	.athens-leaderboard__list > li:nth-child(n + 7) {
		display: none;
	}

	.athens-leaderboard__row {
		height: 100%;
		min-height: 0;
		grid-template-columns: 18px 28px minmax(0, 1fr) auto;
		gap: 4px;
		padding: 5px 6px;
		border-radius: 8px;
	}

	.athens-leaderboard__rank {
		font-size: 12px;
	}

	.athens-leaderboard__avatar {
		width: 28px;
		height: 28px;
	}

	.athens-leaderboard__name {
		font-size: 11px;
	}

	.athens-leaderboard__meta {
		font-size: 9px;
	}

	.athens-leaderboard__score {
		font-size: 11px;
	}

	.athens-leaderboard__pts-label {
		font-size: 8px;
	}

	/* 六格已满，手机隐藏「我的排名」以免撑出滚动 */
	.athens-leaderboard__self {
		display: none;
	}
}

/* --- Temples (1×1): desktop map; mobile simplified panel --- */

.athens-temples {
	display: flex;
	flex-direction: column;
	min-height: 0;
	height: 100%;
	padding: clamp(12px, 1.5vw, 16px);
	padding-bottom: 12px;
}

.athens-temples__desktop {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	min-height: 0;
	height: 100%;
}

.athens-temples__mobile {
	display: none;
}

.athens-temples__head {
	flex-shrink: 0;
	margin-bottom: 10px;
}

.athens-temples__viewport {
	position: relative;
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	min-height: 0;
	overflow: hidden;
}

.athens-temples__map {
	position: relative;
	flex: 1 1 auto;
	min-height: 0;
	overflow: hidden;
	border-radius: 16px;
	background: #e8e0d2;
	box-shadow:
		inset 0 0 0 1px rgba(83, 58, 33, 0.1),
		0 4px 14px rgba(83, 58, 33, 0.08);
}

.athens-temples__map iframe {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
	border-radius: inherit;
	filter: sepia(0.28) saturate(0.62) contrast(1.02) brightness(1.02);
}

.athens-temples__dock {
	display: flex;
	flex-direction: column;
	flex-shrink: 0;
	min-width: 0;
	margin-top: 10px;
}

.athens-temples__switch {
	display: grid;
	flex-shrink: 0;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 6px;
	padding: 5px;
	border: 1px solid rgba(156, 106, 44, 0.16);
	border-radius: 12px;
	background: #efe8db;
}

.athens-temples__city {
	min-width: 0;
	padding: 9px 4px;
	border: 0;
	border-radius: 8px;
	background: transparent;
	color: rgba(79, 54, 30, 0.62);
	font-family: "Noto Serif SC", "Songti SC", serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.2;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.athens-temples__city:hover {
	color: var(--athens-ink);
	background: rgba(255, 252, 247, 0.65);
}

.athens-temples__city.is-active {
	background: #fffaf3;
	color: var(--athens-gold);
	font-weight: 800;
	box-shadow: 0 1px 4px rgba(83, 58, 33, 0.1);
}

.athens-temples__foot {
	display: grid;
	flex-shrink: 0;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 12px;
	align-items: center;
	margin-top: 10px;
	padding-top: 10px;
	border-top: 1px solid rgba(156, 106, 44, 0.16);
}

.athens-temples__copy {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.athens-temples__name {
	color: var(--athens-gold);
	font-family: "Noto Serif SC", "Songti SC", serif;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.25;
}

.athens-temples__address {
	overflow: hidden;
	color: rgba(79, 54, 30, 0.72);
	font-size: 11px;
	font-weight: 500;
	line-height: 1.35;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.athens-temples__phone {
	overflow: hidden;
	color: rgba(79, 54, 30, 0.5);
	font-size: 11px;
	font-weight: 500;
	line-height: 1.3;
	text-decoration: none;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.athens-temples__phone:hover {
	color: var(--athens-gold);
}

.athens-temples__nav {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 64px;
	padding: 10px 14px;
	border: 1px solid rgba(156, 106, 44, 0.4);
	border-radius: 999px;
	background: #fffaf3;
	color: var(--athens-gold);
	font-family: "Noto Serif SC", "Songti SC", serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.athens-temples__nav:hover {
	border-color: var(--athens-gold);
	background: var(--athens-gold);
	color: #fff8ef;
}

.athens-temples__follow {
	display: flex;
	flex-shrink: 0;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 10px;
	margin-top: 10px;
	padding-top: 10px;
	border-top: 1px solid var(--athens-border);
}

.athens-temples__follow-label {
	flex-shrink: 0;
}

.athens-temples__social {
	display: flex;
	flex: 1 1 auto;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: flex-end;
	gap: 6px;
	margin: 0;
	padding: 0;
	list-style: none;
	min-width: 0;
}

.athens-temples__social-link {
	display: grid;
	place-items: center;
	width: 32px;
	height: 32px;
	border: 1px solid color-mix(in srgb, var(--athens-gold) 28%, var(--athens-border));
	border-radius: 4px;
	background: var(--athens-bg);
	color: var(--athens-gold);
	text-decoration: none;
	transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.athens-temples__social-link svg {
	display: block;
	width: 15px;
	height: 15px;
}

.athens-temples__social-link:hover,
.athens-temples__social-link:focus-visible {
	border-color: var(--athens-gold);
	background: color-mix(in srgb, var(--athens-gold) 8%, var(--athens-panel));
	color: var(--athens-gold-hover);
	outline: none;
}

/* Mobile simplified panel (no map) */
.athens-temples__panel {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	justify-content: flex-start;
	gap: 10px;
	min-height: 0;
	padding: 4px 2px 8px;
	overflow: hidden;
}

.athens-temples__actions {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-top: auto;
	min-width: 0;
}

@media (max-width: 809.98px) {
	.athens-cell--temples {
		overflow: hidden;
	}

	.athens-temples {
		padding: 10px;
		padding-bottom: 8px;
	}

	.athens-temples__desktop {
		display: none;
	}

	.athens-temples__mobile {
		display: flex;
		flex: 1 1 auto;
		flex-direction: column;
		min-height: 0;
		height: 100%;
	}

	.athens-temples__panel {
		gap: 8px;
		padding: 2px 0 8px;
		overflow: hidden;
	}

	.athens-temples__mobile .athens-temples__name {
		flex-shrink: 0;
		margin: 0;
		font-size: 16px;
		white-space: normal;
	}

	.athens-temples__mobile .athens-temples__address {
		flex: 1 1 auto;
		min-height: 0;
		font-size: 12px;
		line-height: 1.5;
		white-space: normal;
		overflow-wrap: anywhere;
		word-break: break-word;
		text-overflow: clip;
	}

	.athens-temples__actions {
		gap: 8px;
		margin-top: auto;
		padding-bottom: 2px;
	}

	.athens-temples__mobile .athens-temples__phone {
		flex: 1 1 auto;
		min-width: 0;
		font-size: 11px;
		font-weight: 600;
		color: rgba(79, 54, 30, 0.62);
	}

	.athens-temples__mobile .athens-temples__nav {
		flex-shrink: 0;
		min-width: 0;
		margin: 0;
		padding: 7px 12px;
		font-size: 11px;
		letter-spacing: 0.08em;
	}

	.athens-temples__mobile .athens-temples__switch {
		gap: 4px;
		margin-top: 8px;
		padding: 4px;
		border-radius: 10px;
	}

	.athens-temples__mobile .athens-temples__city {
		padding: 8px 2px;
		border-radius: 7px;
		font-family: "SF Mono", "Menlo", "Consolas", monospace;
		font-size: 12px;
		font-weight: 700;
		letter-spacing: 0.04em;
		white-space: nowrap;
		overflow: visible;
		text-overflow: clip;
	}

	.athens-temples__mobile .athens-temples__follow {
		flex-wrap: nowrap;
		align-items: center;
		margin-top: 8px;
		padding-top: 8px;
		gap: 8px 10px;
	}

	.athens-temples__mobile .athens-temples__follow-label {
		width: 2em;
		font-size: 13px;
		letter-spacing: 0;
		line-height: 1.2;
		white-space: normal;
		overflow-wrap: anywhere;
		word-break: break-all;
	}

	.athens-temples__mobile .athens-temples__social {
		flex: 1 1 auto;
		justify-content: flex-end;
		gap: 5px;
	}

	.athens-temples__mobile .athens-temples__social-link {
		width: 30px;
		height: 30px;
	}

	.athens-temples__mobile .athens-temples__social-link svg {
		width: 14px;
		height: 14px;
	}
}

/* --- Sun clock embed (original plugin, square layout) --- */

.athens-cell--sun-clock .athens-sun-clock {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 0;
	height: 100%;
	padding: 0;
	overflow: hidden;
}

.athens-cell--sun-clock .athens-substance.athens-sun-clock {
	padding: 0;
}

.athens-cell--sun-clock .athens-sun-clock__more {
	display: none !important;
}

.athens-cell--sun-clock .athens-sun-clock__embed {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	min-height: 0;
	height: 100%;
	overflow: hidden;
}

.athens-cell--sun-clock .athens-sun-clock__embed .sc-widget-wrap {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	align-items: stretch;
	min-height: 0;
	width: 100%;
	height: 100%;
	padding: 0 !important;
}

.athens-cell--sun-clock .sc-layout-square .sc-card {
	display: flex !important;
	flex-direction: column;
	width: 100%;
	height: 100%;
	min-height: 0;
	/* 插件默认 18px 大于格子圆角，会露出格底白色；由格子自身 overflow 裁切 */
	border-radius: 0 !important;
	overflow: hidden;
	box-shadow: none;
}

.athens-cell--sun-clock .sc-layout-square .sc-card:hover {
	transform: none;
	box-shadow: none;
}

.athens-cell--sun-clock .sc-layout-square .sc-scanlines {
	border-radius: 0 !important;
}

/* Force scenery height — % min-height fails when parent height is indefinite. */
.athens-cell--sun-clock .sc-layout-square .sc-landscape {
	display: block !important;
	position: relative;
	flex: 1.4 1 52% !important;
	height: auto !important;
	min-height: 140px !important;
	border-radius: 0 !important;
	overflow: hidden;
}

.athens-cell--sun-clock .sc-layout-square .sc-flora {
	display: block !important;
	z-index: 7 !important;
}

.athens-cell--sun-clock .sc-layout-square .sc-hill-3,
.athens-cell--sun-clock .sc-layout-square .sc-hill-4 {
	display: block !important;
}

.athens-cell--sun-clock .sc-layout-square .sc-ocean {
	display: block !important;
	height: 16% !important;
	z-index: 3 !important;
}

.athens-cell--sun-clock .sc-layout-square .sc-content {
	flex: 0 0 auto;
	padding: 6px 6px 7px !important;
	border-radius: 0 !important;
	min-height: 0;
}

/* 默认不负上移；仅手机再压风景（见下方 max-width） */
.athens-cell--sun-clock .sc-layout-square .sc-content,
.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-content {
	margin-top: 0 !important;
}

/* Compact type + controls (homepage embed) */
.athens-cell--sun-clock .sc-layout-square .sc-region,
.athens-cell--sun-clock .sc-layout-square .sc-phase-badge {
	font-size: 9px !important;
	padding: 3px 7px !important;
	letter-spacing: 0;
}

.athens-cell--sun-clock .sc-layout-square .sc-main-temp-top {
	font-size: clamp(18px, 7vw, 26px) !important;
	letter-spacing: 0.01em;
}

.athens-cell--sun-clock .sc-layout-square .sc-current-status-top {
	font-size: 10px !important;
	gap: 2px;
}

.athens-cell--sun-clock .sc-layout-square [data-active-scene-emoji] {
	display: none !important;
}

.athens-cell--sun-clock .sc-layout-square .sc-date-line,
.athens-cell--sun-clock .sc-layout-square .sc-message {
	font-size: 8px !important;
	padding: 2px 5px !important;
}

.athens-cell--sun-clock .sc-layout-square .sc-scene-switch {
	gap: 3px !important;
	margin-bottom: 4px !important;
}

.athens-cell--sun-clock .sc-layout-square .sc-scene-btn,
.athens-cell--sun-clock .sc-layout-square .sc-scene-btn[data-scene] {
	padding: 2px 1px !important;
	border-radius: 5px !important;
	min-height: 0 !important;
	gap: 0 !important;
}

/* 字号压缩仅限手机；电脑勿在此写 9px，会被插件后载 CSS 缠斗 */
.athens-cell--sun-clock .sc-layout-square .sc-info-btn {
	display: none !important;
}

.athens-cell--sun-clock .sc-layout-square .sc-tabs {
	gap: 3px !important;
	margin-bottom: 4px !important;
}

.athens-cell--sun-clock .sc-layout-square .sc-tab {
	min-height: 24px !important;
	height: 24px;
	padding: 0 3px !important;
	font-size: 9px !important;
	font-weight: 700;
	letter-spacing: 0;
	border-radius: 6px !important;
	line-height: 1;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.athens-cell--sun-clock .sc-layout-square .sc-row {
	margin-bottom: 4px !important;
}

.athens-cell--sun-clock .sc-layout-square .sc-label {
	font-size: 9px !important;
	margin-bottom: 3px !important;
}

.athens-cell--sun-clock .sc-layout-square .sc-input {
	padding: 6px 8px !important;
	font-size: 11px !important;
	border-radius: 8px !important;
}

.athens-cell--sun-clock .sc-layout-square .sc-uiverse-btn {
	width: 100% !important;
	max-width: 100% !important;
	height: 28px !important;
	margin: 0 !important;
	--uv-radius: 8px;
}

.athens-cell--sun-clock .sc-layout-square .sc-uiverse-btn .sc-uv-char span {
	font-size: 10px !important;
}

.athens-cell--sun-clock .sc-layout-square .sc-overlay-top {
	top: 5px;
	left: 5px;
	right: 5px;
	gap: 4px;
}

.athens-cell--sun-clock .sc-layout-square .sc-overlay-top .sc-date-trigger {
	min-height: 0;
}

.athens-cell--sun-clock .sc-layout-square .sc-overlay-bottom {
	left: 5px;
	right: 5px;
	bottom: 8px;
	gap: 2px;
}

.athens-cell--sun-clock .athens-substance__empty {
	margin: 0;
	color: rgba(79, 54, 30, 0.62);
	font-size: 13px;
}

/* 电脑：风景区更高；时刻按钮字号压过插件后载的 9px !important */
@media (min-width: 810px) {
	.athens-cell--sun-clock .sc-layout-square .sc-landscape {
		flex: 1.45 1 50% !important;
		min-height: 170px !important;
	}

	/* 勿负 margin 上盖风景底：否则「点击按钮开始查询」会被控件挡住 */
	.athens-cell--sun-clock .sc-layout-square .sc-content,
	.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-content {
		margin-top: 0 !important;
		padding: 10px 12px 12px !important;
	}

	/* 风景层压在控件之上，叠边时提示仍可读 */
	.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-landscape {
		position: relative;
		z-index: 3;
	}

	.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-content {
		position: relative;
		z-index: 1;
	}

	.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-overlay-bottom {
		display: none !important;
	}

	.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-panel-status {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 2px;
		margin: 0 0 10px;
	}

	.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-panel-status .sc-message {
		min-height: 0 !important;
		padding: 0 !important;
		border: 0 !important;
		border-radius: 0 !important;
		background: transparent !important;
		box-shadow: none !important;
		color: rgba(79, 54, 30, 0.62) !important;
		font-size: 14px !important;
		font-weight: 500 !important;
		line-height: 1.4 !important;
		letter-spacing: 0.04em;
		text-shadow: none !important;
	}

	.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-overlay-top {
		top: 10px !important;
		left: 10px !important;
		right: 10px !important;
		gap: 8px !important;
	}

	.athens-cell--sun-clock .sc-layout-square .sc-ocean {
		height: 18% !important;
	}

	.athens-cell--sun-clock .sc-layout-square .sc-flora {
		display: block !important;
		z-index: 7 !important;
	}

	.athens-cell--sun-clock .sc-layout-square .sc-tree {
		bottom: 14% !important;
	}

	.athens-cell--sun-clock .sc-layout-square .sc-bush,
	.athens-cell--sun-clock .sc-layout-square .sc-grass,
	.athens-cell--sun-clock .sc-layout-square .sc-bloom {
		bottom: 15% !important;
	}

	.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-scene-switch {
		gap: 8px !important;
		margin-bottom: 10px !important;
	}

	.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-scene-btn,
	.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-scene-btn[data-scene],
	.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-scene-btn[data-scene="dawn"],
	.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-scene-btn[data-scene="sunrise"],
	.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-scene-btn[data-scene="noon"],
	.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-scene-btn[data-scene="sunset"] {
		gap: 5px !important;
		min-height: 72px !important;
		padding: 12px 6px !important;
		border-radius: 12px !important;
	}

	.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-scene-btn-time,
	.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-scene-btn.active .sc-scene-btn-time,
	.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-scene-btn.active[data-scene="dawn"] .sc-scene-btn-time,
	.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-scene-btn.active[data-scene="sunrise"] .sc-scene-btn-time,
	.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-scene-btn.active[data-scene="noon"] .sc-scene-btn-time,
	.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-scene-btn.active[data-scene="sunset"] .sc-scene-btn-time {
		font-size: 22px !important;
		font-weight: 900 !important;
		line-height: 1.1 !important;
		letter-spacing: 0.04em;
	}

	.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-scene-btn-label,
	.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-scene-btn.active .sc-scene-btn-label,
	.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-scene-btn.active[data-scene="dawn"] .sc-scene-btn-label,
	.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-scene-btn.active[data-scene="sunrise"] .sc-scene-btn-label,
	.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-scene-btn.active[data-scene="noon"] .sc-scene-btn-label,
	.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-scene-btn.active[data-scene="sunset"] .sc-scene-btn-label {
		font-size: 14px !important;
		font-weight: 800 !important;
		line-height: 1.15 !important;
		letter-spacing: 0.1em;
		opacity: 0.9;
	}

	.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-tabs {
		gap: 8px !important;
		margin-bottom: 10px !important;
	}

	.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-tab {
		min-height: 42px !important;
		height: 42px !important;
		padding: 0 10px !important;
		font-size: 15px !important;
		border-radius: 10px !important;
	}

	.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-uiverse-btn {
		height: 44px !important;
		--uv-radius: 10px;
	}

	.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-uiverse-btn .sc-uv-char span {
		font-size: 15px !important;
	}

	.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-main-temp-top {
		font-size: 42px !important;
		line-height: 1 !important;
	}

	.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-current-status-top {
		font-size: 16px !important;
		font-weight: 700 !important;
	}

	.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-region,
	.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-phase-badge {
		font-size: 14px !important;
		padding: 7px 14px !important;
	}

	.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-date-trigger {
		font-size: 14px !important;
		min-height: 36px !important;
	}

	.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-date-trigger .sc-phase-badge {
		font-size: 14px !important;
		padding: 7px 14px !important;
	}
}

/* 手机：只保留风景 + 四时刻 + 本地查询；隐藏状态/日期/地区 Tab */
@media (max-width: 809.98px) {
	.athens-cell--sun-clock {
		overflow: hidden;
	}

	.athens-cell--sun-clock .athens-substance,
	.athens-cell--sun-clock .athens-sun-clock,
	.athens-cell--sun-clock .athens-sun-clock__embed,
	.athens-cell--sun-clock .sc-widget-wrap,
	.athens-cell--sun-clock .sc-layout-square .sc-card {
		padding: 0;
		overflow: hidden;
		height: 100%;
		border-radius: 0 !important;
		background: transparent;
	}

	.athens-cell--sun-clock .sc-layout-square .sc-scanlines,
	.athens-cell--sun-clock .sc-layout-square .sc-landscape,
	.athens-cell--sun-clock .sc-layout-square .sc-content {
		border-radius: 0 !important;
	}

	.athens-cell--sun-clock .sc-layout-square .sc-landscape {
		flex: 1.45 1 54% !important;
		min-height: 120px !important;
	}

	/* 太阳缩小 */
	.athens-cell--sun-clock .sc-layout-square .sc-sun {
		width: 28px !important;
		height: 28px !important;
	}

	.athens-cell--sun-clock .sc-layout-square .sc-sun::before {
		inset: -10px !important;
	}

	.athens-cell--sun-clock .sc-layout-square .sc-sun::after {
		inset: -2px !important;
	}

	/* 状态、日期、底部提示 */
	.athens-cell--sun-clock .sc-layout-square .sc-overlay-top,
	.athens-cell--sun-clock .sc-layout-square .sc-overlay-bottom,
	.athens-cell--sun-clock .sc-layout-square .sc-region,
	.athens-cell--sun-clock .sc-layout-square .sc-current-status-top,
	.athens-cell--sun-clock .sc-layout-square .sc-date-trigger,
	.athens-cell--sun-clock .sc-layout-square .sc-phase-badge,
	.athens-cell--sun-clock .sc-layout-square .sc-main-temp-top,
	.athens-cell--sun-clock .sc-layout-square .sc-date-line,
	.athens-cell--sun-clock .sc-layout-square .sc-message {
		display: none !important;
	}

	/* 本地 / 其他地区 Tab + 远程地址行 */
	.athens-cell--sun-clock .sc-layout-square .sc-tabs,
	.athens-cell--sun-clock .sc-layout-square .sc-row[data-remote-wrap],
	.athens-cell--sun-clock .sc-layout-square .sc-row {
		display: none !important;
	}

	.athens-cell--sun-clock .sc-layout-square .sc-content {
		margin-top: -10px !important;
		padding: 5px 5px 6px !important;
	}

	.athens-cell--sun-clock .sc-layout-square .sc-scene-switch {
		gap: 3px !important;
		margin-bottom: 5px !important;
	}

	.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-scene-btn-time,
	.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-scene-btn.active .sc-scene-btn-time,
	.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-scene-btn.active[data-scene="dawn"] .sc-scene-btn-time,
	.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-scene-btn.active[data-scene="sunrise"] .sc-scene-btn-time,
	.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-scene-btn.active[data-scene="noon"] .sc-scene-btn-time,
	.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-scene-btn.active[data-scene="sunset"] .sc-scene-btn-time {
		font-size: 11px !important;
		line-height: 1.1 !important;
	}

	.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-scene-btn-label,
	.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-scene-btn.active .sc-scene-btn-label,
	.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-scene-btn.active[data-scene="dawn"] .sc-scene-btn-label,
	.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-scene-btn.active[data-scene="sunrise"] .sc-scene-btn-label,
	.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-scene-btn.active[data-scene="noon"] .sc-scene-btn-label,
	.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-scene-btn.active[data-scene="sunset"] .sc-scene-btn-label {
		font-size: 10px !important;
		line-height: 1.1 !important;
	}

	.athens-cell--sun-clock .sc-layout-square .sc-uiverse-btn {
		height: 28px !important;
	}

	.athens-cell--sun-clock .sc-layout-square .sc-uiverse-btn .sc-uv-char span {
		font-size: 9px !important;
	}
}

/* ============================================================
   Flat recast — 今日活动 + 积分榜
   基底：--athens-bg / --athens-border / --athens-panel
   规则：无渐变、无投影、无描边光晕；层次只靠实色面与边线。
   ============================================================ */

.athens-cell--today-courses,
.athens-cell--leaderboard {
	background: var(--athens-panel);
	box-shadow: none;
}

/* —— 今日活动 —— */
.athens-today {
	color: var(--athens-ink);
}

.athens-today__label-text {
	padding-left: 0;
	border-left: 0;
	color: var(--athens-gold);
	letter-spacing: 0.06em;
}

.athens-today__date,
.athens-today__more,
.athens-today__empty,
.athens-today__context {
	color: var(--athens-muted);
}

.athens-today__more:hover {
	color: var(--athens-gold-hover);
}

.athens-today__empty a {
	color: var(--athens-gold);
}

.athens-today__card,
.athens-today__card--live,
.athens-today__card--upcoming {
	border: 1px solid var(--athens-border);
	border-radius: 8px;
	background: var(--athens-bg);
	box-shadow: none;
}

.athens-today__card:hover {
	border-color: color-mix(in srgb, var(--athens-ink) 12%, var(--athens-border));
	box-shadow: none;
}

.athens-today__card-head,
.athens-today__card--live .athens-today__card-head {
	border-bottom: 1px solid var(--athens-border);
	background: transparent;
}

.athens-today__card-body {
	scrollbar-color: color-mix(in srgb, var(--athens-muted) 40%, transparent) transparent;
}

.athens-today__time {
	color: var(--athens-gold);
}

.athens-today__badge {
	border-radius: 4px;
	background: color-mix(in srgb, var(--athens-gold) 12%, var(--athens-panel));
	color: var(--athens-gold);
}

.athens-today__badge--soon,
.athens-today__badge--past {
	background: var(--athens-panel);
	color: var(--athens-muted);
}

.athens-today__name,
.athens-today__name--link {
	color: var(--athens-ink);
}

.athens-today__name--link:hover {
	color: var(--athens-gold);
}

.athens-today__chip--format,
.athens-today__chip--book {
	border: 1px solid var(--athens-border);
	border-radius: 4px;
	background: var(--athens-panel);
	color: var(--athens-ink);
}

.athens-today__desc-panel,
.athens-today__panel,
.athens-today__panel--time,
.athens-today__panel--zoom,
.athens-today__panel--venue {
	border: 1px solid var(--athens-border);
	border-radius: 6px;
	background: var(--athens-panel);
	box-shadow: none;
}

.athens-today__description,
.athens-today__panel-title,
.athens-today__panel--time .athens-today__panel-title {
	color: var(--athens-ink);
}

.athens-today__panel--time .athens-today__panel-title,
.athens-today__tz-label,
.athens-today__credential-label,
.athens-today__credential-value--muted {
	color: var(--athens-muted);
}

.athens-today__tz-tile {
	border: 1px solid var(--athens-border);
	border-radius: 4px;
	background: var(--athens-bg);
	box-shadow: none;
}

.athens-today__tz-time {
	color: var(--athens-ink);
}

.athens-today__credential {
	border: 1px solid var(--athens-border);
	border-radius: 4px;
	background: var(--athens-panel);
	box-shadow: none;
}

.athens-today__credential-value {
	color: var(--athens-ink);
}

.athens-today__action--zoom,
.athens-today__action--maps,
.athens-today__action--nav {
	border: 1px solid var(--athens-border);
	border-radius: 4px;
	background: var(--athens-panel);
	color: var(--athens-ink);
	box-shadow: none;
}

.athens-today__action--zoom:hover,
.athens-today__action--maps:hover,
.athens-today__action--nav:hover {
	border-color: color-mix(in srgb, var(--athens-ink) 14%, var(--athens-border));
	background: var(--athens-bg);
	color: var(--athens-gold);
}

.athens-today__addr-name {
	color: var(--athens-ink);
}

.athens-today__addr-text {
	color: var(--athens-muted);
}

/* —— 积分榜 —— */
.athens-cell--leaderboard .athens-substance__title {
	color: var(--athens-gold);
}

.athens-cell--leaderboard .athens-substance__more {
	color: var(--athens-muted);
}

.athens-cell--leaderboard .athens-substance__more:hover {
	color: var(--athens-gold-hover);
}

.athens-cell--leaderboard .athens-substance__empty {
	color: var(--athens-muted);
}

.athens-cell--leaderboard .athens-substance__empty a {
	color: var(--athens-gold);
}

.athens-leaderboard__row {
	border: 1px solid var(--athens-border);
	border-radius: 8px;
	background: var(--athens-bg);
	box-shadow: none;
	transition: background 0.15s ease, border-color 0.15s ease;
}

a.athens-leaderboard__row:hover {
	transform: none;
	border-color: color-mix(in srgb, var(--athens-ink) 12%, var(--athens-border));
	background: color-mix(in srgb, var(--athens-panel) 70%, var(--athens-bg));
	box-shadow: none;
}

.athens-leaderboard__row.is-self:not(.has-cover) {
	border-color: color-mix(in srgb, var(--athens-gold) 28%, var(--athens-border));
	background: var(--athens-panel);
}

.athens-leaderboard__media {
	background-color: var(--athens-bg);
}

.athens-leaderboard__shade {
	background: color-mix(in srgb, var(--athens-ink) 58%, transparent);
}

.athens-leaderboard__row.is-self.has-cover .athens-leaderboard__shade {
	background: color-mix(in srgb, var(--athens-gold) 42%, var(--athens-ink));
	box-shadow: none;
}

.athens-leaderboard__rank {
	color: var(--athens-muted);
	text-shadow: none;
}

.athens-leaderboard__row.is-top-1 .athens-leaderboard__rank,
.athens-leaderboard__row.is-top-2 .athens-leaderboard__rank,
.athens-leaderboard__row.is-top-3 .athens-leaderboard__rank {
	color: var(--athens-gold);
}

.athens-leaderboard__row.has-cover .athens-leaderboard__rank,
.athens-leaderboard__row.has-cover.is-top-1 .athens-leaderboard__rank,
.athens-leaderboard__row.has-cover.is-top-2 .athens-leaderboard__rank,
.athens-leaderboard__row.has-cover.is-top-3 .athens-leaderboard__rank {
	color: #fff;
	text-shadow: none;
}

.athens-leaderboard__avatar {
	background: var(--athens-panel);
	box-shadow: 0 0 0 1px var(--athens-border);
}

.athens-leaderboard__name {
	color: var(--athens-ink);
}

.athens-leaderboard__row.has-cover .athens-leaderboard__name {
	color: #fff;
	text-shadow: none;
}

.athens-leaderboard__you {
	border-radius: 4px;
	background: color-mix(in srgb, var(--athens-gold) 12%, var(--athens-panel));
	color: var(--athens-gold);
}

.athens-leaderboard__row.has-cover .athens-leaderboard__you {
	background: color-mix(in srgb, #fff 18%, transparent);
	color: #fff;
}

.athens-leaderboard__meta,
.athens-leaderboard__pts-label,
.athens-leaderboard__self-label {
	color: var(--athens-muted);
}

.athens-leaderboard__row.has-cover .athens-leaderboard__meta,
.athens-leaderboard__row.has-cover .athens-leaderboard__pts-label {
	color: color-mix(in srgb, #fff 78%, transparent);
	text-shadow: none;
}

.athens-leaderboard__score {
	color: var(--athens-gold);
}

.athens-leaderboard__row.has-cover .athens-leaderboard__score {
	color: #fff;
	text-shadow: none;
}

.athens-leaderboard__self {
	border-top: 1px solid var(--athens-border);
}

/* —— 藏历今日卡片 —— */
.athens-cell--today-card {
	background: var(--athens-panel);
	box-shadow: none;
}

.athens-today-card__surface {
	background: var(--athens-panel);
	box-shadow: none;
}

.athens-today-card__fallback {
	color: var(--athens-muted);
}

.athens-today-card .card-content {
	color: var(--athens-ink);
}

.athens-today-card .today-card-head {
	border-bottom: 1px solid var(--athens-border);
	background: transparent;
}

.athens-today-card .today-card-tag.month-name {
	color: var(--athens-gold);
}

.athens-today-card .today-card-tag:not(.month-name),
.athens-today-card .today-card-solar-term,
.athens-today-card .today-card-festival {
	border: 1px solid var(--athens-border);
	border-radius: 4px;
	background: var(--athens-bg);
	color: var(--athens-ink);
	box-shadow: none;
}

.athens-today-card .today-card-date {
	color: var(--athens-ink);
}

.athens-today-card .today-card-weekday {
	color: var(--athens-muted);
}

.athens-today-card .today-card-labels {
	border-bottom: 1px solid var(--athens-border);
}

.athens-today-card .today-card-label {
	border: 1px solid var(--athens-border);
	border-radius: 6px;
	background: var(--athens-bg);
	box-shadow: none;
}

.athens-today-card .today-card-label-tag {
	border-radius: 4px;
	background: color-mix(in srgb, var(--athens-ink) 8%, var(--athens-panel));
	color: var(--athens-muted);
}

.athens-today-card .today-card-label-tag.tibetan {
	background: color-mix(in srgb, var(--athens-gold) 12%, var(--athens-panel));
	color: var(--athens-gold);
}

.athens-today-card .today-card-label-text {
	color: var(--athens-ink);
}

.athens-today-card .today-card-event-item {
	border: 1px solid var(--athens-border);
	border-radius: 4px;
	background: var(--athens-bg);
	color: var(--athens-ink);
	box-shadow: none;
}

.athens-today-card .today-card-event-item--muted {
	border-color: transparent;
	background: transparent;
	color: var(--athens-muted);
}

.athens-today-card .today-card-haircut-item {
	color: var(--athens-muted);
}

.athens-today-card .today-card-haircut-days {
	border-top: 1px solid var(--athens-border);
	background: var(--athens-bg);
	color: var(--athens-ink);
}

.athens-today-card .today-card-haircut-days-title,
.athens-today-card .today-card-haircut-days-empty {
	color: var(--athens-muted);
}

.athens-today-card .haircut-day-name {
	color: var(--athens-gold);
}

.athens-today-card .haircut-day-desc {
	color: var(--athens-ink);
}

/* ============================================================
   Flat recast — 本地太阳时查询（仅雅典网格嵌入格）
   ============================================================ */

.athens-cell--sun-clock {
	background: var(--athens-panel);
	box-shadow: none;
}

.athens-cell--sun-clock .athens-substance__empty,
.athens-cell--sun-clock .athens-substance__empty a {
	color: var(--athens-muted);
}

.athens-cell--sun-clock .athens-substance__empty a {
	color: var(--athens-gold);
}

.athens-cell--sun-clock .sc-layout-square .sc-card,
.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-card {
	background: var(--athens-panel) !important;
	box-shadow: none !important;
	/* 暖米气场景，避免插件默认高饱和橙/蓝 */
	--sky-top: #d4cdc0;
	--sky-mid: #c4b9a8;
	--sky-bottom: #a89884;
	font-family: "Noto Sans SC", "PingFang SC", sans-serif;
}

.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-card.sc-phase-dawn {
	--sky-top: #c5b8c4;
	--sky-mid: #d4c4b4;
	--sky-bottom: #c4a890;
}

.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-card.sc-phase-sunrise {
	--sky-top: #d9c4b0;
	--sky-mid: #d2b49a;
	--sky-bottom: #b89278;
}

.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-card.sc-phase-day,
.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-card.sc-phase-noon {
	--sky-top: #c8c5bc;
	--sky-mid: #b9b3a6;
	--sky-bottom: #9e9586;
}

.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-card.sc-phase-sunset {
	--sky-top: #c9ada2;
	--sky-mid: #b89080;
	--sky-bottom: #8f6058;
}

.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-card.sc-phase-night {
	--sky-top: #5c564e;
	--sky-mid: #463f38;
	--sky-bottom: #2f2a25;
}

.athens-cell--sun-clock .sc-layout-square .sc-scanlines {
	opacity: 0.08 !important;
	mix-blend-mode: multiply;
}

.athens-cell--sun-clock .sc-layout-square .sc-hill-1 {
	background: #8f8578 !important;
}

.athens-cell--sun-clock .sc-layout-square .sc-hill-2 {
	background: #a69b8c !important;
}

.athens-cell--sun-clock .sc-layout-square .sc-hill-3 {
	background: #7a7268 !important;
}

.athens-cell--sun-clock .sc-layout-square .sc-hill-4 {
	background: #968c7e !important;
}

.athens-cell--sun-clock .sc-layout-square .sc-sun {
	background: #f5efe4 !important;
	box-shadow: 0 0 18px color-mix(in srgb, var(--athens-gold) 35%, transparent) !important;
}

.athens-cell--sun-clock .sc-layout-square .sc-overlay-top,
.athens-cell--sun-clock .sc-layout-square .sc-overlay-bottom {
	color: var(--athens-ink);
	text-shadow: none !important;
}

.athens-cell--sun-clock .sc-layout-square .sc-region,
.athens-cell--sun-clock .sc-layout-square .sc-phase-badge,
.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-phase-badge,
.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-date-trigger .sc-phase-badge {
	background: color-mix(in srgb, var(--athens-panel) 88%, transparent) !important;
	border: 1px solid var(--athens-border) !important;
	border-radius: 4px !important;
	color: var(--athens-ink) !important;
	text-shadow: none !important;
	box-shadow: none !important;
	backdrop-filter: none !important;
	-webkit-backdrop-filter: none !important;
}

.athens-cell--sun-clock .sc-layout-square .sc-region.sc-region-error {
	background: color-mix(in srgb, var(--athens-gold) 12%, var(--athens-panel)) !important;
	border-color: color-mix(in srgb, var(--athens-gold) 35%, var(--athens-border)) !important;
	color: var(--athens-gold) !important;
}

.athens-cell--sun-clock .sc-layout-square .sc-main-temp,
.athens-cell--sun-clock .sc-layout-square .sc-main-temp-top,
.athens-cell--sun-clock .sc-layout-square .sc-current-status,
.athens-cell--sun-clock .sc-layout-square .sc-current-status-top {
	color: var(--athens-ink) !important;
	text-shadow: none !important;
}

.athens-cell--sun-clock .sc-layout-square .sc-date-line,
.athens-cell--sun-clock .sc-layout-square .sc-message,
.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-panel-status .sc-date-line,
.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-panel-status .sc-message {
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	color: var(--athens-muted) !important;
	text-shadow: none !important;
	box-shadow: none !important;
}

.athens-cell--sun-clock .sc-layout-square .sc-content,
.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-content {
	background: var(--athens-bg) !important;
	border-top: 1px solid var(--athens-border) !important;
	backdrop-filter: none !important;
	-webkit-backdrop-filter: none !important;
	color: var(--athens-ink) !important;
	box-shadow: none !important;
}

.athens-cell--sun-clock .sc-layout-square .sc-label {
	color: var(--athens-muted) !important;
	text-shadow: none !important;
	font-weight: 600 !important;
}

.athens-cell--sun-clock .sc-layout-square .sc-input {
	background: var(--athens-panel) !important;
	border: 1px solid var(--athens-border) !important;
	color: var(--athens-ink) !important;
	box-shadow: none !important;
}

.athens-cell--sun-clock .sc-layout-square .sc-input::placeholder {
	color: var(--athens-muted) !important;
}

.athens-cell--sun-clock .sc-layout-square .sc-input:focus {
	border-color: color-mix(in srgb, var(--athens-gold) 40%, var(--athens-border)) !important;
	box-shadow: 0 0 0 2px var(--athens-focus) !important;
}

.athens-cell--sun-clock .sc-layout-square .sc-input::-webkit-calendar-picker-indicator {
	filter: none;
	opacity: 0.55;
}

.athens-cell--sun-clock .sc-layout-square .sc-tab,
.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-tab {
	background: var(--athens-panel) !important;
	border: 1px solid var(--athens-border) !important;
	color: var(--athens-ink) !important;
	box-shadow: none !important;
	border-radius: 6px !important;
}

.athens-cell--sun-clock .sc-layout-square .sc-tab.active,
.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-tab.active {
	background: color-mix(in srgb, var(--athens-gold) 12%, var(--athens-panel)) !important;
	border-color: color-mix(in srgb, var(--athens-gold) 38%, var(--athens-border)) !important;
	color: var(--athens-gold) !important;
	box-shadow: none !important;
}

.athens-cell--sun-clock .sc-layout-square .sc-scene-btn,
.athens-cell--sun-clock .sc-layout-square .sc-scene-btn[data-scene],
.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-scene-btn,
.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-scene-btn[data-scene],
.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-scene-btn[data-scene="dawn"],
.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-scene-btn[data-scene="sunrise"],
.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-scene-btn[data-scene="noon"],
.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-scene-btn[data-scene="sunset"] {
	background: var(--athens-panel) !important;
	border: 1px solid var(--athens-border) !important;
	color: var(--athens-ink) !important;
	box-shadow: none !important;
	filter: none !important;
	text-shadow: none !important;
}

.athens-cell--sun-clock .sc-layout-square .sc-scene-btn-time,
.athens-cell--sun-clock .sc-layout-square .sc-scene-btn-label,
.athens-cell--sun-clock .sc-layout-square .sc-scene-btn.active .sc-scene-btn-time,
.athens-cell--sun-clock .sc-layout-square .sc-scene-btn.active .sc-scene-btn-label,
.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-scene-btn-time,
.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-scene-btn-label,
.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-scene-btn.active .sc-scene-btn-time,
.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-scene-btn.active .sc-scene-btn-label,
.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-scene-btn.active[data-scene="dawn"] .sc-scene-btn-time,
.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-scene-btn.active[data-scene="dawn"] .sc-scene-btn-label,
.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-scene-btn.active[data-scene="sunrise"] .sc-scene-btn-time,
.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-scene-btn.active[data-scene="sunrise"] .sc-scene-btn-label,
.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-scene-btn.active[data-scene="noon"] .sc-scene-btn-time,
.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-scene-btn.active[data-scene="noon"] .sc-scene-btn-label,
.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-scene-btn.active[data-scene="sunset"] .sc-scene-btn-time,
.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-scene-btn.active[data-scene="sunset"] .sc-scene-btn-label {
	color: inherit !important;
	text-shadow: none !important;
}

.athens-cell--sun-clock .sc-layout-square .sc-scene-btn.active,
.athens-cell--sun-clock .sc-layout-square .sc-scene-btn.active[data-scene],
.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-scene-btn.active,
.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-scene-btn.active[data-scene],
.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-scene-btn.active[data-scene="dawn"],
.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-scene-btn.active[data-scene="sunrise"],
.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-scene-btn.active[data-scene="noon"],
.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-scene-btn.active[data-scene="sunset"] {
	background: var(--athens-panel) !important;
	border-color: color-mix(in srgb, var(--athens-gold) 42%, var(--athens-border)) !important;
	color: var(--athens-gold) !important;
	box-shadow: none !important;
	filter: none !important;
}

.athens-cell--sun-clock .sc-layout-square .sc-suggestions {
	background: var(--athens-panel) !important;
	border: 1px solid var(--athens-border) !important;
	box-shadow: none !important;
}

.athens-cell--sun-clock .sc-layout-square .sc-suggest-item {
	color: var(--athens-ink) !important;
	border-bottom-color: var(--athens-border) !important;
}

.athens-cell--sun-clock .sc-layout-square .sc-suggest-item:hover {
	background: var(--athens-bg) !important;
}

/* 查询按钮：朱红渐变（盖过插件 .sc-widget-wrap.sc-layout-square 金棕变量） */
.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-uiverse-btn,
.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-uiverse-btn.sc-btn-remote {
	--white: #f9f7ee !important;
	--purple-100: #c45a54 !important;
	--purple-200: #a8322d !important;
	--purple-300: #8f2724 !important;
	--purple-400: #7a211e !important;
	--purple-500: #641b19 !important;
}

.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-uiverse-btn .sc-uv-wrap {
	background: linear-gradient(to bottom, var(--purple-100) 0%, var(--purple-400) 100%) !important;
}

.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-uiverse-btn .sc-uv-content {
	background: linear-gradient(to bottom, var(--purple-300) 0%, var(--purple-400) 100%) !important;
}

.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-uiverse-btn .sc-uv-bg::before,
.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-uiverse-btn.sc-btn-remote .sc-uv-bg::before {
	background: var(--purple-500) !important;
	box-shadow: none !important;
}

.athens-cell--sun-clock .sc-widget-wrap.sc-layout-square .sc-uiverse-btn .sc-uv-char span {
	color: #f9f7ee !important;
}

.athens-cell--sun-clock .sc-card.sc-phase-night .sc-region,
.athens-cell--sun-clock .sc-card.sc-phase-night .sc-phase-badge,
.athens-cell--sun-clock .sc-card.sc-phase-night .sc-main-temp-top,
.athens-cell--sun-clock .sc-card.sc-phase-night .sc-current-status-top {
	color: var(--athens-panel) !important;
}

.athens-cell--sun-clock .sc-card.sc-phase-night .sc-region,
.athens-cell--sun-clock .sc-card.sc-phase-night .sc-phase-badge {
	background: color-mix(in srgb, #2f2a25 72%, transparent) !important;
	border-color: color-mix(in srgb, var(--athens-panel) 22%, transparent) !important;
}
