/* ========== BLOG POST ========== */
.blog-post-section {
    padding: 80px 40px;
    background: #fff;
}

.blog-post-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
}

/* Main Content */
.blog-post-main {
    flex: 1;
}

.blog-post-category {
    display: inline-block;
    background: #c9a84c;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 6px 16px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.blog-post-title {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 400;
    color: #222;
    margin-bottom: 16px;
    line-height: 1.3;
}

.blog-post-meta {
    display: flex;
    gap: 24px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.blog-post-meta span {
    font-size: 13px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-post-meta i {
    color: #c9a84c;
}

.blog-post-hero-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    margin-bottom: 40px;
    border: 3px solid #c9a84c;
}

/* Table of Contents */
.blog-toc,
.blog-post-toc {
    background: #f9f9f9;
    border: 1px solid #eee;
    padding: 36px 40px;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.blog-toc::before,
.blog-post-toc::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #c9a84c;
}

.blog-toc::after,
.blog-post-toc::after {
    content: '\f0ca';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 60px;
    color: rgba(201, 168, 76, 0.08);
}

.blog-toc h4,
.blog-post-toc h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 400;
    color: #222;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.blog-toc h4::before,
.blog-post-toc h3::before {
    content: '\f03a';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 18px;
}

.blog-toc ol,
.blog-post-toc ul {
    list-style: none;
    counter-reset: toc;
}

.blog-toc ol li,
.blog-post-toc ul li {
    counter-increment: toc;
    margin-bottom: 0;
}

.blog-toc ol li a,
.blog-post-toc ul li a {
    font-size: 15px;
    color: #555;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    border-bottom: 1px solid #e5e5e5;
    position: relative;
}

.blog-toc ol li:last-child a,
.blog-post-toc ul li:last-child a {
    border-bottom: none;
}

.blog-toc ol li a::before,
.blog-post-toc ul li a::before {
    content: counter(toc);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid rgba(201, 168, 76, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #c9a84c;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.blog-toc ol li a:hover,
.blog-post-toc ul li a:hover {
    color: #c9a84c;
    padding-left: 24px;
    background: rgba(201, 168, 76, 0.08);
}

.blog-toc ol li a:hover::before,
.blog-post-toc ul li a:hover::before {
    background: #c9a84c;
    color: #000;
    border-color: #c9a84c;
}

/* Post Content */
.blog-post-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 400;
    color: #222;
    margin: 40px 0 16px;
    padding-top: 20px;
}

.blog-post-content p {
    font-size: 15px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 16px;
}

.blog-post-content ul {
    margin: 16px 0;
    padding-left: 0;
    list-style: none;
}

.blog-post-content ul li {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
}

.blog-post-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c9a84c;
}

.blog-post-content strong {
    color: #333;
}

/* Post CTA */
.blog-post-cta {
    background: #000;
    padding: 50px 40px;
    text-align: center;
    margin-top: 50px;
}

.blog-post-cta h3 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 12px;
}

.blog-post-cta p {
    font-size: 15px;
    color: #aaa;
    margin-bottom: 24px;
}

.blog-post-cta-btn {
    display: inline-block;
    padding: 14px 40px;
    background: #c9a84c;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.blog-post-cta-btn:hover {
    background: #b8953e;
    transform: translateY(-2px);
}

/* Tags */
.blog-post-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.blog-post-tags a {
    padding: 6px 16px;
    border: 1px solid #ddd;
    font-size: 12px;
    color: #666;
    transition: all 0.3s ease;
}

.blog-post-tags a:hover {
    border-color: #c9a84c;
    color: #c9a84c;
}

/* Sidebar (reuse blog sidebar) */
