/* public/style.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap');

:root {
    --primary: #2563eb;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --bg: #ffffff;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: var(--text-main);
    background-color: #f8fafc;
    margin: 0;
    padding: 0;
}

/* 記事全体のコンテナ */
.container {
    max-width: 720px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    background: var(--bg);
    min-height: 100vh;
    box-shadow: 0 0 50px rgba(0,0,0,0.02);
}

/* 記事タイトル */
h1 {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 1.1;
    margin-bottom: 2rem;
}

/* AIが書く見出し ## */
h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 3rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f1f5f9;
}

/* 本文 */
p { margin-bottom: 1.5rem; font-size: 1.1rem; }

/* リンク */
a { color: var(--primary); text-decoration: none; font-weight: 600; }
a:hover { text-decoration: underline; }

/* 日付 */
.date {
    text-transform: uppercase;
    tracking: 0.1em;
    font-weight: 800;
    color: var(--primary);
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}
