/*
Theme Name: LabDev Custom
Theme URI: https://labdev.co.kr
Author: LabDev
Description: LabVIEW·LabWindows/CVI 전문 개발사 LabDev.co.kr을 위한 완전 커스텀 워드프레스 테마입니다. lv-cvi-corporate 플러그인의 서비스/레퍼런스 커스텀 글타입과 함께 사용합니다.
Version: 1.0.0
Requires PHP: 7.4
Text Domain: labdev-theme
*/

/* =============================================================
 * 0. 디자인 토큰
 * ============================================================= */
:root {
	--ld-navy: #173a5e;
	--ld-navy-dark: #0f273f;
	--ld-navy-soft: #eaf0f6;
	--ld-amber: #e08e2b;
	--ld-amber-dark: #c07620;
	--ld-ink: #1a2330;
	--ld-text-muted: #5a6472;
	--ld-border: #e2e5e9;
	--ld-bg-soft: #f7f9fb;
	--ld-white: #ffffff;

	--ld-radius: 10px;
	--ld-radius-lg: 18px;
	--ld-shadow: 0 6px 20px rgba(23, 58, 94, 0.08);
	--ld-shadow-lg: 0 16px 40px rgba(23, 58, 94, 0.14);

	--ld-container: 1140px;
	--ld-font: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Malgun Gothic', 'Apple SD Gothic Neo', 'Noto Sans KR', Arial, sans-serif;
}

/* =============================================================
 * 1. 리셋 및 기본 타이포그래피
 * ============================================================= */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--ld-font);
	color: var(--ld-ink);
	background: var(--ld-white);
	line-height: 1.7;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
}

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

a { color: var(--ld-navy); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--ld-amber); }

h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.3; font-weight: 700; color: var(--ld-navy); }
h1 { font-size: clamp(2rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }

ul { padding-left: 1.2em; }

.screen-reader-text {
	position: absolute; width: 1px; height: 1px; overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px); white-space: nowrap;
}

/* =============================================================
 * 2. 레이아웃 유틸리티
 * ============================================================= */
.ld-container {
	max-width: var(--ld-container);
	margin: 0 auto;
	padding: 0 24px;
}

.ld-section { padding: 80px 0; }
.ld-section--soft { background: var(--ld-bg-soft); }
.ld-section--navy { background: var(--ld-navy); color: #fff; }
.ld-section--navy h2, .ld-section--navy h3 { color: #fff; }

.ld-eyebrow {
	display: inline-block;
	font-size: .82rem;
	font-weight: 700;
	letter-spacing: .06em;
	color: var(--ld-amber);
	text-transform: uppercase;
	margin-bottom: 10px;
}

.ld-section-head {
	max-width: 640px;
	margin: 0 0 44px;
}

.ld-section-head.is-center {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.ld-lead {
	color: var(--ld-text-muted);
	font-size: 1.05rem;
}

/* 버튼 */
.ld-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	border-radius: 8px;
	font-weight: 700;
	font-size: .96rem;
	border: 2px solid transparent;
	cursor: pointer;
	transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.ld-btn:hover { transform: translateY(-2px); }

.ld-btn--primary { background: var(--ld-amber); color: #fff; }
.ld-btn--primary:hover { background: var(--ld-amber-dark); color: #fff; }

.ld-btn--outline { border-color: rgba(255,255,255,.5); color: #fff; }
.ld-btn--outline:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.08); }

.ld-btn--navy-outline { border-color: var(--ld-navy); color: var(--ld-navy); }
.ld-btn--navy-outline:hover { background: var(--ld-navy); color: #fff; }

/* 배지 */
.ld-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 28px 0 0;
	padding: 0;
	list-style: none;
}
.ld-badge {
	display: flex;
	align-items: center;
	gap: 8px;
	background: var(--ld-navy-soft);
	color: var(--ld-navy);
	padding: 8px 16px;
	border-radius: 999px;
	font-size: .86rem;
	font-weight: 600;
}
.ld-badge svg { width: 16px; height: 16px; flex: none; }

/* =============================================================
 * 3. 헤더
 * ============================================================= */
.ld-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255,255,255,.96);
	backdrop-filter: blur(6px);
	border-bottom: 1px solid var(--ld-border);
}

.ld-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 24px;
	max-width: var(--ld-container);
	margin: 0 auto;
	gap: 24px;
}

.ld-logo { display: flex; align-items: center; }
.ld-logo img { height: 42px; width: auto; }
.ld-logo-text {
	font-size: 1.3rem;
	font-weight: 800;
	color: var(--ld-navy);
}
.ld-logo-text span { color: var(--ld-amber); }

.ld-nav > ul {
	display: flex;
	gap: 24px;
	list-style: none;
	margin: 0;
	padding: 0;
	flex-wrap: nowrap;
}
.ld-nav a {
	color: var(--ld-ink);
	font-weight: 600;
	font-size: .96rem;
	white-space: nowrap;
}
.ld-nav a:hover { color: var(--ld-amber); }

.ld-nav .menu-item-has-children { position: relative; }
.ld-nav .menu-item-has-children > a::after {
	content: '';
	display: inline-block;
	width: 5px;
	height: 5px;
	border-right: 1.6px solid currentColor;
	border-bottom: 1.6px solid currentColor;
	transform: rotate(45deg);
	margin-left: 6px;
	opacity: .55;
	position: relative;
	top: -2px;
}
.ld-nav .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: #fff;
	border: 1px solid var(--ld-border);
	border-radius: 10px;
	box-shadow: 0 16px 32px rgba(15, 39, 63, .14);
	/* No margin-top: the panel sits flush against the parent link so the
	   mouse cursor is never over a "dead zone" gap while moving from the
	   parent item down into the submenu. The 10px of breathing room is
	   recreated as top padding *inside* the hoverable box instead. */
	padding: 18px 8px 8px;
	margin: 0;
	min-width: 200px;
	flex-direction: column;
	gap: 0;
	z-index: 20;
}
.ld-nav .menu-item-has-children:hover > .sub-menu,
.ld-nav .menu-item-has-children:focus-within > .sub-menu {
	display: flex;
}
.ld-nav .sub-menu li { width: 100%; }
.ld-nav .sub-menu a {
	display: block;
	padding: 9px 12px;
	border-radius: 6px;
	font-size: .9rem;
	font-weight: 500;
	white-space: nowrap;
}
.ld-nav .sub-menu a:hover { background: var(--ld-navy-soft); }

.ld-header-cta { flex: none; display: flex; align-items: center; gap: 10px; }
.ld-header-cta .ld-btn { padding: 10px 20px; background: var(--ld-navy); color: #fff; white-space: nowrap; }
.ld-header-cta .ld-btn:hover { background: var(--ld-amber); }
.ld-header-cta .ld-btn--navy-outline {
	background: transparent;
	color: var(--ld-navy);
	border: 2px solid var(--ld-navy);
}
.ld-header-cta .ld-btn--navy-outline:hover {
	background: var(--ld-navy);
	color: #fff;
}

/* 모바일 햄버거 메뉴 안에서만 보이는 문의하기·프로젝트 문의 게시판 버튼
   (PC에서는 .ld-header-cta가 이미 같은 버튼을 보여주므로 평소에는 숨겨 둡니다) */
.ld-nav-mobile-cta { display: none; }

/* 상단 메뉴 안의 "프로젝트 문의" 버튼형 메뉴 항목 */
.ld-nav .ld-nav-btn { display: flex; align-items: center; }
.ld-nav .ld-nav-btn > a {
	background: var(--ld-amber);
	color: #fff !important;
	padding: 8px 16px;
	border-radius: 999px;
	font-size: .88rem;
}
.ld-nav .ld-nav-btn > a::before { display: none; }
.ld-nav .ld-nav-btn > a:hover { background: var(--ld-amber-dark); color: #fff; }

.ld-nav-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 6px;
}
.ld-nav-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--ld-navy);
	margin: 5px 0;
}

/* =============================================================
 * 4. 히어로
 * ============================================================= */
.ld-hero {
	position: relative;
	overflow: hidden;
	background: linear-gradient(160deg, var(--ld-navy) 0%, var(--ld-navy-dark) 100%);
	color: #fff;
	padding: 96px 0 110px;
}

.ld-hero-grid {
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	gap: 48px;
	align-items: center;
}

