/* Features: Typography Optimization, Responsive Layout, Glassmorphism Author Box */

.blog-single-container {
    max-width: 900px;
    margin: 120px auto 60px;
    padding: 0 20px;
}

.post-header {
    text-align: center;
    margin-bottom: 40px;
}

.category-tag {
    background: rgba(56, 189, 248, 0.1);
    color: #38bdf8;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.post-header h1 {
    font-size: 42px;
    line-height: 1.2;
    color: #f1f5f9;
    margin-bottom: 20px;
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    color: #94a3b8;
    font-size: 14px;
}

.post-thumbnail {
    width: 100%;
    height: 450px;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 50px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-content {
    font-size: 18px;
    line-height: 1.8;
    color: #cbd5e1;
}

.post-content p {
    margin-bottom: 25px;
}

.author-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 60px 0;
}

.author-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #38bdf8;
}

.author-info h4 {
    color: #f1f5f9;
    margin-bottom: 5px;
}

.author-info p {
    color: #94a3b8;
    font-size: 14px;
    margin: 0;
}

.section-divider {
    border: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    margin: 40px 0;
}

@media (max-width: 768px) {
    .post-header h1 { font-size: 32px; }
    .post-thumbnail { height: 250px; }
}