/* ===== SECTION: Blog Post - Start ===== */
.blog-post-section {
    padding: 0px 0 100px 0;
}

/* Featured Image */
.blog-post-section .post-featured-image {
    margin-bottom: 40px;
    border-radius: var(--radius-medium);
    overflow: hidden;
}

.blog-post-section .featured-image {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
}

/* Post Content */
.blog-post-section .post-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.blog-post-section .post-header {
    margin-bottom: 30px;
}

.blog-post-section .h1 {
    color: var(--black);
    margin-bottom: 20px;
}

.blog-post-section .post-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--gray);
}

.blog-post-section .post-meta time,
.blog-post-section .post-meta .post-author {
    display: flex;
    align-items: center;
}

/* Post Content Styles */
.blog-post-section .post-content {
    color: var(--black);
}

.blog-post-section .post-content h2,
.blog-post-section .post-content h3,
.blog-post-section .post-content h4,
.blog-post-section .post-content h5,
.blog-post-section .post-content h6 {
    color: var(--black);
    margin: 30px 0 20px;
}

.blog-post-section .post-content p {
    margin-bottom: 20px;
}

.blog-post-section .post-content img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: var(--radius-small);
}

.blog-post-section .post-content blockquote {
    margin: 30px 0;
    padding: 20px 30px;
    background: var(--light-gray);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-small);
}

/* Post Tags */
.blog-post-section .post-tags {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

.blog-post-section .post-tags a {
    display: inline-flex;
    padding: 5px 15px;
    background: var(--light-gray);
    border-radius: var(--radius-max);
    color: var(--black);
    transition: all 0.3s ease;
}

.blog-post-section .post-tags a:hover {
    background: var(--primary);
    color: var(--primary-match);
}

/* Adaptive 1279px */
@media (max-width: 1279px) {
    .blog-post-section {
        padding: 0px 0 60px 0;
    }
    
    .blog-post-section .post-featured-image {
        margin-bottom: 30px;
    }
    
}

/* Adaptive 768px */
@media (max-width: 768px) {
    .blog-post-section {
        padding: 0px 0 50px 0;
    }
    
    .blog-post-section .post-header {
        margin-bottom: 20px;
    }
    
    .blog-post-section .post-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .blog-post-section .post-navigation {
        margin-top: 40px;
        padding-top: 30px;
    }
}
/* ===== SECTION: Blog Post - End ===== */

/* ===== SECTION: Blog Products - Start ===== */
.blog-products-section {
    padding: 60px 0;
    background: var(--light-gray);
}

.blog-products-section .h2 {
    margin-bottom: 40px;
}

.blog-products-grid {
    --products-in-col: 5;
}

@media (max-width: 1500px) {
    .blog-products-grid {
        --products-in-col: 4;
    }
}

@media (max-width: 1279px) {
    .blog-products-section {
        padding: 40px 0;
    }

    .blog-products-section .h2 {
        margin-bottom: 30px;
    }

    .blog-products-grid {
        --products-in-col: 3;
    }
}

@media (max-width: 768px) {
    .blog-products-grid {
        --products-in-col: 2;
    }
}
.blog-products-section .loadmore-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}
/* ===== SECTION: Blog Products - End ===== */

/* ===== SECTION: Related Posts - Start ===== */
.related-posts-section {
    padding: 60px 0;
}

.related-posts-section .h2 {
    margin-bottom: 40px;
}

@media (max-width: 1279px) {
    .related-posts-section {
        padding: 40px 0;
    }
    
    .related-posts-section .h2 {
        margin-bottom: 30px;
    }
}
/* ===== SECTION: Related Posts - End ===== */