/* Global Layout */
.blog-details-section {
    padding: 30px 0;
    background: #ffffff;
}

.blog-post-wrapper {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

/* Post Header */
.post-header {
    margin-bottom: 40px;
}

.post-category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-light);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

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

.meta-divider {
    color: #ddd;
}

.post-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.post-meta .meta-item i {
    color: var(--primary-color);
    opacity: 0.8;
}

/* Featured Image */
.post-featured-image {
    margin-bottom: 45px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

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

/* Content Area */
.post-content {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
}

.post-content p {
    margin-bottom: 25px;
}

.post-content h2, .post-content h3 {
    color: var(--text-dark);
    margin: 45px 0 20px;
    font-weight: 800;
}

.post-content h2 { font-size: 30px; }
.post-content h3 { font-size: 24px; }

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 30px 0;
}

.post-content blockquote {
    margin: 40px 0;
    padding: 30px 40px;
    background: var(--bg-light);
    border-left: 5px solid var(--primary-color);
    font-style: italic;
    font-size: 20px;
    color: var(--text-dark);
    border-radius: 0 12px 12px 0;
}

/* Signature */
.post-signature {
    margin: 50px 0;
    padding: 25px;
    background: #f9f9f9;
    border-radius: 12px;
    text-align: center;
    font-style: italic;
    color: #777;
    position: relative;
}

.post-signature::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 60px;
    color: #eee;
    font-family: serif;
}

/* Footer / Share */
.post-footer {
    padding-top: 40px;
    margin-top: 50px;
    border-top: 1px solid #f0f0f0;
}

.share-box {
    display: flex;
    align-items: center;
    gap: 20px;
}

.share-box h5 {
    font-size: 15px;
    font-weight: 700;
    margin: 0;
}

.share-links {
    display: flex;
    gap: 12px;
}

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

.share-icon:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 991px) {
    .post-title {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .post-title {
        font-size: 24px;
    }
    .post-content {
        font-size: 16px;
    }
    .share-box {
        flex-direction: column;
        align-items: flex-start;
    }
}