/* ── TypePets Blog Styles ──────────────────────────────── */
.blog-list { max-width: 760px; margin: 0 auto; padding: 120px 24px 80px; }
.blog-list h1 { font-family: var(--font-display); font-size: 2rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.blog-list .blog-desc { color: var(--text-muted); margin-bottom: 40px; }

.blog-card {
    display: block;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 28px;
    margin-bottom: 20px;
    text-decoration: none;
    color: var(--text);
    transition: all 0.2s;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.blog-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(74, 144, 217, 0.1);
}
.blog-card h2 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; margin-bottom: 8px; }
.blog-card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.6; margin-bottom: 8px; }
.blog-card .blog-meta { font-size: 0.8rem; color: var(--text-muted); font-weight: 600; }

/* Article page */
.article { max-width: 720px; margin: 0 auto; padding: 120px 24px 80px; }
.article h1 { font-family: var(--font-display); font-size: 2rem; font-weight: 700; line-height: 1.3; margin-bottom: 8px; color: var(--text); }
.article .article-meta { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 36px; font-weight: 600; }
.article h2 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; margin-top: 40px; margin-bottom: 14px; color: var(--text); }
.article h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; margin-top: 28px; margin-bottom: 10px; color: var(--text); }
.article p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.8; margin-bottom: 16px; }
.article ul, .article ol { padding-left: 24px; margin-bottom: 16px; }
.article li { color: var(--text-muted); font-size: 0.95rem; line-height: 1.8; margin-bottom: 8px; }
.article a { color: var(--accent); text-decoration: none; font-weight: 600; }
.article a:hover { text-decoration: underline; }
.article strong { color: var(--text); }
.article blockquote {
    border-left: 3px solid var(--accent);
    padding: 12px 20px;
    margin: 20px 0;
    background: var(--surface-2);
    border-radius: 0 var(--radius) var(--radius) 0;
}
.article blockquote p { margin-bottom: 0; }
.article .cta-box {
    background: var(--surface);
    border: 1px solid var(--accent);
    border-radius: var(--radius);
    padding: 24px 28px;
    margin: 32px 0;
    text-align: center;
    box-shadow: 0 2px 12px rgba(74, 144, 217, 0.08);
}
.article .cta-box p { color: var(--text); font-weight: 600; margin-bottom: 12px; }
.article .cta-box a {
    display: inline-block;
    background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2));
    color: #fff;
    padding: 10px 24px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
}
.article .cta-box a:hover { text-decoration: none; opacity: 0.9; }
