/* Post Detail Page Styles */

.post-detail {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.post-meta {
    color: #6c757d;
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
}

.post-meta i {
    color: #667eea;
}

.post-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.post-featured-image {
    margin-bottom: 2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

.post-video {
    margin-bottom: 2rem;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.post-content {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 2rem;
}

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

.post-footer {
    margin-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .post-detail {
        padding: 2rem 1.5rem;
    }

    .post-title {
        font-size: 1.75rem;
    }

    .post-content {
        font-size: 1rem;
    }
}
