/* 
 * View Post CSS
 * File: assets/css/post-view.css
 */

.post-view-section {
    background-color: #f9f9f9;
    padding: 80px 0;
}

/* Post Title Styling */
.post-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

/* Post Meta Styling */
.post-meta {
    font-size: 0.9rem;
    color: #6c757d;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.post-meta i {
    color: #3498db;
    margin-right: 5px;
}

.post-meta a {
    color: #3498db;
    text-decoration: none;
}

.post-meta a:hover {
    text-decoration: underline;
}

/* Post Content Styling */
.post-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

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

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

.post-content h2, 
.post-content h3, 
.post-content h4 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #333;
}

.post-content ul, 
.post-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.post-content blockquote {
    border-left: 4px solid #3498db;
    padding: 10px 20px;
    margin: 20px 0;
    background-color: #f8f9fa;
    font-style: italic;
}

/* Post Tags */
.post-tags {
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.post-tags .badge {
    padding: 5px 10px;
    margin-right: 5px;
    background-color: #f8f9fa;
    color: #555;
    border: 1px solid #ddd;
    font-weight: normal;
    font-size: 0.85rem;
}

/* Author Info */
.author-box {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin: 30px 0;
}

.author-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

/* Related Posts */
.related-post-card {
    transition: all 0.3s ease;
    height: 100%;
}

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

.related-post-card .card-img-top {
    height: 150px;
    object-fit: cover;
}

.related-post-card .card-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Sidebar Styling */
.sidebar-widget {
    margin-bottom: 30px;
}

.sidebar-widget h5 {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.sidebar-widget ul li {
    padding: 8px 0;
    border-bottom: 1px solid #f5f5f5;
}

.sidebar-widget ul li:last-child {
    border-bottom: none;
}

.sidebar-widget ul li a {
    color: #444;
    transition: all 0.3s ease;
}

.sidebar-widget ul li a:hover {
    color: #3498db;
    text-decoration: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .post-title {
        font-size: 1.5rem;
    }
    
    .post-content {
        font-size: 1rem;
    }
    
    .author-box {
        text-align: center;
    }
    
    .author-avatar {
        margin-bottom: 15px;
    }
}