/* =========================================================================
 * 特別恋愛運 鑑定書ページ
 * 方針: 文字の読みやすさを最優先に、太字を抑えた大人の女性向け。
 * ローズ、モーヴ、チャコールを軸に、ブランドピンクは要所だけに使う。
 * ======================================================================= */

:root {
	--lh-ink: #292229;
	--lh-ink-soft: #625761;
	--lh-ink-faint: #8c7f89;
	--lh-accent: #e10080;
	--lh-accent-ink: #8f2958;
	--lh-accent-soft: #f8e5ef;
	--lh-bg: #f7f3f6;
	--lh-bg-alt: #fbf8fa;
	--lh-surface: #ffffff;
	--lh-surface-soft: #fff9fc;
	--lh-line: #e5d9e0;
	--lh-line-strong: #d4c3cd;
	--lh-mauve: #6d4b5e;
	--lh-plum: #2b1824;

	--lh-text-xs: 1rem;
	--lh-text-sm: 1rem;
	--lh-text-base: 1.0625rem;
	--lh-text-lg: 1.1875rem;
	--lh-text-xl: 1.375rem;
	--lh-text-2xl: 1.625rem;
	--lh-text-3xl: 2.05rem;

	--lh-radius: 8px;
	--lh-radius-lg: 10px;
	--lh-shadow: 0 14px 34px rgba(62, 42, 54, 0.08);
	--lh-shadow-sm: 0 1px 0 rgba(62, 42, 54, 0.04);

	--lh-sans: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
	--lh-serif: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "Noto Serif JP", serif;
	--lh-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

body.mizary-love-horoscope {
	margin: 0;
	color: var(--lh-ink);
	background: var(--lh-bg);
	font-family: var(--lh-sans);
	font-size: var(--lh-text-base);
	font-weight: 400;
	line-height: 1.95;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: clip;
	padding-bottom: calc(72px + env(safe-area-inset-bottom));
}

body.mizary-love-horoscope *,
body.mizary-love-horoscope *::before,
body.mizary-love-horoscope *::after {
	box-sizing: border-box;
}

body.mizary-love-horoscope a {
	color: inherit;
	text-decoration: none;
}

body.mizary-love-horoscope img {
	display: block;
	max-width: 100%;
}

body.mizary-love-horoscope [hidden] {
	display: none !important;
}

body.mizary-love-horoscope :focus-visible {
	outline: 3px solid var(--lh-accent);
	outline-offset: 3px;
}

.lh-header {
	position: sticky;
	top: 0;
	z-index: 50;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 16px;
	min-height: 64px;
	padding: 12px 18px;
	background: rgba(255, 255, 255, 0.94);
	border-bottom: 1px solid var(--lh-line);
	backdrop-filter: saturate(150%) blur(16px);
}

.lh-logo {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	color: var(--lh-ink);
	font-size: var(--lh-text-sm);
	font-weight: 500;
	letter-spacing: 0;
}

.lh-page {
	overflow: hidden;
	background: var(--lh-bg);
}

.lh-hero {
	position: relative;
	display: flex;
	align-items: flex-end;
	min-height: 420px;
	padding: 92px 22px 52px;
	overflow: hidden;
	background: var(--lh-plum);
	color: #fff;
}

.lh-hero-image,
.lh-hero-overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.lh-hero-image {
	object-fit: cover;
	object-position: center 30%;
}

.lh-hero-overlay {
	background:
		linear-gradient(90deg, rgba(39, 23, 33, 0.82) 0%, rgba(39, 23, 33, 0.58) 54%, rgba(39, 23, 33, 0.24) 100%),
		linear-gradient(180deg, rgba(39, 23, 33, 0.08) 0%, rgba(39, 23, 33, 0.84) 100%);
}

.lh-hero-content {
	position: relative;
	z-index: 1;
	width: min(100%, 980px);
	margin: 0 auto;
	text-align: left;
}

.lh-kicker {
	margin: 0 0 12px;
	color: var(--lh-accent-ink);
	font-size: var(--lh-text-xs);
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0;
}

.lh-hero .lh-kicker {
	color: #f1d6e3;
}

.lh-hero h1 {
	max-width: 720px;
	margin: 0;
	color: #fff !important;
	font-family: var(--lh-sans);
	font-size: var(--lh-text-3xl);
	font-weight: 500;
	line-height: 1.42;
	letter-spacing: 0;
	-webkit-text-fill-color: #fff !important;
}

.lh-hero-lead {
	max-width: 620px;
	margin: 20px 0 0;
	color: rgba(255, 255, 255, 0.92) !important;
	font-size: var(--lh-text-base);
	line-height: 2;
	-webkit-text-fill-color: rgba(255, 255, 255, 0.92) !important;
}

.lh-hero-actions,
.lh-cta-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin-top: 28px;
}

