/*
Theme Name:  TelcoBlade
Theme URI:   https://telcoblade.com
Author:      TelcoBlade
Author URI:  https://telcoblade.com
Description: Dark cyberpunk VoIP / telecom theme matching the TelcoBlade brand. Cyan accents, IBM Plex fonts, Syne headings.
Version:     1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License:     GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: telcoblade
Tags:        dark, custom-colors, custom-logo, custom-menu, featured-images, blog, two-columns
*/

/* =====================================================================
   DESIGN TOKENS
   ===================================================================== */
:root {
  --bg:       #080c10;
  --surface:  #0d1318;
  --surface2: #111820;
  --border:   #1e2d3d;
  --accent:   #00e5ff;
  --accent2:  #ff6b35;
  --text:     #e8f4f8;
  --muted:    #5a7a8a;
  --green:    #00ff88;
  --red:      #ff4757;
  --radius:   4px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 400;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.7;
}

/* Grid background */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,229,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

/* Top glow */
body::after {
  content: '';
  position: fixed;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(0,229,255,0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: opacity 0.2s; }
a:hover { opacity: 0.8; }
ul, ol { padding-left: 1.5em; }

/* =====================================================================
   LAYOUT
   ===================================================================== */
.site { position: relative; z-index: 1; display: flex; flex-direction: column; min-height: 100vh; }
.site-main { flex: 1; }

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.content-area {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 24px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

.content-area.no-sidebar {
  grid-template-columns: 1fr;
  max-width: 780px;
}

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

/* =====================================================================
   NAVIGATION
   ===================================================================== */
.site-header {
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(8,12,16,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 32px;
}

/* Logo */
.site-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--text);
  letter-spacing: -0.02em;
  white-space: nowrap;
  text-decoration: none;
}
.site-logo:hover { opacity: 1; }
.site-logo span { color: var(--accent); }

.site-tagline {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.65rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-left: 1px solid var(--border);
  padding-left: 16px;
  display: none;
}
@media (min-width: 640px) { .site-tagline { display: block; } }

/* Primary nav */
.primary-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.primary-nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.primary-nav a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
}

.primary-nav a:hover,
.primary-nav .current-menu-item > a,
.primary-nav .current_page_item > a {
  color: var(--accent);
  background: rgba(0,229,255,0.06);
  opacity: 1;
}

/* Hamburger (mobile) */
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  cursor: pointer;
  padding: 8px 12px;
  border-radius: var(--radius);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .primary-nav { position: absolute; top: 64px; left: 0; right: 0; background: var(--surface); border-bottom: 1px solid var(--border); padding: 16px 24px; display: none; }
  .primary-nav.is-open { display: block; }
  .primary-nav ul { flex-direction: column; gap: 4px; }
  .primary-nav a { display: block; padding: 10px 12px; }
}

/* =====================================================================
   TICKER
   ===================================================================== */
.ticker-bar {
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  overflow: hidden;
  position: relative;
  background: var(--surface);
}

.ticker-inner {
  display: flex;
  gap: 48px;
  animation: tikr 30s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.ticker-item em { color: var(--accent); font-style: normal; }

@keyframes tikr {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =====================================================================
   PAGE HERO (archive / single header)
   ===================================================================== */
.page-hero {
  padding: 64px 0 48px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-hero .eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.page-hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.page-hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.page-hero p {
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto;
  font-weight: 300;
}

/* =====================================================================
   POST CARDS — GRID
   ===================================================================== */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2px;
  background: var(--border);
}

.post-card {
  background: var(--surface);
  display: flex;
  flex-direction: column;
  transition: background 0.2s;
}
.post-card:hover { background: var(--surface2); }

.post-card-thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}

.post-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.post-card:hover .post-card-thumb img { transform: scale(1.04); }

.post-card-thumb-placeholder {
  width: 100%;
  height: 100%;
  background: var(--surface2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.post-card-thumb-placeholder svg { opacity: 0.15; }

.post-card-body { padding: 24px 28px 28px; flex: 1; display: flex; flex-direction: column; }

.post-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.post-cat {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: rgba(0,229,255,0.08);
  border: 1px solid rgba(0,229,255,0.2);
  padding: 3px 8px;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s;
}
.post-cat:hover { background: rgba(0,229,255,0.14); opacity: 1; }

.post-date {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.65rem;
  color: var(--muted);
  margin-left: auto;
}

.post-card h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.35;
  margin-bottom: 12px;
}

.post-card h2 a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}
.post-card h2 a:hover { color: var(--accent); opacity: 1; }

.post-card-excerpt {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}

.read-more {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
  text-decoration: none;
}
.read-more:hover { gap: 10px; opacity: 1; }
.read-more::after { content: '→'; }

/* =====================================================================
   PAGINATION
   ===================================================================== */
.pagination {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  gap: 4px;
}

.pagination .page-numbers {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8rem;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: border-color 0.2s, color 0.2s;
  text-decoration: none;
}
.pagination .page-numbers:hover,
.pagination .page-numbers.current {
  border-color: var(--accent);
  color: var(--accent);
  opacity: 1;
}
.pagination .page-numbers.dots { border-color: transparent; }

/* =====================================================================
   SINGLE POST
   ===================================================================== */
article.single-post { max-width: 720px; }

.single-header { margin-bottom: 48px; }

.single-header .post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.single-header h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 20px;
}

