/* WispTerm docs site — styled after the Poimandres theme palette */

:root {
  --bg: #1b1e28;
  --bg-elev: #252b37;
  --bg-elev-2: #2d3340;
  --border: #3a4259;
  --fg: #e4f0fb;
  --fg-muted: #a6accd;
  --fg-dim: #767c9d;
  --accent: #5de4c7;
  --accent-2: #89ddff;
  --pink: #d0679d;
  --yellow: #fffac2;
  --orange: #fcc59a;
  --red: #d0679d;
  --radius: 10px;
  --radius-lg: 14px;
  --max-w: 1100px;
  --font-mono: ui-monospace, "Cascadia Code", "JetBrains Mono", "Fira Code", Menlo, Consolas, monospace;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, system-ui, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.15s ease;
}
a:hover { color: var(--accent-2); }

code {
  font-family: var(--font-mono);
  font-size: 0.9em;
  background: var(--bg-elev);
  padding: 0.12em 0.4em;
  border-radius: 4px;
  color: var(--accent);
}

kbd {
  font-family: var(--font-mono);
  font-size: 0.78em;
  background: linear-gradient(180deg, #2d3340, #232838);
  border: 1px solid var(--border);
  border-bottom-color: #1a1f2c;
  border-radius: 6px;
  padding: 3px 8px;
  color: var(--fg);
  white-space: nowrap;
  box-shadow:
    0 1px 0 rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  min-width: 22px;
  display: inline-block;
  text-align: center;
  line-height: 1.4;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(27, 30, 40, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--fg);
  font-weight: 600;
  letter-spacing: 0.2px;
}
.brand:hover { color: var(--fg); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav-links a {
  color: var(--fg-muted);
  font-size: 0.94rem;
}
.nav-links a:hover { color: var(--fg); }
.nav-links a.active-link {
  color: var(--accent);
}
.nav-links a.github {
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 999px;
  color: var(--fg);
}
.nav-links a.github:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.lang-switch {
  display: inline-flex;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
  font-size: 0.82rem;
}
.lang-switch .lang {
  padding: 5px 12px;
  color: var(--fg-muted);
  line-height: 1.2;
  transition: background 0.15s ease, color 0.15s ease;
}
.lang-switch .lang:hover {
  color: var(--fg);
  background: var(--bg-elev-2);
}
.lang-switch .lang.active {
  background: var(--accent);
  color: #0e1117;
  font-weight: 600;
}
.lang-switch .lang.active:hover {
  background: var(--accent);
  color: #0e1117;
}

/* Hero */
.hero {
  padding: 80px 0 56px;
  text-align: center;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(93, 228, 199, 0.12), transparent 60%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(137, 221, 255, 0.08), transparent 60%);
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo {
  image-rendering: pixelated;
  width: 96px;
  height: 96px;
  margin-bottom: 20px;
  filter: drop-shadow(0 8px 32px rgba(93, 228, 199, 0.25));
}

h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin: 0 0 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #e4f0fb 0%, #5de4c7 50%, #89ddff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tagline {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--fg-muted);
  max-width: 640px;
  margin: 0 auto 28px;
}
.tagline strong { color: var(--fg); font-weight: 600; }

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 14px;
}

