/* ================================
   Blog Theme Color Overrides
   ================================ */

/* Header title */
.s-header__logotext a {
  color: #C97A2B;
}

.s-header__logotext a:hover {
  color: #b36a23; /* slightly darker for hover */
}

/* Tagline text (keep calm, not loud) */
.s-header__tagline {
  color: #555;
}

/* Links inside header */
.s-header a {
  color: #C97A2B;
}

.s-header a:hover {
  color: #b36a23;
}

/* Navigation underline / active state */
.s-header__nav a:hover,
.s-header__nav .current a {
  color: #C97A2B;
}

/* Header background color */
.s-header {
  background-color: #F7EFE6; /* very light warm neutral */
}

/* Blog post images - rounded corners like Projects page */

.entry__content-media img {
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}