/* ============================================================
   Blog Single Post — cleaning-services.cz / Kadence Child
   Lifeon template style
   ============================================================ */

/* ── Page Header — already in blog-archive-styles.css ── */

/* ── Single Post Wrapper ── */
.page-single-post {
    padding: 80px 0 100px;
    background-color: #ffffff;
}

/* ── Featured Image ── */
.page-single-post .post-image {
    margin-bottom: 48px;
    border-radius: 16px;
    overflow: hidden;
}

.page-single-post .post-image figure {
    margin: 0;
}

.page-single-post .post-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

/* ── Post Content Typography ── */
.page-single-post .post-content {
    max-width: 820px;
    margin: 0 auto;
}

.page-single-post .post-entry {
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    line-height: 1.75;
    color: #333;
}

.page-single-post .post-entry p {
    margin: 0 0 24px;
}

.page-single-post .post-entry h2 {
    font-family: 'Mona Sans', sans-serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    color: #1a1a1a;
    margin: 48px 0 20px;
    line-height: 1.25;
}

.page-single-post .post-entry h3 {
    font-family: 'Mona Sans', sans-serif;
    font-size: clamp(1.15rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: #1a1a1a;
    margin: 36px 0 16px;
}

.page-single-post .post-entry h4 {
    font-family: 'Mona Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 28px 0 12px;
}

.page-single-post .post-entry ul,
.page-single-post .post-entry ol {
    padding-left: 24px;
    margin: 0 0 24px;
}

.page-single-post .post-entry ul li,
.page-single-post .post-entry ol li {
    margin-bottom: 10px;
    line-height: 1.65;
}

.page-single-post .post-entry ul li::marker {
    color: #274543;
}

.page-single-post .post-entry a {
    color: #274543;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.2s;
}

.page-single-post .post-entry a:hover {
    opacity: 0.75;
}

.page-single-post .post-entry img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 16px 0;
}

/* ── Blockquote ── */
.page-single-post .post-entry blockquote {
    position: relative;
    background: linear-gradient(135deg, rgba(39, 69, 67, 0.06), rgba(39, 69, 67, 0.03));
    border-left: 4px solid #274543;
    border-radius: 0 12px 12px 0;
    padding: 28px 36px;
    margin: 36px 0;
}

.page-single-post .post-entry blockquote::before {
    content: "\201C";
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: 'Mona Sans', Georgia, serif;
    font-size: 80px;
    color: rgba(39, 69, 67, 0.15);
    line-height: 1;
}

.page-single-post .post-entry blockquote p {
    font-family: 'Mona Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    font-style: italic;
    color: #274543;
    line-height: 1.65;
    margin: 0;
}

/* ── Tag & Social Row ── */
.post-tag-links {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* Tags */
.post-tags .tag-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: #888;
}

.post-tags .tag-links a {
    display: inline-block;
    background: rgba(39, 69, 67, 0.08);
    color: #274543;
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.25s, color 0.25s;
}

.post-tags .tag-links a:hover {
    background: #274543;
    color: #ffffff;
}

/* Social Share */
.post-social-sharing {
    display: flex;
    justify-content: flex-end;
}

.post-social-sharing ul {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.post-social-sharing ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(39, 69, 67, 0.25);
    color: #274543;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.post-social-sharing ul li a:hover {
    background: #274543;
    color: #ffffff;
    border-color: #274543;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .page-single-post {
        padding: 60px 0 70px;
    }

    .post-social-sharing {
        justify-content: flex-start;
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .page-single-post {
        padding: 40px 0 50px;
    }

    .page-single-post .post-entry {
        font-size: 16px;
    }

    .page-single-post .post-entry blockquote {
        padding: 20px 24px;
    }
}
