/* =====================================================================
   AiSumLab Theme — main.css
   디자인 토큰 → 베이스 → 레이아웃 → 컴포넌트 → 반응형
   브랜드 모티브: 함수 f(x) / 상승 곡선 / 모노스페이스 라벨
   ===================================================================== */

/* ---------- 1. 디자인 토큰 ---------- */
:root {
	/* 색 */
	--bg:        #ffffff;
	--surface:   #f7f7f4;   /* 섹션 밴드 */
	--ink:       #16171a;   /* 본문 텍스트 */
	--ink-2:     #3c3f45;
	--muted:     #6f7177;   /* 메타/캡션 */
	--line:      #e7e7e1;   /* 구분선 */
	--accent:    #0e7a4f;   /* 포인트(딥그린) — 브랜드색으로 교체 가능 */
	--accent-2:  #0a5e3c;
	--accent-soft:#e7f3ec;

	/* 타이포 */
	--font-body: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, "Segoe UI", Roboto, "Helvetica Neue", "Apple SD Gothic Neo", sans-serif;
	--font-mono: ui-monospace, "SFMono-Regular", "JetBrains Mono", Menlo, Consolas, "Liberation Mono", monospace;

	/* 타이포 스케일 */
	--step--1: 0.82rem;
	--step-0:  1rem;
	--step-1:  1.18rem;
	--step-2:  1.42rem;
	--step-3:  1.85rem;
	--step-4:  2.6rem;
	--step-5:  clamp(2.6rem, 6vw, 4.4rem);

	/* 간격 */
	--space-1: 0.5rem;
	--space-2: 1rem;
	--space-3: 1.5rem;
	--space-4: 2.5rem;
	--space-5: 4rem;
	--space-6: 6rem;

	/* 레이아웃 */
	--container: 1160px;
	--reading:   760px;
	--radius:    14px;
	--radius-sm: 8px;
	--card-ratio: 1200 / 628;   /* 카드 미디어 박스 고정 비율(제목 정렬용). 16/9, 3/2 등으로 변경 가능 */
}

/* ---------- 2. 베이스 / 리셋 ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
	margin: 0;
	background: var(--bg);
	color: var(--ink);
	font-family: var(--font-body);
	font-size: var(--step-0);
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
	word-break: keep-all;       /* 한글 줄바꿈 자연스럽게 */
	overflow-wrap: break-word;
}

img, svg { max-width: 100%; height: auto; display: block; }

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

h1, h2, h3, h4 { line-height: 1.3; letter-spacing: -0.01em; margin: 0 0 var(--space-2); font-weight: 700; }

p { margin: 0 0 var(--space-2); }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--space-3); }

/* 접근성 */
.screen-reader-text {
	position: absolute !important; width: 1px; height: 1px;
	padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
.skip-link {
	position: absolute; left: -999px; top: 0; z-index: 100;
	background: var(--ink); color: #fff; padding: var(--space-1) var(--space-2);
}
.skip-link:focus { left: var(--space-2); top: var(--space-2); }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 2px; }

/* 공통 eyebrow (모노 + f( ) 래핑) */
.eyebrow {
	display: inline-block;
	font-family: var(--font-mono);
	font-size: var(--step--1);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--accent-2);
	margin: 0 0 var(--space-1);
}
.eyebrow--fn::before { content: "f( "; color: var(--muted); }
.eyebrow--fn::after  { content: " )"; color: var(--muted); }