.single-header .excerpt {
  font-size: 1.05rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
  border-left: 2px solid var(--accent);
  padding-left: 16px;
}

.post-featured-image {
  margin-bottom: 48px;
  border: 1px solid var(--border);
  overflow: hidden;
}
.post-featured-image img { width: 100%; }

/* Post content typography */
.entry-content {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin: 2em 0 0.75em;
  color: var(--text);
}

.entry-content h2 { font-size: 1.6rem; }
.entry-content h3 { font-size: 1.25rem; }
.entry-content h4 { font-size: 1.05rem; color: var(--accent); }

.entry-content p { margin-bottom: 1.5em; }

.entry-content a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.entry-content a:hover { opacity: 0.75; }

.entry-content ul,
.entry-content ol {
  margin-bottom: 1.5em;
  padding-left: 1.5em;
}
.entry-content li { margin-bottom: 0.4em; }

.entry-content blockquote {
  border-left: 2px solid var(--accent);
  padding: 16px 20px;
  margin: 2em 0;
  background: var(--surface);
  color: var(--muted);
  font-style: italic;
}
.entry-content blockquote p:last-child { margin-bottom: 0; }

.entry-content code {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.875em;
  background: var(--surface);
  color: var(--accent);
  padding: 2px 6px;
  border: 1px solid var(--border);
  border-radius: 2px;
}

.entry-content pre {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  overflow-x: auto;
  margin-bottom: 1.5em;
}
.entry-content pre code {
  background: none;
  border: none;
  padding: 0;
  font-size: 0.875rem;
  color: var(--text);
}

.entry-content img {
  border: 1px solid var(--border);
  margin: 1.5em 0;
}

.entry-content hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2.5em 0;
}

.entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5em;
  font-size: 0.9rem;
}
.entry-content th {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  padding: 10px 12px;
  text-align: left;
}
.entry-content td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(30,45,61,0.5);
}

/* Post footer */
.entry-footer {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.post-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }

.post-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 2px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.post-tag:hover { border-color: var(--accent); color: var(--accent); opacity: 1; }

.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
}

.post-nav-item {
  background: var(--surface);
  padding: 20px 24px;
  text-decoration: none;
  transition: background 0.2s;
}
.post-nav-item:hover { background: var(--surface2); opacity: 1; }

.post-nav-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 6px;
}

.post-nav-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.post-nav-item.next { text-align: right; }

/* =====================================================================
   SIDEBAR
   ===================================================================== */
.sidebar { position: sticky; top: 88px; }

.widget {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 24px;
  margin-bottom: 2px;
}

.widget-title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.widget-title::before {
  content: '';
  display: inline-block;
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--accent);
  flex-shrink: 0;
}

.widget ul { list-style: none; padding: 0; }
.widget li {
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
  font-size: 0.875rem;
}
.widget li:last-child { border-bottom: none; }
.widget a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.widget a:hover { color: var(--accent); opacity: 1; }