.ld-hero h1 { color: #fff; margin-bottom: .4em; }
.ld-hero .ld-lead { color: rgba(255,255,255,.78); font-size: 1.12rem; max-width: 520px; }

.ld-hero-actions {
	display: flex;
	gap: 14px;
	margin-top: 34px;
	flex-wrap: wrap;
}

.ld-hero-art { position: relative; }
.ld-hero-art svg { width: 100%; height: auto; }

.ld-hero-bg-grid {
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(255,255,255,.09) 1px, transparent 1px);
	background-size: 26px 26px;
	opacity: .5;
	pointer-events: none;
	animation: ld-grid-pan 22s linear infinite;
}

/* -------------------------------------------------------------
 * 4-1. 히어로 애니메이션 (실시간 신호 계측 느낌)
 * ------------------------------------------------------------- */
@keyframes ld-grid-pan {
	from { background-position: 0 0; }
	to   { background-position: 26px 26px; }
}

.ld-glow,
.ld-wave,
.ld-scanline,
.ld-live-dot,
.ld-node-ring,
.ld-particle {
	transform-box: fill-box;
	transform-origin: center;
}

/* 배경 글로우 : 숨쉬듯 은은하게 확대/축소 */
.ld-glow--1 { animation: ld-glow-pulse 6s ease-in-out infinite; }
.ld-glow--2 { animation: ld-glow-pulse 4s ease-in-out infinite .3s; }
@keyframes ld-glow-pulse {
	0%, 100% { transform: scale(1);     opacity: 1; }
	50%      { transform: scale(1.09); opacity: .6; }
}

/* 실시간 파형 : 좌측으로 무한 스크롤되는 오실로스코프 신호 */
.ld-wave--a { animation: ld-wave-scroll 3.4s linear infinite; }
.ld-wave--b { animation: ld-wave-scroll 4.6s linear infinite reverse; }
@keyframes ld-wave-scroll {
	from { transform: translateX(0); }
	to   { transform: translateX(-296px); }
}

/* 스캔 라인 : 화면을 좌우로 훑는 계측 효과 */
.ld-scanline {
	animation: ld-scan-sweep 3.2s ease-in-out infinite;
}
@keyframes ld-scan-sweep {
	0%   { transform: translateX(0);      opacity: 0; }
	10%  { opacity: 1; }
	50%  { transform: translateX(276px); opacity: 1; }
	90%  { opacity: 1; }
	100% { transform: translateX(0);      opacity: 0; }
}

/* LIVE 표시등 깜빡임 */
.ld-live-dot { animation: ld-live-blink 1.6s ease-in-out infinite; }
@keyframes ld-live-blink {
	0%, 100% { opacity: 1; }
	50%      { opacity: .25; }
}

/* 블록 다이어그램 노드 : 레이더 핑처럼 신호를 발신하는 링 */
.ld-node-ring {
	animation: ld-ring-ping 2.4s ease-out infinite;
	opacity: 0;
}
.ld-node--a .ld-node-ring { animation-delay: 0s; }
.ld-node--b .ld-node-ring { animation-delay: .6s; }
.ld-node--c .ld-node-ring { animation-delay: 1.2s; }
.ld-node--d .ld-node-ring { animation-delay: 1.8s; }
@keyframes ld-ring-ping {
	0%   { transform: scale(.6);  opacity: .8; }
	70%  { opacity: 0; }
	100% { transform: scale(1.5); opacity: 0; }
}

/* 데이터 흐름 파티클 : 노드에서 계측 패널로 흘러들어가는 신호 */
.ld-particle { opacity: 0; }
.ld-particle--a  { animation: ld-flow-a 1.8s ease-in-out infinite; }
.ld-particle--a2 { animation: ld-flow-a 1.8s ease-in-out infinite .9s; }
.ld-particle--b  { animation: ld-flow-b 1.8s ease-in-out infinite .3s; }
.ld-particle--c  { animation: ld-flow-c 1.8s ease-in-out infinite .6s; }
.ld-particle--d  { animation: ld-flow-d 1.8s ease-in-out infinite .9s; }

@keyframes ld-flow-a {
	0%   { transform: translate(0,0);        opacity: 0; }
	15%  { opacity: 1; }
	85%  { opacity: 1; }
	100% { transform: translate(24px,24px);  opacity: 0; }
}
@keyframes ld-flow-b {
	0%   { transform: translate(0,0);         opacity: 0; }
	15%  { opacity: 1; }
	85%  { opacity: 1; }
	100% { transform: translate(-24px,24px);  opacity: 0; }
}
@keyframes ld-flow-c {
	0%   { transform: translate(0,0);          opacity: 0; }
	15%  { opacity: 1; }
	85%  { opacity: 1; }
	100% { transform: translate(-24px,-24px);  opacity: 0; }
}
@keyframes ld-flow-d {
	0%   { transform: translate(0,0);         opacity: 0; }
	15%  { opacity: 1; }
	85%  { opacity: 1; }
	100% { transform: translate(24px,-24px);  opacity: 0; }
}

/* 모션에 민감한 사용자를 위한 배려 */
@media (prefers-reduced-motion: reduce) {
	.ld-hero-bg-grid,
	.ld-glow,
	.ld-wave,
	.ld-scanline,
	.ld-live-dot,
	.ld-node-ring,
	.ld-particle {
		animation: none !important;
	}
	.ld-particle { opacity: .9; }
}

/* -------------------------------------------------------------
 * 4-2. 개발 화면 쇼케이스 (VI 블록 다이어그램 · 코드 에디터)
 * ------------------------------------------------------------- */
.ld-showcase {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 26px;
	margin-top: 44px;
	align-items: start;
}
.ld-showcase--single {
	grid-template-columns: 1fr;
	max-width: 620px;
	margin-left: auto;
	margin-right: auto;
}

.ld-vi-panel,
.ld-code-panel {
	background: linear-gradient(160deg, var(--ld-navy) 0%, var(--ld-navy-dark) 100%);
	border-radius: var(--ld-radius-lg);
	overflow: hidden;
	box-shadow: 0 18px 40px rgba(15, 39, 63, .22);
}

.ld-vi-panel-head,
.ld-code-panel-head {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 16px;
	border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.ld-panel-dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .25);
}
.ld-panel-dot--a { background: var(--ld-amber); }
.ld-panel-title {
	margin-left: 6px;
	font-size: .78rem;
	color: rgba(255, 255, 255, .55);
	font-family: Consolas, Menlo, 'D2Coding', monospace;
	letter-spacing: .02em;
}
.ld-panel-status {
	margin-left: auto;
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: .68rem;
	color: rgba(255, 255, 255, .5);
	font-family: Consolas, Menlo, 'D2Coding', monospace;
	letter-spacing: .06em;
	white-space: nowrap;
}
.ld-panel-status-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #3ddc84;
	animation: ld-live-blink 1.6s ease-in-out infinite;
}

.ld-vi-svg { display: block; width: 100%; height: auto; }

