/*
 Theme Name: Nephilim
 Theme URI: https://example.com/nephilim
 Author: （あなたの名前）
 Author URI: https://example.com
 Description: フルスクラッチで構築する WordPress テーマ「Nephilim」。
 Version: 1.0.0
 License: GNU General Public License v2 or later
 License URI: https://www.gnu.org/licenses/gpl-2.0.html
 Text Domain: nephilim
 Tags: custom-theme, full-scratch, blog, minimal, responsive
*/

/* =========================================
   ホーム（投稿一覧）カードレイアウト
   ====================================== */

/* 一覧全体の幅・余白 */
.nephilim-home-wrapper {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 20px;
}

/* 2カラムレイアウト（スマホは1カラム） */
.nephilim-home-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

@media (max-width: 768px) {
    .nephilim-home-grid {
        grid-template-columns: 1fr;
    }
}