.lh-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 13px 26px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-size: var(--lh-text-sm);
	font-weight: 500;
	line-height: 1.35;
	text-align: center;
	letter-spacing: 0;
	cursor: pointer;
	transition: transform 0.2s var(--lh-ease), background 0.2s var(--lh-ease), border-color 0.2s var(--lh-ease), box-shadow 0.2s var(--lh-ease);
}

.lh-button:hover {
	transform: translateY(-1px);
}

.lh-button-primary {
	background: var(--lh-accent);
	color: #fff;
	box-shadow: 0 10px 22px rgba(225, 0, 128, 0.22);
}

.lh-button-primary:hover {
	background: var(--lh-accent-ink);
}

.lh-button-secondary {
	background: transparent;
	border-color: var(--lh-line-strong);
	color: var(--lh-ink);
}

.lh-button-secondary:hover {
	border-color: var(--lh-accent);
	color: var(--lh-accent-ink);
}

.lh-button-line {
	background: #06c755;
	color: #fff;
	box-shadow: 0 10px 22px rgba(6, 150, 80, 0.18);
}

.lh-button-line:hover {
	background: #05b34c;
}

.lh-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	width: min(100% - 40px, 1040px);
	margin: 0 auto;
	padding: 22px 0 0;
	color: var(--lh-ink-faint);
	font-size: var(--lh-text-xs);
}

.lh-breadcrumb a {
	color: var(--lh-accent-ink);
	text-underline-offset: 3px;
}

.lh-breadcrumb a:hover {
	text-decoration: underline;
}

.lh-section-inner {
	width: min(100% - 40px, 760px);
	margin: 0 auto;
}

.lh-selector-section,
.lh-reading-section,
.lh-link-section,
.lh-share-section {
	padding: 58px 0;
	background: var(--lh-bg);
}

.lh-reading-section {
	background: var(--lh-bg-alt);
}

.lh-selector-section h2,
.lh-link-section h2 {
	margin: 0;
	color: var(--lh-ink);
	font-family: var(--lh-sans);
	font-size: var(--lh-text-2xl);
	font-weight: 500;
	line-height: 1.55;
	letter-spacing: 0;
}

.lh-section-lead {
	max-width: 620px;
	margin: 12px 0 0;
	color: var(--lh-ink-soft);
	font-size: var(--lh-text-sm);
	line-height: 1.9;
}

.lh-sign-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin-top: 28px;
}