/* --- VI 블록 다이어그램 애니메이션 --- */
.ld-vi-loop {
	stroke-dasharray: 6 5;
	animation: ld-loop-march 1.1s linear infinite;
}
@keyframes ld-loop-march {
	to { stroke-dashoffset: -22; }
}
.ld-vi-run-arrow { animation: ld-live-blink 1.3s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
.ld-vi-node-glow {
	animation: ld-ring-ping 2.2s ease-out infinite;
	opacity: 0;
	transform-box: fill-box;
	transform-origin: center;
}
.ld-vi-node--2 .ld-vi-node-glow { animation-delay: .5s; }
.ld-vi-node--3 .ld-vi-node-glow { animation-delay: 1s; }

.ld-vi-wire-particle { transform-box: fill-box; transform-origin: center; opacity: 0; }
.ld-vi-wire-particle--1  { animation: ld-vi-flow 2s linear infinite; }
.ld-vi-wire-particle--1b { animation: ld-vi-flow 2s linear infinite 1s; }
.ld-vi-wire-particle--2  { animation: ld-vi-flow 2s linear infinite .3s; }
.ld-vi-wire-particle--2b { animation: ld-vi-flow 2s linear infinite 1.3s; }
@keyframes ld-vi-flow {
	0%   { transform: translate(0,0);      opacity: 0; }
	10%  { opacity: 1; }
	90%  { opacity: 1; }
	100% { transform: translate(53px,0);   opacity: 0; }
}
.ld-vi-chart-wave { animation: ld-vi-chart-scroll 1.6s linear infinite; }
@keyframes ld-vi-chart-scroll {
	from { transform: translateX(0); }
	to   { transform: translateX(-38px); }
}

/* --- 코드 에디터 애니메이션 --- */
.ld-code-body {
	margin: 0;
	padding: 18px 20px 22px;
	font-family: Consolas, Menlo, 'D2Coding', monospace;
	font-size: .84rem;
	line-height: 1.8;
	color: rgba(255, 255, 255, .85);
	overflow: hidden;
	min-height: 210px;
}
.ld-code-line {
	display: block;
	white-space: pre-wrap;
	word-break: break-all;
	opacity: 0;
	animation-duration: 9s;
	animation-timing-function: steps(1);
	animation-iteration-count: infinite;
}
.ld-code-line--1 { animation-name: ld-code-l1; }
.ld-code-line--2 { animation-name: ld-code-l2; }
.ld-code-line--3 { animation-name: ld-code-l3; }
.ld-code-line--4 { animation-name: ld-code-l4; }
.ld-code-line--5 { animation-name: ld-code-l5; }
.ld-code-line--6 { animation-name: ld-code-l6; }
.ld-code-line--7 { animation-name: ld-code-l7; }
.ld-code-line--8 { animation-name: ld-code-l8; }

@keyframes ld-code-l1 { 0%,4%  {opacity:0;} 6%,94%  {opacity:1;} 100% {opacity:0;} }
@keyframes ld-code-l2 { 0%,14% {opacity:0;} 16%,94% {opacity:1;} 100% {opacity:0;} }
@keyframes ld-code-l3 { 0%,24% {opacity:0;} 26%,94% {opacity:1;} 100% {opacity:0;} }
@keyframes ld-code-l4 { 0%,34% {opacity:0;} 36%,94% {opacity:1;} 100% {opacity:0;} }
@keyframes ld-code-l5 { 0%,44% {opacity:0;} 46%,94% {opacity:1;} 100% {opacity:0;} }
@keyframes ld-code-l6 { 0%,54% {opacity:0;} 56%,94% {opacity:1;} 100% {opacity:0;} }
@keyframes ld-code-l7 { 0%,64% {opacity:0;} 66%,94% {opacity:1;} 100% {opacity:0;} }
@keyframes ld-code-l8 { 0%,74% {opacity:0;} 76%,94% {opacity:1;} 100% {opacity:0;} }

.ld-code-line .ld-ln {
	display: inline-block;
	width: 22px;
	color: rgba(255, 255, 255, .28);
	user-select: none;
}
.ld-code-kw      { color: var(--ld-amber); }
.ld-code-type    { color: #7fb2e5; }
.ld-code-fn      { color: #f0c674; }
.ld-code-str     { color: #8bd17c; }
.ld-code-comment { color: rgba(255, 255, 255, .4); font-style: italic; }
.ld-code-cursor {
	display: inline-block;
	width: 7px;
	height: 1em;
	background: var(--ld-amber);
	vertical-align: text-bottom;
	margin-left: 2px;
	animation: ld-live-blink .9s steps(1) infinite;
}

@media (prefers-reduced-motion: reduce) {
	.ld-vi-loop,
	.ld-vi-run-arrow,
	.ld-vi-node-glow,
	.ld-vi-wire-particle,
	.ld-vi-chart-wave,
	.ld-panel-status-dot,
	.ld-code-line,
	.ld-code-cursor {
		animation: none !important;
	}
	.ld-code-line { opacity: 1; }
}

@media (max-width: 900px) {
	.ld-showcase { grid-template-columns: 1fr; }
}

/* -------------------------------------------------------------
 * 4-3. 연동 하드웨어 쇼케이스 (브랜드 컨셉 일러스트)
 * ------------------------------------------------------------- */
.ld-hw-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
	margin-top: 40px;
}
.ld-hw-card {
	background: #fff;
	border: 1px solid var(--ld-border);
	border-radius: var(--ld-radius-lg);
	padding: 22px 20px 24px;
	text-align: center;
	transition: box-shadow .2s ease, transform .2s ease;
}
.ld-hw-card:hover {
	box-shadow: 0 14px 30px rgba(15, 39, 63, .1);
	transform: translateY(-3px);
}
.ld-hw-illust {
	background: var(--ld-navy-soft);
	border-radius: 12px;
	padding: 14px;
	margin-bottom: 18px;
}
.ld-hw-illust svg { width: 100%; height: auto; display: block; }
.ld-hw-led { animation: ld-live-blink 1.7s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }

.ld-hw-card h4 { font-size: 1.02rem; margin: 0 0 8px; }
.ld-hw-card p { font-size: .87rem; color: var(--ld-text-muted); margin: 0 0 14px; line-height: 1.6; }

.ld-tags--sm { justify-content: center; gap: 6px; }
.ld-tags--sm .ld-tag { font-size: .72rem; padding: 4px 10px; }

.ld-hw-disclaimer {
	margin-top: 22px;
	font-size: .78rem;
	color: var(--ld-text-muted);
	text-align: center;
	opacity: .85;
}

@media (prefers-reduced-motion: reduce) {
	.ld-hw-led { animation: none !important; }
}

@media (max-width: 960px) {
	.ld-hw-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
	.ld-hw-grid { grid-template-columns: 1fr; }
}

/* -------------------------------------------------------------
 * 4-4-pre. 와이어 색상 범례 (프로그래밍 가이드용)
 * ------------------------------------------------------------- */
.ld-wire-legend {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 22px 0 0;
	padding: 0;
	list-style: none;
}
.ld-wire-chip {
	display: flex;
	align-items: center;
	gap: 8px;
	background: #fff;
	border: 1px solid var(--ld-border);
	border-radius: 999px;
	padding: 7px 14px 7px 10px;
	font-size: .84rem;
	color: var(--ld-ink);
}
.ld-wire-swatch {
	width: 14px;
	height: 6px;
	border-radius: 3px;
	flex: none;
}

/* -------------------------------------------------------------
 * 4-4. 연혁 타임라인
 * ------------------------------------------------------------- */
.ld-timeline {
	max-width: 760px;
	margin: 40px auto 0;
}
.ld-timeline-item {
	display: grid;
	grid-template-columns: 26px 1fr;
	gap: 18px;
	padding-bottom: 30px;
}
.ld-timeline-item:last-child { padding-bottom: 0; }

.ld-timeline-dot-col {
	position: relative;
	display: flex;
	justify-content: center;
}
.ld-timeline-dot-col::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: -30px;
	left: 50%;
	transform: translateX(-50%);
	width: 2px;
	background: var(--ld-border);
}
.ld-timeline-item:last-child .ld-timeline-dot-col::after { display: none; }

.ld-timeline-dot {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: #fff;
	border: 3px solid var(--ld-amber);
	margin-top: 4px;
	z-index: 1;
}

.ld-timeline-year {
	display: inline-block;
	font-family: Consolas, Menlo, 'D2Coding', monospace;
	font-weight: 700;
	color: var(--ld-amber);
	font-size: .8rem;
	letter-spacing: .02em;
	margin-bottom: 4px;
}
.ld-timeline-content h4 { margin: 0 0 6px; font-size: 1.04rem; }
.ld-timeline-content p { margin: 0; color: var(--ld-text-muted); font-size: .92rem; line-height: 1.7; }

/* =============================================================
 * 5. 카드 그리드 (서비스/레퍼런스 공용)
 * ============================================================= */
.ld-grid {
	display: grid;
	gap: 26px;
	grid-template-columns: repeat(3, 1fr);
}
.ld-grid--2 { grid-template-columns: repeat(2, 1fr); }
.ld-grid--4 { grid-template-columns: repeat(4, 1fr); }

.ld-card {
	background: #fff;
	border: 1px solid var(--ld-border);
	border-radius: var(--ld-radius-lg);
	padding: 30px 26px;
	display: flex;
	flex-direction: column;
	transition: box-shadow .2s ease, transform .2s ease;
}
.ld-card:hover { box-shadow: var(--ld-shadow-lg); transform: translateY(-4px); }

.ld-card-icon {
	width: 56px;
	height: 56px;
	border-radius: 14px;
	background: var(--ld-navy-soft);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
}
.ld-card-icon svg { width: 30px; height: 30px; }

.ld-card h3 { margin-bottom: 10px; }
.ld-card p { color: var(--ld-text-muted); font-size: .95rem; flex: 1; }

.ld-card-link {
	margin-top: 14px;
	font-weight: 700;
	font-size: .9rem;
	color: var(--ld-navy);
}
.ld-card-link:hover { color: var(--ld-amber); }

/* 레퍼런스 카드 (썸네일 포함) */
.ld-ref-card {
	border: 1px solid var(--ld-border);
	border-radius: var(--ld-radius-lg);
	overflow: hidden;
	background: #fff;
	display: flex;
	flex-direction: column;
	transition: box-shadow .2s ease, transform .2s ease;
}
.ld-ref-card:hover { box-shadow: var(--ld-shadow-lg); transform: translateY(-4px); }

.ld-ref-thumb {
	aspect-ratio: 16/10;
	background: linear-gradient(135deg, var(--ld-navy-soft), #dfe8f2);
	display: flex;
	align-items: center;
	justify-content: center;
}
.ld-ref-thumb img { width: 100%; height: 100%; object-fit: cover; }
.ld-ref-thumb svg { width: 42px; height: 42px; opacity: .55; }

.ld-ref-body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }

.ld-ref-meta {
	display: flex;
	gap: 10px;
	font-size: .8rem;
	font-weight: 700;
	color: var(--ld-amber);
	text-transform: uppercase;
	letter-spacing: .03em;
	margin-bottom: 8px;
}

.ld-ref-body p { color: var(--ld-text-muted); font-size: .93rem; flex: 1; }

/* =============================================================
 * 6. 통계 바 (회사소개/홈)
 * ============================================================= */
.ld-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin-top: 40px;
}
.ld-stat { text-align: center; }
.ld-stat-num {
	font-size: 2.2rem;
	font-weight: 800;
	color: var(--ld-navy);
	display: block;
}
.ld-stat-label {
	font-size: .88rem;
	color: var(--ld-text-muted);
}

/* =============================================================
 * 7. CTA 배너
 * ============================================================= */
.ld-cta-banner {
	background: linear-gradient(135deg, var(--ld-navy), var(--ld-navy-dark));
	border-radius: var(--ld-radius-lg);
	padding: 56px;
	color: #fff;
	text-align: center;
}
.ld-cta-banner h2 { color: #fff; }
.ld-cta-banner .ld-lead { color: rgba(255,255,255,.8); margin: 0 auto 28px; }

/* =============================================================
 * 8. 페이지 헤더 (서비스/레퍼런스/일반 페이지 상단)
 * ============================================================= */
.ld-page-header {
	background: var(--ld-navy-soft);
	padding: 56px 0;
	text-align: center;
}
.ld-page-header h1 { margin-bottom: 8px; }

/* =============================================================
 * 9. 인력 카드 (회사소개)
 * ============================================================= */
.ld-team-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-top: 30px;
}
.ld-team-card {
	text-align: center;
	background: #fff;
	border: 1px solid var(--ld-border);
	border-radius: var(--ld-radius);
	padding: 26px 16px;
}
.ld-team-avatar {
	width: 68px;
	height: 68px;
	margin: 0 auto 14px;
	border-radius: 50%;
	background: var(--ld-navy);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 1.1rem;
}
.ld-team-card h4 { margin: 0 0 4px; color: var(--ld-navy); font-size: 1rem; }
.ld-team-card span { font-size: .84rem; color: var(--ld-text-muted); }

/* =============================================================
 * 10. 대상 고객 리스트
 * ============================================================= */
.ld-audience-list {
	list-style: none;
	padding: 0;
	margin: 24px 0 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
}
.ld-audience-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	background: #fff;
	border: 1px solid var(--ld-border);
	border-radius: var(--ld-radius);
	padding: 14px 16px;
	font-weight: 600;
	font-size: .92rem;
}
.ld-audience-list svg { width: 20px; height: 20px; flex: none; color: var(--ld-amber); }

