/* THE LOCAL STACK - TE Design System */
/* Teenage Engineering-inspired: precise, modular, typographically split */

:root {
    /* TE Color Palette */
    --accent: #00D084;
    --accent-bright: #00FFA3;

    /* Grey scale */
    --bg: #E8E8E8;
    --bg-elevated: #F2F2F2;
    --bg-sunken: #D5D5D5;

    --text: #1A1A1A;
    --text-secondary: #666666;

    --border: #CCCCCC;
    --border-strong: #999999;

    /* Typography */
    --font-sans: -apple-system, 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --font-mono: 'SF Mono', 'Monaco', 'Menlo', 'Courier New', monospace;

    /* Spacing (8px grid) */
    --space-1: 8px;
    --space-2: 16px;
    --space-3: 24px;
    --space-4: 32px;
    --space-5: 40px;
    --space-6: 48px;
    --space-8: 64px;
}

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

/* SMOOTH SCROLL */
html {
    scroll-behavior: smooth;
}

/* BODY — dot-grid texture (machined aluminum) */
body {
    background: var(--bg);
    background-image: radial-gradient(circle, #d0d0d0 1px, transparent 1px);
    background-size: 24px 24px;
    color: var(--text);
    font-family: var(--font-sans);
    font-size: 15px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* CONTAINER */
.container {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 var(--space-3);
}

/* ACCENT BAR */
.accent-bar {
    height: 3px;
    background: var(--accent);
    width: 100%;
}

/* ============================
   HEADER — product nameplate
   ============================ */
header {
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 0 var(--border-strong);
    padding: var(--space-4) 0;
    margin-bottom: var(--space-5);
    background: var(--bg-elevated);
}

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-3);
}

/* Green LED dot before site title */
.site-title a {
    font-family: var(--font-mono);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text);
    text-decoration: none;
    border: none;
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.site-title a::before {
    content: "\25CF";
    color: var(--accent);
    font-size: 10px;
    text-shadow: 0 0 6px var(--accent);
    animation: pulse 2s infinite;
}

.site-title a:hover {
    color: var(--accent);
    background: transparent;
}

.site-meta {
    display: flex;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 9px;
    margin-top: 6px;
}

.site-meta span {
    padding: 2px 6px;
    border: 1px solid var(--border-strong);
    text-transform: uppercase;
    background: var(--bg);
    letter-spacing: 0.06em;
    color: var(--text-secondary);
}

/* ============================
   NAVIGATION — tactile buttons
   ============================ */
nav {
    display: flex;
    gap: var(--space-1);
    flex-wrap: wrap;
}

nav a {
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    color: var(--text);
    text-decoration: none;
    border: 1px solid var(--border);
    padding: 6px 14px;
    background: var(--bg);
    transition: all 0.15s ease;
    letter-spacing: 0.04em;
}

nav a:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--bg);
    transform: translateY(-1px);
}

nav a:active {
    transform: scale(0.97);
}

/* MAIN */
main {
    min-height: calc(100vh - 400px);
    padding: var(--space-4) 0 var(--space-6);
}

/* ============================
   TYPOGRAPHY — deliberate headings
   ============================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: -0.03em;
    font-weight: 700;
    margin: var(--space-5) 0 var(--space-2) 0;
    color: var(--text);
    line-height: 1.2;
}

/* h1: accent square before text */
h1 {
    font-size: 28px;
    border-bottom: 2px solid var(--accent);
    padding-bottom: var(--space-2);
    margin-top: 0;
    position: relative;
    padding-left: 14px;
}

h1::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 4px;
    height: 4px;
    background: var(--accent);
}

/* h2: // prefix like TE section markers */
h2 {
    font-size: 22px;
    border-bottom: 1px solid var(--border-strong);
    padding-bottom: var(--space-1);
    padding-left: 28px;
    position: relative;
}

