/* ============================================
   peth2026 — Forest Modern + Copper
   ============================================ */

:root {
  /* Forest Modern palette */
  --color-forest-950: #0a1f14;
  --color-forest-900: #122b1d;
  --color-forest-800: #1a3a2a;
  --color-forest-700: #245038;
  --color-forest-600: #2d6545;
  --color-forest-500: #3a7d56;

  /* Copper accent */
  --color-copper-700: #8b5a3a;
  --color-copper-600: #a0694a;
  --color-copper-500: #c2784e;
  --color-copper-400: #d4945e;
  --color-copper-300: #e0b48a;

  /* Warm neutrals */
  --color-cream-50: #faf8f5;
  --color-cream-100: #f5f0ea;
  --color-cream-200: #e8e0d5;
  --color-cream-300: #d5c9b8;
  --color-cream-400: #b8a896;

  /* Warm grays */
  --color-stone-50: #fafaf9;
  --color-stone-100: #f5f5f4;
  --color-stone-200: #e7e5e4;
  --color-stone-300: #d6d3d1;
  --color-stone-400: #a8a29e;
  --color-stone-500: #78716c;
  --color-stone-600: #57534e;
  --color-stone-700: #44403c;
  --color-stone-800: #292524;
  --color-stone-900: #1c1917;

  /* Semantic tokens — Light mode */
  --bg-primary: var(--color-cream-50);
  --bg-secondary: #ffffff;
  --bg-nav: var(--color-forest-800);
  --bg-footer: var(--color-forest-900);
  --bg-card: #ffffff;
  --bg-code: var(--color-cream-100);

  --text-primary: var(--color-stone-900);
  --text-secondary: var(--color-stone-600);
  --text-muted: var(--color-stone-400);
  --text-nav: var(--color-cream-100);
  --text-nav-hover: var(--color-copper-300);
  --text-link: var(--color-forest-700);
  --text-link-hover: var(--color-copper-600);
  --text-on-accent: #ffffff;

  --accent: var(--color-copper-500);
  --accent-hover: var(--color-copper-600);
  --border: var(--color-cream-200);
  --border-light: var(--color-cream-100);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg-primary: var(--color-forest-950);
    --bg-secondary: var(--color-forest-900);
    --bg-nav: var(--color-forest-900);
    --bg-footer: #070f0b;
    --bg-card: var(--color-forest-900);
    --bg-code: var(--color-forest-800);

    --text-primary: var(--color-cream-100);
    --text-secondary: var(--color-cream-300);
    --text-muted: var(--color-stone-400);
    --text-nav: var(--color-cream-100);
    --text-nav-hover: var(--color-copper-400);
    --text-link: var(--color-copper-400);
    --text-link-hover: var(--color-copper-300);

    --accent: var(--color-copper-500);
    --accent-hover: var(--color-copper-400);
    --border: var(--color-forest-700);
    --border-light: var(--color-forest-800);
  }
}

/* ============================================
   Reset & Base
   ============================================ */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ============================================
   Typography
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  line-height: 1.3;
  font-weight: 700;
  color: var(--text-primary);
}

h1 { font-size: 2.25rem; margin-bottom: 1rem; }
h2 { font-size: 1.75rem; margin-bottom: 0.75rem; }
h3 { font-size: 1.375rem; margin-bottom: 0.5rem; }
h4 { font-size: 1.125rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1.25rem; }

a {
  color: var(--text-link);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--text-link-hover);
}

strong { font-weight: 600; }

blockquote {
  border-left: 3px solid var(--accent);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--bg-card);
  border-radius: 0 0.5rem 0.5rem 0;
  color: var(--text-secondary);
  font-style: italic;
}

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

blockquote cite, blockquote footer {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-style: normal;
  color: var(--text-muted);
}

code {
  font-family: 'SF Mono', 'Fira Code', 'Fira Mono', Menlo, Consolas, monospace;
  font-size: 0.875em;
  background: var(--bg-code);
  padding: 0.125em 0.375em;
  border-radius: 0.25rem;
}

