/* =========================================================
   載入 isoPOS 品牌字型
   ========================================================= */
/* =========================================================
   isoPOS 品牌文字
   只有 class="isopos-text" 的文字使用 Orbitron
   ========================================================= */
.isopos-text {
	font-family: "Orbitron", sans-serif !important;
	font-weight: 600;
	letter-spacing: .02em;
}

/* =========================
   補充資訊 INFO
   ========================= */
.ishare-note {
	margin: 32px 0;
	padding: 24px 26px;
	background: #e7eef9;
	border: 1px solid #c9d7ec;
	border-radius: 14px;
	color: #4f5965;
	line-height: 1.8;
}

.ishare-note::before {
	content: "INFO";
	display: block;
	margin-bottom: 7px;
	color: #667fa8;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .15em;
}

.ishare-note-title {
	display: block;
	margin-bottom: 8px;
	color: #304a70;
	font-size: 18px;
	font-weight: 700;
}

.ishare-note p {
	margin: 0;
	font-size: 16px;
	color: #4f5965;
}

/* =========================
   步驟卡片 STEP
   ========================= */
.ishare-step {
	display: grid;
	grid-template-columns: 64px 1fr;
	gap: 24px;
	align-items: start;
	margin: 28px 0;
	padding: 30px;
	background: #ffffff;
	border: 1px solid #dfe4ec;
	border-radius: 18px;
	color: #4f5965;
	line-height: 1.8;
}

/* 左側編號 */
.ishare-step .step-number {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	background: #f0f3f8;
	border-radius: 14px;
	color: #7584a4;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: .05em;
}

/* 右側內容 */
.ishare-step-content {
	min-width: 0;
}

/* 標題 */
.ishare-step-content > strong {
	display: block;
	margin: 1px 0 8px;
	color: #17385e;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.5;
}

/* 內文 */
.ishare-step-content p {
	margin: 0;
	color: #52657c;
	font-size: 17px;
	line-height: 1.9;
}

/* 連結 */
.ishare-step-content a {
	color: #7184ac;
	text-decoration: underline;
	text-underline-offset: 3px;
}

/* =========================
   文章引言／重點說明
   ========================= */
.ishare-intro {
	margin: 28px 0;
	padding: 24px 30px;
	background: #f2f4f8;
	border-left: 4px solid #aebdd8;
	border-radius: 0 14px 14px 0;
	color: #52657c;
	font-size: 17px;
	line-height: 1.9;
}

.ishare-intro p {
	margin: 0 0 18px;
}

.ishare-intro p:last-child {
	margin-bottom: 0;
}

.ishare-intro strong {
	color: #17385e;
	font-weight: 700;
}

/* =========================
   文章底部 CTA
   ========================= */
.ishare-cta {
	margin: 40px 0;
	padding: 36px 40px;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 36px;
	background: #f3f6fb;
	border: 1px solid #d5dfec;
	border-radius: 20px;
	color: #53677f;
}

/* 左側文字區 */
.ishare-cta-content {
	flex: 1;
	min-width: 0;
}

/* FROM KNOWLEDGE TO WORKFLOW */
.ishare-cta-label {
	margin: 0 0 14px;
	color: #6e83a7;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: .12em;
}

/* 主標題 */
.ishare-cta-title {
	margin: 0 0 14px;
	color: #173f6b;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.5;
}

/* 內文 */
.ishare-cta-text {
	margin: 0;
	color: #53677f;
	font-size: 16px;
	line-height: 1.9;
}

/* 右側按鈕 */
.ishare-cta-button {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-width: 194px;
	min-height: 56px;
	padding: 14px 24px;
	background: #58769c;
	border-radius: 14px;
	color: #ffffff !important;
	font-size: 16px;
	font-weight: 700;
	text-decoration: none !important;
	transition: opacity .2s ease, transform .2s ease;
}

.ishare-cta-button:hover {
	opacity: .9;
	transform: translateY(-1px);
}

/* 按鈕中的 isoPOS 保持白色 */
.ishare-cta-button .isopos-text {
	color: #ffffff !important;
}

/* =========================
   手機版
   ========================= */
@media (max-width: 700px) {
	/* 補充資訊 INFO */
	.ishare-note {
		padding: 20px;
		border-radius: 12px;
	}
	
	.ishare-note-title {
		font-size: 17px;
	}
	
	.ishare-note p {
		font-size: 16px;
	}
	
	/* STEP */
	.ishare-step {
		grid-template-columns: 48px 1fr;
		gap: 16px;
		padding: 20px;
		border-radius: 14px;
	}
	
	.ishare-step .step-number {
		width: 48px;
		height: 48px;
		border-radius: 10px;
		font-size: 14px;
	}
	
	.ishare-step-content > strong {
		font-size: 18px;
	}
	
	.ishare-step-content p {
		font-size: 16px;
	}
	
	/* 文章引言 */
	.ishare-intro {
		padding: 20px;
		font-size: 16px;
		border-radius: 0 12px 12px 0;
	}
	
	/* CTA */
	.ishare-cta {
		display: block;
		padding: 26px 24px;
		border-radius: 16px;
	}
	
	.ishare-cta-title {
		font-size: 21px;
	}
	
	.ishare-cta-text {
		font-size: 16px;
	}
	
	.ishare-cta-button {
		margin-top: 22px;
		width: 100%;
	}
}

