/* BLOG V2 GLOBAL STYLES */
:root {
    --blog-gold: #b38e5d;
    --blog-forest: #001a12;
    --blog-bg: #fcfaf7;
}

.blog-v2-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- LISTING PAGE --- */
.blog-hero {
    background: var(--blog-forest);
    padding: 100px 0 80px;
    text-align: center;
    color: #fff;
    margin-bottom: 60px;
}

.blog-hero__subtitle {
    color: var(--blog-gold);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: block;
}

.blog-hero__title {
    font-family: var(--font-display), serif;
    font-size: 3.5rem;
    line-height: 1.1;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
}

/* Featured Post on Archive */
.blog-feat-v2 {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 60px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.05);
}

.blog-feat-v2__img {
    height: 450px;
    background-size: cover;
    background-position: center;
}

.blog-feat-v2__content {
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Grid for rest */
.blog-grid-v2-archive {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.blog-card-v2-archive {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card-v2-archive:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,26,18,0.08);
    border-color: var(--blog-gold);
}

.blog-card-v2-archive__img {
    height: 240px;
    background-size: cover;
    background-position: center;
}

.blog-card-v2-archive__body {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-v2-archive__cat {
    color: var(--blog-gold);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.blog-card-v2-archive__title {
    font-family: var(--font-display), serif;
    font-size: 1.4rem;
    line-height: 1.3;
    color: var(--blog-forest);
    margin-bottom: 15px;
    flex: 1;
}

.blog-card-v2-archive__meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.8rem;
    color: #666;
}

/* Pagination */
.blog-pagination {
    text-align: center;
    margin-bottom: 100px;
}

.blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    margin: 0 5px;
    border-radius: 50%;
    background: #fff;
    color: var(--blog-forest);
    text-decoration: none;
    border: 1px solid rgba(0,0,0,0.1);
    font-weight: 600;
    transition: all 0.3s;
}

.blog-pagination .page-numbers.current {
    background: var(--blog-forest);
    color: #fff;
}

.blog-pagination .page-numbers:hover:not(.current) {
    border-color: var(--blog-gold);
    color: var(--blog-gold);
}

/* --- DETAIL PAGE --- */
.blog-single-header {
    padding: 80px 0 60px;
    text-align: center;
}

.blog-single-title {
    font-family: var(--font-display), serif;
    font-size: 3.5rem;
    line-height: 1.1;
    max-width: 900px;
    margin: 0 auto 30px;
    color: var(--blog-forest);
    font-weight: 400;
}

.blog-single-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    border-top: 1px solid rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding: 15px 0;
    max-width: 400px;
    margin: 0 auto 50px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #888;
    text-transform: uppercase;
}

.blog-single-feat-img {
    width: 100%;
    max-width: 1000px;
    height: 500px;
    border-radius: 40px;
    object-fit: cover;
    margin: 0 auto 60px;
    display: block;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.blog-single-content {
    max-width: 800px;
    margin: 0 auto 80px;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
}

.blog-single-content h2, .blog-single-content h3 {
    font-family: var(--font-display), serif;
    color: var(--blog-forest);
    margin: 2.5rem 0 1.2rem;
}

.blog-single-content p {
    margin-bottom: 1.5rem;
}

.blog-single-content blockquote {
    background: #f8f5f0;
    border-left: 5px solid var(--blog-gold);
    padding: 40px;
    margin: 40px 0;
    font-family: var(--font-display), serif;
    font-style: italic;
    font-size: 1.6rem;
    color: var(--blog-forest);
}

.blog-single-content img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    margin: 2rem 0;
}

.blog-single-content iframe {
    max-width: 100%;
    border-radius: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
    .blog-feat-v2 { grid-template-columns: 1fr; }
    .blog-feat-v2__img { height: 350px; }
    .blog-feat-v2__content { padding: 40px 30px; }
    .blog-grid-v2-archive { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .blog-grid-v2-archive { grid-template-columns: 1fr; }
    .blog-hero { padding: 60px 0; }
    .blog-hero__title, .blog-single-title { font-size: 2.2rem; }
    .blog-single-feat-img { height: 300px; border-radius: 20px; }
    .blog-single-content { font-size: 1.1rem; }
    .blog-single-content blockquote { padding: 30px; font-size: 1.3rem; }
}

/* Blog List Page Specific */
.blog-list-page {
    background: var(--blog-bg);
    min-height: 100vh;
}

.blog-list-wrapper {
    margin-top: -40px; /* Pull content up over hero slightly */
    position: relative;
    z-index: 2;
}

.blog-feat-v2__content a:hover {
    color: var(--blog-gold);
}

.blog-feat-v2__img {
    transition: transform 0.6s ease;
}

.blog-feat-v2:hover .blog-feat-v2__img {
    transform: scale(1.03);
}

@media (max-width: 768px) {
    .blog-list-wrapper {
        margin-top: -20px;
    }
}
