/* 1) Pull the header flush to the very top (remove the gap above it) */
html, body { margin-top: 0 !important; }
.wp-site-blocks { margin-top: 0 !important; padding-top: 0 !important; }

/* 2) Add breathing room between the header and the page content */
.wp-block-post-content { margin-top: 36px !important; }
/* Header flush to top */
html, body { margin-top: 0 !important; }
.wp-site-blocks { margin-top: 0 !important; padding-top: 0 !important; }

/* Gap between header and content */
.wp-block-post-content { margin-top: 36px !important; }

/* Space between header menu links */
.wp-block-navigation__container { gap: 30px !important; }
/* ===== Blog listing — branded cards ===== */
.wp-block-post-template{
  display:grid !important;
  grid-template-columns:repeat(auto-fill,minmax(320px,1fr));
  gap:28px;
  list-style:none;
}
.wp-block-post-template > li.wp-block-post{
  background:#fff;
  border:1px solid rgba(10,22,40,0.10);
  border-radius:14px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  transition:box-shadow .2s ease, transform .2s ease;
}
.wp-block-post-template > li.wp-block-post:hover{
  box-shadow:0 12px 30px rgba(10,22,40,0.12);
  transform:translateY(-3px);
}
.wp-block-post-featured-image{margin:0 !important;}
.wp-block-post-featured-image img{
  width:100%; height:200px; object-fit:cover; display:block;
}
.wp-block-post-title{
  font-family:'Playfair Display',Georgia,serif !important;
  font-size:20px !important; line-height:1.25 !important;
  margin:0 !important; padding:18px 22px 6px !important;
}
.wp-block-post-title a{ color:#0A1628 !important; text-decoration:none; }
.wp-block-post-title a:hover{ color:#C9A84C !important; }
.wp-block-post-date,
.wp-block-post-terms{
  padding:0 22px !important; margin:0 !important;
  font-size:13px !important; color:#8a8a8a !important;
}
.wp-block-post-date a, .wp-block-post-terms a{ color:#8a8a8a !important; text-decoration:none; }
.wp-block-post-excerpt{
  padding:10px 22px 22px !important; margin:0 !important;
  color:#5a5a5a !important; font-size:15px !important; line-height:1.6 !important;
}
.wp-block-post-excerpt__more-link{
  color:#C9A84C !important; font-weight:700; text-decoration:none;
}
/* Pagination */
.wp-block-query-pagination{ margin-top:36px !important; gap:14px; }
.wp-block-query-pagination a{ color:#0A1628 !important; font-weight:600; }
.wp-block-query-pagination a:hover{ color:#C9A84C !important; }
/* Fix: align first blog card with the rest of its row */
.wp-block-post-template > li.wp-block-post{
  margin-top:0 !important;
  margin-block-start:0 !important;
}