/* ============================================================
   BLOG DETAIL STYLES — blog-detail.css
   ============================================================ */

/* ── Post Header Meta ── */
.post-category {
    background: var(--gold);
    color: var(--dark);
    padding: 6px 16px;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    display: inline-block;
}

.meta-details {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.95rem;
    color: var(--gray);
}

.meta-details i {
    color: var(--gold);
    margin-right: 6px;
}

/* ── Post Body Content ── */
.post-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray);
}

.post-body p {
    margin-bottom: 7px;
}

.post-body h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin-top: 0px;
    margin-bottom: 7px;
    color: var(--dark);
    font-weight: 700;
}

.post-body ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.post-body ul li {
    margin-bottom: 10px;
    position: relative;
}

.post-body ul li::marker {
    color: var(--gold);
}

.post-body blockquote {
    background: var(--light-gray, #f9f9f9);
    border-left: 4px solid var(--gold);
    padding: 30px;
    margin: 40px 0;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--dark);
    border-radius: 0 12px 12px 0;
    position: relative;
}

.post-body blockquote::before {
    content: '\201C';
    font-family: serif;
    position: absolute;
    top: -10px;
    left: 15px;
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.2;
    line-height: 1;
}

/* ── Tags and Share ── */
.post-tags-share {
    border-color: var(--border) !important;
}

.post-tags a {
    color: var(--gray);
    margin-right: 5px;
    transition: color var(--transition);
    text-decoration: none;
}

.post-tags a:hover {
    color: var(--gold);
}

.post-share a {
    color: var(--dark);
    font-size: 1.2rem;
    margin-left: 15px;
    transition: color var(--transition);
}

.post-share a:hover {
    color: var(--gold);
}

/* ── Author Box ── */
.author-box {
    border: 1px solid var(--border);
    background-color: var(--white);
}

.author-box h4 {
    font-family: var(--font-serif);
    color: var(--dark);
}

/* ── Comments Section ── */
.comments-section h3,
.reply-form-section h3 {
    font-family: var(--font-serif);
    color: var(--dark);
    position: relative;
    padding-bottom: 10px;
}

.comments-section h3::after,
.reply-form-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gold);
}

.comment-item h5 {
    color: var(--dark);
    font-family: var(--font-serif);
}

.reply-link {
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: color var(--transition);
    color: var(--gold) !important;
}

.reply-link:hover {
    color: var(--dark) !important;
}

/* ── Reply Form ── */
.reply-form .form-control {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid var(--border);
    font-size: 0.95rem;
    background-color: var(--white);
    color: var(--dark);
}

.reply-form .form-control:focus {
    border-color: var(--gold);
    box-shadow: none;
}

.reply-form .btn-primary {
    background-color: var(--gold);
    border-color: var(--gold);
    border-radius: 8px;
    font-weight: 600;
    transition: all var(--transition);
    color: var(--dark);
}

.reply-form .btn-primary:hover {
    background-color: var(--dark);
    border-color: var(--dark);
    color: var(--white);
}

.blog-sidebar {
    padding-left: 15px;
    position: sticky;
    top: 0;
}