.blog-featured-image {
    width: 100%;
    margin-bottom: 2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.blog-featured-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 400px;
}

@media (max-width: 768px) {
    .blog-featured-image {
        margin-bottom: 1.5rem;
        border-radius: 8px;
    }
}

/* Breadcrumb Styling */
.breadcrumb {
    margin-bottom: 1.5rem;
}

.breadcrumb ol {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin: 0 0.5rem;
    color: #999;
}

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

.breadcrumb a:hover {
    text-decoration: underline;
}

/* FAQ Styling */
.faq-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.faq-item {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.faq-item h3 {
    margin: 0 0 0.5rem 0;
    color: #333;
    font-size: 1.1rem;
}

.faq-item p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* Ad Container Styling */
.ad-container {
    margin: 2rem 0;
    padding: 1rem;
    background: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

@media (max-width: 768px) {
    .breadcrumb {
        font-size: 0.8rem;
    }
    
    .faq-section {
        margin-top: 2rem;
    }
    
    .ad-container {
        margin: 1.5rem 0;
        padding: 0.5rem;
    }
}

/* Social Sharing */
.social-share {
    margin: 1.5rem 0;
    padding: 1rem;
    background: #f0f8ff;
    border-radius: 8px;
    border-left: 4px solid #0066cc;
}

.social-share span {
    font-weight: 600;
    margin-right: 1rem;
    color: #333;
}

.social-share a {
    display: inline-block;
    margin-right: 1rem;
    padding: 0.5rem 1rem;
    background: #0066cc;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.social-share a:hover {
    background: #0052a3;
}

@media (max-width: 768px) {
    .social-share {
        text-align: center;
    }
    
    .social-share span {
        display: block;
        margin-bottom: 0.5rem;
    }
    
    .social-share a {
        margin: 0.25rem;
    }
}

/* Related Articles */
.related-articles {
    margin: 3rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.related-articles h3 {
    margin: 0 0 1.5rem 0;
    color: #333;
    font-size: 1.5rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.related-item {
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.related-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.related-item h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
}

.related-item h4 a {
    color: #0066cc;
    text-decoration: none;
}

.related-item h4 a:hover {
    text-decoration: underline;
}

.related-item p {
    margin: 0;
    color: #666;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .related-articles {
        margin: 2rem 0;
        padding: 1.5rem;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .related-item {
        padding: 1rem;
    }
}