.lh-sign-link {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	grid-template-rows: auto auto;
	align-items: center;
	column-gap: 16px;
	min-height: 106px;
	padding: 18px 16px;
	border: 1px solid #e4dde3;
	border-radius: var(--lh-radius);
	background: linear-gradient(180deg, #ffffff 0%, #fbfafb 100%);
	box-shadow: 0 2px 10px rgba(62, 42, 54, 0.04);
	transition: transform 0.2s var(--lh-ease), border-color 0.2s var(--lh-ease), box-shadow 0.2s var(--lh-ease), background 0.2s var(--lh-ease);
}

.lh-sign-link:hover,
.lh-sign-link.is-active {
	transform: translateY(-1px);
	border-color: var(--lh-accent);
	box-shadow: 0 12px 28px rgba(225, 0, 128, 0.12), 0 2px 10px rgba(62, 42, 54, 0.04);
}

.lh-sign-link.is-active {
	background: #ffffff;
}

.lh-sign-symbol {
	grid-row: 1 / 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 999px;
	background: var(--lh-sign-bg, var(--lh-accent-soft));
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
	color: var(--lh-sign-color, var(--lh-accent-ink));
	font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
	font-size: 1.45rem;
	line-height: 1;
}

.lh-sign-link[data-sign="aries"],
.lh-reading[data-sign="aries"] {
	--lh-sign-color: #d84b59;
	--lh-sign-bg: #f9e0e3;
}

.lh-sign-link[data-sign="taurus"],
.lh-reading[data-sign="taurus"] {
	--lh-sign-color: #c65b42;
	--lh-sign-bg: #f7dfd7;
}

.lh-sign-link[data-sign="gemini"],
.lh-reading[data-sign="gemini"] {
	--lh-sign-color: #d99b29;
	--lh-sign-bg: #f9ecd1;
}

.lh-sign-link[data-sign="cancer"],
.lh-reading[data-sign="cancer"] {
	--lh-sign-color: #d4aa25;
	--lh-sign-bg: #f8efd1;
}

.lh-sign-link[data-sign="leo"],
.lh-reading[data-sign="leo"] {
	--lh-sign-color: #d5be21;
	--lh-sign-bg: #f8f1cf;
}

.lh-sign-link[data-sign="virgo"],
.lh-reading[data-sign="virgo"] {
	--lh-sign-color: #74a845;
	--lh-sign-bg: #e5efd9;
}

.lh-sign-link[data-sign="libra"],
.lh-reading[data-sign="libra"] {
	--lh-sign-color: #6cb05e;
	--lh-sign-bg: #e2f0dd;
}

.lh-sign-link[data-sign="scorpio"],
.lh-reading[data-sign="scorpio"] {
	--lh-sign-color: #2d9485;
	--lh-sign-bg: #dcefeb;
}

.lh-sign-link[data-sign="sagittarius"],
.lh-reading[data-sign="sagittarius"] {
	--lh-sign-color: #367ed0;
	--lh-sign-bg: #dce8f7;
}

.lh-sign-link[data-sign="capricorn"],
.lh-reading[data-sign="capricorn"] {
	--lh-sign-color: #6554b5;
	--lh-sign-bg: #e4e0f3;
}

.lh-sign-link[data-sign="aquarius"],
.lh-reading[data-sign="aquarius"] {
	--lh-sign-color: #8a55c6;
	--lh-sign-bg: #eadff4;
}

.lh-sign-link[data-sign="pisces"],
.lh-reading[data-sign="pisces"] {
	--lh-sign-color: #c44f7d;
	--lh-sign-bg: #f5dfeb;
}

.lh-sign-name {
	align-self: end;
	color: #3d3640;
	font-size: 1.28rem;
	font-weight: 500;
	line-height: 1.35;
	letter-spacing: 0;
}

.lh-sign-period {
	align-self: start;
	margin-top: 4px;
	color: #746b74;
	font-size: 1.03rem;
	line-height: 1.32;
	letter-spacing: 0;
}

.lh-empty-state,
.lh-loading-state {
	padding: 34px 22px;
	border: 1px solid var(--lh-line);
	border-radius: var(--lh-radius-lg);
	background: var(--lh-surface);
	box-shadow: var(--lh-shadow-sm);
	text-align: center;
}

.lh-empty-state p {
	margin: 10px 0 0;
	color: var(--lh-ink-soft);
	font-size: var(--lh-text-sm);
	line-height: 1.9;
}

.lh-empty-title {
	margin: 0 !important;
	color: var(--lh-ink) !important;
	font-size: var(--lh-text-lg);
	font-weight: 500;
	line-height: 1.5;
}

.lh-loading-spinner {
	display: inline-flex;
	width: 40px;
	height: 40px;
	border: 3px solid #eadfd4;
	border-top-color: var(--lh-accent);
	border-radius: 50%;
	animation: lh-spin 0.85s linear infinite;
}

.lh-loading-title {
	margin: 18px 0 0;
	color: var(--lh-ink);
	font-size: var(--lh-text-xl);
	font-weight: 500;
	line-height: 1.5;
}

.lh-loading-text {
	max-width: 520px;
	margin: 10px auto 0;
	color: var(--lh-ink-soft);
	font-size: var(--lh-text-sm);
	line-height: 1.9;
}

@keyframes lh-spin {
	to { transform: rotate(360deg); }
}

.lh-reading {
	scroll-margin-top: 86px;
	border: 1px solid var(--lh-line);
	border-radius: var(--lh-radius-lg);
	background: var(--lh-surface);
	box-shadow: var(--lh-shadow);
	overflow: hidden;
	-webkit-user-select: text;
	user-select: text;
	animation: lh-fade-in 0.45s var(--lh-ease) both;
}

@keyframes lh-fade-in {
	from { opacity: 0; transform: translateY(8px); }
	to { opacity: 1; transform: translateY(0); }
}

.lh-reading-header {
	padding: 32px 22px 28px;
	background: var(--lh-surface-soft);
	border-bottom: 1px solid var(--lh-line);
	text-align: left;
}

.lh-reading-symbol {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	margin-bottom: 16px;
	border-radius: 999px;
	background: var(--lh-sign-bg, var(--lh-accent-soft));
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
	color: var(--lh-sign-color, var(--lh-accent-ink));
	font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
	font-size: 1.45rem;
	line-height: 1;
}

.lh-reading-month {
	margin: 0 0 10px;
	color: var(--lh-accent-ink);
	font-size: var(--lh-text-xs);
	font-weight: 500;
	line-height: 1.45;
}

.lh-reading-header h2 {
	max-width: 620px;
	margin: 0;
	color: var(--lh-ink);
	font-family: var(--lh-sans);
	font-size: var(--lh-text-2xl);
	font-weight: 500;
	line-height: 1.55;
	letter-spacing: 0;
}

.lh-reading-body {
	display: flex;
	flex-direction: column;
	padding: 0 22px 30px;
}

.lh-reading-part {
	padding: 34px 0;
	border-bottom: 1px solid var(--lh-line);
}

.lh-reading-part:last-of-type {
	border-bottom: none;
}

.lh-part-number {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 12px;
	color: var(--lh-accent-ink);
	font-size: var(--lh-text-xs);
	font-weight: 500;
	line-height: 1.5;
}

.lh-part-number::before {
	content: "";
	width: 26px;
	height: 2px;
	background: var(--lh-accent);
}

.lh-reading-part h3 {
	margin: 0 0 14px;
	color: var(--lh-ink);
	font-family: var(--lh-sans);
	font-size: var(--lh-text-xl);
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: 0;
}

.lh-reading-part p {
	margin: 0;
	color: var(--lh-ink);
	font-size: var(--lh-text-base);
	font-weight: 400;
	line-height: 2.05;
}

.lh-reading-part p + p {
	margin-top: 16px;
}

.lh-lucky-list {
	display: grid;
	gap: 10px;
	margin: 26px 0 0;
	padding: 0;
}

.lh-lucky-list div {
	display: grid;
	grid-template-columns: 132px 1fr;
	gap: 12px;
	align-items: start;
	padding: 16px 0;
	border-top: 1px solid var(--lh-line);
	background: transparent;
}

.lh-lucky-list dt {
	margin: 0;
	color: var(--lh-ink-faint);
	font-size: var(--lh-text-xs);
	font-weight: 500;
	line-height: 1.5;
}

.lh-lucky-list dd {
	margin: 0;
	color: var(--lh-ink);
	font-size: var(--lh-text-sm);
	font-weight: 500;
	line-height: 1.6;
}

.lh-copy-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 14px;
	margin-top: 26px;
}

