.blog-detail-page {
    --primary: #45a15c;
    --text: #444;
    --heading: #111;
    --muted: #888;

    font-family: 'Segoe UI', sans-serif;
    color: var(--text);
}

/* WRAPPER */
.blog-detail-page .blog-wrapper {
    padding: 80px 0;
}

/* TITLE */
.blog-detail-page .blog-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--heading);
    line-height: 1.3;
    margin-bottom: 15px;
}

/* META */
.blog-detail-page .blog-meta {
    font-size: 14px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.blog-detail-page .blog-meta .dot {
    width: 4px;
    height: 4px;
    background: var(--muted);
    border-radius: 50%;
}

/* IMAGE */
.blog-detail-page .blog-image {
    margin-bottom: 35px;
}

.blog-detail-page .blog-image img {
    width: 100%;
    border-radius: 12px;
}

/* CONTENT */
.blog-detail-page .blog-content {
    font-size: 17px;
    line-height: 1.8;
}

/* HEADINGS */
.blog-detail-page .blog-content h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 10px;
    color: var(--heading);
}

/* LINKS (IMPORTANT for your requirement) */
.blog-detail-page .blog-content a {
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1px solid rgba(69,161,92,0.4);
    transition: 0.3s;
}

.blog-detail-page .blog-content a:hover {
    color: #2e7d46;
    border-color: #2e7d46;
}

/* LIST */
.blog-detail-page .blog-content ul {
    padding-left: 18px;
    margin-top: 10px;
}

.blog-detail-page .blog-content li {
    margin-bottom: 6px;
}

/* BLOCKQUOTE */
.blog-detail-page blockquote {
    border-left: 4px solid var(--primary);
    padding-left: 18px;
    margin: 30px 0;
    font-style: italic;
    color: #666;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .blog-detail-page .blog-title {
        font-size: 28px;
    }

    .blog-detail-page .blog-wrapper {
        padding: 50px 0;
    }
}