/* ==========================================================================
   企業門面頁 —— 關於科益國際（12944）與三個服務條款頁（18409 / 18414 / 18416）
   規格來源：design/corporate/Specs.dc.html + Main / Mobile / Policy / Contact
   量測依據：2026-09-04 對線上頁面的實測（見 agents/T5-CORPORATE-DESIGN.md）

   作用域紀律（血淚教訓 4 / 14）：
   - 版面規則一律掛在 body.tz-corp / body.tz-corp-about / body.tz-corp-policy
     這三個由 inc/corporate-pages.php 加上的 body class 之下，不碰全站。
   - .tz-contact 是短碼自己的命名空間，可跟著 [techez_contact] 去任何頁面，
     不依賴上述 body class；它只認自己名下的 class，不會外溢。
   ========================================================================== */

body.tz-corp,
.tz-contact {
	--tzc-ink:       #192a3d;
	--tzc-body:      #3a4f66;
	/* 灰階都是實測出來的，不是照設計稿抄。
	   基準底色是頁面實際的 #fafbfc（不是純白，這一點差了約 0.2 個對比級距）。
	   設計稿的 #6b7f94 只有 4.13:1、#8fa1b3 只有 2.65:1，兩個都不到 AA 的 4.5。 */
	--tzc-muted:     #55677a;  /* 5.62:1 on #fafbfc */
	--tzc-faint:     #5d7085;  /* 4.92:1 on #fafbfc */
	--tzc-line:      #e1e8ed;
	--tzc-line-soft: #eef1f4;
	--tzc-surface:   #fafbfc;
	--tzc-tint:      #eef4ff;
	--tzc-blue:      #2872fa;
	/* 連結色用 #1559ed 而不是 #2872fa：後者在白底上只有 4.16:1，未達 AA。
	   #1559ed 實測 5.70:1。 */
	--tzc-link:      #1559ed;
	--tzc-gold:      #d3b574;
	--tzc-dark:      #192a3d;
	--tzc-darker:    #09121d;

	--tzc-max:       1280px;  /* 1200 內容 + 左右各 40 留白 */
	--tzc-inner:     1200px;
	--tzc-measure:   720px;   /* 中文長段落的可讀行長上限 */
	--tzc-gutter:    40px;
	--tzc-stick:     148px;   /* 頁首實測 128px + 20 */

	--tzc-font: "Noto Sans TC", -apple-system, "PingFang TC", "Microsoft JhengHei", sans-serif;
}

/* --------------------------------------------------------------------------
   共同：把 Blocksy 的文章容器讓開，改由各區段自己負責留白
   -------------------------------------------------------------------------- */

body.tz-corp .ct-container-full {
	padding-top: 0;
	padding-bottom: 0;
}

body.tz-corp .entry-content {
	font-family: var(--tzc-font);
	color: var(--tzc-body);
	font-size: 16px;
	line-height: 1.9;
}

/* 頂層區塊要滿版，得同時解掉三條規則（實測 2026-09-04，只解 max-width 沒有用）：
     WordPress core  .is-layout-constrained > :where(…) { max-width; margin-inline:auto }
     Blocksy         .is-layout-constrained > :where(…) { width: var(--theme-block-width) }  ← 1440px，就是這條讓區塊縮在中間
     Blocksy         .is-layout-flow …               { margin-block-end: … }               ← 區塊之間那條縫
   margin 用簡寫一次歸零，順便處理 block-gap（血淚教訓 9：同一症狀多個來源）。 */
body.tz-corp .entry-content > * {
	width: auto;
	max-width: none;
	margin: 0;
}

/* 內容裡沒有自帶 class 的連結（例如條款內文的外部連結）才吃這個顏色，
   聯絡框那些有 class 的按鈕與電話不受影響 —— 否則白字按鈕會被染成藍色。 */
