/* --------------------------------------------------------- */
/* paragraph that kramdown wraps around the <img> */
.brand-wrapper {
  float: right;
  margin: 0 0 1rem 1.5rem;
}

/* logo sizing (adjust as needed) */
.brand-mark {
  width: 96px;
  height: auto;
}

/* --------------------------------------------------------- */
/* lists */
ul {
  margin: 0 0 1rem 0;
  padding-left: 1.25rem;
}

ul li {
  list-style: square;
  padding-left: 10px;
  font-size: 13px;
  line-height: 1.5;
}

/* --------------------------------------------------------- */
/* Crew section */
.crew {
  padding: 0;
}

.crew li {
  list-style: none;
  margin: 0 0 0 1rem;
  padding: 0rem;
}

/* --------------------------------------------------------- */
/* top navigation bar */
#top-nav {
  font-size: 0.95rem;
  margin: 0 0 1.5rem 0;
  text-align: right;
}

#top-nav a {
  color: #c33;
  text-decoration: none;
}

#top-nav a:hover {
  text-decoration: underline;
}

#top-nav .sep {
  margin: 0 .4rem;
  color: #999;
}

/* --------------------------------------------------------- */
/* banners for blog posts */
.post-banner img {
  width: 100%;
  height: auto;
  border-radius: .5rem;
  margin-bottom: 1.5rem;
}

/* thumbnail on the blog list */
.post-card {
  margin: 2rem 0;
}
.post-card .thumb img {
  width: 100%;
  max-height: 120px;
  object-fit: cover;
  border-radius: .5rem;
  display: block;
}
.post-card h3 {
  margin: .8rem 0 .4rem;
}

/* two–column layout on wide screens */
.blog-index {
  display: flex;
  gap: 2rem;
}

/* tag column */
.blog-tags {
  flex: 0 0 220px;
  margin-left: auto;
  font-size: .9rem;
}

/* post column fills the rest */
.blog-list {
  flex: 1 1 60ch;
}

/* keep it single-column on small screens */
@media(max-width:800px){
  .blog-index   { flex-direction:column; }
  .blog-tags    { margin-left:0; }
}
