/*
 Theme Name: Lightning Child
 Template: lightning
 Version: 1.0
*/

/* --- 投稿ページタイトル（本文のh1） --- */
h1.entry-title {
  color: #666666 !important;   /* グレー */
 font-weight: bold !important;  /* 太字 */
  font-size: 22px !important;      /* デフォルトより少し小さめ（調整可） */
  margin-bottom: 16px;             /* 下余白を少し狭める（好みで調整） */
}

/* --- 前後ナビ --- */

/* 枠や背景を消す */
.vk_post.vk_post-postType-post.card,
.vk_post_body.text-body,
.vk_post_title.text-title {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* ナビ全体の配置 */
.post-navigation,
.navigation.post-navigation,
.nav-links {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin: 12px 0;
}

/* 前後リンクタイトルをグレー＆普通の太さ */
.nav-previous a,
.nav-next a {
  font-size: 14px !important;      /* 少し小さめ */
  font-weight: normal !important;  /* 太字なし */
  color: #666666 !important;
  text-decoration: underline;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* 矢印を添える */
.nav-previous a::before {
  content: "← " !important;
  color: #666666 !important;
}
.nav-next a::after {
  content: " →" !important;
  color: #666666 !important;
}