body.tz-corp-policy .tz-policy__body a,
body.tz-corp-about .tz-corp-band a:not([class]) {
	color: var(--tzc-link);
}

body.tz-corp-policy .tz-policy__body a:hover,
body.tz-corp-policy .tz-policy__body a:focus-visible,
body.tz-corp-about .tz-corp-band a:not([class]):hover,
body.tz-corp-about .tz-corp-band a:not([class]):focus-visible {
	color: var(--tzc-dark);
}

/* 區段容器：滿版底色 + 內容收在 1200，兩側至少 40 留白。
   用 padding-inline 的 max() 取代巢狀容器，內容端就不必多包一層 div。 */
body.tz-corp .tz-corp-band {
	width: auto;
	max-width: none;
	margin-inline: 0;
	padding-inline: max(var(--tzc-gutter), calc((100% - var(--tzc-inner)) / 2));
}

/* ==========================================================================
   一、關於科益國際（page 12944）
   ========================================================================== */

/* 佈景主題的標題區只有一行「關於科益國際」，本頁改用自己的 Hero。
   原本這裡用 display:none 藏掉，但那只是看不見 —— <h1 class="page-title">
   仍然留在 DOM 裡，於是本頁有兩個 <h1>（實測第一個高度 0）。
   改由 inc/layout-fixes.php 的 blocksy:hero:custom-source filter
   從根本不輸出，這一段就不需要了。 */

/* --- Hero ---------------------------------------------------------------
   分兩層是刻意的：
   外層 .tz-corp-hero  帶照片（區塊自己的背景圖設定，後台可換圖）
   內層 .tz-corp-hero__inner 帶 90% 不透明的深色遮罩（寫在區塊的行內樣式裡）
   → 就算這支 CSS 完全沒載到，仍然是「白字壓在 90% 深色上」，讀得到。
     這支 CSS 只是把平塗遮罩換成有層次的漸層，不是可讀性的唯一依靠。 */

body.tz-corp-about .tz-corp-hero {
	background-color: #101c2b;
	background-repeat: no-repeat;
	padding: 0;
}

body.tz-corp-about .tz-corp-hero__inner {
	/* 行內樣式是 background-color:#09121de6，只能用 !important 蓋掉。
	   最右端仍保留 0.62 不透明度：實測即使壓在照片最亮的區域，
	   白字仍有 11.3:1。 */
	background-color: transparent !important;
	background-image: linear-gradient(
		100deg,
		rgba(9, 18, 29, 0.94) 0%,
		rgba(9, 18, 29, 0.90) 38%,
		rgba(9, 18, 29, 0.72) 72%,
		rgba(9, 18, 29, 0.62) 100%
	);
	min-height: 460px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-block: 56px;
	padding-inline: max(var(--tzc-gutter), calc((100% - var(--tzc-inner)) / 2));
}

body.tz-corp-about .tz-corp-hero__title {
	margin: 0 0 20px;
	font-size: clamp(32px, 3.6vw, 52px);
	line-height: 1.28;
	font-weight: 900;
	letter-spacing: 0.01em;
}

body.tz-corp-about .tz-corp-hero__lead {
	margin: 0;
	max-width: 640px;
	font-size: 19px;
	line-height: 1.95;
}

/* --- 小標（金色短線 + 英文字） --- */
body.tz-corp .tz-corp-eyebrow {
	display: flex;
	align-items: center;
	gap: 14px;
	margin: 0 0 20px;
	font-size: 13px;
	line-height: 1.6;
	font-weight: 500;
	letter-spacing: 0.22em;
}

body.tz-corp .tz-corp-eyebrow::before {
	content: "";
	flex: 0 0 44px;
	width: 44px;
	height: 3px;
	background: var(--tzc-gold);
}

/* --- 區段標題 --- */
body.tz-corp .tz-corp-h2 {
	margin: 0;
	font-size: clamp(24px, 2.2vw, 30px);
	line-height: 1.45;
	font-weight: 700;
	color: var(--tzc-ink);
}

