/* Base */
:root {
  --spb-text: #111;
  --spb-muted: #666;
  --spb-border: #e7e7e7;
}

* { box-sizing: border-box; }

html, body {
  padding: 0;
  margin: 0;
  color: var(--spb-text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.55;
  font-size: 16px;
}

.spb-print {
  max-width: 820px;
  margin: 0 auto;
  padding: 28px 22px;
}

.spb-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--spb-border);
  margin-bottom: 18px;
}

.spb-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid var(--spb-border);
  background: #fff;
}

.spb-title {
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
}

.spb-meta {
  margin: 4px 0 0 0;
  color: var(--spb-muted);
  font-size: 13px;
}

.spb-content {
  margin-top: 16px;
  text-align: justify !important;
}

.spb-content p,
.spb-content li {
  text-align: justify !important;
}


.spb-content img {
  max-width: 100%;
  height: auto;
}

.spb-content a {
  color: inherit;
  text-decoration: underline;
}

.spb-footer {
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px solid var(--spb-border);
  color: var(--spb-muted);
  font-size: 12px;
}

/* Print only adjustments */
@media print {
  .spb-print {
    padding: 0;
  }
  a[href]:after {
    content: " (" attr(href) ")";
    font-size: 11px;
    color: #444;
  }
}


.spb-post-title{
  margin: 0 0 12px 0;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 700;
  text-align: justify !important;
}