/* 버튼 */
.btn {
	display: inline-block;
	font-family: var(--font-mono);
	font-size: var(--step--1);
	letter-spacing: 0.04em;
	padding: 0.7em 1.3em;
	border: 1.5px solid var(--ink);
	border-radius: 999px;
	color: var(--ink);
	transition: background .18s ease, color .18s ease;
}
.btn:hover { background: var(--ink); color: #fff; text-decoration: none; }

/* ---------- 3. 헤더 / 네비 ---------- */
.site-header {
	position: sticky; top: 0; z-index: 50;
	background: rgba(255,255,255,.86);
	backdrop-filter: saturate(160%) blur(10px);
	border-bottom: 1px solid var(--line);
}
.site-header__inner {
	display: flex; align-items: center; justify-content: space-between;
	min-height: 64px;
}
.brand { display: inline-flex; align-items: center; gap: .55rem; color: var(--ink); }
.brand:hover { text-decoration: none; }
.brand__mark {
	font-family: var(--font-mono); font-weight: 700;
	background: var(--ink); color: #fff;
	padding: .12em .4em; border-radius: 6px; font-size: .95rem;
}
.brand__name { font-weight: 800; letter-spacing: -0.02em; }

.site-nav .menu {
	list-style: none; display: flex; gap: var(--space-3); margin: 0; padding: 0;
}
.site-nav .menu a {
	font-family: var(--font-mono); font-size: var(--step--1);
	letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-2);
}
.site-nav .menu a:hover { color: var(--accent); text-decoration: none; }

/* 드롭다운 */
.site-nav .menu .sub-menu {
	list-style: none; margin: 0; padding: .5rem 0;
	position: absolute; background: #fff; border: 1px solid var(--line);
	border-radius: var(--radius-sm); min-width: 180px; display: none;
	box-shadow: 0 12px 30px rgba(0,0,0,.06);
}
.site-nav .menu li { position: relative; }
.site-nav .menu li:hover > .sub-menu,
.site-nav .menu li:focus-within > .sub-menu { display: block; }
.site-nav .menu .sub-menu a { display: block; padding: .45rem 1rem; text-transform: none; }

/* 모바일 토글 */
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 10px; }
.nav-toggle__bar, .nav-toggle__bar::before, .nav-toggle__bar::after {
	display: block; width: 22px; height: 2px; background: var(--ink); transition: .2s;
}
.nav-toggle__bar { position: relative; }
.nav-toggle__bar::before, .nav-toggle__bar::after { content: ""; position: absolute; left: 0; }
.nav-toggle__bar::before { top: -7px; } .nav-toggle__bar::after { top: 7px; }

/* ---------- 4. 히어로 ---------- */
.hero { border-bottom: 1px solid var(--line); }
.hero__inner {
	display: grid; grid-template-columns: 1.2fr .8fr; gap: var(--space-4); align-items: center;
	padding-block: var(--space-6);
}
.hero__title {
	font-size: var(--step-5); font-weight: 800; letter-spacing: -0.03em;
	margin: 0 0 var(--space-2); display: flex; align-items: baseline; gap: .2em; flex-wrap: wrap;
}
.hero__op { color: var(--muted); font-weight: 400; }
.hero__fn { color: var(--accent); font-family: var(--font-mono); }
.hero__var { color: var(--ink); }
.hero__sub { font-size: var(--step-1); color: var(--ink-2); max-width: 40ch; }

/* 곡선 SVG */
.fn-curve { width: 100%; max-width: 380px; margin-inline: auto; }
.fn-axis { stroke: var(--line); stroke-width: 1.5; }
.fn-line { stroke: var(--accent); stroke-width: 3; stroke-linecap: round;
	stroke-dasharray: 1; stroke-dashoffset: 1; }
.fn-curve.is-in .fn-line {
	stroke-dasharray: 480; stroke-dashoffset: 480; animation: draw 1.4s ease forwards .15s;
}
.fn-dot { fill: var(--accent); opacity: 0; }
.fn-curve.is-in .fn-dot { animation: pop .4s ease forwards 1.4s; }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes pop  { to { opacity: 1; } }