body.tz-corp .tz-corp-h2::before {
	content: "";
	display: block;
	width: 44px;
	height: 3px;
	margin-bottom: 18px;
	background: var(--tzc-blue);
}

body.tz-corp .tz-corp-h2sub {
	margin: 8px 0 0;
	font-size: 16px;
	color: var(--tzc-muted);
}

/* --- 三個事實 --- */
body.tz-corp-about .tz-corp-band--facts {
	background: var(--tzc-surface);
	border-bottom: 1px solid var(--tzc-line);
}

body.tz-corp-about .tz-corp-facts {
	column-gap: 0;
	margin-block: 0;
}

body.tz-corp-about .tz-corp-fact {
	padding: 44px 32px;
	border-left: 1px solid var(--tzc-line);
}

body.tz-corp-about .tz-corp-fact:first-child {
	padding-left: 0;
	border-left: 0;
}

body.tz-corp-about .tz-corp-fact__value {
	margin: 0;
	font-size: 42px;
	line-height: 1.15;
	font-weight: 900;
	letter-spacing: -0.01em;
	color: var(--tzc-ink);
}

body.tz-corp-about .tz-corp-fact__label {
	margin: 8px 0 0;
	font-size: 15px;
	color: var(--tzc-muted);
}

/* --- 左標題右內文的兩欄 --- */
body.tz-corp-about .tz-corp-band--who {
	padding-block: 78px 0;
}

body.tz-corp-about .tz-corp-split {
	column-gap: 56px;
	margin-block: 0;
}

body.tz-corp-about .tz-corp-lead {
	margin: 0 0 20px;
	font-size: 17px;
	line-height: 2.05;
}

body.tz-corp-about .tz-corp-lead:last-child {
	margin-bottom: 0;
}

/* --- 三大核心事業 --- */
body.tz-corp-about .tz-corp-band--pillars {
	padding-block: 76px 0;
}

body.tz-corp-about .tz-corp-pillars {
	margin-block: 38px 0;
	column-gap: 28px;
	counter-reset: tzc-pillar;
}

body.tz-corp-about .tz-corp-pillar {
	padding: 34px 32px 36px;
	background: #ffffff;
	border: 1px solid var(--tzc-line);
	border-top: 3px solid var(--tzc-blue);
	border-radius: 3px;
}

/* 序號方塊取代設計稿的插圖 icon：不需要外部素材，
   加第四張卡也不會缺圖。 */
body.tz-corp-about .tz-corp-pillar::before {
	counter-increment: tzc-pillar;
	content: counter(tzc-pillar, decimal-leading-zero);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	margin-bottom: 16px;
	border-radius: 3px;
	background: var(--tzc-tint);
	color: var(--tzc-blue);
	font-size: 17px;
	font-weight: 700;
	letter-spacing: 0.02em;
}

body.tz-corp-about .tz-corp-pillar__title {
	margin: 0;
	font-size: 20px;
	line-height: 1.5;
	font-weight: 700;
	color: var(--tzc-ink);
}

body.tz-corp-about .tz-corp-pillar__sub {
	margin: 4px 0 16px;
	font-size: 14px;
	color: var(--tzc-faint);
}

body.tz-corp-about .tz-corp-pillar p:last-child {
	margin: 0;
	font-size: 15.5px;
	line-height: 1.95;
}

/* --- 我們的承諾（深底） --- */
body.tz-corp-about .tz-corp-promise {
	margin-top: 78px;
	padding: 0;
}

body.tz-corp-about .tz-corp-promise__inner {
	padding-block: 66px;
}

body.tz-corp-about .tz-corp-promise .tz-corp-h2::before {
	background: var(--tzc-gold);
}

body.tz-corp-about .tz-corp-quote {
	margin: 0;
	font-size: clamp(22px, 2.4vw, 32px);
	line-height: 1.6;
	font-weight: 700;
	letter-spacing: 0.01em;
}