.cta {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.97rem;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.cta:hover { transform: translateY(-1px); }

.cta.primary {
  background: var(--accent);
  color: #0e1117;
}
.cta.primary:hover {
  background: var(--accent-2);
  color: #0e1117;
}

.cta.secondary {
  background: transparent;
  border-color: var(--border);
  color: var(--fg);
}
.cta.secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.cta.small {
  padding: 8px 16px;
  font-size: 0.88rem;
}

.platform-note {
  margin-top: 4px;
  color: var(--fg-dim);
  font-size: 0.88rem;
}

.eyebrow {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

/* Terminal preview */
.preview-wrap {
  margin-top: 56px;
}

.terminal-preview {
  max-width: 900px;
  margin: 0 auto;
  background: #11141d;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 30px 80px -30px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(93, 228, 199, 0.05);
  text-align: left;
}

.tp-titlebar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--bg-elev);
  border-bottom: 1px solid var(--border);
}
.tp-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: inline-block;
}
.tp-dot.red    { background: #ed8796; }
.tp-dot.yellow { background: #eed49f; }
.tp-dot.green  { background: #a6da95; }
.tp-title {
  margin-left: 10px;
  color: var(--fg-dim);
  font-family: var(--font-mono);
  font-size: 0.82rem;
}

.tp-tabs {
  display: flex;
  background: var(--bg-elev);
  padding: 0 8px;
  gap: 2px;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 0.82rem;
}
.tp-tab {
  padding: 8px 16px;
  color: var(--fg-dim);
  border-radius: 6px 6px 0 0;
}
.tp-tab.active {
  background: #11141d;
  color: var(--fg);
  border: 1px solid var(--border);
  border-bottom: none;
  margin-bottom: -1px;
}

.tp-body {
  padding: 22px 26px;
  font-family: var(--font-mono);
  font-size: 0.92rem;
  line-height: 1.6;
}
.tp-body pre {
  margin: 0;
  color: var(--fg);
  white-space: pre-wrap;
}
.prompt { color: var(--accent); }
.cmd    { color: var(--accent-2); }
.muted  { color: var(--fg-dim); }
.ok     { color: var(--accent); }
.branch { color: var(--orange); }
.cursor {
  color: var(--accent);
  animation: blink 1.1s steps(1) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

/* Sections */
.section {
  padding: 88px 0;
  border-top: 1px solid var(--border);
}
.section.alt {
  background: linear-gradient(180deg, rgba(255,255,255,0.015), transparent);
}

.section h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin: 0 0 12px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.section-lead {
  color: var(--fg-muted);
  max-width: 720px;
  margin: 0 0 36px;
  font-size: 1.02rem;
}
.section-foot {
  margin-top: 16px;
  color: var(--fg-dim);
  font-size: 0.92rem;
}

/* Feature grid */
.feature-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.feature {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  padding: 22px 22px 20px;
  border-radius: var(--radius);
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.feature:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.feature h3 {
  margin: 0 0 8px;
  font-size: 1.02rem;
  color: var(--accent);
  font-weight: 600;
}
.feature p {
  margin: 0;
  color: var(--fg-muted);
  font-size: 0.94rem;
}

/* Install */
.install-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}
.install-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  padding: 26px 24px 24px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.install-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.install-card .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}
.install-card .badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(93, 228, 199, 0.6);
}
.install-card h3 {
  margin: 0;
  font-size: 1.12rem;
  color: var(--fg);
  font-weight: 600;
}
.install-card p {
  color: var(--fg-muted);
  font-size: 0.94rem;
  margin: 0;
  flex-grow: 1;
}
.install-card .cta { align-self: flex-start; margin-top: 6px; }

.install-card pre.code-block {
  margin: 6px 0 0;
  padding: 14px 16px;
  font-size: 0.8rem;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  background: #0e1117;
  border-color: rgba(93, 228, 199, 0.15);
}

@media (max-width: 880px) {
  .install-grid { grid-template-columns: 1fr; }
}

/* Code block */
pre.code-block {
  background: #11141d;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  overflow-x: auto;
  font-family: var(--font-mono);
  font-size: 0.88rem;
  color: var(--fg);
  line-height: 1.55;
}
pre.code-block code {
  background: transparent;
  padding: 0;
  color: inherit;
  font-size: inherit;
}

/* Shortcuts */
.shortcut-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
.shortcut-grid > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 16px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 9px;
  transition: border-color 0.15s ease, background 0.15s ease;
  min-height: 52px;
}
.shortcut-grid > div:hover {
  border-color: rgba(93, 228, 199, 0.35);
  background: var(--bg-elev-2);
}
.shortcut-grid .label {
  color: var(--fg);
  font-size: 0.92rem;
  font-weight: 500;
  min-width: 0;
  flex: 1 1 auto;
}
.shortcut-grid .keys {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex: 0 0 auto;
  justify-content: flex-end;
  white-space: nowrap;
}
.shortcut-grid .keys .sep {
  color: var(--fg-dim);
  font-size: 0.78rem;
  margin: 0 2px;
  font-family: var(--font-mono);
}

@media (max-width: 720px) {
  .shortcut-grid { grid-template-columns: 1fr; }
}

/* Theme gallery */
.theme-hero {
  padding: 70px 0 44px;
  background:
    radial-gradient(ellipse 70% 45% at 40% 0%, rgba(93, 228, 199, 0.14), transparent 60%),
    linear-gradient(180deg, rgba(37, 43, 55, 0.4), rgba(27, 30, 40, 0));
}
.theme-hero h1 {
  max-width: 780px;
  margin-bottom: 16px;
}
.theme-hero .tagline {
  margin-left: 0;
  text-align: left;
}
.theme-copy-line {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  padding: 10px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.theme-copy-line code {
  background: #11141d;
  color: var(--fg);
}
.copy-config,
.theme-card-body button,
.theme-filter button {
  border: 1px solid var(--border);
  background: var(--bg-elev-2);
  color: var(--fg);
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}
.copy-config {
  padding: 7px 13px;
}
.copy-config:hover,
.theme-card-body button:hover,
.theme-filter button:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.theme-browser {
  padding-top: 34px;
}
.theme-toolbar {
  position: sticky;
  top: 57px;
  z-index: 20;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
  padding: 18px 0;
  background: rgba(27, 30, 40, 0.88);
  border-bottom: 1px solid rgba(58, 66, 89, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.theme-toolbar h2 {
  margin-bottom: 4px;
}
.theme-toolbar .section-foot {
  margin: 0;
}
.theme-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.theme-search {
  width: min(320px, 70vw);
  padding: 11px 14px;
  background: #11141d;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--fg);
  font: inherit;
  outline: none;
}
.theme-search:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(93, 228, 199, 0.12);
}
.theme-filter {
  display: inline-flex;
  gap: 6px;
}
.theme-filter button {
  padding: 9px 13px;
  color: var(--fg-muted);
}
.theme-filter button.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #0e1117;
}
.theme-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.theme-card {
  min-width: 0;
  overflow: hidden;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.theme-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.theme-preview {
  background: var(--theme-bg);
  color: var(--theme-fg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 166px;
}
.theme-preview-bar {
  display: flex;
  gap: 7px;
  padding: 13px 14px 2px;
}
.theme-preview-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--theme-fg);
  opacity: 0.38;
}
.theme-preview pre {
  margin: 0;
  padding: 16px 18px 22px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  line-height: 1.65;
  white-space: pre-wrap;
  word-break: break-word;
}
.theme-preview .prompt,
.theme-preview .success {
  color: var(--theme-cursor);
}
.theme-preview .muted {
  background: var(--theme-selection);
  color: var(--theme-fg);
  padding: 2px 5px;
}
.theme-preview .cursor {
  display: inline-block;
  width: 0.6em;
  height: 1.1em;
  vertical-align: -0.18em;
  background: var(--theme-cursor);
}
.theme-card-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
}
.theme-card-body h3 {
  margin: 0 0 3px;
  color: var(--fg);
  font-size: 1rem;
  line-height: 1.25;
}
.theme-card-body p {
  margin: 0;
  color: var(--fg-dim);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
}
.theme-card-body button {
  flex: 0 0 auto;
  padding: 7px 12px;
  font-size: 0.84rem;
}
.theme-palette {
  display: grid;
  grid-template-columns: repeat(16, 1fr);
  height: 10px;
}
.theme-palette span {
  min-width: 0;
}
.theme-empty {
  padding: 36px 0;
  color: var(--fg-muted);
}

@media (max-width: 780px) {
  .theme-toolbar {
    top: 54px;
    display: block;
  }
  .theme-controls {
    justify-content: flex-start;
    margin-top: 16px;
  }
  .theme-search {
    width: 100%;
  }
}

/* AI Agent page */
.ai-hero {
  padding: 78px 0 64px;
  background:
    radial-gradient(ellipse 70% 48% at 24% 0%, rgba(93, 228, 199, 0.16), transparent 62%),
    linear-gradient(180deg, rgba(37, 43, 55, 0.54), rgba(27, 30, 40, 0));
}
.ai-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 44px;
  align-items: center;
}
.ai-hero-copy {
  min-width: 0;
}
.ai-hero-copy h1 {
  max-width: 760px;
  text-align: left;
}
.ai-hero-copy .tagline {
  max-width: 700px;
  margin-left: 0;
  text-align: left;
}
.cta-row.left {
  justify-content: flex-start;
}
.ai-preview {
  max-width: none;
  width: 100%;
}
.ai-setup-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}
.setup-panel {
  min-width: 0;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.setup-panel h3 {
  margin: 0 0 14px;
  color: var(--fg);
  font-size: 1.08rem;
}
.setup-panel p {
  color: var(--fg-muted);
  margin: 0 0 16px;
}
.setup-panel .section-foot {
  margin-bottom: 0;
}
.config-table {
  width: 100%;
  border-collapse: collapse;
  color: var(--fg-muted);
  font-size: 0.92rem;
}
.config-table th,
.config-table td {
  padding: 10px 0;
  border-bottom: 1px solid rgba(58, 66, 89, 0.72);
  vertical-align: top;
  text-align: left;
}
.config-table tr:last-child th,
.config-table tr:last-child td {
  border-bottom: none;
}
.config-table th {
  width: 32%;
  min-width: 118px;
  padding-right: 16px;
  color: var(--fg);
  font-weight: 600;
}

@media (max-width: 920px) {
  .ai-hero-grid,
  .ai-setup-grid {
    grid-template-columns: 1fr;
  }
  .ai-hero {
    padding: 58px 0 44px;
  }
}

@media (max-width: 520px) {
  .setup-panel {
    padding: 18px;
  }
  .config-table,
  .config-table tbody,
  .config-table tr,
  .config-table th,
  .config-table td {
    display: block;
    width: 100%;
  }
  .config-table th {
    padding: 10px 0 3px;
    border-bottom: none;
  }
  .config-table td {
    padding: 0 0 10px;
  }
}

/* AI page */
.ai-hero {
  padding: 76px 0 62px;
  background:
    linear-gradient(180deg, rgba(37, 43, 55, 0.62), rgba(27, 30, 40, 0)),
    radial-gradient(ellipse 70% 48% at 72% 8%, rgba(93, 228, 199, 0.10), transparent 64%);
}

.ai-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(430px, 1.04fr);
  gap: 42px;
  align-items: center;
}

