/* Post Detail Section */
.post-detail-section {
    padding: 40px 0 60px;
    background: #ffffff;
}

/* Post Header */
.post-header {
    margin-bottom: 30px;
}

.post-title {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.4;
    text-align: center;
}

/* Post Metadata */
.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 20px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666666;
}

.meta-item i {
    font-size: 16px;
    color: #085DC5;
}

.meta-item span {
    color: #666666;
}

/* Post Excerpt */
.post-excerpt {
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 4px;
}

.post-excerpt p {
    font-size: 16px;
    color: #333333;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

/* Post Image Wrapper */
.post-image-wrapper {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.post-main-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Post Content */
.post-content {
    margin-top: 30px;
    line-height: 1.8;
    color: #333333;
    font-size: 16px;
}

.post-content p {
    margin-bottom: 20px;
    text-align: left;
}

.post-content h2,
.post-content h3,
.post-content h4 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #000000;
}

.post-content h2 {
    font-size: 24px;
}

.post-content h3 {
    font-size: 20px;
}

.post-content h4 {
    font-size: 18px;
}

.post-content ul,
.post-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.post-content li {
    margin-bottom: 10px;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.post-content a {
    color: #085DC5;
    text-decoration: underline;
}

.post-content a:hover {
    color: #064a9a;
}

.post-content blockquote {
    margin: 20px 0;
    padding: 15px 20px;
    border-left: 4px solid #085DC5;
    background: #f8f9fa;
    font-style: italic;
    color: #666666;
}

.post-content code {
    background: #f4f4f4;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
}

.post-content pre {
    background: #f4f4f4;
    padding: 15px;
    border-radius: 4px;
    overflow-x: auto;
    margin: 20px 0;
}

.post-content pre code {
    background: none;
    padding: 0;
}

/* Empty Content */
.empty-content {
    text-align: center;
    padding: 40px 20px;
    color: #999999;
}

.empty-content p {
    margin: 0;
    font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .post-detail-section {
        padding: 20px 0 40px;
    }

    .post-title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .post-meta {
        gap: 15px;
        font-size: 13px;
    }

    .post-excerpt {
        padding: 15px;
        margin-bottom: 20px;
    }

    .post-excerpt p {
        font-size: 14px;
    }

    .post-content {
        font-size: 15px;
    }

    .post-content h2 {
        font-size: 20px;
    }

    .post-content h3 {
        font-size: 18px;
    }

    .post-content h4 {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .post-title {
        font-size: 20px;
    }

    .post-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .post-content {
        font-size: 14px;
    }
}