.lh-copy-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 10px 18px;
	border: 1px solid var(--lh-line-strong);
	border-radius: 999px;
	background: var(--lh-surface);
	color: var(--lh-accent-ink);
	font-family: var(--lh-sans);
	font-size: var(--lh-text-sm);
	font-weight: 500;
	line-height: 1.4;
	cursor: pointer;
	transition: border-color 0.2s var(--lh-ease), background 0.2s var(--lh-ease), color 0.2s var(--lh-ease);
}

.lh-copy-button:hover {
	border-color: var(--lh-accent);
	background: var(--lh-accent-soft);
	color: var(--lh-accent-ink);
}

.lh-copy-status {
	color: var(--lh-ink-soft);
	font-size: var(--lh-text-xs);
	line-height: 1.5;
}

.lh-consult-cta {
	margin-top: 30px;
	padding: 30px 22px;
	border: 1px solid var(--lh-line);
	border-radius: var(--lh-radius-lg);
	background: var(--lh-plum);
	color: #fff;
	text-align: left;
}

body.mizary-love-horoscope .lh-consult-cta .lh-kicker {
	margin-bottom: 10px;
	color: #e7c9d8 !important;
	letter-spacing: 0;
	-webkit-text-fill-color: #e7c9d8 !important;
}

body.mizary-love-horoscope .lh-consult-cta h3 {
	margin: 0 0 14px;
	color: #fff !important;
	font-family: var(--lh-sans);
	font-size: var(--lh-text-xl);
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: 0;
	-webkit-text-fill-color: #fff !important;
}

