/* Single Post Styles */
.single article {
    padding: 4px;
}

.entry-header {
    margin-bottom: 30px;
}

/* Entry Meta Top - All in one line */
.entry-meta-top {
    margin-bottom: 20px;
}

.entry-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.entry-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.author-name {
    color: var(--text-accent, #2c3e50);
    font-weight: 600;
    font-size: 14px;
}

.entry-date {
    color: var(--text-secondary, #666);
    font-size: 14px;
}

.meta-separator {
    color: var(--text-secondary, #666);
    font-size: 14px;
    margin: 0 2px;
}

.entry-category {
    font-size: 14px;
}

.entry-category a {
    color: var(--link-color, #0073aa);
    text-decoration: none;
    font-weight: 500;
}

.entry-category a:hover {
    text-decoration: underline;
}

.entry-title {
    font-size: 32px;
    color: var(--text-accent);
    margin-bottom: 20px;
    line-height: 1.3;
}

.post-thumbnail {
    margin-bottom: 30px;
    text-align: center;
}

.post-thumbnail img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px var(--shadow-light);
}

.entry-content {
    line-height: 1.8;
    font-size: 16px;
    color: var(--text-primary);
}

.entry-content p {
    margin-bottom: 20px;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-accent);
}

.entry-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .entry-title {
        font-size: 24px;
    }
    
    .entry-content {
        font-size: 15px;
    }
    
    .author-info {
        gap: 6px;
    }
    
    .author-name,
    .entry-date,
    .entry-category {
        font-size: 13px;
    }
}