/*
Theme Name: Xwrite child
Version: 2.0.0
Template: xwrite
*/
/* 記事一覧（アーカイブ・ブログページ）の背景を黒に */
.blog,
.archive,
.home .post-list {
    background-color: #000 !important;
}

/* 記事カード（個々の投稿ボックス）の背景も黒にしたい場合 */
.post,
.post-list article {
    background-color: #000 !important;
    color: #fff !important;
}

/* タイトルやテキストが読めるように文字色を白に */
.post a,
.post h2,
.post h3,
.post p {
    color: #fff !important;
}
/* トップページのタイトルを強制的に非表示 */
.home h1.entry-title,
.home .entry-title,
.home .page-title,
.home h1,
.home .post-title {
    display: none !important;
}

/* タイトルエリアを非表示にしつつ、余白もゼロに */
.page-header {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