body.mizary-love-horoscope .lh-consult-cta p {
	max-width: 560px;
	margin: 0;
	color: rgba(255, 255, 255, 0.88) !important;
	font-size: var(--lh-text-sm);
	line-height: 1.95;
	-webkit-text-fill-color: rgba(255, 255, 255, 0.88) !important;
}

body.mizary-love-horoscope .lh-consult-cta p + p {
	margin-top: 12px;
}

.lh-af-note {
	margin-top: 16px !important;
	padding-top: 16px;
	border-top: 1px solid rgba(255, 255, 255, 0.16);
	color: rgba(255, 255, 255, 0.76) !important;
	font-size: var(--lh-text-xs) !important;
	-webkit-text-fill-color: rgba(255, 255, 255, 0.76) !important;
}

.lh-consult-cta .lh-cta-row {
	justify-content: flex-start;
}

.lh-consult-cta .lh-button-secondary {
	border-color: rgba(255, 255, 255, 0.34);
	color: #fff;
}

.lh-consult-cta .lh-button-secondary:hover {
	border-color: #fff;
	color: #fff;
}

.lh-link-section {
	background: var(--lh-bg);
}

.lh-link-grid {
	display: grid;
	gap: 12px;
	margin-top: 24px;
}

.lh-link-card {
	display: grid;
	gap: 6px;
	padding: 22px;
	border: 1px solid var(--lh-line);
	border-radius: var(--lh-radius);
	background: var(--lh-surface);
	box-shadow: var(--lh-shadow-sm);
	transition: transform 0.2s var(--lh-ease), border-color 0.2s var(--lh-ease), box-shadow 0.2s var(--lh-ease);
}

.lh-link-card:hover {
	transform: translateY(-1px);
	border-color: var(--lh-line-strong);
	box-shadow: var(--lh-shadow);
}

.lh-link-card span {
	color: var(--lh-accent-ink);
	font-size: var(--lh-text-xs);
	font-weight: 500;
	line-height: 1.5;
}

.lh-link-card strong {
	color: var(--lh-ink);
	font-size: var(--lh-text-lg);
	font-weight: 500;
	line-height: 1.5;
}

.lh-link-card small {
	color: var(--lh-ink-soft);
	font-size: var(--lh-text-sm);
	line-height: 1.7;
}

.lh-share-section {
	background: var(--lh-bg);
}

.lh-share-inner {
	display: flex;
	justify-content: center;
	padding-bottom: 58px;
}

.lh-share-inner .lh-button {
	width: 100%;
	max-width: 360px;
}