/* Search widget */
.widget .search-form {
  display: flex;
  border: 1px solid var(--border);
  overflow: hidden;
}
.widget .search-field {
  flex: 1;
  background: var(--bg);
  border: none;
  color: var(--text);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.82rem;
  padding: 10px 14px;
  outline: none;
}
.widget .search-field::placeholder { color: var(--muted); }
.widget .search-submit {
  background: var(--accent);
  color: var(--bg);
  border: none;
  padding: 10px 16px;
  cursor: pointer;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  font-weight: 500;
  transition: opacity 0.2s;
}
.widget .search-submit:hover { opacity: 0.85; }

/* =====================================================================
   PAGE TEMPLATE
   ===================================================================== */
.page-content { max-width: 720px; }
.page-header { margin-bottom: 40px; }
.page-header h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

/* =====================================================================
   COMMENTS
   ===================================================================== */
.comments-area {
  max-width: 720px;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.comments-title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.comments-title::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent);
}

.comment-list { list-style: none; padding: 0; }

.comment {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.comment:last-child { border-bottom: none; }

.comment-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.comment-author img { border-radius: 2px; border: 1px solid var(--border); }
.comment-author .fn {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
}
.comment-author .says { display: none; }
.comment-metadata {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.65rem;
  color: var(--muted);
  margin-bottom: 10px;
}
.comment-metadata a { color: var(--muted); }
.comment-content { font-size: 0.9rem; line-height: 1.7; }
.comment-reply-link {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-top: 10px;
  display: inline-block;
}

/* Comment form */
.comment-respond {
  margin-top: 48px;
}
.comment-reply-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.comment-form label {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 8px;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.9rem;
  padding: 12px 16px;
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s;
  margin-bottom: 20px;
}
.comment-form input:focus,
.comment-form textarea:focus { border-color: var(--accent); }

.comment-form textarea { height: 140px; resize: vertical; }

.comment-form .form-submit input {
  background: var(--accent);
  color: var(--bg);
  border: none;
  padding: 12px 28px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: opacity 0.2s;
  width: auto;
  margin-bottom: 0;
}
.comment-form .form-submit input:hover { opacity: 0.85; }

/* =====================================================================
   404 / SEARCH
   ===================================================================== */
.error-page {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}

.error-code {
  font-family: 'Syne', sans-serif;
  font-size: clamp(6rem, 20vw, 12rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--border);
  margin-bottom: 16px;
}

.error-page h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.error-page p {
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 400px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 12px 24px;
  border: 1px solid var(--border);
  color: var(--text);
  transition: border-color 0.2s, color 0.2s;
  text-decoration: none;
}
.btn:hover { border-color: var(--accent); color: var(--accent); opacity: 1; }
.btn-accent { background: var(--accent); color: var(--bg); border-color: var(--accent); font-weight: 700; }
.btn-accent:hover { opacity: 0.85; color: var(--bg); }

.search-results-header {
  margin-bottom: 40px;
}
.search-results-header h1 {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.search-results-header h1 span { color: var(--accent); }
.search-count {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 8px;
}

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  margin-top: auto;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text);
  letter-spacing: -0.02em;
  text-decoration: none;
}
.footer-logo span { color: var(--accent); }

.footer-copy {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem;
  color: var(--muted);
}
.footer-copy a { color: var(--muted); }

.footer-nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 20px;
}
.footer-nav a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.footer-nav a:hover { color: var(--accent); opacity: 1; }

/* =====================================================================
   ACCESSIBILITY / WP HELPERS
   ===================================================================== */
.screen-reader-text {
  clip: rect(1px,1px,1px,1px);
  height: 1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
  word-wrap: normal;
}

.alignleft  { float: left; margin: 0 1.5em 1em 0; }
.alignright { float: right; margin: 0 0 1em 1.5em; }
.aligncenter { margin-left: auto; margin-right: auto; display: block; }

.wp-caption { max-width: 100%; }
.wp-caption-text {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 8px;
  text-align: center;
}

/* Gutenberg blocks */
.wp-block-quote {
  border-left: 2px solid var(--accent);
  padding: 16px 20px;
  margin: 2em 0;
  background: var(--surface);
  color: var(--muted);
  font-style: italic;
}
.wp-block-code {
  background: var(--surface);
  border: 1px solid var(--border);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.875rem;
  padding: 20px 24px;
  overflow-x: auto;
}
.wp-block-separator {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2.5em 0;
}

/* WP admin bar offset */
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .site-header { top: 46px; } }