body.tz-corp-about .tz-corp-promise .tz-corp-lead {
	margin: 18px 0 0;
}

body.tz-corp-about .tz-corp-tagline {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 26px 0 0;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.08em;
}

body.tz-corp-about .tz-corp-tagline::before {
	content: "";
	flex: 0 0 24px;
	width: 24px;
	height: 1px;
	background: var(--tzc-gold);
}

/* --- 頁尾聯絡區 --- */
body.tz-corp-about .tz-corp-band--contact {
	padding-block: 72px 88px;
}

body.tz-corp-about .tz-corp-cta-lead {
	margin: 0 0 24px;
	font-size: 17px;
	line-height: 2;
	color: var(--tzc-muted);
}

/* ==========================================================================
   二、服務條款頁（18409 / 18414 / 18416）
   ========================================================================== */

/* 佈景主題原本的標題區是 1290 寬的白底單行標題；改成滿版深色標題帶。 */
body.tz-corp-policy .hero-section {
	width: 100%;
	max-width: none;
	margin: 0;
	background: var(--tzc-dark);
}

body.tz-corp-policy .entry-header {
	max-width: var(--tzc-max);
	margin-inline: auto;
	padding: 46px var(--tzc-gutter) 44px;
}

body.tz-corp-policy .entry-header::before {
	content: "服務條款";
	display: block;
	margin-bottom: 12px;
	font-family: var(--tzc-font);
	font-size: 13px;
	line-height: 1.6;
	font-weight: 500;
	letter-spacing: 0.2em;
	color: var(--tzc-gold);
}

body.tz-corp-policy h1.page-title {
	margin: 0;
	font-family: var(--tzc-font);
	font-size: clamp(26px, 3vw, 38px);
	line-height: 1.4;
	font-weight: 900;
	color: #ffffff;
}

/* --- 兩欄：左黏頂目錄，右內文 --- */
body.tz-corp-policy .tz-policy {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 64px;
	max-width: var(--tzc-max);
	margin-inline: auto;
	padding: 54px var(--tzc-gutter) 72px;
}

body.tz-corp-policy .tz-policy__toc {
	position: sticky;
	top: var(--tzc-stick);
	flex: 0 0 224px;
	width: 224px;
}

body.tz-corp-policy .tz-policy__toc-title {
	margin: 0 0 14px;
	font-size: 13px;
	line-height: 1.6;
	font-weight: 500;
	letter-spacing: 0.14em;
	color: var(--tzc-faint);
}

