/* ========================================
   BLOG ARCHIVE
======================================== */
.blog-header {
    padding: var(--section-padding) 40px 60px;
    background: var(--black);
    text-align: center;
}

.blog-header h1 {
    font-family: var(--font-heading);
    font-size: clamp(40px, 6vw, 64px);
    color: var(--white);
    letter-spacing: 2px;
}

.blog-list {
    max-width: 760px;
    margin: 0 auto;
    padding: 60px 40px var(--section-padding);
}

.blog-list-item {
    padding: 32px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

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

.blog-list-item:last-child {
    border-bottom: none;
}

.blog-list-item a {
    color: inherit;
    display: block;
}

.blog-list-item a:hover h2 {
    color: var(--accent);
}

.blog-list-item h2 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--black);
    margin-bottom: 6px;
    transition: color 0.2s ease;
    line-height: 1.3;
}

.blog-list-item time {
    font-size: 14px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-list-item p {
    color: var(--gray-dark);
    margin-top: 8px;
    font-size: 16px;
    line-height: 1.6;
}

/* ========================================
   BLOG POST
======================================== */
.post-header {
    padding: var(--section-padding) 40px 40px;
    background: var(--black);
}

.post-header-inner {
    max-width: 720px;
    margin: 0 auto;
}

.post-header h1 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 48px);
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 16px;
}

.post-header time {
    font-size: 14px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 40px var(--section-padding);
}

.post-content h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--black);
    margin-top: 48px;
    margin-bottom: 16px;
    line-height: 1.3;
}

.post-content h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--black);
    margin-top: 36px;
    margin-bottom: 12px;
    line-height: 1.3;
}

.post-content p {
    color: var(--gray-dark);
    margin-bottom: 20px;
    line-height: 1.8;
}

.post-content ul,
.post-content ol {
    color: var(--gray-dark);
    margin-bottom: 20px;
    padding-left: 24px;
    line-height: 1.8;
    list-style: disc;
}

.post-content ol {
    list-style: decimal;
}

.post-content li {
    margin-bottom: 8px;
}

.post-content blockquote {
    border-left: 3px solid var(--accent);
    padding-left: 20px;
    margin: 32px 0;
    font-style: italic;
    color: var(--gray);
}

.post-content a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.post-content a:hover {
    color: var(--accent-dark);
}

.post-content strong {
    color: var(--black);
    font-weight: 600;
}

.post-nav {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 40px 60px;
}

.post-nav a {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    color: var(--accent);
}

.post-nav a:hover {
    color: var(--accent-dark);
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 900px) {
    .blog-header,
    .post-header {
        padding-left: 24px;
        padding-right: 24px;
    }

    .blog-list,
    .post-content,
    .post-nav {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (max-width: 600px) {
    .blog-list-item h2 {
        font-size: 19px;
    }
}