/* ---------- 5. 카테고리 3카드 ---------- */
.cat-cards { padding-block: var(--space-5); border-bottom: 1px solid var(--line); }
.cat-cards__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); }
.cat-card {
	display: flex; flex-direction: column; gap: .4rem;
	padding: var(--space-3); border: 1px solid var(--line); border-radius: var(--radius);
	color: var(--ink); background: var(--bg);
	transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.cat-card:hover {
	text-decoration: none; transform: translateY(-3px);
	border-color: var(--accent); box-shadow: 0 14px 34px rgba(14,122,79,.10);
}
.cat-card__fn { font-family: var(--font-mono); color: var(--accent-2); font-size: var(--step--1); letter-spacing: .04em; }
.cat-card__kr { font-size: var(--step-1); font-weight: 700; }
.cat-card__desc { color: var(--muted); font-size: var(--step--1); }
.cat-card__go { margin-top: auto; font-family: var(--font-mono); color: var(--accent); }

/* ---------- 6. 섹션 공통 ---------- */
.section { padding-block: var(--space-5); }
.section--curation { background: var(--surface); border-top: 1px solid var(--line); }
.section__head { margin-bottom: var(--space-4); }
.section__title { font-size: var(--step-3); }
.section__desc { color: var(--muted); }
.section__more { margin-top: var(--space-4); text-align: center; }
.section__search { margin-top: var(--space-2); max-width: 440px; }

/* ---------- 7. 카드 그리드 (1:1 정사각 썸네일) ---------- */
.grid { display: grid; gap: var(--space-3); align-items: start; }
.grid--cards { grid-template-columns: repeat(3, 1fr); }

.card { display: flex; flex-direction: column; }
.card__media {
	position: relative; aspect-ratio: var(--card-ratio); overflow: hidden; line-height: 0;
	border-radius: var(--radius); background: var(--surface);
}
/* 여백 채우는 흐린 배경(같은 이미지) */
.card__bg {
	position: absolute; inset: 0; background-size: cover; background-position: center;
	filter: blur(22px) saturate(1.15); transform: scale(1.25); opacity: .5;
}
/* 실제 썸네일: 자르지 않고 박스 안에 전체 표시(원본 비율 유지) */
.card__img {
	position: relative; z-index: 1; width: 100%; height: 100%;
	object-fit: contain; transition: transform .4s ease;
}
.card:hover .card__img { transform: scale(1.04); }
.card__img--placeholder {
	position: relative; z-index: 1; display: flex; align-items: center; justify-content: center;
	width: 100%; height: 100%; line-height: 1;
	font-family: var(--font-mono); color: var(--muted); font-size: 1.5rem; letter-spacing: .1em;
}
.card__body { padding-top: var(--space-2); }
.card__meta { display: flex; align-items: center; gap: .6rem; margin-bottom: .35rem; }
.card__meta .eyebrow { margin: 0; }
.card__date { font-family: var(--font-mono); font-size: var(--step--1); color: var(--muted); }
.card__title { font-size: var(--step-1); margin: 0; line-height: 1.4; }
.card__title a { color: var(--ink); }
.card__title a:hover { color: var(--accent); text-decoration: none; }

/* ---------- 7-1. 목록형 글 리스트 (썸네일+제목+미리보기) ---------- */
.post-list { max-width: 1040px; margin-inline: auto; }
.list-item {
	display: grid; grid-template-columns: 240px 1fr; gap: var(--space-3);
	padding: var(--space-4) 0; border-bottom: 1px solid var(--line);  /* 글 사이 구분줄 */
	align-items: start;
}
.post-list .list-item:first-child { padding-top: 0; }
.post-list .list-item:last-child { border-bottom: 0; }

.list-item__media {
	position: relative; aspect-ratio: 3 / 2; overflow: hidden; line-height: 0;
	border-radius: var(--radius); background: var(--surface);
	box-shadow: 0 10px 28px rgba(22, 23, 26, .14);   /* 썸네일 그림자 */
	transition: box-shadow .2s ease, transform .2s ease;
}
.list-item:hover .list-item__media { box-shadow: 0 16px 38px rgba(22, 23, 26, .20); }
.list-item:hover .card__img { transform: scale(1.04); }

.list-item__body { min-width: 0; padding-top: .15rem; }
.list-item__meta { display: flex; align-items: center; gap: .6rem; margin-bottom: .45rem; }
.list-item__meta .eyebrow { margin: 0; }
.list-item__date { font-family: var(--font-mono); font-size: var(--step--1); color: var(--muted); }
.list-item__title { font-size: var(--step-2); line-height: 1.38; margin: 0 0 .5rem; }
.list-item__title a { color: var(--ink); }
.list-item__title a:hover { color: var(--accent); text-decoration: none; }
.list-item__excerpt {
	margin: 0; color: var(--muted); font-size: var(--step-0); line-height: 1.7;
	display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}

@media (max-width: 680px) {
	.list-item { grid-template-columns: 120px 1fr; gap: var(--space-2); padding: var(--space-3) 0; }
	.list-item__title { font-size: var(--step-1); }
	.list-item__excerpt { -webkit-line-clamp: 2; font-size: var(--step--1); }
}
@media (max-width: 420px) {
	.list-item { grid-template-columns: 96px 1fr; }
	.list-item__excerpt { display: none; }
}

/* ---------- 8. 큐레이션 3분할 ---------- */
.curation { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
.curation__title { font-family: var(--font-mono); font-size: var(--step-0); color: var(--accent-2); margin-bottom: var(--space-2); }

.rank-list { list-style: none; margin: 0; padding: 0; counter-reset: none; }
.rank-list__item { display: flex; gap: .7rem; padding: .55rem 0; border-bottom: 1px solid var(--line); }
.rank-list__num { font-family: var(--font-mono); font-weight: 700; color: var(--accent); min-width: 1.4em; }
.rank-list__item a { color: var(--ink); }
.rank-list__item a:hover { color: var(--accent); }

.mini-list { list-style: none; margin: 0; padding: 0; }
.mini-list__item { display: flex; justify-content: space-between; gap: .6rem; padding: .55rem 0; border-bottom: 1px solid var(--line); }
.mini-list__item a { color: var(--ink); }
.mini-list__item time { font-family: var(--font-mono); font-size: var(--step--1); color: var(--muted); white-space: nowrap; }
.mini-list__item--empty { color: var(--muted); font-size: var(--step--1); }

/* ---------- 9. 단일 글 ---------- */
.single-wrap {
	display: grid; grid-template-columns: minmax(0,1fr) 280px; gap: var(--space-5);
	padding-block: var(--space-5);
}
.single-main { min-width: 0; max-width: var(--reading); margin-inline: auto; width: 100%; }
.post__head { margin-bottom: var(--space-3); }
.post__meta { display: flex; gap: .7rem; align-items: center; margin-bottom: var(--space-1); }
.post__meta time { font-family: var(--font-mono); font-size: var(--step--1); color: var(--muted); }
.post__title { font-size: var(--step-4); letter-spacing: -0.025em; }
.post__cover { margin: 0 0 var(--space-4); border-radius: var(--radius); overflow: hidden; }

.post__content { font-size: 1.05rem; line-height: 1.85; color: var(--ink-2); }
.post__content h2 { font-size: var(--step-2); margin-top: var(--space-4); color: var(--ink); }
.post__content h3 { font-size: var(--step-1); margin-top: var(--space-3); color: var(--ink); }
.post__content img { border-radius: var(--radius-sm); margin-block: var(--space-2); }
.post__content blockquote {
	margin: var(--space-3) 0; padding: var(--space-2) var(--space-3);
	border-left: 3px solid var(--accent); background: var(--accent-soft); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.post__content pre {
	background: #16171a; color: #e8e8e8; padding: var(--space-2); border-radius: var(--radius-sm);
	overflow-x: auto; font-family: var(--font-mono); font-size: .9rem;
}
.post__content code { font-family: var(--font-mono); font-size: .92em; }
.post__content a { text-decoration: underline; text-underline-offset: 3px; }

.post__tags { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem; padding: 0; margin: var(--space-4) 0 0; }
.post__tags li a {
	font-family: var(--font-mono); font-size: var(--step--1);
	padding: .25em .7em; border: 1px solid var(--line); border-radius: 999px; color: var(--muted);
}
.post__tags li a:hover { border-color: var(--accent); color: var(--accent); text-decoration: none; }

.related { margin-top: var(--space-5); padding-top: var(--space-4); border-top: 1px solid var(--line); }
.related .section__title { font-family: var(--font-mono); font-size: var(--step-1); color: var(--accent-2); }

/* ---------- 9-1. 댓글 (관련 글과 명확히 구분) ---------- */
.comments {
	margin-top: var(--space-5);
	padding-top: var(--space-4);
	border-top: 3px solid var(--ink);   /* 관련 글(얇은 선)과 달리 굵은 선으로 구분 */
}
.comments__title {
	font-family: var(--font-mono); font-size: var(--step-1); color: var(--accent-2);
	margin-bottom: var(--space-3);
}
.comments__closed { color: var(--muted); font-size: var(--step--1); }

.comment-list { list-style: none; margin: 0 0 var(--space-4); padding: 0; }
.comment-list .children {
	list-style: none; margin: var(--space-2) 0 0; padding-left: var(--space-3);
	border-left: 2px solid var(--line);
}
.comment-item { padding: var(--space-3) 0; border-bottom: 1px solid var(--line); }
.comment-list > .comment-item:last-child { border-bottom: 0; }

.comment-body { display: flex; gap: var(--space-2); align-items: flex-start; }
.comment-item__avatar { border-radius: 50%; flex-shrink: 0; }
.comment-item__content { flex: 1; min-width: 0; }
.comment-item__author { font-weight: 700; color: var(--ink); margin-bottom: .25rem; }
.comment-item__text { color: var(--ink-2); line-height: 1.7; }
.comment-item__text p { margin: 0 0 .4rem; }
.comment-item__moderation { font-size: var(--step--1); color: var(--muted); margin: 0 0 .3rem; }
.comment-item__actions { margin-top: .35rem; }
.comment-item__actions a { font-family: var(--font-mono); font-size: var(--step--1); color: var(--muted); }
.comment-item__actions a:hover { color: var(--accent); text-decoration: none; }

/* 댓글 작성 폼 */
.comment-respond { margin-top: var(--space-4); }
.comment-reply-title { font-size: var(--step-1); margin-bottom: var(--space-2); }
.comment-reply-title small { margin-left: .5rem; font-weight: 400; }
.comment-form { display: flex; flex-direction: column; gap: var(--space-2); }
.comment-form .logged-in-as,
.comment-form .comment-notes { font-size: var(--step--1); color: var(--muted); margin: 0; }
.comment-form .logged-in-as a { color: var(--accent); }
.comment-form textarea,
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"] {
	width: 100%; padding: .75em .95em; border: 1px solid var(--line); border-radius: var(--radius-sm);
	font: inherit; background: var(--bg); color: var(--ink);
}
.comment-form textarea { resize: vertical; min-height: 120px; }
.comment-form textarea:focus,
.comment-form input:focus { border-color: var(--accent); outline: none; }
.comment-form .form-submit { margin: 0; }
.comment-form .btn--solid {
	-webkit-appearance: none; appearance: none; cursor: pointer;
	background: var(--ink); color: #fff; border-color: var(--ink);
}
.comment-form .btn--solid:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* 사이드바 / 위젯 */
.single-side { min-width: 0; }
.sidebar-inner { position: sticky; top: 84px; }
.widget { margin-bottom: var(--space-4); }
.widget__title { font-family: var(--font-mono); font-size: var(--step-0); color: var(--accent-2); margin-bottom: var(--space-2); }

/* ---------- 10. 검색 폼 ---------- */
.search-form { display: flex; gap: .5rem; }
.search-form__input {
	flex: 1; padding: .7em 1em; border: 1px solid var(--line); border-radius: 999px;
	font: inherit; background: var(--bg); color: var(--ink);
}
.search-form__input:focus { border-color: var(--accent); outline: none; }
.search-form__btn {
	font-family: var(--font-mono); font-size: var(--step--1); padding: .7em 1.2em;
	border: 0; border-radius: 999px; background: var(--ink); color: #fff; cursor: pointer;
}

/* 페이지네이션 */
.pagination { margin-top: var(--space-5); }
.pagination .nav-links { display: flex; gap: .4rem; flex-wrap: wrap; justify-content: center; }
.pagination .page-numbers {
	font-family: var(--font-mono); padding: .5em .9em; border: 1px solid var(--line);
	border-radius: var(--radius-sm); color: var(--ink-2);
}
.pagination .page-numbers.current { background: var(--ink); color: #fff; border-color: var(--ink); }
.pagination a.page-numbers:hover { border-color: var(--accent); color: var(--accent); text-decoration: none; }

/* ---------- 11. 404 ---------- */
.section--404 { text-align: center; padding-block: var(--space-6); }
.error-404 { max-width: 520px; margin-inline: auto; }
.error-404__code { font-family: var(--font-mono); color: var(--accent); font-size: var(--step-2); }
.error-404 .section__search { margin-inline: auto; margin-block: var(--space-3); }

/* ---------- 12. 푸터 ---------- */
.site-footer { border-top: 1px solid var(--line); background: var(--surface); margin-top: var(--space-6); }
.site-footer__inner {
	display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: var(--space-4);
	padding-block: var(--space-5);
}
.site-footer__tagline { font-family: var(--font-mono); font-weight: 700; margin: var(--space-2) 0 .3rem; }
.site-footer__desc { color: var(--muted); font-size: var(--step--1); }
.site-footer__nav .menu { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .5rem; }
.site-footer__nav .menu a { color: var(--ink-2); font-size: var(--step--1); }
.site-footer__bottom {
	display: flex; justify-content: space-between; gap: var(--space-2); flex-wrap: wrap; align-items: center;
	padding-block: var(--space-3); border-top: 1px solid var(--line); color: var(--muted);
}
.site-footer__legal .menu--legal {
	list-style: none; margin: 0; padding: 0; display: flex; gap: var(--space-2); flex-wrap: wrap;
}
.site-footer__legal a,
.site-footer__legal .menu--legal a {
	font-family: var(--font-mono); font-size: var(--step--1); color: var(--ink-2);
}
.site-footer__legal a:hover { color: var(--accent); }

/* ---------- 13. 반응형 ---------- */
@media (max-width: 980px) {
	.hero__inner { grid-template-columns: 1fr; gap: var(--space-3); padding-block: var(--space-5); }
	.hero__viz { order: -1; }
	.single-wrap { grid-template-columns: 1fr; }
	.single-side { display: none; }      /* 모바일은 사이드바 숨김(필요시 푸터 위젯 활용) */
	.site-footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
	.grid--cards { grid-template-columns: repeat(2, 1fr); }
	.cat-cards__grid { grid-template-columns: 1fr; }
	.curation { grid-template-columns: 1fr; gap: var(--space-3); }
	.site-footer__inner { grid-template-columns: 1fr; }

	/* 모바일 메뉴 */
	.nav-toggle { display: block; }
	.site-nav {
		position: absolute; left: 0; right: 0; top: 64px;
		background: #fff; border-bottom: 1px solid var(--line);
		max-height: 0; overflow: hidden; transition: max-height .25s ease;
	}
	.site-nav.is-open { max-height: 80vh; overflow: auto; }
	.site-nav .menu { flex-direction: column; gap: 0; padding: var(--space-2) var(--space-3); }
	.site-nav .menu > li { border-bottom: 1px solid var(--line); }
	.site-nav .menu a { display: block; padding: .85rem 0; }
	.site-nav .menu .sub-menu { position: static; display: block; border: 0; box-shadow: none; padding-left: var(--space-2); }
}

@media (max-width: 420px) {
	.grid--cards { grid-template-columns: 1fr; }
}

/* ---------- 14. 모션 최소화 존중 ---------- */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
	.fn-line { stroke-dashoffset: 0; stroke-dasharray: none; }
	.fn-dot { opacity: 1; }
}