body.tz-corp-policy .tz-policy__toc ol {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

body.tz-corp-policy .tz-policy__toc a {
	display: block;
	padding: 9px 0 9px 14px;
	border-left: 2px solid var(--tzc-line);
	font-size: 15px;
	line-height: 1.6;
	color: var(--tzc-body);
	text-decoration: none;
}

body.tz-corp-policy .tz-policy__toc a:hover,
body.tz-corp-policy .tz-policy__toc a:focus-visible {
	color: var(--tzc-link);
	border-left-color: var(--tzc-faint);
}

body.tz-corp-policy .tz-policy__toc a.is-current {
	border-left-color: var(--tzc-blue);
	color: var(--tzc-link);
	font-weight: 700;
}

body.tz-corp-policy .tz-policy__ask {
	margin-top: 26px;
	padding-top: 20px;
	border-top: 1px solid var(--tzc-line);
	font-size: 13.5px;
	line-height: 1.9;
	color: var(--tzc-faint);
}

body.tz-corp-policy .tz-policy__ask a {
	display: block;
	font-size: 17px;
	font-weight: 700;
	color: var(--tzc-link);
	text-decoration: none;
}

body.tz-corp-policy .tz-policy__body {
	flex: 1 1 auto;
	min-width: 0;
	max-width: var(--tzc-measure);
}

/* --- 條款內文 --- */
body.tz-corp-policy .tz-policy__body > *:first-child {
	margin-top: 0;
}

body.tz-corp-policy .tz-policy__body p {
	margin: 0 0 18px;
	font-size: 16px;
	line-height: 1.9;
}

body.tz-corp-policy .tz-policy__body h2 {
	margin: 46px 0 16px;
	font-size: 24px;
	line-height: 1.55;
	font-weight: 700;
	color: var(--tzc-ink);
	scroll-margin-top: var(--tzc-stick);
}

body.tz-corp-policy .tz-policy__body h3 {
	margin: 30px 0 14px;
	font-size: 17px;
	line-height: 1.6;
	font-weight: 700;
	color: var(--tzc-ink);
	scroll-margin-top: var(--tzc-stick);
}

body.tz-corp-policy .tz-policy-lead {
	margin: 0 0 26px;
	font-size: 19px;
	line-height: 1.85;
	font-weight: 500;
	color: var(--tzc-ink);
}

body.tz-corp-policy .tz-policy__body ul,
body.tz-corp-policy .tz-policy__body ol {
	margin: 0 0 20px;
	padding-left: 0;
	list-style: none;
}

body.tz-corp-policy .tz-policy__body li {
	position: relative;
	margin-bottom: 8px;
	padding-left: 22px;
	line-height: 1.9;
}

body.tz-corp-policy .tz-policy__body ul > li::before {
	content: "";
	position: absolute;
	left: 4px;
	top: 13px;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #a8b8c8;
}

body.tz-corp-policy .tz-policy__body ol {
	counter-reset: tzc-item;
}

body.tz-corp-policy .tz-policy__body ol > li {
	counter-increment: tzc-item;
	padding-left: 28px;
}

body.tz-corp-policy .tz-policy__body ol > li::before {
	content: counter(tzc-item) ".";
	position: absolute;
	left: 0;
	top: 0;
	font-variant-numeric: tabular-nums;
	color: var(--tzc-muted);
}

body.tz-corp-policy .tz-policy__body li > ul,
body.tz-corp-policy .tz-policy__body li > ol {
	margin: 10px 0 0;
}

/* --- 重點提示框 --- */
body.tz-corp-policy .tz-policy-note {
	margin: 0 0 38px;
	padding: 20px 24px;
	background: var(--tzc-tint);
	border-left: 3px solid var(--tzc-blue);
	border-radius: 0 3px 3px 0;
}

body.tz-corp-policy .tz-policy-note p {
	margin: 0;
	font-size: 15.5px;
}

body.tz-corp-policy .tz-policy-note__title {
	font-size: 17px;
	font-weight: 700;
	line-height: 1.7;
	color: var(--tzc-ink);
}

/* --- 物流業者查詢連結 --- */
body.tz-corp-policy .tz-policy-carriers {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	gap: 32px;
	margin: 4px 0 0;
}

body.tz-corp-policy .tz-policy-carriers img {
	display: block;
	width: auto;
	height: 34px;
}

/* ==========================================================================
   三、通用聯絡框 [techez_contact]
   —— 不綁頁面，隨短碼走。電話自己一行、字級最大、可點撥號。
   ========================================================================== */

.tz-contact {
	display: grid;
	grid-template-columns: 2fr 3fr;
	overflow: hidden;
	border-radius: 4px;
	background: var(--tzc-dark);
	font-family: var(--tzc-font);
	color: #ffffff;
	line-height: 1.85;
}

.tz-contact__intro {
	padding: 52px 48px 52px 52px;
	border-right: 1px solid rgba(255, 255, 255, 0.10);
}

.tz-contact__title {
	margin: 0 0 14px;
	font-size: 30px;
	line-height: 1.45;
	font-weight: 700;
	color: #ffffff;
}

.tz-contact__title::before {
	content: "";
	display: block;
	width: 44px;
	height: 3px;
	margin-bottom: 20px;
	background: var(--tzc-gold);
}

.tz-contact__lead {
	margin: 0 0 28px;
	font-size: 16px;
	line-height: 2;
	color: rgba(255, 255, 255, 0.78);
}

.tz-contact__legal {
	font-size: 14px;
	line-height: 1.9;
	color: rgba(255, 255, 255, 0.62);
}

.tz-contact__main {
	padding: 48px 52px 46px 48px;
}

.tz-contact__label {
	display: flex;
	align-items: center;
	gap: 9px;
	margin-bottom: 6px;
	font-size: 13px;
	line-height: 1.6;
	font-weight: 500;
	letter-spacing: 0.18em;
	color: var(--tzc-gold);
}

.tz-contact__label::before {
	content: "";
	flex: 0 0 16px;
	width: 16px;
	height: 3px;
	background: var(--tzc-gold);
}

/* 使用者明確要求：電話自己一行、字級最大、要能直接撥號。 */
.tz-contact__phone {
	margin-bottom: 30px;
}

.tz-contact__number {
	display: block;
	font-size: clamp(30px, 3.4vw, 46px);
	line-height: 1.25;
	font-weight: 900;
	letter-spacing: 0.02em;
	color: #ffffff;
	text-decoration: none;
}

.tz-contact__number:hover,
.tz-contact__number:focus-visible {
	color: var(--tzc-gold);
}

.tz-contact__actions {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 12px;
	margin: 0 0 32px;
	padding-top: 28px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.tz-contact__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0 26px;
	border-radius: 3px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.4;
	text-decoration: none;
}

/* 底色用 #1559ed 而不是品牌藍 #2872fa：後者配白字只有 4.31:1，未達 AA；
   #1559ed 實測 5.70:1。 */
.tz-contact__btn--primary {
	background: var(--tzc-link);
	color: #ffffff;
	border: 1px solid var(--tzc-link);
}

.tz-contact__btn--primary:hover,
.tz-contact__btn--primary:focus-visible {
	background: #0f47bd;
	border-color: #0f47bd;
	color: #ffffff;
}

.tz-contact__btn--ghost {
	background: transparent;
	color: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.30);
}

