/* ═══════════════════════════════════════════════════
   BUILDWISE CONSULTING — Shared Stylesheet
   All pages reference this file.
   Page-specific styles live in each page's <style>.
   ═══════════════════════════════════════════════════ */

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ─── DESIGN TOKENS ─── */
:root {
  --paper: #f6f4ef;
  --paper-2: #efece5;
  --ink: #14110f;
  --ink-2: #2a2722;
  --ink-3: #5b554d;
  --ink-4: #6b6359;
  --rule: #d8d2c5;
  --rule-2: #c4bcab;
  --accent: #b04a1a;
  --accent-dk: #8a3a14;
  --accent-soft: rgba(176,74,26,0.08);
  --accent-light: #ff8a4a;
  --error: #c0392b;
  --success: #4a8a3a;
  --danger: #a23030;
  --radius: 4px;
}

/* ─── BASE ─── */
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--paper);
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
}
.mono { font-family: 'JetBrains Mono', monospace; font-feature-settings: "tnum" 1; }
.num  { font-variant-numeric: tabular-nums; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── 12-COLUMN CONTAINER ─── */
.wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 24px;
}

/* ─── SECTION FRAME ─── */
section {
  border-top: 1px solid var(--rule);
  padding: 80px 0;
  position: relative;
}
.section-num {
  grid-column: 1 / span 1;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ink-4);
  letter-spacing: 0.08em;
  padding-top: 4px;
}
.section-label {
  grid-column: 2 / span 11;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ink-4);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding-top: 4px;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 18px;
  margin-bottom: 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section-label .badge {
  color: var(--accent);
  font-weight: 500;
}

/* ─── NAV ─── */
nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246,244,239,0.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule);
}
.nav-inner {
  max-width: 1320px; margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex; align-items: baseline; gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.logo-mark {
  width: 22px; height: 22px;
  background: var(--accent);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px;
  font-weight: 600;
  align-self: center;
  border-radius: 3px;
}
.logo small {
  font-size: 10px;
  color: var(--ink-4);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.nav-links {
  display: flex; gap: 28px; align-items: center;
}
.nav-links a {
  font-size: 13px;
  color: var(--ink-3);
  font-weight: 500;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.current {
  color: var(--ink);
}
.nav-cta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  background: var(--ink);
  color: #fff !important;
  padding: 9px 16px;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  transition: background 0.15s, color 0.15s, transform 0.15s;
}
.nav-cta:hover { background: var(--accent); color: var(--ink) !important; transform: translateY(-1px); }

/* ─── PAGE META BAR (sub-pages) ─── */
.page-meta {
  grid-column: 1 / span 12;
  display: flex; justify-content: space-between;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ink-4);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 14px;
  margin-bottom: 56px;
}
.page-meta span b {
  color: var(--ink-2);
  font-weight: 500;
}
.page-meta .dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

/* ─── HERO META BAR (home page) ─── */
.hero-meta {
  grid-column: 1 / span 12;
  display: flex; justify-content: space-between;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ink-4);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 14px;
  margin-bottom: 56px;
}
.hero-meta-l, .hero-meta-r {
  display: flex; gap: 32px;
}
.hero-meta span b {
  color: var(--ink-2);
  font-weight: 500;
}

/* ─── SHARED HEADING ─── */
.h-section {
  font-family: 'Inter', sans-serif;
  font-size: 44px;
  letter-spacing: -0.025em;
  color: var(--ink);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 20px;
}
.h-section em {
  font-style: normal;
  color: var(--accent);
}

/* ─── SHARED STATS ─── */
.stat-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 32px;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  margin-bottom: 8px;
}
.stat-num sup {
  font-size: 13px;
  color: var(--accent);
  margin-left: 4px;
  font-weight: 500;
}
.stat-label {
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.02em;
}
.stat-foot {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--ink-4);
  letter-spacing: 0.04em;
  margin-top: 4px;
}