pre {
  background: var(--bg-code);
  padding: 1.25rem;
  border-radius: 0.5rem;
  overflow-x: auto;
  margin: 1.5rem 0;
}

pre code {
  background: none;
  padding: 0;
}

hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2rem 0;
}

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

/* ============================================
   Layout
   ============================================ */

.container {
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--narrow {
  max-width: 48rem;
}

.container--wide {
  max-width: 80rem;
}

main {
  flex: 1;
}

/* ============================================
   Navigation
   ============================================ */

.nav {
  background: var(--bg-nav);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.nav__brand {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-nav);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.nav__brand:hover {
  color: var(--text-nav-hover);
}

.nav__links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  align-items: center;
}

.nav__link {
  color: var(--text-nav);
  text-decoration: none;
  padding: 0.375rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.9375rem;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.nav__link:hover {
  color: var(--text-nav-hover);
  background: rgba(255,255,255,0.08);
}

/* Mobile nav */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-nav);
  cursor: pointer;
  padding: 0.5rem;
}

.nav__toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}

@media (max-width: 640px) {
  .nav__toggle { display: block; }

  .nav__links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-nav);
    padding: 0.5rem 1.5rem 1rem;
    border-bottom: 1px solid var(--border);
    z-index: 50;
  }

  .nav__links.is-open {
    display: flex;
  }

  .nav__link {
    padding: 0.625rem 0;
    width: 100%;
  }

  .nav__inner {
    position: relative;
  }
}

/* ============================================
   Hero Banner — Magazine style
   ============================================ */

.hero-banner {
  padding: 3rem 0 0;
  overflow: hidden;
}

.hero-banner__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: end;
}

@media (min-width: 768px) {
  .hero-banner__grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
  }

  .hero-banner {
    padding: 4rem 0 0;
  }
}

.hero-banner__content {
  padding-bottom: 2rem;
}

@media (min-width: 768px) {
  .hero-banner__content {
    padding-bottom: 4rem;
  }
}

.hero-banner__eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.hero-banner__title {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .hero-banner__title {
    font-size: 3.75rem;
  }
}

.hero-banner__lead {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0.75rem;
  max-width: 32rem;
}

.hero-banner__lead a {
  color: var(--accent);
  font-weight: 500;
}

.hero-banner__lead a:hover {
  color: var(--accent-hover);
}

