/* =====================================================================
   Creativewity — main.css
   Brand:  signal #f7ce08 · ink #2b2b2b · graphite #444 · paper #ffffff
           mist #f5f5f2 · line #e5e4df · muted #7a7a74
   Type:   Space Grotesk (display) · Inter (body) · JetBrains Mono (utility)
   Signature: the "highlighter swipe" — a yellow marker stroke behind key
              words, echoing the logo's yellow arrow.
   ===================================================================== */

:root {
	--signal: #f7ce08;
	--signal-deep: #e0b700;
	--ink: #2b2b2b;
	--graphite: #444444;
	--paper: #ffffff;
	--mist: #f5f5f2;
	--line: #e5e4df;
	--muted: #7a7a74;
	--danger: #d8412f;

	--font-display: "Space Grotesk", system-ui, sans-serif;
	--font-body: "Inter", system-ui, sans-serif;
	--font-mono: "JetBrains Mono", ui-monospace, monospace;

	--radius: 14px;
	--radius-sm: 9px;
	--shadow: 0 18px 40px rgba(43, 43, 43, 0.10);
	--shadow-sm: 0 6px 18px rgba(43, 43, 43, 0.07);
	--wrap: 1200px;
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

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

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }

.screen-reader-text {
	position: absolute; width: 1px; height: 1px;
	overflow: hidden; clip: rect(1px, 1px, 1px, 1px); white-space: nowrap;
}
.skip-link:focus {
	position: fixed; left: 14px; top: 14px; z-index: 999;
	background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 8px;
	width: auto; height: auto; clip: auto;
}

/* ---- The signature highlighter swipe ------------------------------- */
.mark {
	position: relative;
	white-space: nowrap;
}
.mark::before {
	content: "";
	position: absolute;
	left: -0.08em; right: -0.08em;
	bottom: 0.05em; height: 0.42em;
	background: var(--signal);
	z-index: -1;
	transform: skewX(-4deg) rotate(-0.6deg);
	border-radius: 2px;
}

/* =====================================================================
   Buttons
   ===================================================================== */