/* =============================================================
 * 11. 문의하기 페이지
 * ============================================================= */
.ld-contact-grid {
	display: grid;
	grid-template-columns: 1fr 1.3fr;
	gap: 48px;
	align-items: flex-start;
}

.ld-contact-info { background: var(--ld-navy); color: #fff; border-radius: var(--ld-radius-lg); padding: 36px; }
.ld-contact-info h3 { color: #fff; }
.ld-contact-info-item { display: flex; gap: 12px; margin-top: 20px; align-items: flex-start; }
.ld-contact-info-item svg { width: 20px; height: 20px; flex: none; color: var(--ld-amber); margin-top: 2px; }
.ld-contact-info-item a { color: #fff; }
.ld-contact-info-item a:hover { color: var(--ld-amber); }

.ld-contact-form-wrap { background: #fff; border: 1px solid var(--ld-border); border-radius: var(--ld-radius-lg); padding: 36px; }

.lvcvi-contact-form { max-width: none; margin: 0; }
.lvcvi-contact-form form { background: transparent; border: none; padding: 0; }
.lvcvi-contact-form label { color: var(--ld-ink); }
.lvcvi-contact-form input, .lvcvi-contact-form textarea { border-radius: 8px; }
.lvcvi-contact-form button { background: var(--ld-amber); }
.lvcvi-contact-form button:hover { background: var(--ld-amber-dark); }

/* =============================================================
 * 12. 서비스/레퍼런스 상세 페이지
 * ============================================================= */
.ld-single-body {
	max-width: 760px;
	margin: 0 auto;
	padding: 60px 0;
}
.ld-single-body .ld-meta-row {
	display: flex;
	gap: 10px;
	margin-bottom: 24px;
}
.ld-back-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; margin-bottom: 18px; }

/* =============================================================
 * 12-1. 기술소개 페이지 전용 컴포넌트
 * ============================================================= */
.ld-tech-block { max-width: 800px; }
.ld-tech-block + .ld-tech-block { margin-top: 18px; }

.ld-feature-list {
	list-style: none;
	margin: 28px 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
}
.ld-feature-list li {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	background: #fff;
	border: 1px solid var(--ld-border);
	border-radius: var(--ld-radius);
	padding: 18px 20px;
}
.ld-feature-list .ld-feature-icon {
	width: 40px;
	height: 40px;
	flex: none;
	border-radius: 10px;
	background: var(--ld-navy-soft);
	display: flex;
	align-items: center;
	justify-content: center;
}
.ld-feature-list .ld-feature-icon svg { width: 22px; height: 22px; }
.ld-feature-list strong { display: block; margin-bottom: 4px; color: var(--ld-navy); font-size: .98rem; }
.ld-feature-list span { color: var(--ld-text-muted); font-size: .88rem; }

.ld-table-wrap { overflow-x: auto; margin-top: 28px; }
.ld-table {
	width: 100%;
	border-collapse: collapse;
	background: #fff;
	border-radius: var(--ld-radius);
	overflow: hidden;
	font-size: .92rem;
}
.ld-table th, .ld-table td {
	padding: 14px 18px;
	text-align: left;
	border-bottom: 1px solid var(--ld-border);
}
.ld-table th {
	background: var(--ld-navy);
	color: #fff;
	font-weight: 700;
}
.ld-table td:first-child { font-weight: 700; color: var(--ld-navy); white-space: nowrap; }
.ld-table tr:last-child td { border-bottom: none; }
.ld-table tr:nth-child(even) td { background: var(--ld-bg-soft); }

.ld-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 24px;
	padding: 0;
	list-style: none;
}
.ld-tag {
	background: var(--ld-navy);
	color: #fff;
	padding: 8px 16px;
	border-radius: 999px;
	font-size: .86rem;
	font-weight: 600;
}

.ld-tech-teaser-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 26px;
}
.ld-tech-teaser-card {
	background: #fff;
	border: 1px solid var(--ld-border);
	border-radius: var(--ld-radius-lg);
	padding: 30px;
}
.ld-tech-teaser-card h3 { margin-bottom: 10px; }
.ld-tech-teaser-card p { color: var(--ld-text-muted); font-size: .94rem; }

/* =============================================================
 * 13. 푸터
 * ============================================================= */
.ld-footer {
	background: var(--ld-navy-dark);
	color: rgba(255,255,255,.75);
	padding: 60px 0 30px;
}
.ld-footer-grid {
	display: grid;
	grid-template-columns: 1.1fr .8fr 1fr 1.5fr;
	gap: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid rgba(255,255,255,.12);
}
.ld-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.ld-footer .ld-logo-text { color: #fff; }
.ld-footer .ld-logo-text span { color: var(--ld-amber); }
.ld-footer p { color: rgba(255,255,255,.65); font-size: .92rem; }
.ld-footer ul { list-style: none; padding: 0; margin: 0; }
.ld-footer li { margin-bottom: 10px; }
.ld-footer a { color: rgba(255,255,255,.75); font-size: .92rem; }
.ld-footer a:hover { color: var(--ld-amber); }
.ld-footer .ld-btn--primary:hover { color: #fff; }
.ld-footer-offices { display: flex; flex-direction: column; gap: 14px; }
.ld-footer-office-item { margin-bottom: 0; }
.ld-footer-office-item strong { display: block; color: #fff; font-size: .92rem; font-weight: 600; margin-bottom: 3px; }
.ld-footer-office-address {
	display: flex;
	align-items: flex-start;
	gap: 5px;
	color: rgba(255,255,255,.55);
	font-size: .82rem;
	line-height: 1.4;
}
.ld-footer-office-address svg {
	flex: none;
	width: 12px;
	height: 12px;
	margin-top: 2px;
	color: rgba(255,255,255,.45);
}
.ld-footer-bottom {
	padding-top: 24px;
	text-align: center;
	font-size: .84rem;
	color: rgba(255,255,255,.5);
}

/* =============================================================
 * 14. 반응형
 * ============================================================= */
@media (max-width: 960px) {
	.ld-hero-grid { grid-template-columns: 1fr; }
	.ld-hero-art { order: -1; max-width: 320px; margin: 0 auto; }
	.ld-grid, .ld-grid--4 { grid-template-columns: repeat(2, 1fr); }
	.ld-team-grid { grid-template-columns: repeat(2, 1fr); }
	.ld-footer-grid { grid-template-columns: 1fr 1fr; }
	.ld-contact-grid { grid-template-columns: 1fr; }
	.ld-stats { grid-template-columns: repeat(2, 1fr); gap: 30px; }
	.ld-tech-teaser-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
	.ld-nav { display: none; }
	.ld-nav-toggle { display: block; }
	.ld-header-cta { display: none; }
	.ld-section { padding: 56px 0; }
	.ld-hero { padding: 64px 0 80px; }
	.ld-grid, .ld-grid--2, .ld-grid--4 { grid-template-columns: 1fr; }
	.ld-audience-list { grid-template-columns: 1fr; }
	.ld-footer-grid { grid-template-columns: 1fr; }
	.ld-cta-banner { padding: 36px 22px; }
	.ld-feature-list { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
	.ld-nav.is-open {
		display: block;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: #fff;
		border-bottom: 1px solid var(--ld-border);
		padding: 12px 24px 20px;
	}
	.ld-nav.is-open ul { flex-direction: column; gap: 16px; }
	.ld-nav.is-open .sub-menu {
		display: flex;
		position: static;
		box-shadow: none;
		border: none;
		background: transparent;
		padding: 4px 0 0 16px;
		margin: 10px 0 0;
		gap: 12px;
	}
	.ld-nav.is-open .sub-menu a { font-size: .88rem; color: var(--ld-text-muted); padding: 0; }
	.ld-nav.is-open .ld-nav-mobile-cta {
		display: flex;
		flex-direction: column;
		gap: 10px;
		margin-top: 18px;
		padding-top: 16px;
		border-top: 1px solid var(--ld-border);
	}
	.ld-nav.is-open .ld-nav-mobile-cta .ld-btn { text-align: center; }
}

/* =============================================================
 * 15. 사이트 전역 — 더 많은 이미지·역동적인 애니메이션
 * 페이지 헤더/카드/아이콘 등 기존 컴포넌트를 건드리지 않고 확장하여
 * 사이트 전체에 애니메이션 밀도를 높입니다. 모두 순수 CSS(+ 진행성
 * 향상용 소량의 JS)로만 동작해 어떤 환경에서도 안정적으로 표시됩니다.
 * ============================================================= */

/* -------------------------------------------------------------
 * 15-1. 페이지 헤더 배경 애니메이션 (기술소개/서비스/레퍼런스/회사소개/
 *        문의하기/역사/가이드 등 내부 페이지 전체에 자동 적용)
 * ------------------------------------------------------------- */
.ld-page-header {
	position: relative;
	overflow: hidden;
}
.ld-page-header::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(23, 58, 94, .07) 1px, transparent 1px);
	background-size: 24px 24px;
	animation: ld-grid-pan 28s linear infinite;
	pointer-events: none;
}
.ld-page-header::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: -2%;
	width: 2px;
	background: linear-gradient(180deg, transparent, rgba(224, 142, 43, .55), transparent);
	animation: ld-scan-sweep-x 6.5s ease-in-out infinite;
	pointer-events: none;
}
.ld-page-header .ld-container { position: relative; z-index: 1; }
@keyframes ld-scan-sweep-x {
	0%   { left: -2%;  opacity: 0; }
	10%  { opacity: 1; }
	50%  { left: 51%;  opacity: 1; }
	90%  { opacity: 1; }
	100% { left: 102%; opacity: 0; }
}

/* -------------------------------------------------------------
 * 15-2. 카드/기능 아이콘 — 은은한 레이더 핑 애니메이션
 * ------------------------------------------------------------- */
.ld-card-icon,
.ld-feature-list .ld-feature-icon,
.ld-tech-teaser-card .ld-card-icon {
	position: relative;
}
.ld-card-icon::before,
.ld-feature-list .ld-feature-icon::before {
	content: '';
	position: absolute;
	inset: -6px;
	border-radius: 16px;
	border: 1.5px solid var(--ld-amber);
	opacity: 0;
	pointer-events: none;
	animation: ld-icon-ring-ping 3.4s ease-out infinite;
}
.ld-feature-list li:nth-child(2n) .ld-feature-icon::before { animation-delay: .5s; }
.ld-feature-list li:nth-child(3n) .ld-feature-icon::before { animation-delay: 1s; }
.ld-card:hover .ld-card-icon::before { animation-duration: 1.5s; }
@keyframes ld-icon-ring-ping {
	0%   { transform: scale(.86); opacity: .5; }
	70%  { opacity: 0; }
	100% { transform: scale(1.2); opacity: 0; }
}

/* -------------------------------------------------------------
 * 15-3. 개발 프로세스 파이프라인 (애니메이션 다이어그램)
 * ------------------------------------------------------------- */
.ld-workflow { position: relative; margin-top: 46px; }
.ld-workflow-track {
	position: absolute;
	top: 30px;
	left: 40px;
	right: 40px;
	height: 2px;
}
.ld-workflow-line {
	position: absolute;
	inset: 0;
	background-image: repeating-linear-gradient(90deg, var(--ld-amber) 0 10px, transparent 10px 20px);
	opacity: .45;
	animation: ld-workflow-march 1.1s linear infinite;
}
.ld-workflow-particle {
	position: absolute;
	top: 50%;
	width: 8px;
	height: 8px;
	margin-top: -4px;
	border-radius: 50%;
	background: var(--ld-amber);
	box-shadow: 0 0 10px 2px rgba(224, 142, 43, .6);
	animation: ld-workflow-flow 4.5s linear infinite;
}
.ld-workflow-particle--2 { background: var(--ld-navy); box-shadow: 0 0 10px 2px rgba(23, 58, 94, .4); animation-delay: 2.2s; }
@keyframes ld-workflow-march {
	to { background-position: 20px 0; }
}
@keyframes ld-workflow-flow {
	0%   { left: 0%;   opacity: 0; }
	6%   { opacity: 1; }
	94%  { opacity: 1; }
	100% { left: 100%; opacity: 0; }
}
.ld-workflow-steps {
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: space-between;
	gap: 14px;
}
.ld-workflow-step { width: 18%; text-align: center; }
.ld-workflow-node {
	position: relative;
	width: 60px;
	height: 60px;
	margin: 0 auto 16px;
	border-radius: 50%;
	background: linear-gradient(145deg, var(--ld-navy), var(--ld-navy-dark));
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 20px rgba(23, 58, 94, .22);
}
.ld-workflow-node svg { width: 24px; height: 24px; color: #fff; }
.ld-workflow-node::before {
	content: '';
	position: absolute;
	inset: -8px;
	border-radius: 50%;
	border: 1.5px solid var(--ld-amber);
	opacity: 0;
	animation: ld-icon-ring-ping 2.8s ease-out infinite;
}
.ld-workflow-step:nth-child(2) .ld-workflow-node::before { animation-delay: .5s; }
.ld-workflow-step:nth-child(3) .ld-workflow-node::before { animation-delay: 1s; }
.ld-workflow-step:nth-child(4) .ld-workflow-node::before { animation-delay: 1.5s; }
.ld-workflow-step:nth-child(5) .ld-workflow-node::before { animation-delay: 2s; }
.ld-workflow-node-num {
	position: absolute;
	right: -2px;
	bottom: -2px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--ld-amber);
	color: #fff;
	font-size: .68rem;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid #fff;
}
.ld-workflow-step h4 { font-size: .96rem; margin: 0 0 6px; color: var(--ld-navy); }
.ld-workflow-step p { font-size: .82rem; color: var(--ld-text-muted); margin: 0; line-height: 1.6; }

/* -------------------------------------------------------------
 * 15-4. 인력 카드 아바타 강화 (회사소개)
 * ------------------------------------------------------------- */
.ld-team-avatar-wrap { position: relative; width: 68px; margin: 0 auto 14px; }
.ld-team-avatar {
	margin: 0;
	background: linear-gradient(145deg, var(--ld-navy), var(--ld-navy-dark));
	position: relative;
	z-index: 1;
}
.ld-team-avatar-wrap::before {
	content: '';
	position: absolute;
	inset: -7px;
	border-radius: 50%;
	border: 1.5px solid var(--ld-amber);
	opacity: 0;
	animation: ld-icon-ring-ping 3.2s ease-out infinite;
}
.ld-team-card:nth-child(2) .ld-team-avatar-wrap::before { animation-delay: .5s; }
.ld-team-card:nth-child(3) .ld-team-avatar-wrap::before { animation-delay: 1s; }
.ld-team-card:nth-child(4) .ld-team-avatar-wrap::before { animation-delay: 1.5s; }
.ld-team-status {
	position: absolute;
	right: 2px;
	bottom: 2px;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: #3fa34d;
	border: 2px solid #fff;
	z-index: 2;
	animation: ld-live-blink 2s ease-in-out infinite;
}
.ld-team-card {
	transition: box-shadow .2s ease, transform .2s ease;
}
.ld-team-card:hover {
	box-shadow: var(--ld-shadow-lg);
	transform: translateY(-4px);
}

/* -------------------------------------------------------------
 * 15-5. 문의하기 페이지 — 신호 연결 애니메이션 패널
 * ------------------------------------------------------------- */
.ld-contact-ping {
	position: relative;
	width: 140px;
	height: 140px;
	margin: 36px auto 8px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.ld-contact-ping-core {
	position: relative;
	z-index: 2;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: linear-gradient(145deg, var(--ld-amber), var(--ld-amber-dark));
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 24px rgba(224, 142, 43, .35);
}
.ld-contact-ping-core svg { width: 26px; height: 26px; color: #fff; }
.ld-contact-ping-ring {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	border: 1.5px solid rgba(255, 255, 255, .55);
	opacity: 0;
	animation: ld-contact-ping-expand 3s ease-out infinite;
}
.ld-contact-ping-ring--1 { animation-delay: 0s; }
.ld-contact-ping-ring--2 { animation-delay: 1s; }
.ld-contact-ping-ring--3 { animation-delay: 2s; }
@keyframes ld-contact-ping-expand {
	0%   { transform: scale(.4); opacity: .5; }
	100% { transform: scale(1);  opacity: 0; }
}
.ld-contact-ping-label {
	text-align: center;
	font-size: .84rem;
	color: rgba(255, 255, 255, .78);
	margin-bottom: 28px;
}

/* -------------------------------------------------------------
 * 15-6. 푸터 상단 — 애니메이션 회로 라인
 * ------------------------------------------------------------- */
.ld-footer { position: relative; }
.ld-footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background-image: repeating-linear-gradient(90deg, var(--ld-amber) 0 14px, transparent 14px 28px);
	opacity: .55;
	animation: ld-workflow-march 1.4s linear infinite;
}

/* -------------------------------------------------------------
 * 15-7. 스크롤 리빌 — 진행성 향상(Progressive Enhancement)
 * JS가 정상 동작하지 않아도 콘텐츠는 항상 보이며(opacity:1),
 * html.ld-js-ready 클래스가 붙었을 때만 초기 숨김 상태로 전환되어
 * 뷰포트에 들어올 때 서서히 나타나는 연출이 더해집니다.
 * ------------------------------------------------------------- */
.ld-grid > *,
.ld-team-grid > *,
.ld-hw-grid > *,
.ld-sw-grid > *,
.ld-feature-list > li,
.ld-audience-list > li,
.ld-tech-teaser-grid > *,
.ld-timeline-item,
.ld-workflow-step,
.ld-stats .ld-stat {
	opacity: 1;
	transform: none;
}
html.ld-js-ready .ld-grid > *,
html.ld-js-ready .ld-team-grid > *,
html.ld-js-ready .ld-hw-grid > *,
html.ld-js-ready .ld-sw-grid > *,
html.ld-js-ready .ld-feature-list > li,
html.ld-js-ready .ld-audience-list > li,
html.ld-js-ready .ld-tech-teaser-grid > *,
html.ld-js-ready .ld-timeline-item,
html.ld-js-ready .ld-workflow-step,
html.ld-js-ready .ld-stats .ld-stat {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity .6s ease, transform .6s ease;
}
html.ld-js-ready .ld-in-view {
	opacity: 1 !important;
	transform: none !important;
}
html.ld-js-ready .ld-grid > *:nth-child(1),  html.ld-js-ready .ld-team-grid > *:nth-child(1),  html.ld-js-ready .ld-hw-grid > *:nth-child(1),  html.ld-js-ready .ld-sw-grid > *:nth-child(1),  html.ld-js-ready .ld-tech-teaser-grid > *:nth-child(1) { transition-delay: 0s; }
html.ld-js-ready .ld-grid > *:nth-child(2),  html.ld-js-ready .ld-team-grid > *:nth-child(2),  html.ld-js-ready .ld-hw-grid > *:nth-child(2),  html.ld-js-ready .ld-sw-grid > *:nth-child(2),  html.ld-js-ready .ld-tech-teaser-grid > *:nth-child(2) { transition-delay: .1s; }
html.ld-js-ready .ld-grid > *:nth-child(3),  html.ld-js-ready .ld-team-grid > *:nth-child(3),  html.ld-js-ready .ld-hw-grid > *:nth-child(3),  html.ld-js-ready .ld-sw-grid > *:nth-child(3) { transition-delay: .2s; }
html.ld-js-ready .ld-grid > *:nth-child(4),  html.ld-js-ready .ld-team-grid > *:nth-child(4),  html.ld-js-ready .ld-hw-grid > *:nth-child(4),  html.ld-js-ready .ld-sw-grid > *:nth-child(4) { transition-delay: .3s; }
html.ld-js-ready .ld-grid > *:nth-child(5),  html.ld-js-ready .ld-sw-grid > *:nth-child(5) { transition-delay: .4s; }
html.ld-js-ready .ld-grid > *:nth-child(6),  html.ld-js-ready .ld-sw-grid > *:nth-child(6) { transition-delay: .5s; }

/* -------------------------------------------------------------
 * 15-8. 반응형 · 접근성
 * ------------------------------------------------------------- */
@media (max-width: 720px) {
	.ld-workflow-track { display: none; }
	.ld-workflow-steps { flex-direction: column; gap: 26px; }
	.ld-workflow-step { width: 100%; }
	.ld-contact-ping { margin: 24px auto 4px; }
}

@media (prefers-reduced-motion: reduce) {
	.ld-page-header::before,
	.ld-page-header::after,
	.ld-card-icon::before,
	.ld-feature-list .ld-feature-icon::before,
	.ld-workflow-line,
	.ld-workflow-particle,
	.ld-workflow-node::before,
	.ld-team-avatar-wrap::before,
	.ld-team-status,
	.ld-contact-ping-ring,
	.ld-footer::before {
		animation: none !important;
	}
	html.ld-js-ready .ld-grid > *,
	html.ld-js-ready .ld-team-grid > *,
	html.ld-js-ready .ld-hw-grid > *,
	html.ld-js-ready .ld-sw-grid > *,
	html.ld-js-ready .ld-feature-list > li,
	html.ld-js-ready .ld-audience-list > li,
	html.ld-js-ready .ld-tech-teaser-grid > *,
	html.ld-js-ready .ld-timeline-item,
	html.ld-js-ready .ld-workflow-step,
	html.ld-js-ready .ld-stats .ld-stat {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* =============================================================
 * 16. NI 소프트웨어 포트폴리오 (기술소개 페이지)
 * ============================================================= */
.ld-sw-portfolio { margin-top: 36px; }
.ld-sw-category + .ld-sw-category { margin-top: 42px; }
.ld-sw-cat-title {
	font-size: 1.02rem;
	color: var(--ld-amber-dark);
	margin: 0 0 18px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--ld-border);
}
.ld-sw-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}
.ld-sw-card {
	background: #fff;
	border: 1px solid var(--ld-border);
	border-radius: var(--ld-radius);
	padding: 20px 18px;
	transition: box-shadow .2s ease, transform .2s ease;
}
.ld-sw-card:hover { box-shadow: var(--ld-shadow); transform: translateY(-3px); }
.ld-sw-card .ld-card-icon { width: 44px; height: 44px; margin-bottom: 14px; }
.ld-sw-card .ld-card-icon svg { width: 24px; height: 24px; }
.ld-sw-card h4 { font-size: .96rem; margin: 0 0 6px; color: var(--ld-navy); }
.ld-sw-card p { font-size: .82rem; color: var(--ld-text-muted); margin: 0; line-height: 1.6; }

@media (max-width: 960px) {
	.ld-sw-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
	.ld-sw-grid { grid-template-columns: 1fr; }
}

/* =============================================================
 * 17. 세부 마감 — 버튼·태그·테이블·타임라인·CTA·로고·404
 * 사이트 전반에 남아있던 정적인 요소들에 애니메이션을 촘촘히
 * 채워 넣습니다.
 * ============================================================= */

/* -------------------------------------------------------------
 * 17-1. 버튼 — 호버 시 빛이 스치는 shine 효과
 * ------------------------------------------------------------- */
.ld-btn {
	position: relative;
	overflow: hidden;
}
.ld-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -60%;
	width: 40%;
	height: 100%;
	background: linear-gradient(115deg, transparent, rgba(255, 255, 255, .55), transparent);
	transform: skewX(-18deg);
	pointer-events: none;
}
.ld-btn:hover::before {
	animation: ld-btn-shine .9s ease;
}
@keyframes ld-btn-shine {
	from { left: -60%; }
	to   { left: 130%; }
}
.ld-btn--navy-outline::before { background: linear-gradient(115deg, transparent, rgba(23, 58, 94, .18), transparent); }

/* -------------------------------------------------------------
 * 17-2. 태그·칩 — 호버 시 살짝 떠오르며 강조
 * ------------------------------------------------------------- */
.ld-tag {
	display: inline-block;
	transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.ld-tag:hover {
	background: var(--ld-amber);
	transform: translateY(-2px) scale(1.04);
	box-shadow: 0 8px 16px rgba(224, 142, 43, .3);
}

/* -------------------------------------------------------------
 * 17-3. 타임라인 점 — 은은한 레이더 핑
 * ------------------------------------------------------------- */
.ld-timeline-dot { position: relative; }
.ld-timeline-dot::before {
	content: '';
	position: absolute;
	inset: -6px;
	border-radius: 50%;
	border: 1.5px solid var(--ld-amber);
	opacity: 0;
	animation: ld-icon-ring-ping 3.6s ease-out infinite;
}
.ld-timeline-item:nth-child(2n) .ld-timeline-dot::before { animation-delay: .6s; }
.ld-timeline-item:nth-child(3n) .ld-timeline-dot::before { animation-delay: 1.2s; }

/* -------------------------------------------------------------
 * 17-4. 표 — 행 호버 강조
 * ------------------------------------------------------------- */
.ld-table tr { transition: background .15s ease; }
.ld-table tbody tr:hover td { background: var(--ld-navy-soft); }

/* -------------------------------------------------------------
 * 17-5. CTA 배너 — 애니메이션 그리드 + 글로우 배경
 * ------------------------------------------------------------- */
.ld-cta-banner { position: relative; overflow: hidden; }
.ld-cta-banner::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(255, 255, 255, .1) 1px, transparent 1px);
	background-size: 24px 24px;
	animation: ld-grid-pan 24s linear infinite;
	pointer-events: none;
}
.ld-cta-banner::after {
	content: '';
	position: absolute;
	width: 220px;
	height: 220px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(224, 142, 43, .35), transparent 70%);
	top: -60px;
	right: -40px;
	animation: ld-glow-pulse 5s ease-in-out infinite;
	pointer-events: none;
}
.ld-cta-banner > * { position: relative; z-index: 1; }

