/* ========================================
   SINGLE POST & PAGE STYLES
   ======================================== */

.single-post,
.single-page {
    padding: 0;
}

.entry-header,
.page-header {
    padding: 40px 0;
    text-align: center;
    background: #f8f9fa;
    border-bottom: 1px solid #e5e5e5;
}

.entry-title,
.page-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.2;
}

.entry-meta {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: #666;
}

.entry-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.entry-meta time {
    color: #333;
}

.cat-links a {
    color: #0073aa;
    text-decoration: none;
    transition: color 0.3s;
}

.cat-links a:hover {
    color: #005177;
}

/* Featured image */
.entry-featured-image {
    margin: 40px 0;
}

.entry-featured-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.post-content,
.default-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

.post-content p,
.default-content p {
    margin: 20px 0;
}

.post-content h2 {
    font-size: 32px;
    font-weight: 600;
    margin: 40px 0 20px;
    color: #1a1a1a;
}

.post-content h3 {
    font-size: 26px;
    font-weight: 600;
    margin: 35px 0 18px;
    color: #1a1a1a;
}

.post-content h4 {
    font-size: 22px;
    font-weight: 600;
    margin: 30px 0 15px;
    color: #1a1a1a;
}

.post-content ul,
.post-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.post-content li {
    margin: 10px 0;
    line-height: 1.6;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
}

.post-content a {
    color: #0073aa;
    text-decoration: underline;
}

.post-content a:hover {
    color: #005177;
}

.post-content blockquote {
    margin: 30px 0;
    padding: 20px 30px;
    background: #f8f9fa;
    border-left: 4px solid #0073aa;
    font-style: italic;
    color: #333;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
    .single-post {
        padding: 40px 0;
    }

    .entry-header {
        padding: 30px 0;
    }

    .entry-title {
        font-size: 32px;
    }

    .entry-meta {
        flex-direction: column;
        gap: 10px;
    }

    .post-content h2 {
        font-size: 26px;
    }

    .post-content h3 {
        font-size: 22px;
    }

    .post-content h4 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .entry-title {
        font-size: 26px;
    }

    .post-content {
        font-size: 15px;
    }

    .post-content h2 {
        font-size: 22px;
    }

    .post-content h3 {
        font-size: 18px;
    }
}