h2::before {
    content: "//";
    position: absolute;
    left: 0;
    font-family: var(--font-mono);
    font-size: 16px;
    color: var(--accent);
    font-weight: 400;
}

h3 { font-size: 17px; }
h4 { font-size: 15px; }

p {
    margin: var(--space-2) 0;
}

strong {
    font-weight: 700;
}

/* ============================
   LINKS — underline offset hover
   ============================ */
a {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid var(--accent);
    transition: all 0.15s ease;
}

a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
    background: transparent;
    color: var(--accent-bright);
}

/* SELECTION */
::selection {
    background: var(--accent);
    color: #fff;
}

::-moz-selection {
    background: var(--accent);
    color: #fff;
}

/* ============================
   CODE — terminal screen
   ============================ */
code {
    font-family: var(--font-mono);
    background: #2A2A2A;
    color: var(--accent);
    padding: 2px 6px;
    border: 1px solid var(--border-strong);
    font-size: 13px;
}

pre {
    background: #2A2A2A;
    color: #E5E5E5;
    border: 1px solid var(--border-strong);
    padding: var(--space-3);
    padding-top: calc(var(--space-3) + 28px);
    overflow-x: auto;
    margin: var(--space-4) 0;
    line-height: 1.5;
    position: relative;
}

/* Terminal header strip with window dots */
pre::before {
    content: "\25CF  \25CF  \25CF";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 28px;
    background: #1E1E1E;
    border-bottom: 1px solid #3A3A3A;
    border-radius: 0;
    display: flex;
    align-items: center;
    padding-left: 12px;
    font-size: 9px;
    letter-spacing: 0;
    color: transparent;
}

/* Colored dots via separate pseudo or gradient approach — using box-shadow trick */
pre::after {
    content: "";
    position: absolute;
    top: 10px;
    left: 12px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #FF5F57;
    box-shadow: 14px 0 0 #FEBC2E, 28px 0 0 #28C840;
}

pre code {
    background: transparent;
    border: none;
    padding: 0;
    color: #E5E5E5;
    font-size: 13px;
}

/* LISTS */
ul, ol {
    margin: var(--space-2) 0;
    padding-left: var(--space-4);
}

li {
    margin: var(--space-1) 0;
}

ul li::marker {
    content: "- ";
    color: var(--accent);
    font-family: var(--font-mono);
}

/* ============================
   SECTION LABEL — accent dot prefix
   ============================ */
.section-label {
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
    margin-bottom: var(--space-3);
    padding-bottom: var(--space-1);
    border-bottom: 1px solid var(--border);
    padding-left: 14px;
    position: relative;
}

.section-label::before {
    content: "\25CF";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 8px;
    top: 1px;
}

/* ============================
   HOME HERO — large title + tagline with cursor
   ============================ */
.home-hero {
    margin-bottom: var(--space-6);
}

.home-title {
    font-size: 36px;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: var(--space-1);
    padding-left: 14px;
}

.home-subtitle {
    font-family: var(--font-mono);
    font-size: 18px;
    color: var(--accent);
    margin: var(--space-1) 0;
    letter-spacing: 0.01em;
}

.cursor {
    display: inline-block;
    margin-left: 2px;
    animation: blink 1s step-end infinite;
    color: var(--accent);
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.home-blurb {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 600px;
    margin-top: var(--space-2);
}

/* ============================
   STATUS PANEL — system status module
   ============================ */
.status-panel {
    border: 1px solid var(--border);
    border-top: 2px solid var(--accent);
    background: var(--bg-elevated);
    padding: var(--space-3);
    margin-bottom: var(--space-6);
}

.status-panel .section-label {
    margin-bottom: var(--space-2);
}

.status-row {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
    font-family: var(--font-mono);
    font-size: 12px;
}

.status-row:last-child {
    border-bottom: none;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 4px var(--accent);
    animation: pulse 2s infinite;
}

.status-label {
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-secondary);
    flex: 1;
}