/* -------------------------------------------------------------
 * 17-6. 로고 — 호버 시 은은한 글로우
 * ------------------------------------------------------------- */
.ld-logo-text {
	transition: text-shadow .2s ease;
}
.ld-logo-text:hover {
	text-shadow: 0 0 14px rgba(224, 142, 43, .45);
}

/* -------------------------------------------------------------
 * 17-7. 내비게이션 링크 — 밑줄 스윕 애니메이션
 * ------------------------------------------------------------- */
.ld-nav > ul > li > a {
	position: relative;
	padding-bottom: 3px;
}
.ld-nav > ul > li > a::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 100%;
	height: 2px;
	background: var(--ld-amber);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .22s ease;
}
.ld-nav > ul > li > a:hover::before { transform: scaleX(1); }

/* -------------------------------------------------------------
 * 17-8. 404 페이지 — 신호 탐색 애니메이션
 * ------------------------------------------------------------- */
.ld-404-radar {
	position: relative;
	width: 160px;
	height: 160px;
	margin: 8px auto 32px;
}
.ld-404-radar-ring {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	border: 1.5px dashed var(--ld-border);
}
.ld-404-radar-ring--inner { inset: 30px; }
.ld-404-radar-sweep {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: conic-gradient(from 0deg, rgba(224, 142, 43, .5), transparent 35%);
	animation: ld-404-rotate 2.4s linear infinite;
}
.ld-404-radar-core {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 44px;
	height: 44px;
	margin: -22px 0 0 -22px;
	border-radius: 50%;
	background: #fff;
	border: 2px solid var(--ld-navy);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
}
.ld-404-radar-core svg { width: 22px; height: 22px; }
.ld-404-radar-blip {
	position: absolute;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--ld-amber);
	animation: ld-live-blink 1.8s ease-in-out infinite;
}
.ld-404-radar-blip--1 { top: 24px; left: 40px; animation-delay: .3s; }
.ld-404-radar-blip--2 { top: 108px; left: 118px; animation-delay: 1s; }
@keyframes ld-404-rotate {
	to { transform: rotate(360deg); }
}

