/**
 * Single Post & Page Styles
 * 
 * @package WioLicence
 */

.site-main {
    padding: 60px 0;
}

.content-area {
    max-width: 800px;
    margin: 0 auto;
}

.single-post,
.single-page {
    background: var(--bg-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
}

.entry-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.entry-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
}

.entry-meta {
    display: flex;
    gap: 20px;
    color: var(--text-light);
    font-size: 14px;
}

.post-thumbnail {
    margin-bottom: 30px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.entry-content {
    line-height: 1.8;
}

.entry-content p {
    margin-bottom: 1.5rem;
}