.status-value {
    color: var(--text);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ============================
   PRINCIPLES GRID — 3-column cards
   ============================ */
.principles-section {
    margin-bottom: var(--space-6);
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-3);
}

.principle-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-top: 2px solid var(--accent);
    padding: var(--space-3);
}

.principle-label {
    font-family: var(--font-mono);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0 0 var(--space-1) 0;
    padding: 0;
}

.principle-label::before {
    display: none;
}

.principle-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ============================
   POSTS SECTION
   ============================ */
.posts-section {
    margin-bottom: var(--space-6);
}

/* ============================
   QUICK LINKS — CTA button row
   ============================ */
.quick-links {
    display: flex;
    gap: var(--space-2);
    margin-bottom: var(--space-6);
}

.quick-links a {
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border: 1px solid var(--border);
    padding: 10px 24px;
    color: var(--text);
    background: var(--bg-elevated);
    transition: all 0.15s ease;
    flex: 1;
    text-align: center;
}

.quick-links a:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--bg);
    text-decoration: none;
    transform: translateY(-1px);
}

/* ============================
   POST LIST — hardware module slots
   ============================ */
.post-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    counter-reset: post-index;
}

.post-list-item {
    background: var(--bg-elevated);
    padding: var(--space-3);
    border: 1px solid var(--border);
    transition: all 0.2s ease;
    position: relative;
    counter-increment: post-index;
}

/* Index number (top-right) */
.post-list-item::before {
    content: counter(post-index, decimal-leading-zero);
    position: absolute;
    top: var(--space-1);
    right: var(--space-2);
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--border-strong);
    letter-spacing: 0.04em;
    transition: color 0.2s ease;
}

/* Corner bracket mark (top-left, L-shaped) */
.post-list-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    border-top: 2px solid var(--border-strong);
    border-left: 2px solid var(--border-strong);
    transition: border-color 0.2s ease;
}

/* Hover: lift shadow, accent corner, highlight index */
.post-list-item:hover {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.post-list-item:hover::after {
    border-color: var(--accent);
}

.post-list-item:hover::before {
    color: var(--accent);
}

.post-date {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 6px;
}

.post-content h3 {
    margin: 0 0 6px 0;
    font-size: 17px;
    letter-spacing: -0.02em;
}

.post-content h3 a {
    color: var(--text);
    border: none;
}

.post-content h3 a:hover {
    background: transparent;
    color: var(--accent);
    text-decoration: none;
}

.post-content p {
    margin: 0;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.post-list-empty {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--text-secondary);
    padding: var(--space-5);
    text-align: center;
    border: 2px dashed var(--border-strong);
    background: var(--bg-elevated);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-1);
}

.empty-signal {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.empty-detail {
    font-size: 12px;
    color: var(--text-secondary);
    letter-spacing: 0.04em;
}

/* ============================
   POST META — centered dot separators
   ============================ */
.post-meta {
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    color: var(--text-secondary);
    border: 1px solid var(--border);
    padding: var(--space-2);
    margin-bottom: var(--space-4);
    display: flex;
    gap: var(--space-3);
    flex-wrap: wrap;
    background: var(--bg-elevated);
    letter-spacing: 0.04em;
}

.post-meta span::before {
    content: "\00B7  ";
    color: var(--accent);
    font-weight: 700;
}

.post-meta span:first-child::before {
    content: "";
}

/* POST CONTENT */
.post-body {
    font-size: 15px;
    line-height: 1.8;
}

.post-body h2 {
    margin-top: var(--space-6);
}

.post-body h3 {
    margin-top: var(--space-5);
}

.post-body img {
    max-width: 100%;
    height: auto;
    border: 1px solid var(--border);
    margin: var(--space-3) 0;
}

/* ============================
   HORIZONTAL RULE — diamond center
   ============================ */
hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: var(--space-5) 0;
    position: relative;
    overflow: visible;
}

hr::after {
    content: "\25C6";
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg);
    padding: 0 8px;
    color: var(--accent);
    font-size: 10px;
    line-height: 1;
}