/* -------------------------------------------------------------
 * 17-9. 반응형 · 접근성
 * ------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
	.ld-btn::before,
	.ld-timeline-dot::before,
	.ld-cta-banner::before,
	.ld-cta-banner::after,
	.ld-404-radar-sweep,
	.ld-404-radar-blip {
		animation: none !important;
	}
}

/* =============================================================
 * 18. 전국 사무소 지도 (문의하기 페이지)
 * ============================================================= */
.ld-office-map-wrap {
	display: grid;
	grid-template-columns: 260px 1fr;
	gap: 48px;
	align-items: center;
	margin-top: 36px;
}
.ld-office-map {
	position: relative;
	width: 100%;
	max-width: 260px;
	margin: 0 auto;
}
.ld-office-map svg:first-child { width: 100%; height: auto; display: block; }

.ld-office-pin {
	position: absolute;
	display: flex;
	align-items: center;
	gap: 8px;
	transform: translate(-6px, -50%);
}
.ld-office-pin-dot {
	position: relative;
	z-index: 2;
	flex: none;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--ld-amber);
	border: 2px solid #fff;
	box-shadow: 0 2px 6px rgba(15, 39, 63, .3);
}
.ld-office-pin-ring {
	position: absolute;
	left: 0;
	top: 0;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	border: 1.5px solid var(--ld-amber);
	opacity: 0;
	animation: ld-icon-ring-ping 2.6s ease-out infinite;
}
.ld-office-pin--2 .ld-office-pin-ring { animation-delay: .5s; }
.ld-office-pin--3 .ld-office-pin-ring { animation-delay: 1s; }
.ld-office-pin--4 .ld-office-pin-ring { animation-delay: 1.5s; }
.ld-office-pin-label {
	font-size: .68rem;
	font-weight: 700;
	color: var(--ld-navy);
	background: #fff;
	padding: 3px 8px;
	border-radius: 5px;
	white-space: nowrap;
	box-shadow: 0 2px 6px rgba(15, 39, 63, .15);
}

