/* Blog Styles - Mobile-first */

/* Blog Navigation */
.blog-nav {
    background-color: #FAFAFA;
    border-bottom: 1px solid #E0E0E0;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.blog-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #2A2A2A;
    font-weight: 700;
    font-size: 18px;
}

.blog-nav-logo img {
    display: block;
}

.blog-nav-home {
    color: #2A2A2A;
    text-decoration: none;
    font-size: 14px;
    padding: 6px 12px;
    border-radius: 8px;
    transition: background-color 0.2s;
}

.blog-nav-home:hover {
    background-color: #F5F5F5;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
    margin-bottom: 16px;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #2A2A2A;
    text-decoration: underline;
}

.breadcrumb-separator {
    color: #999;
}

.breadcrumb-current {
    color: #2A2A2A;
}

/* Blog Index Header */
.blog-index-header {
    background-color: #FAFAFA;
    padding: 40px 0;
    text-align: center;
}

.blog-index-title {
    font-size: 32px;
    font-weight: 700;
    color: #2A2A2A;
    margin: 0 0 8px 0;
}

.blog-index-subtitle {
    font-size: 16px;
    color: #666;
    margin: 0;
}

/* Blog Index Main */
.blog-index-main {
    padding: 40px 0;
    background-color: #FAFAFA;
}

.blog-posts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

/* Blog Post Card */
.blog-post-card {
    background-color: #FFFFFF;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.blog-post-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #2A2A2A;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.blog-post-card-title a {
    color: #2A2A2A;
    text-decoration: none;
}

.blog-post-card-excerpt {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 16px 0;
}

.blog-post-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #999;
    margin-bottom: 16px;
}

.blog-post-card-separator {
    color: #CCC;
}

.blog-post-card-link {
    display: inline-block;
    color: #2A2A2A;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    padding: 8px 16px;
    border: 2px solid #2A2A2A;
    border-radius: 8px;
}

/* Blog Article */
.blog-article {
    background-color: #FAFAFA;
}

.blog-header {
    background-color: #FFFFFF;
    padding: 40px 0;
    border-bottom: 1px solid #E0E0E0;
}

.blog-title {
    font-size: 32px;
    font-weight: 700;
    color: #2A2A2A;
    margin: 0 0 16px 0;
    line-height: 1.2;
    max-width: 800px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
    flex-wrap: wrap;
}

.blog-meta-separator {
    color: #CCC;
}

.reading-time {
    color: #999;
}

/* Blog Content */
.blog-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 16px;
}

.blog-body {
    background-color: #FFFFFF;
    padding: 40px 24px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.blog-lead {
    font-size: 18px;
    font-weight: 400;
    color: #2A2A2A;
    line-height: 1.6;
    margin: 0 0 24px 0;
}

.blog-body p {
    font-size: 16px;
    line-height: 1.8;
    color: #2A2A2A;
    margin: 0 0 20px 0;
}

.blog-body ul,
.blog-body ol {
    font-size: 16px;
    line-height: 1.8;
    color: #2A2A2A;
    margin: 0 0 20px 0;
    padding-left: 24px;
}

.blog-body li {
    font-size: 16px;
    line-height: 1.8;
    color: #2A2A2A;
    margin: 0 0 8px 0;
}

.blog-body a {
    font-size: 16px;
    color: #2A2A2A;
    text-decoration: underline;
}

.blog-body strong {
    font-size: 16px;
    font-weight: 700;
    color: #2A2A2A;
}

.blog-body h2 {
    font-size: 24px;
    font-weight: 700;
    color: #2A2A2A;
    margin: 40px 0 20px 0;
    line-height: 1.3;
}

.blog-body h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2A2A2A;
    margin: 32px 0 16px 0;
    line-height: 1.3;
}

.blog-conclusion {
    font-size: 16px;
    font-weight: 400;
    color: #2A2A2A;
    margin: 40px 0 0 0;
    padding: 24px;
    background-color: #F5F5F5;
    border-radius: 8px;
    border-left: 4px solid #FFD700;
}

