/* --- Single Post Page Styles --- */
.single-post-wrapper {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 25px;
}

.single-post-wrapper article {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 40px;
}

.single-post-wrapper .entry-header {
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.single-post-wrapper .entry-title {
    font-family: 'Arial', sans-serif;
    font-size: 2.5em;
    color: #2c3e50;
    margin-top: 0;
    margin-bottom: 10px;
    line-height: 1.2;
}

.single-post-wrapper .entry-meta {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9em;
    color: #777;
}

.single-post-wrapper .post-thumbnail {
    text-align: center;
    margin-bottom: 30px;
}

.single-post-wrapper .post-thumbnail img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.single-post-wrapper .entry-content {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1em;
    color: #444;
    line-height: 1.7;
}

.single-post-wrapper .entry-content h2,
.single-post-wrapper .entry-content h3 {
    font-family: 'Arial', sans-serif;
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 15px;
}

.single-post-wrapper .entry-content p {
    margin-bottom: 1.5em;
}

.single-post-wrapper .entry-content ul,
.single-post-wrapper .entry-content ol {
    margin-left: 20px;
    margin-bottom: 1.5em;
}

.single-post-wrapper .entry-content ul li,
.single-post-wrapper .entry-content ol li {
    margin-bottom: 0.5em;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .single-post-wrapper {
        padding: 0 15px;
    }
    .single-post-wrapper article {
        padding: 25px;
    }
    .single-post-wrapper .entry-title {
        font-size: 2em;
    }
    .single-post-wrapper .entry-content {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .single-post-wrapper article {
        padding: 15px;
    }
    .single-post-wrapper .entry-title {
        font-size: 1em;
    }
    .single-post-wrapper .entry-content {
        font-size: 0.7em;
    }
}