/* =========================================================
   常見問題 FAQ
   ========================================================= */

.ishare-faq {
	margin: 48px 0;
}


/* FAQ 大標題 */

.ishare-faq-title {
	margin: 0 0 28px;
	color: #17385e;
	font-size: 32px;
	font-weight: 700;
	line-height: 1.4;
}


/* 標題下方短線 */

.ishare-faq-title::after {
	content: "";
	display: block;
	width: 52px;
	height: 4px;
	margin-top: 16px;
	background: #aebbd0;
	border-radius: 999px;
}


/* FAQ 每一題 */

.ishare-faq-item {
	margin: 0 0 14px;
	background: #ffffff;
	border: 1px solid #d8e0eb;
	border-radius: 15px;
	overflow: hidden;
}


/* 問題 */

.ishare-faq-item summary {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;

	padding: 25px 54px 25px 25px;

	color: #183b64;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.6;

	cursor: pointer;
	list-style: none;
}


/* Chrome / Safari 預設箭頭移除 */

.ishare-faq-item summary::-webkit-details-marker {
	display: none;
}


/* Firefox 等瀏覽器 */

.ishare-faq-item summary::marker {
	display: none;
	content: "";
}


/* 右側 + 號 */

.ishare-faq-item summary::after {
	content: "+";

	position: absolute;
	right: 24px;
	top: 50%;
	transform: translateY(-50%);

	color: #8490a1;
	font-size: 30px;
	font-weight: 300;
	line-height: 1;

	transition: transform .2s ease;
}


/* 展開後變成 − */

.ishare-faq-item[open] summary::after {
	content: "−";
}


/* 展開時問題區底線 */

.ishare-faq-item[open] summary {
	background: #f8faff;
	border-bottom: 1px solid #dfe5ee;
}


/* FAQ 答案 */

.ishare-faq-answer {
	padding: 24px 25px 26px;

	color: #52657c;
	font-size: 17px;
	line-height: 1.9;
}


/* 答案段落 */

.ishare-faq-answer p {
	margin: 0 0 14px;
}

.ishare-faq-answer p:last-child {
	margin-bottom: 0;
}


/* FAQ 連結 */

.ishare-faq-answer a {
	color: #7184ac;
	text-decoration: underline;
	text-underline-offset: 3px;
}


/* =========================================================
   FAQ 手機版
   ========================================================= */

@media (max-width: 700px) {

	.ishare-faq {
		margin: 36px 0;
	}

	.ishare-faq-title {
		font-size: 26px;
		margin-bottom: 22px;
	}

	.ishare-faq-title::after {
		width: 44px;
		height: 3px;
		margin-top: 12px;
	}

	.ishare-faq-item {
		margin-bottom: 12px;
		border-radius: 13px;
	}

	.ishare-faq-item summary {
		padding: 20px 48px 20px 20px;

		font-size: 17px;
		line-height: 1.55;
	}

	.ishare-faq-item summary::after {
		right: 18px;
		font-size: 26px;
	}

	.ishare-faq-answer {
		padding: 20px;

		font-size: 16px;
		line-height: 1.85;
	}
}

/* =========================================================
   文章章節標題
   ========================================================= */

.ishare-section-title {
	margin: 48px 0 30px;
	color: #17385e;
	font-size: 32px;
	font-weight: 700;
	line-height: 1.45;
	letter-spacing: .01em;
}

/* 標題下方短線 */
.ishare-section-title::after {
	content: "";
	display: block;
	width: 52px;
	height: 3px;
	margin-top: 16px;
	background: #aebbd0;
	border-radius: 999px;
}

/* 手機版 */
@media (max-width: 700px) {
	.ishare-section-title {
		margin: 38px 0 24px;
		font-size: 26px;
	}

	.ishare-section-title::after {
		width: 44px;
		margin-top: 12px;
	}
}

/* =========================================================
   POINT 重點提示／小技巧
   ========================================================= */

.ishare-point {
	position: relative;

	margin: 32px 0;
	padding: 32px 34px;

	background: #fbf4e8;
	border: 1px solid #e8d9be;
	border-left: 5px solid #c8a46a;
	border-radius: 15px;

	color: #52657c;
	font-size: 17px;
	line-height: 1.9;
}

/* POINT 標籤 */
.ishare-point::before {
	content: "POINT";
	display: block;

	margin-bottom: 14px;

	color: #a27b3e;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .16em;
}

