/* Blog Detail Page Styles */

:root {
    /* Additional color variables specific to blog */
    --blog-accent: #3E63ED;
    --light-gray: #f8f9fa;
    --link-blue: #007bff;
    --tag-bg: #f0f4ff;
}

/* Blog Header Styles */
.blog-header {
    background-color: var(--light-gray);
    padding: 60px 0;
    text-align: center;
}

.blog-header .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-category {
    display: inline-block;
    padding: 6px 15px;
    background-color: #7bbe41;
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 3px;
    margin-bottom: 20px;
}

.blog-header h1 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.3;
}

.blog-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.blog-author {
    display: flex;
    align-items: center;
}

.blog-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}

.blog-author span {
    font-weight: 500;
    color: var(--text-medium);
}

.blog-date {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Blog Content Styles */
.blog-content-section {
    padding: 60px 0;
}

.blog-content-section .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-content {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.featured-image {
    margin-bottom: 30px;
}

.featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-text {
    padding: 0 40px 40px;
}

.blog-text h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.4;
}

.blog-text h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin: 30px 0 20px;
    font-weight: 600;
}

.blog-text p {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 25px;
}

.blog-text a {
    color: var(--blog-accent);
    text-decoration: underline;
    transition: color 0.3s;
}

.blog-text a:hover {
    color: var(--primary-dark);
}

/* Blog Tags Styles */
.blog-tags {
    padding: 30px 40px;
    border-top: 1px solid var(--border-light);
}

.blog-tags h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tags-list a {
    display: inline-block;
    padding: 6px 15px;
    background-color: var(--tag-bg);
    color: var(--text-medium);
    font-size: 0.85rem;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s;
}

.tags-list a:hover {
    background-color: var(--blog-accent);
    color: white;
}

/* Check Out Section */
.check-out {
    background-color: var(--primary-color);
    padding: 30px 40px;
    text-align: center;
}

.check-out h2 {
    color: white;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .blog-header {
        padding: 40px 0;
    }
    
    .blog-header h1 {
        font-size: 2rem;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 15px;
    }
    
    .blog-text {
        padding: 0 20px 30px;
    }
    
    .blog-text h2 {
        font-size: 1.5rem;
    }
    
    .blog-text h3 {
        font-size: 1.3rem;
    }
    
    .blog-tags {
        padding: 20px;
    }
}

@media screen and (max-width: 480px) {
    .blog-header h1 {
        font-size: 1.6rem;
    }
    
    .blog-text h2 {
        font-size: 1.3rem;
    }
    
    .check-out h2 {
        font-size: 1.4rem;
    }
}