.ld-office-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 18px;
}
.ld-office-list-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}
.ld-office-list-dot {
	flex: none;
	width: 10px;
	height: 10px;
	margin-top: 6px;
	border-radius: 50%;
	background: var(--ld-amber);
}
.ld-office-list-item strong { display: block; color: var(--ld-navy); font-size: .98rem; margin-bottom: 2px; }
.ld-office-list-item span { font-size: .86rem; color: var(--ld-text-muted); }
.ld-office-list-address {
	display: flex;
	align-items: flex-start;
	gap: 5px;
	margin-top: 4px;
	line-height: 1.4;
}
.ld-office-list-address svg {
	flex: none;
	width: 13px;
	height: 13px;
	margin-top: 2px;
	opacity: .65;
}

@media (max-width: 720px) {
	.ld-office-map-wrap { grid-template-columns: 1fr; gap: 30px; }
	.ld-office-map { max-width: 200px; }
}

/* =============================================================
 * 19. 문의 폼 (테마 자체 구현, labdev_contact_form())
 * ============================================================= */
.ld-contact-form label {
	display: block;
	font-weight: 600;
	margin-bottom: 6px;
	font-size: .9rem;
	color: var(--ld-navy);
}
.ld-contact-form input[type="text"],
.ld-contact-form input[type="email"],
.ld-contact-form select,
.ld-contact-form textarea {
	width: 100%;
	box-sizing: border-box;
	padding: 10px 12px;
	border: 1px solid var(--ld-border);
	border-radius: 6px;
	font-size: .95rem;
	font-family: inherit;
	background: #fff;
	color: var(--ld-ink);
	transition: border-color .15s ease, box-shadow .15s ease;
}
.ld-contact-form input[type="text"]:focus,
.ld-contact-form input[type="email"]:focus,
.ld-contact-form select:focus,
.ld-contact-form textarea:focus {
	outline: none;
	border-color: var(--ld-amber);
	box-shadow: 0 0 0 3px rgba(224, 142, 43, .18);
}
.ld-contact-form select {
	appearance: none;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23173a5e' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 16px;
	padding-right: 36px;
	cursor: pointer;
}
.ld-contact-form p { margin: 0 0 18px; }
.ld-contact-form form { margin: 0; }