/* ============================
   TAGS — dot before text
   ============================ */
.tag,
.post-tags a {
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 3px 8px 3px 16px;
    display: inline-block;
    margin: 0 4px 4px 0;
    letter-spacing: 0.04em;
    position: relative;
}

.tag::before,
.post-tags a::before {
    content: "\25CF";
    position: absolute;
    left: 6px;
    font-size: 5px;
    top: 50%;
    transform: translateY(-50%);
}

.tag:hover,
.post-tags a:hover {
    background: var(--accent);
    color: #fff;
    text-decoration: none;
}

.post-tags-footer {
    margin-top: var(--space-5);
    padding-top: var(--space-3);
    border-top: 1px solid var(--border);
}

/* ============================
   POST NAVIGATION — mono arrows
   ============================ */
.post-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3);
    margin-top: var(--space-6);
    padding-top: var(--space-4);
    border-top: 1px solid var(--border);
}

.post-nav-item {
    padding: var(--space-2);
    border: 1px solid var(--border);
    background: var(--bg-elevated);
    transition: all 0.15s ease;
}

.post-nav-item.prev:hover {
    border-left: 2px solid var(--accent);
}

.post-nav-item.next:hover {
    border-right: 2px solid var(--accent);
}

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

.post-nav-label {
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
    color: var(--text-secondary);
    letter-spacing: 0.06em;
    display: block;
    margin-bottom: 4px;
}

.post-nav-item a {
    font-size: 14px;
    color: var(--text);
    border: none;
    font-weight: 600;
}

.post-nav-item a:hover {
    color: var(--accent);
    background: transparent;
    text-decoration: none;
}

/* ============================
   BLOCKQUOTES — accent square top-left
   ============================ */
blockquote {
    border-left: 3px solid var(--accent);
    background: var(--bg-elevated);
    padding: var(--space-2) var(--space-3);
    margin: var(--space-4) 0;
    font-style: italic;
    position: relative;
}

blockquote::before {
    content: "\25A0";
    position: absolute;
    top: -4px;
    left: -3px;
    color: var(--accent);
    font-size: 8px;
    line-height: 1;
}

blockquote p:first-child {
    margin-top: 0;
}

blockquote p:last-child {
    margin-bottom: 0;
}

/* TABLES */
table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-4) 0;
    font-size: 14px;
}

th, td {
    padding: var(--space-1) var(--space-2);
    border: 1px solid var(--border);
    text-align: left;
}

th {
    background: var(--bg-sunken);
    font-family: var(--font-mono);
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.04em;
    font-weight: 600;
}

tr:hover td {
    background: var(--bg-elevated);
}

/* IMAGES */
article img {
    max-width: 100%;
    height: auto;
    border: 1px solid var(--border);
}

/* PAGE DESCRIPTION */
.page-description {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: var(--space-4);
    padding-bottom: var(--space-3);
    border-bottom: 1px solid var(--border);
}

/* ============================
   FOOTER — spec sheet panel
   ============================ */
footer {
    border-top: 1px solid var(--border-strong);
    margin-top: var(--space-8);
    padding: var(--space-5) 0 var(--space-4);
    background: var(--bg-elevated);
}

/* Spec header label */
.spec-header {
    font-family: var(--font-mono);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: var(--space-1);
}

.footer-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    font-family: var(--font-mono);
    font-size: 11px;
    border: 1px solid var(--border);
    border-top: 2px solid var(--accent);
    margin-bottom: var(--space-4);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06);
}

.spec-line {
    display: flex;
    justify-content: space-between;
    padding: 8px 12px;
    border-bottom: 1px solid var(--border);
    border-right: 1px solid var(--border);
}

.spec-line:nth-last-child(-n+2) {
    border-bottom: none;
}

.spec-line:nth-child(even) {
    border-right: none;
}

