/* ===================================
   BLOG STYLES
   =================================== */

/* ---- BLOG LISTING ---- */
.blog-hero {
    background: var(--bg-primary);
    padding: 140px 0 60px;
    text-align: left;
    border-bottom: 1px solid var(--border-subtle);
}

.blog-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    letter-spacing: -0.03em;
}

.blog-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.6;
}

.blog-grid {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.blog-card {
    display: block;
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-subtle);
    text-decoration: none;
    transition: all 0.2s ease;
}

.blog-card:first-child {
    padding-top: 0;
}

.blog-card:hover {
    opacity: 0.8;
}

.blog-card-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    background: var(--bg-secondary);
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    margin-bottom: 0.75rem;
}

.blog-card-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.blog-card-excerpt {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.blog-card-read {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* ---- BLOG ARTICLE ---- */
.article-hero {
    background: var(--bg-primary);
    padding: 140px 0 60px;
    text-align: left;
    border-bottom: 1px solid var(--border-subtle);
}

.article-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    background: var(--bg-secondary);
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.article-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    line-height: 1.15;
    max-width: 700px;
}

.article-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.article-content p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.article-content h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 3rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.article-content h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.article-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

.article-content blockquote {
    border-left: 3px solid var(--text-muted);
    padding: 1.25rem 1.5rem;
    margin: 2rem 0;
    background: var(--bg-secondary);
    border-radius: 0 8px 8px 0;
}

.article-content blockquote p {
    margin-bottom: 0;
    font-style: italic;
}

.article-content ul,
.article-content ol {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.article-content li {
    margin-bottom: 0.5rem;
}

.article-footer {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem 3rem;
    border-top: 1px solid var(--border-subtle);
    padding-top: 2rem;
}

.article-footer a {
    color: var(--text-primary);
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.article-footer a:hover {
    opacity: 0.7;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
    .blog-hero,
    .article-hero {
        padding: 120px 0 40px;
    }

    .blog-grid {
        padding: 2rem 1.25rem;
    }

    .article-content {
        padding: 2rem 1.25rem;
    }

    .blog-card-title {
        font-size: 1.2rem;
    }
}
