/* Blog Post Template Styles */
* {
    box-sizing: border-box;
}

.blog-post-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
    background: #ffffff;
}

.blog-post-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
}

.blog-post-content {
    min-width: 0;
}

.blog-post-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
}

.blog-post-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.blog-category-tag {
    background: transparent;
    border: 2px solid #1a1a2e;
    color: #1a1a2e;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.blog-category-tag:hover {
    background: #1a1a2e;
    color: #ffffff;
}

.blog-post-date {
    font-size: 14px;
    color: #444;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.blog-post-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.2;
    margin-bottom: 30px;
    font-family: 'Inter', sans-serif;
}

.blog-featured-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.blog-article-content {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

.blog-article-content h1,
.blog-article-content h2,
.blog-article-content h3,
.blog-article-content h4,
.blog-article-content h5,
.blog-article-content h6 {
    color: #1a1a2e;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 20px;
}

.blog-article-content h2 {
    font-size: 32px;
}

.blog-article-content h3 {
    font-size: 26px;
}

.blog-article-content p {
    margin-bottom: 25px;
}

.blog-article-content ul,
.blog-article-content ol {
    margin-bottom: 25px;
    padding-left: 30px;
}

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

.blog-article-content blockquote {
    border-left: 4px solid #d4af37;
    padding: 20px 30px;
    margin: 30px 0;
    background: #f8f9fa;
    font-style: italic;
    font-size: 20px;
    color: #222;
}

.blog-post-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}

.blog-post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.blog-tag-link {
    background: transparent;
    border: 2px solid #1a1a2e;
    color: #1a1a2e;
    padding: 7px 16px;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.blog-tag-link:hover {
    background: #1a1a2e;
    color: #ffffff;
}

.blog-post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.blog-nav-link {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 4px solid #d4af37;
}

.blog-nav-link:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.blog-nav-label {
    font-size: 13px;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

.blog-nav-title {
    font-size: 16px;
    color: #1a1a2e;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.blog-sidebar {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 12px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.blog-sidebar-widget {
    margin-bottom: 40px;
}

.blog-sidebar-widget:last-child {
    margin-bottom: 0;
}

.blog-widget-title {
    font-size: 20px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #d4af37;
    font-family: 'Inter', sans-serif;
}

.blog-widget-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.blog-widget-list li {
    margin-bottom: 12px;
}

.blog-widget-list a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
    transition: color 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.blog-widget-list a:hover {
    color: #1a1a2e;
}

.blog-category-list a {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e6e6e6;
}

.blog-category-count {
    color: #444;
    font-size: 12px;
    font-weight: 800;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .blog-post-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .blog-post-content {
        order: 1;
    }

    .blog-sidebar {
        order: 2;
        padding: 30px 25px;
        position: static;
        top: auto;
    }
}

@media (max-width: 768px) {
    .blog-post-container {
        padding: 40px 15px;
    }

    .blog-post-title {
        font-size: 32px;
    }

    .blog-article-content {
        font-size: 16px;
    }

    .blog-article-content h2 {
        font-size: 28px;
    }

    .blog-article-content h3 {
        font-size: 22px;
    }

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

    .blog-sidebar {
        padding: 25px 20px;
    }

    .blog-post-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .blog-post-title {
        font-size: 28px;
        word-break: break-word;
    }

    .blog-featured-image {
        height: auto;
    }

    .blog-article-content {
        overflow-wrap: break-word;
        word-wrap: break-word;
    }

    .blog-article-content img,
    .blog-article-content iframe,
    .blog-article-content table {
        max-width: 100%;
        height: auto;
    }
}