.spec-label {
    text-transform: uppercase;
    color: var(--text-secondary);
    letter-spacing: 0.04em;
}

.spec-value {
    color: var(--accent);
    font-weight: 600;
}

.model-info {
    display: flex;
    gap: var(--space-1);
    justify-content: center;
    margin: var(--space-3) 0;
    flex-wrap: wrap;
}

.serial {
    font-family: var(--font-mono);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
    border: 1px solid var(--border);
    padding: 3px 8px;
    background: var(--bg);
}

/* ============================
   SOCIAL LINKS — external arrow
   ============================ */
.social-links {
    display: flex;
    gap: var(--space-1);
    justify-content: center;
    margin: var(--space-3) 0;
}

.social-links a {
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-secondary);
    border: 1px solid var(--border);
    padding: 6px 12px;
    background: var(--bg);
    transition: all 0.15s ease;
}

.social-links a::after {
    content: " \2197";
    font-size: 9px;
}

.social-links a:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--bg);
    text-decoration: none;
}

.footer-copy {
    text-align: center;
    font-family: var(--font-mono);
    font-size: 10px;
    margin-top: var(--space-4);
    color: var(--text-secondary);
    letter-spacing: 0.04em;
}

.footer-copy p {
    margin: 4px 0;
}

.footer-mfg {
    text-align: center;
    font-family: var(--font-mono);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--border-strong);
    margin-top: var(--space-3);
}

.status-indicator {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    margin-right: 4px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* ============================
   404 — diagnostic page
   ============================ */
.diagnostic-page {
    text-align: center;
    padding: var(--space-8) 0;
}

.diagnostic-code {
    font-family: var(--font-mono);
    font-size: 96px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--text);
    line-height: 1;
    margin-bottom: var(--space-2);
    text-transform: uppercase;
}

.diagnostic-label {
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: var(--space-4);
}

.diagnostic-readout {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.8;
    border: 1px solid var(--border);
    background: var(--bg-elevated);
    padding: var(--space-3);
    display: inline-block;
    text-align: left;
    max-width: 400px;
    margin-bottom: var(--space-4);
}

.diagnostic-readout p {
    margin: 4px 0;
}

.diagnostic-readout .fault-line {
    color: var(--accent);
}

.diagnostic-action {
    margin-top: var(--space-3);
}

.diagnostic-action a {
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border: 1px solid var(--accent);
    padding: 8px 20px;
    color: var(--accent);
    background: transparent;
    transition: all 0.15s ease;
}

.diagnostic-action a:hover {
    background: var(--accent);
    color: #fff;
    text-decoration: none;
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 768px) {
    .site-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-2);
    }

    nav {
        width: 100%;
    }

    .footer-specs {
        grid-template-columns: 1fr;
    }

    .footer-specs .spec-line {
        border-right: none;
    }

    .footer-specs .spec-line:last-child {
        border-bottom: none;
    }

    .post-nav {
        grid-template-columns: 1fr;
    }

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

    .home-title {
        font-size: 28px;
    }

    .home-subtitle {
        font-size: 15px;
    }

    .principles-grid {
        grid-template-columns: 1fr;
    }

    .quick-links {
        flex-direction: column;
    }

    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 19px;
    }

    /* Hide decorative pseudo-elements on small screens */
    .post-list-item::before,
    .post-list-item::after {
        display: none;
    }

    hr::after {
        display: none;
    }

    .diagnostic-code {
        font-size: 64px;
    }
}

/* PRINT */
@media print {
    .accent-bar,
    nav,
    .social-links,
    .post-nav {
        display: none;
    }

    body {
        background: #fff;
        background-image: none;
        color: #000;
        font-size: 12pt;
    }

    header, footer {
        background: #fff;
    }

    a {
        color: #000;
        border-bottom: none;
    }

    pre {
        border: 1px solid #ccc;
        background: #f5f5f5;
        color: #000;
    }

    pre::before,
    pre::after {
        display: none;
    }
}