.hero-banner__location {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.hero-banner__photo {
  position: relative;
}

.hero-banner__img {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 1rem 1rem 0 0;
  object-fit: cover;
}

@media (min-width: 768px) {
  .hero-banner__img {
    max-width: 100%;
    border-radius: 1.25rem 1.25rem 0 0;
  }
}

/* Kept for reuse in footer etc */
.hero__bio {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.hero__social {
  display: flex;
  gap: 1rem;
  list-style: none;
}

.hero__social a {
  color: var(--text-muted);
  transition: color 0.2s ease;
  display: flex;
}

.hero__social a:hover {
  color: var(--accent);
}

.hero__social svg {
  width: 1.375rem;
  height: 1.375rem;
  fill: currentColor;
}

/* Fix stroked icons (email) in dark mode */
.hero__social svg[fill="none"] {
  fill: none;
}

/* ============================================
   Section headers
   ============================================ */

.section {
  padding: 3rem 0;
}

.section--border-top {
  border-top: 1px solid var(--border);
}

.section__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.section__title {
  font-size: 1.5rem;
  position: relative;
}

.section__title::after {
  content: '';
  display: block;
  width: 2.5rem;
  height: 2px;
  background: var(--accent);
  margin-top: 0.5rem;
}

.section__link {
  font-size: 0.9375rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.section__link:hover {
  color: var(--accent-hover);
}

/* ============================================
   Cards
   ============================================ */

.card-grid {
  display: grid;
  gap: 1.5rem;
}

.card-grid--2 {
  grid-template-columns: 1fr;
}

.card-grid--3 {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .card-grid--2 { grid-template-columns: repeat(2, 1fr); }
  .card-grid--3 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .card-grid--3 { grid-template-columns: repeat(3, 1fr); }
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.card__image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.card__body {
  padding: 1.25rem;
}

.card__title {
  font-size: 1.125rem;
  margin-bottom: 0.375rem;
}

.card__title a {
  color: var(--text-primary);
  text-decoration: none;
}

.card__title a:hover {
  color: var(--accent);
}

.card__meta {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.card__excerpt {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.card__excerpt p:last-child {
  margin-bottom: 0;
}

/* ============================================
   Photo Gallery Grid
   ============================================ */

.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .photo-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 900px) {
  .photo-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Featured variant — first image spans 2x2 */
.photo-grid--featured {
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 640px) {
  .photo-grid--featured {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
  }

  .photo-grid__item--featured {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
  }
}

.photo-grid__item {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  aspect-ratio: 1;
}

.photo-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.photo-grid__item:hover img {
  transform: scale(1.05);
}

.photo-grid__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 0.75rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.photo-grid__item:hover .photo-grid__overlay {
  opacity: 1;
}

.photo-grid__caption {
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 500;
}

/* Photo single */
.photo-single {
  max-width: 64rem;
  margin: 0 auto;
}

.photo-single img {
  width: 100%;
  border-radius: 0.75rem;
}

/* Photo licensing notice */
.photo-license {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.photo-license a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.photo-license a:hover {
  color: var(--accent);
}

/* ============================================
   Blog post
   ============================================ */

.post {
  padding: 3rem 0;
}

.post__header {
  margin-bottom: 2rem;
}

.post__title {
  font-size: 2rem;
  letter-spacing: -0.02em;
}

.post__meta {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.post__content {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.post__content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.post__content h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.post__content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.post__content a:hover {
  color: var(--accent-hover);
}

.post__content img {
  border-radius: 0.5rem;
  margin: 1.5rem 0;
}

/* Hugo figure shortcode */
.post__content figure {
  margin: 1.5rem 0;
}

.post__content figure img {
  border-radius: 0.75rem;
  max-width: 100%;
  height: auto;
}

.post__content figure figcaption {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  text-align: center;
}

/* Bootstrap compat: float-end for app logos */
.post__content figure.float-end,
.post__content figure.rounded.float-end,
.post__content figure.img-fluid.rounded-5.float-end {
  float: right;
  margin: 0 0 1.5rem 1.5rem;
  max-width: 120px;
}

.post__content figure.float-end img {
  width: 120px;
  height: auto;
  margin: 0;
}

/* Bootstrap compat: centered figures */
.post__content figure.text-center,
.post__content figure.mx-auto {
  text-align: center;
}

.post__content figure.d-block {
  display: block;
}

/* Clearfix for floated figures */
.post__content::after {
  content: "";
  display: table;
  clear: both;
}

.post__content ul, .post__content ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.post__content li {
  margin-bottom: 0.5rem;
}

.post__content h4 {
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: var(--text-primary);
}

.post__content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.post__content th,
.post__content td {
  padding: 0.625rem 1rem;
  border: 1px solid var(--border);
  text-align: left;
  font-size: 0.9375rem;
}

.post__content th {
  background: var(--bg-card);
  font-weight: 600;
}

/* Blog list item */
.post-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-light);
}

.post-item:last-child {
  border-bottom: none;
}

.post-item__title {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.post-item__title a {
  color: var(--text-primary);
  text-decoration: none;
}

.post-item__title a:hover {
  color: var(--accent);
}

.post-item__meta {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.post-item__excerpt {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.post-item__link-icon {
  display: inline;
  width: 0.875rem;
  height: 0.875rem;
  vertical-align: -1px;
  margin-right: 0.25rem;
  color: var(--text-muted);
}

/* ============================================
   Projects / Built section
   ============================================ */

.project-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.75rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.project-card__icon {
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 1rem;
  border-radius: 0.75rem;
}

.project-card__name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.project-card__company {
  font-size: 0.8125rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.project-card__desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
}

.project-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--accent);
  font-weight: 500;
}

.project-card__link:hover {
  color: var(--accent-hover);
}

.project-card__link svg {
  width: 0.875rem;
  height: 0.875rem;
}

/* ============================================
   About page
   ============================================ */

.about {
  padding: 3rem 0;
}

.about__hero {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.about__photo {
  width: 160px;
  height: 160px;
  border-radius: 1rem;
  object-fit: cover;
  flex-shrink: 0;
}

.about__name {
  font-size: 2rem;
  margin-bottom: 0.25rem;
  letter-spacing: -0.02em;
}

.about__tagline {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

@media (max-width: 480px) {
  .about__hero {
    flex-direction: column;
    text-align: center;
  }

  .about__hero .hero__social {
    justify-content: center;
  }
}

.about__content {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.about__content p {
  margin-bottom: 1.25rem;
}

/* ============================================
   Footer
   ============================================ */

.footer {
  background: var(--bg-footer);
  color: var(--text-nav);
  padding: 3.5rem 0 2rem;
  margin-top: auto;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
  }
}

.footer__brand-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-cream-100);
  margin-bottom: 0.75rem;
}

.footer__bio {
  font-size: 0.875rem;
  color: var(--color-cream-400);
  line-height: 1.6;
  max-width: 24rem;
  margin-bottom: 1rem;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
  list-style: none;
}

.footer__social a {
  color: var(--color-cream-400);
  transition: color 0.2s ease;
  display: flex;
}

.footer__social a:hover {
  color: var(--color-copper-400);
}

.footer__social svg {
  width: 1.125rem;
  height: 1.125rem;
  fill: currentColor;
}

.footer__social svg[fill="none"] {
  fill: none;
}

.footer__heading {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-cream-300);
  margin-bottom: 0.75rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  list-style: none;
}

.footer__links a {
  color: var(--color-cream-400);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer__links a:hover {
  color: var(--color-copper-400);
}

.footer__bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer__copyright {
  font-size: 0.8125rem;
  color: var(--color-cream-400);
}

/* ============================================
   Pagination
   ============================================ */

.pagination {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  list-style: none;
  padding: 2rem 0;
}

.page-item {}

.page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  height: 2.25rem;
  padding: 0 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.2s ease;
}

.page-link:hover {
  background: var(--bg-card);
  color: var(--accent);
}

.page-item.active .page-link {
  background: var(--accent);
  color: var(--text-on-accent);
}

.page-item.disabled .page-link {
  opacity: 0.4;
  pointer-events: none;
}

/* ============================================
   Shortcode: Quote
   ============================================ */

.quote {
  border-left: 3px solid var(--accent);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  background: var(--bg-card);
  border-radius: 0 0.5rem 0.5rem 0;
}

.quote__text {
  font-size: 1.125rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.quote__attribution {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ============================================
   Responsive embed
   ============================================ */

.embed-responsive {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  margin: 1.5rem 0;
}

.embed-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 0.5rem;
}

/* ============================================
   404
   ============================================ */

.error-page {
  text-align: center;
  padding: 6rem 0;
}

.error-page__code {
  font-size: 6rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.04em;
}

.error-page__message {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
}

/* ============================================
   Utility
   ============================================ */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

.text-muted { color: var(--text-muted); }
.text-accent { color: var(--accent); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* ============================================
   Print
   ============================================ */

.printonly { display: none; }
.noprint {}

@media print {
  .noprint { display: none !important; }
  .printonly { display: block; }

  body {
    background: #fff;
    color: #000;
  }

  .nav, .footer { display: none; }

  a { color: #000; }
  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    color: #555;
  }

  .post__content { font-size: 11pt; }
}