.lh-footer {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 260px;
	padding: 54px 22px;
	background: #090918;
	border-top: 1px solid rgba(194, 149, 93, 0.35);
	color: rgba(255, 255, 255, 0.74) !important;
	text-align: center;
}

.lh-footer-home {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 58px;
	min-width: min(100%, 280px);
	padding: 14px 28px;
	border: 1px solid rgba(194, 149, 93, 0.78);
	border-radius: 999px;
	color: rgba(255, 255, 255, 0.88) !important;
	font-size: 0.9rem;
	font-weight: 400;
	line-height: 1.4;
}

.lh-footer-copy {
	margin: 32px 0 0;
	color: rgba(255, 255, 255, 0.84) !important;
	font-size: 0.88rem;
	line-height: 1.6;
}

.lh-footer-note {
	margin: 20px 0 0;
	color: rgba(255, 255, 255, 0.42) !important;
	font-size: 0.78rem;
	line-height: 1.8;
}

@media (min-width: 560px) {
	.lh-header {
		padding-right: 28px;
		padding-left: 28px;
	}

	.lh-hero h1 {
		font-size: 2.45rem;
	}

	.lh-sign-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (min-width: 820px) {
	.lh-hero {
		min-height: 560px;
		padding: 120px 36px 72px;
	}

	.lh-hero h1 {
		font-size: 3.05rem;
	}

	.lh-hero-lead {
		font-size: var(--lh-text-lg);
	}

	.lh-selector-section,
	.lh-reading-section,
	.lh-link-section,
	.lh-share-section {
		padding: 82px 0;
	}

	.lh-selector-section h2,
	.lh-link-section h2 {
		font-size: var(--lh-text-3xl);
	}

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

	.lh-reading-header {
		padding: 44px 48px 36px;
	}

	.lh-reading-header h2 {
		font-size: var(--lh-text-3xl);
	}

	.lh-reading-body {
		padding: 0 48px 44px;
	}

	.lh-reading-part {
		padding: 42px 0;
	}

	.lh-consult-cta {
		padding: 40px 44px;
	}

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

	.lh-share-inner {
		padding-bottom: 82px;
	}
}

.lh-mfoot {
	display: flex;
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 60;
	padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
	background: rgba(255, 255, 255, 0.94);
	border-top: 1px solid var(--lh-line);
	backdrop-filter: saturate(150%) blur(16px);
}

.lh-mfoot .lh-button {
	width: 100%;
	min-height: 44px;
}

@media (min-width: 1024px) {
	.lh-mfoot {
		display: none;
	}

	body.mizary-love-horoscope {
		padding-bottom: 0;
	}
}

@media (max-width: 420px) {
	.lh-header {
		min-height: 58px;
		padding-top: 9px;
		padding-bottom: 9px;
	}

	.lh-logo {
		font-size: 0.95rem;
	}

	.lh-section-inner,
	.lh-breadcrumb {
		width: min(100% - 28px, 760px);
	}

	.lh-hero {
		min-height: 390px;
		padding: 74px 16px 40px;
	}

	.lh-hero h1 {
		font-size: 1.8rem;
	}

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

	.lh-sign-link {
		min-height: 104px;
		padding: 16px 13px;
		column-gap: 14px;
	}

	.lh-sign-symbol {
		width: 38px;
		height: 38px;
		font-size: 1.34rem;
	}

	.lh-sign-name {
		font-size: 1.22rem;
	}

	.lh-sign-period {
		font-size: 1rem;
	}

	.lh-lucky-list div {
		grid-template-columns: 1fr;
		gap: 4px;
	}

	.lh-cta-row,
	.lh-consult-cta .lh-cta-row {
		flex-direction: column;
		align-items: stretch;
	}

	.lh-button {
		width: 100%;
	}

	.lh-copy-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.lh-copy-button {
		width: 100%;
	}
}

@media (max-width: 340px) {
	.lh-header {
		align-items: flex-start;
		flex-direction: column;
	}

	.lh-sign-grid {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	body.mizary-love-horoscope * {
		animation-duration: 0.001ms !important;
		transition-duration: 0.001ms !important;
	}
}