.tz-contact__btn--ghost:hover,
.tz-contact__btn--ghost:focus-visible {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.55);
	color: #ffffff;
}

.tz-contact__meta {
	display: grid;
	grid-template-columns: 74px 1fr;
	gap: 14px;
	margin: 0;
	font-size: 16px;
}

.tz-contact__meta dt {
	font-size: 14px;
	padding-top: 2px;
	color: rgba(255, 255, 255, 0.60);
}

.tz-contact__meta dd {
	margin: 0;
	color: rgba(255, 255, 255, 0.92);
}

.tz-contact__meta a {
	color: #ffffff;
	text-decoration: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.tz-contact__meta a:hover,
.tz-contact__meta a:focus-visible {
	color: var(--tzc-gold);
	border-bottom-color: var(--tzc-gold);
}

/* ==========================================================================
   四、響應式
   ========================================================================== */

/* 平板：目錄不再黏頂，改成內文上方的一個區塊 */
@media (max-width: 1099px) {
	body.tz-corp-policy .tz-policy {
		flex-direction: column;
		gap: 30px;
		padding-top: 40px;
	}

	body.tz-corp-policy .tz-policy__toc {
		position: static;
		flex: 1 1 auto;
		width: 100%;
		max-width: var(--tzc-measure);
		padding: 20px 22px;
		border: 1px solid var(--tzc-line);
		border-radius: 3px;
		background: var(--tzc-surface);
	}

	body.tz-corp-policy .tz-policy__toc ol {
		flex-direction: row;
		flex-wrap: wrap;
		gap: 4px 10px;
	}

	body.tz-corp-policy .tz-policy__toc a {
		padding: 6px 0 6px 12px;
	}

	body.tz-corp-policy .tz-policy__body {
		max-width: var(--tzc-measure);
	}
}

@media (max-width: 999px) {
	body.tz-corp-about .tz-corp-split {
		column-gap: 32px;
	}

	.tz-contact {
		grid-template-columns: 1fr;
	}

	.tz-contact__intro {
		padding: 36px 30px 30px;
		border-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.10);
	}

	.tz-contact__main {
		padding: 30px 30px 34px;
	}
}

