/*
Theme Name: ListingHive-okurulink
Template: listinghive
*/


/* リスティングを追加ボタンを非表示 */
.hp-menu__item--listing-submit {
  display: none !important;
}

/* ユーザーメニューを非表示 */
.menu-item--user-account {
  display: none !important;
}

/* サインインメニューを非表示 */
.header-navbar__menu ul li.menu-item--user-login {
  display: none !important;
}
.header-navbar__burger ul li.menu-item--user-login {
  display: none !important;
}


/* フッターのメニューを非表示 */
.footer-navbar {
  display: none !important;
}


/* セクション見出しバー */
.section-heading {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 20px;
  padding: 8px 0;
  border-bottom: 3px solid #FF8A24;
  background: none;
  color: inherit;
  border-radius: 0;
}


/* ブログ3列 → モバイルは1列、タブレットは2列 */
@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}


/* POST下部の、前後ナビゲーションの上マージン */
.post-navbar {
  margin-top: 70px !important;
}

