/* ══════════════════════════════════════
   BLOG — styles articles
   ══════════════════════════════════════ */

/* Article prose */
.art-body {
    padding: 0 64px 80px;
    max-width: 860px;
    margin: 0 auto;
}

.art-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(247,246,243,0.4);
    margin-bottom: 60px;
}

.art-meta-sep { opacity: 0.3; }

.art-body h2 {
    font-size: clamp(20px, 3vw, 26px);
    font-weight: 300;
    letter-spacing: -0.01em;
    color: var(--white);
    margin-top: 64px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.art-body h3 {
    font-size: 17px;
    font-weight: 400;
    color: var(--white);
    margin-top: 36px;
    margin-bottom: 12px;
}

.art-body p {
    font-size: 16px;
    color: rgba(247,246,243,0.7);
    line-height: 1.8;
    margin-bottom: 20px;
}

.art-body p strong {
    color: var(--white);
    font-weight: 400;
}

.art-body ul, .art-body ol {
    padding-left: 24px;
    margin-bottom: 20px;
}

.art-body li {
    font-size: 16px;
    color: rgba(247,246,243,0.7);
    line-height: 1.8;
    margin-bottom: 8px;
}

.art-body a {
    color: var(--violet-l);
    text-decoration: none;
    transition: opacity 0.2s;
}
.art-body a:hover { opacity: 0.75; }

.art-highlight {
    border-left: 2px solid var(--violet);
    padding: 20px 24px;
    margin: 32px 0;
    background: rgba(124,58,237,0.06);
    border-radius: 0 8px 8px 0;
}

.art-highlight p {
    margin-bottom: 0;
    font-size: 15px;
}

/* Blog listing */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.blog-card {
    display: block;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
    padding: 28px;
    transition: border-color 0.2s, background 0.2s;
}

.blog-card:hover {
    border-color: rgba(124,58,237,0.4);
    background: rgba(124,58,237,0.04);
}

.blog-card-tag {
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--violet-l);
    margin-bottom: 14px;
}

.blog-card-title {
    font-size: 18px;
    font-weight: 300;
    color: var(--white);
    line-height: 1.4;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
}

.blog-card-excerpt {
    font-size: 14px;
    color: rgba(247,246,243,0.5);
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-card-meta {
    font-size: 12px;
    color: rgba(247,246,243,0.3);
    letter-spacing: 0.1em;
}

/* Responsive */
@media (max-width: 768px) {
    .art-body {
        padding-left: 24px;
        padding-right: 24px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }
}
