/* ── Fonts ── */
body, h1, h2, h3, h4, h5, h6, p, a, li, blockquote, input, button, label {
  font-family: 'Nunito', sans-serif !important;
}

/* ── Potato emoji tile background ── */
body {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='90' height='90'><text y='68' font-size='64' opacity='0.07'>🥔</text></svg>");
  background-size: 90px 90px;
  background-color: #f2f7f2;
}

/* ── Remove hero overlay tint ── */
.cover-nodim {
  background: transparent;
}


/* ── Tags sidebar ── */
.site-layout {
  display: flex;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.site-content {
  flex: 1;
  min-width: 0;
}

.tags-sidebar {
  width: 200px;
  flex-shrink: 0;
  padding: 2rem 1rem 2rem 1.5rem;
  position: sticky;
  top: 1rem;
}

.tags-sidebar h3 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #3a7a4a;
  margin: 0 0 1rem 0;
}

.tags-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags-sidebar li {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.tags-sidebar a {
  color: #2d6e40;
  text-decoration: none;
}

.tags-sidebar a:hover {
  text-decoration: underline;
  color: #4aaa60;
}

.tags-sidebar .tag-count {
  color: #aaa;
  font-size: 0.78rem;
  margin-left: 3px;
}

@media (max-width: 768px) {
  .tags-sidebar {
    display: none;
  }
}

/* ── Polaroid header ── */
.site-polaroid-header {
  background-color: #f2f7f2;
  padding: 2.5rem 1rem 1.5rem;
  border-bottom: 2px solid #6ab87a;
}

.polaroid-card {
  background: white;
  padding: 10px 10px 36px 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.18), 0 1px 4px rgba(0,0,0,0.1);
  transform: rotate(-2deg);
  display: inline-block;
}

.polaroid-img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

/* ── Post card thumbnail images ── */
article.bb img {
  height: 240px;
  width: 100%;
  object-fit: cover;
  object-position: center 30%;
}
