/**
 * Single Post & Page Styles
 */

.single-post,
.page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 0;
}

.entry-header {
    margin-bottom: 2rem;
}

.entry-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.entry-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.post-thumbnail,
.page-thumbnail {
    margin-bottom: 2rem;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.post-thumbnail img,
.page-thumbnail img {
    width: 100%;
    height: auto;
}

.entry-content {
    line-height: 1.8;
    font-size: 1.1rem;
}

.entry-content img {
    border-radius: var(--border-radius);
    margin: 2rem 0;
}

.entry-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.post-categories,
.post-tags {
    margin-bottom: 1rem;
}

.product-price-single {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .entry-title {
        font-size: 2rem;
    }
    
    .entry-content {
        font-size: 1rem;
    }
}