/* ─── SHARED FORM STYLES ─── */
.ct-grid {
  grid-column: 1 / span 12;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
}
.ct-form {
  background: var(--paper-2);
  border: 1px solid var(--rule);
  padding: 32px;
  border-radius: 6px;
}
.ct-form-head {
  display: flex; justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 14px;
  margin-bottom: 22px;
}
.ct-form-title {
  font-size: 18px;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.ct-form-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-4);
}
.ct-form-sla {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.ct-form-sla::before {
  content: ''; display: inline-block;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  margin-right: 8px;
  animation: blink 1.8s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.3;} }

.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fgroup { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.fgroup label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--ink-4);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.fgroup input, .fgroup select, .fgroup textarea {
  border: 1px solid var(--rule-2);
  background: #fff;
  padding: 11px 13px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--ink);
  width: 100%;
  -webkit-appearance: none; appearance: none;
  border-radius: var(--radius);
  transition: border-color 0.15s;
}
.fgroup select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%238a8378' d='M0 0h10L5 6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 32px;
  cursor: pointer;
}
.fgroup textarea { resize: vertical; min-height: 100px; }
.fgroup input:focus, .fgroup select:focus, .fgroup textarea:focus {
  outline: 2px solid var(--accent); outline-offset: 1px; border-color: var(--accent);
}
.fgroup input::placeholder, .fgroup textarea::placeholder { color: var(--ink-4); }

.fsubmit {
  width: 100%;
  background: var(--ink);
  color: var(--paper);
  border: none;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 18px;
  cursor: pointer;
  border-radius: var(--radius);
  transition: background 0.15s, transform 0.15s;
}
.fsubmit:hover { background: var(--accent); transform: translateY(-1px); }
/* Alias for Buildwise contact form */
.submit {
  width: 100%;
  background: var(--ink);
  color: var(--paper);
  border: none;
  padding: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: var(--radius);
  transition: background 0.15s, transform 0.15s;
  margin-top: 8px;
}
.submit:hover { background: var(--accent); transform: translateY(-1px); }

.fnote {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--ink-4);
  letter-spacing: 0.06em;
  text-align: center;
  margin-top: 12px;
}
.fsuccess, .ferror {
  display: none;
  padding: 12px;
  margin-top: 12px;
  font-size: 13px;
  text-align: center;
  border: 1px solid;
  border-radius: var(--radius);
}
.fsuccess { color: var(--accent); border-color: var(--accent); background: var(--accent-soft); }
.ferror   { color: var(--error); border-color: rgba(192,57,43,0.4); background: rgba(192,57,43,0.06); }

.file-zone {
  border: 1px dashed var(--rule-2);
  background: var(--paper);
  padding: 22px;
  text-align: center;
  font-size: 13px;
  color: var(--ink-3);
  cursor: pointer;
  border-radius: var(--radius);
  transition: border-color 0.15s, background 0.15s;
}
.file-zone:hover { border-color: var(--accent); background: var(--accent-soft); }
.file-zone.dragover { border-color: var(--accent); background: var(--accent-soft); }
.file-zone b { color: var(--ink); font-weight: 500; }
.file-zone small {
  display: block; margin-top: 4px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--ink-4);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ─── FILE LIST ─── */
.file-list { display: flex; flex-direction: column; gap: 0; }
.file-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 13px;
}
.file-item:last-child { border-bottom: none; }
.file-name {
  flex: 1;
  color: var(--ink-2);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.file-size {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ink-4);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.file-remove {
  background: none; border: none;
  font-size: 16px; line-height: 1;
  color: var(--ink-4);
  cursor: pointer;
  padding: 2px 6px;
  transition: color 0.15s;
}
.file-remove:hover { color: var(--error); }

/* ─── UPLOAD PROGRESS ─── */
.upload-progress {
  margin-top: 10px;
  padding: 12px 0 4px;
}
.upload-progress-inner {
  display: flex; align-items: center; gap: 12px;
}
.upload-bar {
  flex: 1; height: 6px;
  background: var(--rule);
  overflow: hidden;
  border-radius: 3px;
}
.upload-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--accent);
  transition: width 0.2s ease;
}
.upload-pct {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ink-2);
  letter-spacing: 0.04em;
  min-width: 36px;
  text-align: right;
}
.upload-status {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--ink-4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 6px;
}