/* Blog Footer */
.blog-footer {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #E0E0E0;
}

.blog-cta {
    text-align: center;
    padding: 32px;
    background-color: #F5F5F5;
    border-radius: 16px;
    margin-bottom: 32px;
}

.blog-cta h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2A2A2A;
    margin: 0 0 8px 0;
}

.blog-cta p {
    font-size: 16px;
    color: #666;
    margin: 0 0 20px 0;
}

.blog-cta-button {
    display: inline-block;
    background-color: #2A2A2A;
    color: #FAFAFA;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    padding: 12px 24px;
    border-radius: 8px;
    transition: background-color 0.2s;
}

.blog-cta-button:hover {
    background-color: #FFD700;
    color: #2A2A2A;
}

.blog-share {
    text-align: center;
}

.blog-share p {
    font-size: 14px;
    color: #666;
    margin: 0 0 12px 0;
}

.blog-share-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.blog-share-links a {
    color: #2A2A2A;
    text-decoration: none;
    font-size: 14px;
    padding: 6px 12px;
    border-radius: 8px;
    transition: background-color 0.2s;
}

.blog-share-links a:hover {
    background-color: #F5F5F5;
}

.blog-share-separator {
    color: #CCC;
}

/* Related Articles */
.blog-related-articles {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #E0E0E0;
}

.blog-related-title {
    font-size: 24px;
    font-weight: 700;
    color: #2A2A2A;
    margin: 0 0 24px 0;
}

.blog-related-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.blog-related-item {
    display: block;
    background-color: #F5F5F5;
    border-radius: 12px;
    padding: 20px;
    text-decoration: none;
    color: #2A2A2A;
    transition: background-color 0.2s;
}

.blog-related-item:hover {
    background-color: #E8E8E8;
}

.blog-related-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: #2A2A2A;
    margin: 0 0 8px 0;
}

.blog-related-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Tablet and up */
@media (min-width: 768px) {
    .blog-index-title {
        font-size: 40px;
    }
    
    .blog-index-subtitle {
        font-size: 18px;
    }
    
    .blog-title {
        font-size: 36px;
    }
    
    .blog-body {
        padding: 60px 48px;
    }
    
    .blog-lead {
        font-size: 20px;
    }
    
    .blog-body p {
        font-size: 16px;
    }
    
    .blog-body ul,
    .blog-body ol {
        font-size: 16px;
    }
    
    .blog-body li {
        font-size: 16px;
    }
    
    .blog-body a {
        font-size: 16px;
    }
    
    .blog-body strong {
        font-size: 16px;
    }
    
    .blog-body h2 {
        font-size: 28px;
    }
    
    .blog-body h3 {
        font-size: 22px;
    }
    
    .blog-conclusion {
        font-size: 17px;
    }
}

/* Desktop */
@media (min-width: 992px) {
    .blog-posts {
        grid-template-columns: 1fr;
    }
    
    .blog-post-card {
        padding: 32px;
    }
    
    .blog-post-card-title {
        font-size: 28px;
    }
    
    .blog-related-list {
        grid-template-columns: 1fr 1fr;
    }
    
    .blog-title {
        font-size: 40px;
    }
    
    .blog-lead {
        font-size: 21px;
    }
    
    .blog-body p {
        font-size: 17px;
    }
    
    .blog-body ul,
    .blog-body ol {
        font-size: 17px;
    }
    
    .blog-body li {
        font-size: 17px;
    }
    
    .blog-body a {
        font-size: 17px;
    }
    
    .blog-body strong {
        font-size: 17px;
    }
    
    .blog-body h2 {
        font-size: 30px;
    }
    
    .blog-body h3 {
        font-size: 24px;
    }
    
    .blog-conclusion {
        font-size: 18px;
    }
}