.ld-form-section-title {
	margin: 26px 0 14px !important;
	padding-top: 18px;
	border-top: 1px dashed var(--ld-border);
	font-size: .8rem;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: var(--ld-amber-dark);
}
.ld-contact-form form > p.ld-form-section-title:first-of-type {
	margin-top: 0 !important;
	padding-top: 0;
	border-top: none;
}
.ld-form-hint {
	display: block;
	margin-top: 6px;
	font-size: .8rem;
	font-weight: 400;
	color: var(--ld-text-muted);
}
.ld-contact-form button[type="submit"] {
	border: none;
	font-family: inherit;
}
.ld-form-success {
	color: #1a7a3d;
	background: #eafaf0;
	border: 1px solid #bfe8cf;
	padding: 16px 18px;
	border-radius: var(--ld-radius);
	line-height: 1.7;
}
.ld-form-error {
	color: #a3231f;
	background: #fdeceb;
	border: 1px solid #f3c1bd;
	padding: 14px 16px;
	border-radius: var(--ld-radius);
	margin-bottom: 18px;
}
.ld-form-error-list .ld-form-error { margin-bottom: 10px; }
.ld-form-error-list .ld-form-error:last-child { margin-bottom: 18px; }

/* =============================================================
 * 20. 프로젝트 문의 게시판
 * ============================================================= */
.ld-container--narrow { max-width: 820px; }

.ld-board-back {
	display: inline-block;
	margin-bottom: 20px;
	font-size: .9rem;
	font-weight: 600;
	color: var(--ld-text-muted);
}
.ld-board-back:hover { color: var(--ld-amber-dark); }

.ld-board-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
}
.ld-board-count { color: var(--ld-text-muted); font-size: .9rem; }

.ld-board-table {
	width: 100%;
	border-collapse: collapse;
	border-top: 2px solid var(--ld-navy);
}
.ld-board-table th,
.ld-board-table td {
	padding: 14px 10px;
	border-bottom: 1px solid var(--ld-border);
	font-size: .92rem;
	text-align: center;
}
.ld-board-table th {
	color: var(--ld-navy);
	font-weight: 700;
	background: var(--ld-navy-soft, #f4f7fa);
}
.ld-board-col-title { text-align: left; }
.ld-board-col-title a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--ld-ink);
	font-weight: 600;
}
.ld-board-col-title a:hover { color: var(--ld-amber-dark); }
.ld-board-col-title svg { width: 14px; height: 14px; flex: none; color: var(--ld-text-muted); }
.ld-board-col-no { width: 60px; color: var(--ld-text-muted); }
.ld-board-col-name { width: 120px; color: var(--ld-text-muted); }
.ld-board-col-date { width: 110px; color: var(--ld-text-muted); }

.ld-board-empty {
	text-align: center;
	padding: 60px 20px;
	color: var(--ld-text-muted);
	border: 1px dashed var(--ld-border);
	border-radius: var(--ld-radius-lg);
}

.ld-board-pagination {
	display: flex;
	justify-content: center;
	gap: 6px;
	margin-top: 28px;
}
.ld-board-page-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 6px;
	color: var(--ld-navy);
	font-size: .88rem;
	font-weight: 600;
	border: 1px solid var(--ld-border);
}
.ld-board-page-link:hover { border-color: var(--ld-amber); }
.ld-board-page-link.is-active { background: var(--ld-navy); border-color: var(--ld-navy); color: #fff; }

/* 글쓰기 폼 — .ld-contact-form 스타일을 재사용하고 부족한 입력 유형만 보강합니다. */
.ld-board-write h3 { margin: 0 0 20px; }

.ld-privacy-box {
	border: 1px solid var(--ld-border);
	border-radius: var(--ld-radius);
	margin-bottom: 20px;
	background: #fbfbfc;
}
.ld-privacy-box summary {
	cursor: pointer;
	padding: 14px 16px;
	font-weight: 600;
	font-size: .9rem;
	color: var(--ld-navy);
}
.ld-privacy-body {
	max-height: 260px;
	overflow-y: auto;
	padding: 0 18px 18px;
	font-size: .8rem;
	line-height: 1.7;
	color: var(--ld-text-muted);
	white-space: pre-line;
}

.ld-board-form input[type="password"],
.ld-board-form input[type="file"] {
	width: 100%;
	box-sizing: border-box;
	padding: 10px 12px;
	border: 1px solid var(--ld-border);
	border-radius: 6px;
	font-size: .95rem;
	font-family: inherit;
	background: #fff;
	color: var(--ld-ink);
}
.ld-board-form input[type="password"]:focus {
	outline: none;
	border-color: var(--ld-amber);
	box-shadow: 0 0 0 3px rgba(224, 142, 43, .18);
}
.ld-board-privacy-agree,
.ld-board-captcha-field { margin-bottom: 18px; }
.ld-board-privacy-agree {
	display: flex !important;
	align-items: center;
	gap: 8px;
	font-weight: 500 !important;
	font-size: .9rem !important;
	color: var(--ld-ink) !important;
}
.ld-board-privacy-agree input { width: auto; margin: 0; }

.ld-board-captcha-row {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 10px;
}
.ld-board-captcha-img {
	border: 1px solid var(--ld-border);
	border-radius: 6px;
	display: block;
}
.ld-board-captcha-refresh {
	font-size: .82rem;
	color: var(--ld-text-muted);
	white-space: nowrap;
}
.ld-board-captcha-refresh:hover { color: var(--ld-amber-dark); }

.ld-board-hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.ld-board-lock-prompt {
	text-align: center;
	padding: 60px 20px;
	border: 1px solid var(--ld-border);
	border-radius: var(--ld-radius-lg);
}
.ld-board-lock-prompt svg { width: 34px; height: 34px; color: var(--ld-amber-dark); margin-bottom: 10px; }
.ld-board-lock-prompt h3 { margin: 0 0 8px; }
.ld-board-lock-prompt p { color: var(--ld-text-muted); margin: 0 0 20px; }
.ld-board-lock-prompt form {
	display: flex;
	justify-content: center;
	gap: 10px;
	flex-wrap: wrap;
}
.ld-board-lock-prompt input[type="password"] {
	padding: 10px 14px;
	border: 1px solid var(--ld-border);
	border-radius: 6px;
	font-size: .95rem;
	min-width: 220px;
}
.ld-board-lock-prompt button {
	border: none;
	font-family: inherit;
	cursor: pointer;
}

.ld-board-view h3 { margin: 0 0 10px; }
.ld-board-view-meta {
	display: flex;
	gap: 14px;
	color: var(--ld-text-muted);
	font-size: .88rem;
	padding-bottom: 16px;
	margin-bottom: 20px;
	border-bottom: 1px solid var(--ld-border);
}
.ld-board-admin-badge {
	background: var(--ld-amber);
	color: #fff;
	padding: 2px 8px;
	border-radius: 4px;
	font-size: .76rem;
	font-weight: 700;
}
.ld-board-view-body {
	line-height: 1.8;
	color: var(--ld-ink);
	margin-bottom: 24px;
	min-height: 80px;
}
.ld-board-attachment {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 16px;
	border: 1px solid var(--ld-border);
	border-radius: 6px;
	font-size: .88rem;
	font-weight: 600;
	color: var(--ld-navy);
}
.ld-board-attachment:hover { border-color: var(--ld-amber); color: var(--ld-amber-dark); }
.ld-board-attachment svg { width: 15px; height: 15px; }

@media (max-width: 640px) {
	.ld-board-col-name, .ld-board-col-date { display: none; }
	.ld-board-table th.ld-board-col-name, .ld-board-table th.ld-board-col-date { display: none; }
}