/* 手機 */
@media (max-width: 781px) {
	body.tz-corp {
		--tzc-gutter: 20px;
	}

	body.tz-corp-about .tz-corp-hero__inner {
		min-height: 340px;
		justify-content: flex-end;
		padding-block: 40px 30px;
		background-image: linear-gradient(
			180deg,
			rgba(9, 18, 29, 0.72) 0%,
			rgba(9, 18, 29, 0.86) 55%,
			rgba(9, 18, 29, 0.94) 100%
		);
	}

	body.tz-corp-about .tz-corp-hero__lead {
		font-size: 15px;
		line-height: 1.9;
	}

	body.tz-corp .tz-corp-eyebrow {
		gap: 10px;
		margin-bottom: 14px;
		font-size: 11px;
		letter-spacing: 0.2em;
	}

	body.tz-corp .tz-corp-eyebrow::before {
		flex-basis: 30px;
		width: 30px;
	}

	body.tz-corp .tz-corp-h2::before {
		width: 34px;
		margin-bottom: 14px;
	}

	body.tz-corp-about .tz-corp-fact {
		padding: 22px 10px;
		text-align: center;
	}

	body.tz-corp-about .tz-corp-fact:first-child {
		padding-left: 10px;
	}

	body.tz-corp-about .tz-corp-fact__value {
		font-size: 26px;
	}

	body.tz-corp-about .tz-corp-fact__label {
		margin-top: 4px;
		font-size: 12px;
		line-height: 1.5;
	}

	body.tz-corp-about .tz-corp-band--who {
		padding-block: 34px 0;
	}

	body.tz-corp-about .tz-corp-lead {
		font-size: 15px;
		line-height: 1.95;
		margin-bottom: 16px;
	}

	body.tz-corp-about .tz-corp-band--pillars {
		padding-block: 34px 0;
	}

	body.tz-corp-about .tz-corp-pillars {
		margin-block: 20px 0;
	}

	body.tz-corp-about .tz-corp-pillar {
		padding: 22px 20px 24px;
	}

	body.tz-corp-about .tz-corp-pillar__title {
		font-size: 18px;
	}

	body.tz-corp-about .tz-corp-promise {
		margin-top: 34px;
	}

	body.tz-corp-about .tz-corp-promise__inner {
		padding-block: 34px 36px;
	}

	body.tz-corp-about .tz-corp-band--contact {
		padding-block: 34px 44px;
	}

	body.tz-corp-policy .entry-header {
		padding: 30px var(--tzc-gutter) 28px;
	}

	body.tz-corp-policy .tz-policy {
		padding: 26px var(--tzc-gutter) 44px;
	}

	body.tz-corp-policy .tz-policy__body h2 {
		margin-top: 36px;
		font-size: 21px;
	}

	.tz-contact__title {
		font-size: 22px;
	}

	.tz-contact__lead {
		font-size: 14.5px;
		line-height: 1.95;
		margin-bottom: 22px;
	}

	.tz-contact__actions {
		flex-direction: column;
		gap: 10px;
	}

	.tz-contact__btn {
		width: 100%;
	}

	.tz-contact__meta {
		grid-template-columns: 1fr;
		gap: 2px;
		font-size: 14.5px;
	}

	.tz-contact__meta dt {
		margin-top: 10px;
		font-size: 13px;
	}

	.tz-contact__meta dt:first-child {
		margin-top: 0;
	}
}
