.hero {
  text-align: center;
  padding: 6rem 1rem 4rem;
  margin-bottom: 3rem;
  background: #f2f0ec;
  border-bottom: 1px solid #e0dedb;
}

.hero-title {
  font-family: "Helvetica Neue", sans-serif;
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: -1px;
  margin: 0 0 1rem;
  color: #222;
}

.hero-subtitle {
  font-family: "Georgia", serif;
  font-size: 1.25rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.hero-image {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  border-radius: 4px;
}

@media (prefers-color-scheme: dark) {
  body {
    background: #1c1c1c;
    color: #e6e6e6;
  }

  .hero {
    background: #2a2a2a;
    border-bottom-color: #3a3a3a;
  }

  .hero-title {
    color: #f5f5f5;
  }

  .hero-subtitle {
    color: #cfcfcf;
  }

  a {
    color: #dcdcdc;
    border-bottom-color: #555;
  }

  a:hover {
    border-bottom-color: #fff;
  }

  .site-header, .site-footer {
    color: #aaa;
  }
}

.nav {
  text-align: center;
  margin-bottom: 1rem;
}

.nav a {
  margin: 0 1rem;
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 300;
  color: #444;
  border-bottom: none;
}

.nav a:hover {
  color: #000;
}

hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 3rem 0;
}

.site-footer {
  text-align: center;
  padding: 2rem 0;
  margin-top: 4rem;
  color: #777;
  font-family: "Georgia", serif;
  font-size: 0.9rem;
  line-height: 1.6;
  border-top: 1px solid #eee;
}

.footer-line {
  margin: 0;
  font-style: italic;
}

.footer-meta {
  margin: 0.5rem 0 0;
  font-size: 0.85rem;
  color: #999;
}
.tag-link {
  font-family: "Georgia", serif;
  font-size: 0.85rem;
  color: #555;
  margin-right: 0.5rem;
  text-decoration: none;
}

.tag-link:hover {
  text-decoration: underline;
}

/* Tag list */
.tag-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.tag-list li {
  margin: 0.4rem 0;
  font-size: 1.1rem;
}

.tag-link {
  text-decoration: none;
  color: #333;
  font-weight: 600;
}

.tag-link:hover {
  text-decoration: underline;
}

.tag-count {
  color: #888;
  margin-left: 0.4rem;
}

/* Tag cloud */
.tag-cloud {
  margin-top: 2rem;
  line-height: 2.2rem;
}

.tag-cloud-item {
  margin-right: 0.6rem;
  text-decoration: none;
  color: #555;
}

.tag-cloud-item:hover {
  color: #000;
  text-decoration: underline;
}

/* post-content styles */

/* --- Content --- */
.post-content {
  font-family: "Georgia", serif;
  font-size: 1.15rem;
  line-height: 1.75;
  color: #333;
  max-width: 650px;
  padding-bottom: 4rem;
}

.post-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.post-list li {
  margin: 0.5rem 0;
}

.post-item {
  margin-bottom: 1rem;
}

.post-item a {
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  color: #222;
}

.post-item a:hover {
  text-decoration: underline;
}

.post-date {
  font-family: "Georgia", serif;
  font-size: 0.95rem;
  color: #777;
  margin: 0 0 1rem;
}


/* --- Sigil watermark behind title --- */
.post-header {
  position: relative;
  margin-bottom: 3rem;
  padding-top: 2rem;
}

/* --- Title styling --- */
.post-title {
  position: relative;
  z-index: 2;
  font-family: "Georgia", serif;
  font-size: 2.8rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: #222;
  margin-bottom: 1rem;
}


.post-tags {
  margin: 0 0 1rem;
}

/* --- Floating left meta column --- */
.post {
  position: relative;
  display: flex;
  flex-direction: row;
}

.post-meta-column {
  width: 180px;
  flex-shrink: 0;
  padding-top: 2rem;
  padding-right: 2rem;
  font-family: "Helvetica Neue", sans-serif;
  color: #777;
}

.meta-inner {
  position: sticky;
  top: 4rem;
}

.meta-date {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}

.meta-tags {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.meta-tag {
  font-size: 0.8rem;
  color: #555;
  text-decoration: none;
}

.meta-tag:hover {
  color: #000;
}

/* --- Sigil above title --- */
.post-sigil {
  width: 70px;
  opacity: 0.85;
  margin-bottom: 1.2rem;
  display: block;
}


.post-sigil-watermark {
  position: absolute;
  top: -20px;
  left: -40px;
  width: 260px;
  height: 260px;
  background-image: url("{{ '/assets/betterinjeans.svg' | relative_url }}");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
  filter: blur(1px);
}