/* ─── SHARED FAQ ─── */
.faq-head { grid-column: 1 / span 4; }
.faq-list { grid-column: 5 / span 8; }
.faq-item {
  border-top: 1px solid var(--rule);
  padding: 20px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--rule); }
.faq-q {
  font-size: 16px;
  color: var(--ink);
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
  user-select: none;
}
.faq-q::after {
  content: '+';
  font-family: 'JetBrains Mono', monospace;
  color: var(--accent);
  font-weight: 500;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item.open .faq-q::after { content: '−'; }
.faq-a {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.6;
  margin-top: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, margin-top 0.25s ease;
}
.faq-item.open .faq-a { max-height: 300px; margin-top: 12px; }

/* ─── SHARED CONTACT INFO ─── */
.ct-side h2 { margin-bottom: 16px; }
.ct-side p { color: var(--ink-3); font-size: 15px; max-width: 380px; margin-bottom: 32px; }
.ct-info { display: flex; flex-direction: column; gap: 18px; }
.ct-info-item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--rule);
}
.ct-info-item:first-child { padding-top: 0; border-top: none; }
.ct-info-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ink-4);
  letter-spacing: 0.08em;
  padding-top: 2px;
}
.ct-info-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.ct-info-val { font-size: 14px; color: var(--ink-2); }
.ct-info-val a { color: inherit; border-bottom: 1px solid var(--rule); }
.ct-info-val a:hover { color: var(--accent); border-bottom-color: var(--accent); }

