/* Blog Post Header */
.blog-post-header {
    padding: 2rem 0 1rem 0;
    background-color: #f8f9fa;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: rgb(228, 10, 129);
    text-decoration: none;
}

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

.breadcrumb-item.active {
    color: #666;
}

/* Blog Post Content */
.blog-post-content {
    padding: 3rem 0;
    background-color: white;
}

.blog-post {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.blog-post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem 2rem;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
    color: #666;
}

.blog-post-author {
    font-weight: 600;
    color: rgb(228, 10, 129);
}

.blog-post-date {
    color: #888;
}

.blog-post-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
    margin: 0;
    padding: 1rem 2rem 2rem 2rem;
}

.blog-post-image {
    margin-bottom: 0;
}

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

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

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

.blog-post-footer {
    padding: 2rem;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.blog-post-tags {
    font-size: 0.95rem;
    color: #666;
}

.blog-post-share {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.blog-post-share span {
    font-size: 0.95rem;
    color: #666;
    margin-right: 0.5rem;
}

.share-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #f8f9fa;
    color: #666;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-link:hover {
    background-color: rgb(228, 10, 129);
    color: white;
    transform: translateY(-2px);
}

/* Blog Post Navigation */
.blog-post-navigation {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #eee;
}

.blog-nav-link {
    display: block;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    height: 100%;
}

.blog-nav-link:hover {
    background-color: rgb(228, 10, 129);
    color: white;
    transform: translateY(-2px);
}

.blog-nav-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.blog-nav-title {
    display: block;
    font-weight: 600;
    font-size: 1.1rem;
}

.blog-nav-prev {
    text-align: left;
}

.blog-nav-next {
    text-align: right;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-post-content {
        padding: 1.5rem 0;
    }

    .blog-post-title {
        font-size: 2rem;
        padding: 1rem 1.5rem 1.5rem 1.5rem;
    }

    .blog-post-meta {
        padding: 1.5rem 1.5rem 1rem 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .blog-post-text {
        padding: 1.5rem;
        font-size: 1rem;
    }

    .blog-post-footer {
        padding: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-post-share {
        width: 100%;
        justify-content: flex-start;
    }

    .blog-post-navigation .col-md-6:first-child {
        margin-bottom: 1rem;
    }
}