.ai-hero-copy h1 {
  max-width: 720px;
  margin-bottom: 18px;
}

.ai-hero-copy .tagline {
  max-width: 660px;
  margin-left: 0;
  text-align: left;
}

.cta-row.left {
  justify-content: flex-start;
}

.ai-preview {
  max-width: none;
  margin: 0;
}

.ai-setup-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 18px;
  align-items: stretch;
}

.setup-panel {
  min-width: 0;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.setup-panel h3 {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 1.04rem;
}

.setup-panel p {
  margin: 0 0 16px;
  color: var(--fg-muted);
  font-size: 0.94rem;
}

.setup-panel .code-block {
  margin-top: 12px;
}

.ai-setup-grid pre.code-block,
#tools pre.code-block {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.config-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.94rem;
}

.config-table th,
.config-table td {
  padding: 11px 0;
  border-top: 1px solid rgba(58, 66, 89, 0.72);
  vertical-align: top;
}

.config-table tr:first-child th,
.config-table tr:first-child td {
  border-top: none;
}

.config-table th {
  width: 150px;
  padding-right: 18px;
  color: var(--fg);
  font-weight: 600;
  text-align: left;
  white-space: nowrap;
}

.config-table td {
  color: var(--fg-muted);
}

@media (max-width: 900px) {
  .ai-hero-grid,
  .ai-setup-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .ai-hero {
    padding: 54px 0 42px;
  }
  .config-table,
  .config-table tbody,
  .config-table tr,
  .config-table th,
  .config-table td {
    display: block;
  }
  .config-table th {
    width: auto;
    padding: 12px 0 3px;
  }
  .config-table td {
    padding: 0 0 12px;
  }
}

/* Credits */
.credits ul {
  margin: 0;
  padding-left: 20px;
  color: var(--fg-muted);
}
.credits li { margin-bottom: 8px; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
  background: var(--bg-elev);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--fg-dim);
  font-size: 0.9rem;
}
.footer-inner img { vertical-align: middle; margin-right: 8px; }
.footer-links { display: flex; gap: 18px; }
.footer-links a { color: var(--fg-muted); }
.footer-links a:hover { color: var(--accent); }

/* Responsive */
@media (max-width: 720px) {
  .nav-links { gap: 12px; }
  .nav-links a:not(.github):not(.lang) { display: none; }
  .lang-switch { font-size: 0.78rem; }
  .lang-switch .lang { padding: 4px 10px; }
  .hero { padding: 56px 0 32px; }
  .section { padding: 56px 0; }
  .tp-tab { padding: 8px 10px; font-size: 0.78rem; }
  .tp-body { padding: 16px 18px; font-size: 0.84rem; }
}