/* ─── FOOTER ─── */
footer {
  background: var(--ink);
  color: rgba(246,244,239,0.6);
  padding: 64px 0 24px;
}
.ft-grid {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 48px;
}
.ft-col h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(246,244,239,0.4);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 500;
}
.ft-col ul { display: flex; flex-direction: column; gap: 10px; }
.ft-col a {
  font-size: 13px;
  color: rgba(246,244,239,0.7);
  transition: color 0.15s;
}
.ft-col a:hover { color: var(--paper); }
.ft-brand {
  display: flex; align-items: baseline; gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  color: var(--paper);
  margin-bottom: 12px;
}
.ft-brand small {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: rgba(246,244,239,0.4);
  letter-spacing: 0.1em;
}
.ft-tag {
  font-size: 13px;
  color: rgba(246,244,239,0.55);
  max-width: 320px;
  line-height: 1.55;
}
.ft-meta {
  max-width: 1320px;
  margin: 0 auto;
  padding: 24px 32px 0;
  display: flex; justify-content: space-between;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: rgba(246,244,239,0.4);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ─── RESPONSIVE — SHARED ─── */

/* Large monitors (1600px+): let content breathe */
@media (min-width: 1600px) {
  .wrap { max-width: 1440px; }
  .ft-grid, .nav-inner, .ft-meta { max-width: 1440px; }
}

/* Tablet (≤ 1024px) */
@media (max-width: 1024px) {
  .wrap { grid-template-columns: repeat(6, 1fr); padding: 0 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .section-num { grid-column: 1 / span 1; }
  .section-label { grid-column: 2 / span 5; margin-bottom: 40px; }
  .page-meta { grid-column: 1 / span 6; flex-wrap: wrap; gap: 12px; }
  .hero-meta { grid-column: 1 / span 6; flex-wrap: wrap; gap: 12px; }
  .ct-grid { grid-column: 1 / span 6; grid-template-columns: 1fr; gap: 40px; }
  .faq-head, .faq-list { grid-column: 1 / span 6; }
  .ft-grid { grid-template-columns: 1fr 1fr; }
  .frow { grid-template-columns: 1fr 1fr; }
  .h-section { font-size: 36px; }
}

/* Phone (≤ 640px) */
@media (max-width: 640px) {
  .wrap { padding: 0 16px; }
  section { padding: 56px 0; }
  .section-num { display: none; }
  .section-label { grid-column: 1 / span 6; margin-bottom: 32px; font-size: 10px; flex-wrap: wrap; gap: 4px; }
  .h-section { font-size: 28px; }
  .frow { grid-template-columns: 1fr; gap: 0; }
  .ft-grid { grid-template-columns: 1fr; gap: 32px; }
  .ft-meta { flex-direction: column; gap: 8px; text-align: left; }
  .ct-form { padding: 24px; }
  .ct-info-item { grid-template-columns: 1fr; gap: 4px; }
  .ct-info-num { display: none; }
  .file-item { font-size: 12px; }
  .file-name { max-width: 160px; }
  .faq-q { font-size: 14px; }
  /* mobile: prevent iOS focus-zoom (inputs must be >=16px) */
  input, select, textarea { font-size: 16px; }
  /* mobile: wide document tables scroll instead of cramping */
  .table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .table-scroll > table { min-width: 560px; }
}

/* ─── MOBILE NAV MENU ─── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  cursor: pointer;
  padding: 4px 0;
  border: none;
  background: none;
  z-index: 60;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--ink);
  transition: transform 0.2s, opacity 0.2s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  padding: 24px 32px;
  z-index: 49;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 15px;
  color: var(--ink-2);
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid var(--rule);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--accent); }

/* ─── SKIP LINK ─── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--ink);
  color: var(--paper);
  padding: 8px 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  z-index: 100;
  text-decoration: none;
}
.skip-link:focus {
  top: 8px;
}

/* ─── FOCUS STYLES ─── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  html { scroll-behavior: auto; }
}

/* ─── PRINT ─── */
@media print {
  nav, .mobile-nav, footer, .skip-link { display: none !important; }
  body { background: #fff; color: #000; font-size: 12pt; }
  .wrap { max-width: 100%; padding: 0; display: block; }
  section { border-top: none; padding: 24pt 0; page-break-inside: avoid; }
  a { color: inherit; }
  .fsubmit, .submit, .nav-cta, .file-zone { display: none; }
}


/* ─── TEMPLATE SEO CONTENT BLOCK ─── */
.tpl-seo { background: var(--paper); border-top: 1px solid var(--rule); padding: 56px 24px 40px; }
.tpl-seo-body { max-width: 800px; margin: 0 auto; }
.tpl-seo h2 { font-family: 'Inter', sans-serif; font-size: 26px; font-weight: 600; color: var(--ink); letter-spacing: -0.01em; margin-bottom: 14px; }
.tpl-seo h3 { font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 600; color: var(--ink-4); text-transform: uppercase; letter-spacing: 0.12em; margin: 30px 0 10px; }
.tpl-seo p { font-size: 15px; line-height: 1.65; color: var(--ink-3); margin-bottom: 14px; }
.tpl-seo ul, .tpl-seo ol { margin: 0 0 14px 20px; padding: 0; }
.tpl-seo li { font-size: 14.5px; line-height: 1.6; color: var(--ink-3); margin-bottom: 6px; }
.tpl-seo .tpl-faq { border-top: 1px solid var(--rule); padding-top: 16px; margin-top: 8px; }
.tpl-seo .tpl-faq-item { margin-bottom: 16px; }
.tpl-seo .tpl-faq-item h4 { font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 5px; }
.tpl-seo .tpl-faq-item p { margin-bottom: 0; }
.tpl-seo .tpl-related { font-size: 13px; color: var(--ink-4); border-top: 1px solid var(--rule); padding-top: 16px; margin-top: 26px; }
.tpl-seo .tpl-related a { color: var(--accent); text-decoration: none; }
.tpl-seo .tpl-related a:hover { text-decoration: underline; }
@media (max-width: 640px) { .tpl-seo { padding: 36px 20px 28px; } .tpl-seo h2 { font-size: 22px; } }
