/* ─────────────────────────────────────────────
   Blog Single Post Page CSS
   ───────────────────────────────────────────── */

.blog-single-main {
    background: #ffffff;
    min-height: 80vh;
    padding-top: 60px;
    padding-bottom: 60px;
}

.blog-single-back {
    margin-bottom: 24px;
}

.blog-single-back a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #4D3766;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.blog-single-back a:hover {
    color: #4D3766;
    transform: translateX(-4px);
}

.blog-single-featured-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(77, 55, 102, 0.08);
    margin-bottom: 40px;
}

.blog-single-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.7;
    color: #4D3766 !important;
    margin: 0 0 20px 0;
}

.blog-single-meta {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 24px;
    gap: 15px;
    flex-wrap: wrap;
}

.blog-single-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(77, 55, 102, 0.7);
    font-weight: 500;
}

.blog-single-copy-btn {
    background: transparent;
    border: none;
    color: #4D3766;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 6px 16px;
    border-radius: 20px;
    background: rgba(77, 55, 102, 0.05);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.blog-single-copy-btn:hover {
    background: rgba(77, 55, 102, 0.1);
    color: #fed305;
}

.blog-single-copy-btn.copied {
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71 !important;
}

.blog-single-divider {
    border-top: 1px solid rgba(77, 55, 102, 0.1);
    margin: 0 0 40px 0;
}

.blog-single-content {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(77, 55, 102, 0.9);
    max-width: 920px;
}

.blog-single-content p {
    margin-bottom: 24px;
}

.blog-single-content h2,
.blog-single-content h3 {
    color: #4D3766;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 16px;
}

.blog-single-content blockquote {
    border-left: 4px solid #fed305;
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: rgba(77, 55, 102, 0.8);
}

@media (max-width: 767px) {
    .blog-single-main {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .blog-single-title {
        font-size: 26px;
        line-height: 1.6;
    }

    .blog-single-featured-img {
        border-radius: 12px;
        margin-bottom: 24px;
    }
}

/* ── Related Posts Section ── */
.blog-single-related-section {
    padding-top: 60px;
}

.blog-single-related-title {
    font-size: 32px;
    font-weight: 700;
    color: #4D3766 !important;
    margin-bottom: 48px;
}

@media (max-width: 767px) {
    .blog-single-related-section {
        padding: 40px 0;
    }

    .blog-single-related-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
}

/* ── Divider Line ── */
.divider {
    display: block;
    width: 100%;
    height: 1px;
    background: rgba(77, 55, 102, 0.1);
    margin: 40px 0;
}