/* 小技巧標題 */
.ishare-point-title {
	margin: 0 0 12px;

	color: #624e2f;
	font-size: 19px;
	font-weight: 700;
	line-height: 1.5;
}

/* 內文 */
.ishare-point p {
	margin: 0 0 16px;
}

.ishare-point p:last-child {
	margin-bottom: 0;
}

/* 清單 */
.ishare-point ul {
	margin: 14px 0 0;
	padding-left: 34px;
}

.ishare-point li {
	margin: 8px 0;
	padding-left: 2px;
}

/* 連結 */
.ishare-point a {
	color: #7184ac;
	text-decoration: underline;
	text-underline-offset: 3px;
}

/* 手機版 */
@media (max-width: 700px) {
	.ishare-point {
		padding: 24px 22px;
		border-radius: 13px;
		font-size: 16px;
	}

	.ishare-point-title {
		font-size: 18px;
	}

	.ishare-point ul {
		padding-left: 26px;
	}
}

/* =========================================================
   快速解答
   ========================================================= */

.ishare-answer {
	margin: 28px 0;
	padding: 28px 36px;

	background: #f1f4f9;
	border: 1px solid #d9e1ec;
	border-radius: 18px;

	color: #1f2f43;
	font-size: 18px;
	line-height: 2;
}

/* 快速解答標籤 */
.ishare-answer::before {
	content: "快速解答";
	display: block;
	margin-bottom: 12px;

	color: #7588a8;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .04em;
}

/* 內文 */
.ishare-answer p {
	margin: 0;
}

/* 粗體 */
.ishare-answer strong {
	color: #17385e;
	font-weight: 700;
}

/* 連結 */
.ishare-answer a {
	color: #7184ac;
	text-decoration: underline;
	text-underline-offset: 3px;
}

/* 手機版 */
@media (max-width: 700px) {
	.ishare-answer {
		padding: 22px 24px;
		border-radius: 14px;
		font-size: 16px;
		line-height: 1.9;
	}

	.ishare-answer::before {
		font-size: 12px;
		margin-bottom: 10px;
	}
}


/* =========================================================
   文章目錄 TOC
   ========================================================= */

.ishare-toc {
	margin: 32px 0;
	background: #ffffff;
	border: 1px solid #d8e0eb;
	border-radius: 16px;
	overflow: hidden;
}


/* 上方標題列 */

.ishare-toc > summary {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;

	padding: 24px 54px 24px 24px;

	background: #f1f4f9;
	color: #17385e;

	font-size: 20px;
	font-weight: 700;
	line-height: 1.5;

	cursor: pointer;
	list-style: none;
}


/* 移除瀏覽器預設箭頭 */

.ishare-toc > summary::-webkit-details-marker {
	display: none;
}

.ishare-toc > summary::marker {
	content: "";
}


/* 右側箭頭 */

.ishare-toc > summary::after {
	content: "⌄";

	position: absolute;
	right: 24px;
	top: 50%;

	transform: translateY(-50%);
	color: #7b8da9;

	font-size: 20px;
	font-weight: 400;

	transition: transform .2s ease;
}


/* 展開時箭頭朝上 */

.ishare-toc[open] > summary::after {
	transform: translateY(-50%) rotate(180deg);
}


/* 目錄內容 */

.ishare-toc-content {
	padding: 26px 30px 28px;
}


/* 第一層編號 */

.ishare-toc-list {
	margin: 0;
	padding-left: 26px;

	color: #8a9ab3;
	font-size: 17px;
	line-height: 1.8;
}


/* 每一項距離 */

.ishare-toc-list > li {
	margin: 7px 0;
	padding-left: 2px;
}


/* 連結 */

.ishare-toc a {
	color: #274b75;
	text-decoration: none;
}

.ishare-toc a:hover {
	color: #58769c;
	text-decoration: underline;
	text-underline-offset: 3px;
}


/* 第二層目錄 */

.ishare-toc-list ol {
	margin: 4px 0 4px;
	padding-left: 26px;
}


/* 第三層目錄 */

.ishare-toc-list ol ol {
	padding-left: 24px;
}


/* 平滑捲動 */

html {
	scroll-behavior: smooth;
}


/* 點目錄後，標題不要被網站頂部遮住 */

.ishare-anchor {
	scroll-margin-top: 100px;
}


/* =========================================================
   文章目錄手機版
   ========================================================= */

@media (max-width: 700px) {

	.ishare-toc {
		margin: 26px 0;
		border-radius: 14px;
	}

	.ishare-toc > summary {
		padding: 20px 48px 20px 20px;
		font-size: 18px;
	}

	.ishare-toc > summary::after {
		right: 18px;
		font-size: 18px;
	}

	.ishare-toc-content {
		padding: 20px 22px 22px;
	}

	.ishare-toc-list {
		padding-left: 22px;
		font-size: 16px;
		line-height: 1.75;
	}

	.ishare-toc-list ol {
		padding-left: 20px;
	}
}