/* Blog Post Specific Styles */

/* Featured Image Styles */
.featured-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.featured-image:hover {
    transform: scale(1.02);
}

.related-featured-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.related-featured-image:hover {
    transform: scale(1.05);
}

.blog-featured-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.blog-featured-image:hover {
    transform: scale(1.05);
}
.blog-post-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 0 80px;
    text-align: center;
    color: white;
    position: relative;
}

.blog-post-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.blog-post-header .container {
    position: relative;
    z-index: 2;
}

.blog-post-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.blog-post-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-post-meta i {
    color: #f59e0b;
}

.blog-post-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.blog-post-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.blog-post-content {
    padding: 80px 0;
    background: #f8fafc;
}

.blog-post-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.blog-post-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.blog-post-image i {
    font-size: 6rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.blog-post-text {
    line-height: 1.8;
    color: #374151;
    font-size: 1.1rem;
}

.blog-post-text h2 {
    color: #1e293b;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
}

.blog-post-text h3 {
    color: #1e293b;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
}

.blog-post-text p {
    margin-bottom: 1.5rem;
}

.blog-post-text ul, .blog-post-text ol {
    margin: 1.5rem 0;
    padding-right: 2rem;
}

.blog-post-text li {
    margin-bottom: 0.8rem;
}

.blog-post-text blockquote {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    position: relative;
}

.blog-post-text blockquote::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: -10px;
    right: 20px;
    opacity: 0.3;
}

.blog-post-text blockquote p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
}

.blog-post-tags {
    display: flex;
    gap: 1rem;
    margin: 3rem 0 2rem;
    flex-wrap: wrap;
}

.blog-tag {
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-tag:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
}

.blog-post-share {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 15px;
}

.share-text {
    font-weight: 600;
    color: #374151;
}

.share-buttons {
    display: flex;
    gap: 0.8rem;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-btn.instagram {
    background: linear-gradient(45deg, #e4405f, #c13584);
}

.share-btn.telegram {
    background: linear-gradient(45deg, #0088cc, #229ed9);
}

.share-btn.whatsapp {
    background: linear-gradient(45deg, #25d366, #128c7e);
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.related-posts {
    padding: 80px 0;
    background: white;
}

.related-posts h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1e293b;
    font-size: 2rem;
    font-weight: 600;
}

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

.related-post-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.related-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.related-post-image {
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.related-post-image i {
    font-size: 3rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.related-post-content {
    padding: 1.5rem;
}

.related-post-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
    text-decoration: none;
    display: block;
}

.related-post-title:hover {
    color: #2563eb;
}

.related-post-excerpt {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.related-post-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: #94a3b8;
}

.back-to-blog {
    text-align: center;
    margin: 3rem 0;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(45deg, #2563eb, #3b82f6);
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.back-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
}

@media (max-width: 768px) {
    .blog-post-title {
        font-size: 2rem;
    }

    .blog-post-container {
        padding: 2rem;
        margin: 0 1rem;
    }

    .blog-post-meta {
        flex-direction: column;
        gap: 1rem;
    }

    .blog-post-image {
        height: 250px;
    }

    .blog-post-image i {
        font-size: 4rem;
    }

    .related-posts-grid {
        grid-template-columns: 1fr;
    }
}