.btn {
	display: inline-flex; align-items: center; gap: 9px;
	font: 600 15px/1 var(--font-body);
	padding: 14px 24px;
	border-radius: 999px;
	border: 1.5px solid var(--ink);
	background: var(--ink);
	color: #fff;
	text-decoration: none;
	cursor: pointer;
	transition: transform 0.18s var(--ease), background 0.18s, color 0.18s, box-shadow 0.18s;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn:active { transform: translateY(0); }
.btn .arrow { transition: transform 0.18s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

.btn.signal { background: var(--signal); border-color: var(--signal); color: var(--ink); }
.btn.signal:hover { background: var(--signal-deep); border-color: var(--signal-deep); }
.btn.ghost { background: transparent; color: var(--ink); }
.btn.ghost:hover { background: var(--ink); color: #fff; }
.btn.ghost.on-dark { color: #fff; border-color: rgba(255,255,255,.5); }
.btn.ghost.on-dark:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn.small { padding: 10px 18px; font-size: 14px; }

:focus-visible { outline: 3px solid var(--signal); outline-offset: 2px; }

/* =====================================================================
   Header
   ===================================================================== */
.site-header {
	position: sticky; top: 0; z-index: 60;
	background: rgba(255,255,255,0.86);
	backdrop-filter: saturate(140%) blur(12px);
	border-bottom: 1px solid var(--line);
}
.header-inner {
	display: flex; align-items: center; justify-content: space-between;
	gap: 24px; padding: 15px 28px; max-width: var(--wrap); margin: 0 auto;
}
.brand-logo img, .custom-logo { height: 34px; width: auto; display: block; }
.brand-logo { display: inline-flex; }

.primary-nav ul { display: flex; gap: 26px; list-style: none; margin: 0; padding: 0; }
.primary-nav a {
	font-size: 15px; font-weight: 500; text-decoration: none; color: var(--graphite);
	position: relative; padding: 4px 0;
}
.primary-nav a::after {
	content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
	background: var(--signal); transform: scaleX(0); transform-origin: left;
	transition: transform 0.22s var(--ease);
}
.primary-nav a:hover, .primary-nav .current-menu-item > a { color: var(--ink); }
.primary-nav a:hover::after, .primary-nav .current-menu-item > a::after { transform: scaleX(1); }

.header-cta { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
	display: none; background: none; border: 0; cursor: pointer; padding: 8px;
	flex-direction: column; gap: 5px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: 0.2s; }

/* =====================================================================
   Footer
   ===================================================================== */
.site-footer { background: var(--ink); color: #cfcfca; margin-top: 90px; }
.footer-top {
	display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px;
	padding: 64px 28px 44px; max-width: var(--wrap); margin: 0 auto;
}
.footer-brand img { height: 32px; margin-bottom: 18px; }
.footer-brand p { max-width: 320px; color: #a5a5a0; font-size: 14.5px; }
.footer-col h4 {
	font-family: var(--font-display); font-size: 13px; letter-spacing: 0.14em;
	text-transform: uppercase; color: var(--signal); margin: 0 0 16px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer-col a { text-decoration: none; color: #cfcfca; font-size: 14.5px; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.1); padding: 22px 28px;
	max-width: var(--wrap); margin: 0 auto;
	display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
	font-size: 13.5px; color: #8f8f8a;
}
.footer-bottom .socials { display: flex; gap: 16px; }
.footer-bottom a { color: #cfcfca; text-decoration: none; }

/* =====================================================================
   Hero (Home)
   ===================================================================== */
.hero { position: relative; overflow: hidden; padding: 84px 0 70px; }
.hero::after {
	content: ""; position: absolute; inset: 0; z-index: -2;
	background:
		radial-gradient(1000px 460px at 82% -6%, rgba(247,206,8,0.16), transparent 60%),
		linear-gradient(#ffffff, var(--mist));
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 54px; align-items: center; }
.hero-eyebrow {
	display: inline-flex; align-items: center; gap: 9px;
	font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.06em;
	color: var(--graphite); background: #fff; border: 1px solid var(--line);
	padding: 7px 14px; border-radius: 999px; margin-bottom: 22px;
}
.hero-eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--signal); }
.hero h1 {
	font-family: var(--font-display); font-weight: 700;
	font-size: clamp(38px, 5.4vw, 66px); line-height: 1.02; letter-spacing: -0.02em;
	margin: 0 0 22px; color: var(--ink);
}
.hero p.lead { font-size: 19px; color: var(--graphite); max-width: 520px; margin: 0 0 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 34px; margin-top: 42px; }
.hero-stats .stat strong {
	display: block; font-family: var(--font-display); font-size: 30px; color: var(--ink);
}
.hero-stats .stat span { font-size: 13px; color: var(--muted); }

/* Hero visual: a stacked "tool cards" collage */
.hero-visual { position: relative; min-height: 430px; }
.tool-card {
	position: absolute; background: #fff; border: 1px solid var(--line);
	border-radius: var(--radius); box-shadow: var(--shadow); padding: 18px;
	transition: transform 0.3s var(--ease);
}
.tool-card:hover { transform: translateY(-6px) rotate(0deg) !important; }
.tool-card .tc-head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.tool-card .tc-dot { width: 30px; height: 30px; border-radius: 8px; background: var(--signal); display: grid; place-items: center; }
.tool-card .tc-title { font-family: var(--font-display); font-weight: 600; font-size: 14px; }
.tool-card.card-a { top: 6%; left: 2%; width: 60%; transform: rotate(-3deg); z-index: 3; }
.tool-card.card-b { top: 34%; right: 0; width: 54%; transform: rotate(3deg); z-index: 2; }
.tool-card.card-c { bottom: 2%; left: 12%; width: 52%; transform: rotate(-1.5deg); z-index: 4; }
.barcode-strip { display: flex; gap: 3px; height: 46px; align-items: stretch; }
.barcode-strip i { display: block; background: var(--ink); border-radius: 1px; }
.qr-mini {
	width: 66px; height: 66px; border-radius: 6px;
	background:
		linear-gradient(90deg, var(--ink) 0 0) 0 0 / 100% 100%;
	-webkit-mask: radial-gradient(circle at 3px 3px, #000 2px, transparent 2px) 0 0 / 9px 9px;
	mask: radial-gradient(circle at 3px 3px, #000 2px, transparent 2px) 0 0 / 9px 9px;
}
.mockup-frame {
	height: 92px; border-radius: 8px; border: 1px solid var(--line);
	background: repeating-linear-gradient(135deg, var(--mist) 0 10px, #fff 10px 20px);
	position: relative;
}
.mockup-frame::before {
	content: ""; position: absolute; inset: 14px; border-radius: 5px;
	background: #fff; border: 1px dashed var(--line);
}

/* =====================================================================
   Section scaffolding
   ===================================================================== */
.section { padding: 78px 0; }
.section.mist { background: var(--mist); }
.section.ink { background: var(--ink); color: #efeee9; }
.section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.section-head.left { text-align: left; margin-left: 0; }
.eyebrow {
	font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.14em;
	text-transform: uppercase; color: var(--signal-deep); margin: 0 0 12px;
}
.section.ink .eyebrow { color: var(--signal); }
.section-head h2 {
	font-family: var(--font-display); font-weight: 700;
	font-size: clamp(28px, 3.6vw, 44px); line-height: 1.08; letter-spacing: -0.015em;
	margin: 0 0 14px; color: var(--ink);
}
.section.ink .section-head h2 { color: #fff; }
.section-head p { font-size: 17px; color: var(--graphite); margin: 0; }
.section.ink .section-head p { color: #bdbcb6; }

/* ---- Tools grid ---------------------------------------------------- */
.tools-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tool-tile {
	position: relative; background: #fff; border: 1px solid var(--line);
	border-radius: var(--radius); padding: 28px 26px 26px; text-decoration: none; color: inherit;
	transition: transform 0.22s var(--ease), box-shadow 0.22s, border-color 0.22s;
	overflow: hidden;
}
.tool-tile::after {
	content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 4px;
	background: var(--signal); transform: scaleX(0); transform-origin: left;
	transition: transform 0.25s var(--ease);
}
.tool-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.tool-tile:hover::after { transform: scaleX(1); }
.tool-ic {
	width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center;
	background: var(--mist); margin-bottom: 18px; color: var(--ink);
}
.tool-tile:hover .tool-ic { background: var(--signal); }
.tool-tile h3 { font-family: var(--font-display); font-size: 20px; margin: 0 0 8px; }
.tool-tile p { color: var(--graphite); font-size: 15px; margin: 0 0 16px; }
.tool-tile .go { font-weight: 600; font-size: 14px; display: inline-flex; gap: 6px; align-items: center; }
.tool-tile .badge {
	position: absolute; top: 18px; right: 18px; font-family: var(--font-mono);
	font-size: 11px; padding: 4px 9px; border-radius: 999px;
	background: var(--signal); color: var(--ink); font-weight: 500;
}

/* ---- Logo / clients marquee --------------------------------------- */
.marquee { overflow: hidden; padding: 26px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.marquee-track { display: flex; gap: 60px; animation: scroll-x 28s linear infinite; width: max-content; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { font-family: var(--font-display); font-weight: 600; font-size: 20px; color: #b7b7b1; white-space: nowrap; }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ---- Steps / process ---------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.step { position: relative; padding-top: 22px; }
.step .num {
	font-family: var(--font-mono); font-size: 13px; color: var(--ink);
	background: var(--signal); display: inline-flex; padding: 4px 11px; border-radius: 999px; margin-bottom: 14px;
}
.step h3 { font-family: var(--font-display); font-size: 19px; margin: 0 0 8px; }
.step p { color: var(--graphite); font-size: 15px; margin: 0; }

/* ---- CTA band ------------------------------------------------------ */
.cta-band { background: var(--signal); border-radius: 22px; padding: 54px; text-align: center; position: relative; overflow: hidden; }
.cta-band h2 { font-family: var(--font-display); font-size: clamp(26px, 3.4vw, 40px); margin: 0 0 14px; color: var(--ink); letter-spacing: -0.01em; }
.cta-band p { color: #5a4d05; font-size: 17px; margin: 0 0 26px; }
.cta-band .btn { background: var(--ink); border-color: var(--ink); color: #fff; }
.cta-band .btn:hover { background: #000; }

/* =====================================================================
   Generic page headers + content
   ===================================================================== */
.page-hero { padding: 72px 0 40px; background: linear-gradient(#fff, var(--mist)); border-bottom: 1px solid var(--line); }
.page-hero .eyebrow { text-align: left; }
.page-hero h1 {
	font-family: var(--font-display); font-weight: 700; font-size: clamp(32px, 4.6vw, 54px);
	letter-spacing: -0.02em; margin: 0 0 14px; color: var(--ink); max-width: 780px;
}
.page-hero p { font-size: 18px; color: var(--graphite); max-width: 620px; margin: 0; }

.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-family: var(--font-display); font-size: 28px; margin: 42px 0 14px; }
.prose h3 { font-family: var(--font-display); font-size: 21px; margin: 30px 0 10px; }
.prose p, .prose li { color: var(--graphite); font-size: 16.5px; }
.prose a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--signal); text-underline-offset: 3px; }

/* ---- Gallery cards (mockups / templates / addons) ------------------ */
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 38px; }
.filter-chip {
	font: 500 14px var(--font-body); padding: 9px 18px; border-radius: 999px;
	border: 1px solid var(--line); background: #fff; color: var(--graphite); cursor: pointer;
	transition: 0.18s;
}
.filter-chip.is-active, .filter-chip:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.item-card {
	background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
	overflow: hidden; transition: transform 0.22s var(--ease), box-shadow 0.22s;
	display: flex; flex-direction: column;
}
.item-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.item-thumb { aspect-ratio: 4 / 3; position: relative; overflow: hidden; background: var(--mist); }
.item-thumb .thumb-art { position: absolute; inset: 0; }
.item-card .item-body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.item-card .kicker { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.item-card h3 { font-family: var(--font-display); font-size: 19px; margin: 0; }
.item-card p { font-size: 14.5px; color: var(--graphite); margin: 0; flex: 1; }
.item-meta { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; }
.price { font-family: var(--font-display); font-weight: 600; }
.price .free { color: var(--signal-deep); }
.tag-row { display: flex; gap: 7px; flex-wrap: wrap; }
.tag { font-family: var(--font-mono); font-size: 11px; padding: 3px 9px; border-radius: 6px; background: var(--mist); color: var(--graphite); }

/* thumbnail art motifs */
.art-mock { background: repeating-linear-gradient(135deg, #ecebe6 0 12px, #f7f6f2 12px 24px); display: grid; place-items: center; }
.art-mock .device { width: 62%; height: 66%; background: #fff; border-radius: 10px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.art-tpl { background: var(--ink); display: grid; grid-template-rows: 30% 1fr; }
.art-tpl .bar { background: var(--signal); }
.art-tpl .body { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; padding: 12px; }
.art-tpl .body i { background: rgba(255,255,255,.14); border-radius: 4px; }
.art-code {
	background: #1e1e1e; color: #f7ce08; font-family: var(--font-mono); font-size: 11px;
	padding: 16px; display: flex; align-items: flex-start;
}
.art-code pre { margin: 0; white-space: pre-wrap; line-height: 1.5; }

/* =====================================================================
   Blog
   ===================================================================== */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.post-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .22s var(--ease), box-shadow .22s; }
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.post-thumb { aspect-ratio: 16/9; background: var(--mist); overflow: hidden; }
.post-thumb img { width: 100%; height: 100%; object-fit: cover; }
.post-body { padding: 20px 22px 24px; }
.post-body .meta { font-family: var(--font-mono); font-size: 12px; color: var(--muted); margin-bottom: 8px; }
.post-body h3 { font-family: var(--font-display); font-size: 20px; margin: 0 0 8px; line-height: 1.2; }
.post-body h3 a { text-decoration: none; }
.post-body p { color: var(--graphite); font-size: 14.5px; margin: 0; }

.single-content { max-width: 760px; margin: 0 auto; }

/* =====================================================================
   Contact
   ===================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info .lead { font-size: 18px; color: var(--graphite); }
.contact-list { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 20px; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; }
.contact-list .ic { width: 44px; height: 44px; border-radius: 11px; background: var(--mist); display: grid; place-items: center; flex-shrink: 0; }
.contact-list .lbl { font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.contact-list a, .contact-list span { color: var(--ink); text-decoration: none; font-size: 16px; }

.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; gap: 6px; margin-bottom: 18px; }
.form-row.two { grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row label { font-size: 13.5px; color: var(--graphite); font-weight: 500; }
.form-row input, .form-row textarea, .form-row select {
	font: 15px var(--font-body); padding: 12px 14px; border: 1px solid var(--line);
	border-radius: var(--radius-sm); background: #fff; color: var(--ink); width: 100%;
}
.form-row textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: 12.5px; color: var(--muted); margin-top: 4px; }

/* ---- About ---- */
.value-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 12px; }
.value { padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.value .ic { width: 46px; height: 46px; border-radius: 11px; background: var(--signal); display: grid; place-items: center; margin-bottom: 14px; }
.value h3 { font-family: var(--font-display); font-size: 18px; margin: 0 0 6px; }
.value p { color: var(--graphite); font-size: 14.5px; margin: 0; }

.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.member { text-align: center; }
.member .avatar { aspect-ratio: 1; border-radius: 16px; background: var(--mist); margin-bottom: 12px; display: grid; place-items: center; font-family: var(--font-display); font-size: 30px; color: var(--graphite); }
.member h3 { font-family: var(--font-display); font-size: 17px; margin: 0; }
.member span { font-size: 13px; color: var(--muted); }

.stat-band { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
.stat-band .s strong { display: block; font-family: var(--font-display); font-size: clamp(30px,4vw,46px); color: #fff; }
.stat-band .s span { color: #bdbcb6; font-size: 14px; }

/* =====================================================================
   Reveal-on-scroll
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 980px) {
	.hero-grid { grid-template-columns: 1fr; }
	.hero-visual { min-height: 360px; margin-top: 10px; }
	.tools-grid, .card-grid, .post-grid, .steps { grid-template-columns: repeat(2, 1fr); }
	.footer-top { grid-template-columns: 1fr 1fr; gap: 30px; }
	.contact-grid { grid-template-columns: 1fr; }
	.value-grid { grid-template-columns: 1fr; }
	.team-grid { grid-template-columns: repeat(2,1fr); }
	.stat-band { grid-template-columns: repeat(2,1fr); gap: 30px; }
}
@media (max-width: 720px) {
	.primary-nav { display: none; }
	.primary-nav.open {
		display: block; position: absolute; top: 100%; left: 0; right: 0;
		background: #fff; border-bottom: 1px solid var(--line); padding: 14px 28px 22px;
	}
	.primary-nav.open ul { flex-direction: column; gap: 14px; }
	.nav-toggle { display: flex; }
	.header-cta .btn:not(.nav-toggle) { display: none; }
	.tools-grid, .card-grid, .post-grid, .steps { grid-template-columns: 1fr; }
	.form-row.two { grid-template-columns: 1fr; }
	.cta-band { padding: 38px 24px; }
	.section { padding: 56px 0; }
	.wrap { padding: 0 16px; }
}
@media (prefers-reduced-motion: reduce) {
	* { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
	.reveal { opacity: 1; transform: none; }
}

/* ---- Pagination + comments ---------------------------------------- */
.pagination-wrap { margin-top: 46px; display: flex; justify-content: center; }
.pagination-wrap .nav-links { display: flex; gap: 8px; flex-wrap: wrap; }
.pagination-wrap .page-numbers {
	display: inline-flex; min-width: 42px; height: 42px; align-items: center; justify-content: center;
	padding: 0 14px; border: 1px solid var(--line); border-radius: 10px; background: #fff;
	text-decoration: none; color: var(--graphite); font-weight: 500;
}
.pagination-wrap .page-numbers.current { background: var(--ink); color: #fff; border-color: var(--ink); }
.pagination-wrap .page-numbers:hover { border-color: var(--ink); }
.comment-list { display: grid; gap: 18px; }
.comment-list .comment-body { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 18px 20px; }
.comment-form input, .comment-form textarea { font: 15px var(--font-body); padding: 12px 14px; border: 1px solid var(--line); border-radius: 9px; width: 100%; margin-bottom: 12px; }
.comment-form .submit { display: inline-flex; align-items: center; padding: 13px 24px; border-radius: 999px; border: 0; background: var(--signal); color: var(--ink); font-weight: 600; cursor: pointer; }
