/* ════════════════════════════════════════════════════════
   BLOG LISTING — /blog page (bl-)
   Same design family as service-detail's "psd-" hero pattern
   ════════════════════════════════════════════════════════ */

.bl-hero {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--dark);
}
.bl-hero-bg { position: absolute; inset: 0; }
.bl-hero-bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bl-hero-bg::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(100deg, rgba(15,15,15,.92) 0%, rgba(15,15,15,.6) 55%, rgba(15,15,15,.3) 100%);
}
.bl-hero-content { position: relative; z-index: 2; padding: 52px 0 44px; max-width: 640px; }
.bl-crumb { font-size: 12px; color: rgba(255,255,255,.5); margin-bottom: 18px; font-family: 'Lato', sans-serif; }
.bl-crumb a { color: rgba(255,255,255,.5); text-decoration: none; }
.bl-crumb a:hover { color: var(--gold2); }
.bl-hero-tag {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold2); border: 1px solid rgba(232,176,64,.35);
    padding: 5px 16px; border-radius: 20px; margin-bottom: 18px;
}
.bl-hero-content h1 { font-family: 'Cinzel', serif; font-size: clamp(28px,4vw,44px); color: #fff; margin-bottom: 14px; line-height: 1.2; }
.bl-hero-content p { font-size: 15.5px; color: rgba(255,255,255,.75); line-height: 1.8; max-width: 480px; }

/* Featured post spotlight */
.bl-featured {
    display: grid; grid-template-columns: 1fr 1fr;
    background: #fff; border: 1px solid var(--ivory3);
    border-radius: 12px; overflow: hidden;
    margin-bottom: 52px;
    box-shadow: 0 8px 30px rgba(0,0,0,.06);
}
.bl-featured-img {
    position: relative; min-height: 320px;
    background: linear-gradient(145deg, var(--dark2), var(--dark3));
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.bl-featured-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bl-featured-img i { font-size: 64px; color: rgba(200,148,24,.5); }
.bl-featured-badge {
    position: absolute; top: 20px; left: 20px;
    background: var(--red); color: #fff;
    font-size: 10.5px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
    padding: 6px 14px; border-radius: 20px; font-family: 'Lato', sans-serif;
}
.bl-featured-body { padding: 44px 44px 40px; display: flex; flex-direction: column; justify-content: center; }
.bl-featured-cat { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--red); font-weight: 700; font-family: 'Lato', sans-serif; margin-bottom: 12px; }
.bl-featured-body h2 { font-family: 'Cinzel', serif; font-size: clamp(22px,2.6vw,30px); color: var(--txt-dk); line-height: 1.3; margin-bottom: 14px; }
.bl-featured-body p { font-size: 15px; color: var(--mut-dk); line-height: 1.8; margin-bottom: 22px; }
.bl-featured-meta { font-size: 12.5px; color: var(--mut-dk); margin-bottom: 22px; }
.bl-featured-meta i { color: var(--gold); margin-right: 5px; }

/* Card grid */
.bl-card {
    background: #fff; border: 1px solid var(--ivory3); border-radius: 12px;
    overflow: hidden; height: 100%; text-decoration: none; color: inherit;
    display: flex; flex-direction: column;
    transition: all .3s;
}
.bl-card:hover { transform: translateY(-5px); box-shadow: 0 16px 36px rgba(0,0,0,.1); color: inherit; text-decoration: none; }
.bl-card-img {
    position: relative; height: 190px; flex-shrink: 0;
    background: linear-gradient(145deg, var(--dark2), var(--dark3));
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.bl-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bl-card-img i { font-size: 40px; color: rgba(200,148,24,.5); }
.bl-card-cat {
    position: absolute; top: 14px; left: 14px;
    background: rgba(15,15,15,.75); color: var(--gold2);
    font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
    padding: 5px 12px; border-radius: 16px; font-family: 'Lato', sans-serif;
}
.bl-card-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.bl-card-body h3 { font-family: 'Cinzel', serif; font-size: 17px; color: var(--txt-dk); line-height: 1.4; margin-bottom: 10px; }
.bl-card-body p { font-size: 14px; color: var(--mut-dk); line-height: 1.7; margin-bottom: 18px; flex: 1; }
.bl-card-meta {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 11.5px; color: var(--mut-dk); border-top: 1px solid var(--ivory3);
    padding-top: 14px; font-family: 'Lato', sans-serif;
}
.bl-card-read { color: var(--red); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; font-size: 11px; }

@media(max-width: 767px) {
    .bl-featured { grid-template-columns: 1fr; }
    .bl-featured-img { min-height: 220px; }
    .bl-featured-body { padding: 30px 26px; }
}

/* ════════════════════════════════════════════════════════
   BLOG POST DETAIL — dynamic /blog/{slug} page (bp-)
   Full-bleed hero + sidebar layout, same design family as
   service-detail's "psd-" system for sitewide consistency
   ════════════════════════════════════════════════════════ */

/* Hero */
.bp-hero {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--dark);
}
.bp-hero-bg { position: absolute; inset: 0; }
.bp-hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
}
.bp-hero-bg::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(15,15,15,.95) 0%, rgba(15,15,15,.55) 55%, rgba(15,15,15,.25) 100%);
}
.bp-hero-content {
    position: relative; z-index: 2;
    padding: 48px 0 40px;
    max-width: 820px;
}
.bp-crumb {
    display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
    font-size: 12px; font-family: 'Lato', sans-serif;
    color: rgba(255,255,255,.55); margin-bottom: 18px;
}
.bp-crumb a { color: rgba(255,255,255,.55); text-decoration: none; transition: color .2s; }
.bp-crumb a:hover { color: var(--gold2); }
.bp-crumb span { color: rgba(255,255,255,.3); }
.bp-crumb em { color: var(--gold2); font-style: normal; }
.bp-cat-badge {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
    font-family: 'Lato', sans-serif; color: #000;
    background: var(--gold2);
    padding: 6px 16px; border-radius: 30px; margin-bottom: 16px;
}
.bp-hero-content h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(24px, 3.6vw, 40px);
    color: #fff; line-height: 1.22; margin-bottom: 18px;
}
.bp-hero-meta {
    display: flex; gap: 22px; flex-wrap: wrap;
    font-size: 13px; color: rgba(255,255,255,.7); font-family: 'Lato', sans-serif;
}
.bp-hero-meta span { display: flex; align-items: center; gap: 7px; }
.bp-hero-meta i { color: var(--gold2); }

/* Body layout */
.bp-body { padding: 60px 0 80px; background: var(--ivory); }
.bp-layout { display: grid; grid-template-columns: 1fr 340px; gap: 44px; align-items: start; }

/* Main article content */
.bp-article { font-size: 16px; color: var(--mut-dk); line-height: 1.9; }
.bp-article p { margin-bottom: 18px; }
.bp-article h2 {
    font-family: 'Cinzel', serif; font-size: clamp(20px,2.4vw,26px);
    color: var(--txt-dk); margin: 36px 0 16px;
}
.bp-article h3 {
    font-family: 'Cinzel', serif; font-size: 19px;
    color: var(--txt-dk); margin: 28px 0 12px;
}
.bp-article img { width: 100%; border-radius: 10px; margin: 24px 0; box-shadow: 0 8px 26px rgba(0,0,0,.08); }
.bp-article ul, .bp-article ol { margin: 0 0 18px; padding-left: 22px; }
.bp-article li { margin-bottom: 8px; }
.bp-article blockquote {
    border-left: 3px solid var(--red);
    background: var(--ivory2);
    padding: 18px 22px;
    margin: 26px 0;
    font-family: 'Cinzel', serif;
    font-style: italic;
    font-size: 17px;
    color: var(--txt-dk);
}

/* Tags + share row */
.bp-foot-row {
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap;
    gap: 16px; margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--ivory3);
}
.bp-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.bp-tag {
    font-size: 11.5px; letter-spacing: 1px; text-transform: uppercase;
    color: var(--mut-dk); background: var(--ivory2); border: 1px solid var(--ivory3);
    padding: 6px 14px; border-radius: 20px; font-family: 'Lato', sans-serif;
}
.bp-share { display: flex; gap: 10px; align-items: center; }
.bp-share span { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--mut-dk); font-family: 'Lato', sans-serif; }
.bp-share a {
    width: 34px; height: 34px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: var(--ivory2); color: var(--mut-dk); font-size: 13px;
    transition: all .2s;
}
.bp-share a:hover { background: var(--red); color: #fff; }

/* Author bio */
.bp-author {
    display: flex; gap: 18px; align-items: center;
    background: var(--ivory2); border: 1px solid var(--ivory3); border-radius: 10px;
    padding: 24px; margin-top: 30px;
}
.bp-author-avatar {
    width: 64px; height: 64px; border-radius: 50%; flex-shrink: 0;
    background: linear-gradient(135deg, var(--red), var(--red-dk));
    display: flex; align-items: center; justify-content: center;
    font-family: 'Cinzel', serif; font-size: 24px; color: #fff; font-weight: 700;
}
.bp-author h4 { font-family: 'Cinzel', serif; font-size: 16px; color: var(--txt-dk); margin-bottom: 4px; }
.bp-author p { font-size: 13.5px; color: var(--mut-dk); margin: 0; line-height: 1.6; }

/* Sidebar */
.bp-sidebar { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 22px; }
.bp-widget { background: #fff; border: 1px solid var(--ivory3); border-radius: 10px; overflow: hidden; box-shadow: 0 3px 16px rgba(0,0,0,.04); }
.bp-widget h4 {
    display: flex; align-items: center; gap: 9px; margin: 0;
    font-family: 'Cinzel', serif; font-size: 13.5px; letter-spacing: .5px; color: #fff;
    background: var(--dark); padding: 15px 20px;
}
.bp-widget h4 i { color: var(--gold2); font-size: 14px; }

.bp-cat-list { padding: 10px 0; }
.bp-cat-list a {
    display: flex; justify-content: space-between; align-items: center;
    padding: 11px 20px; font-size: 13.5px; color: var(--mut-dk);
    text-decoration: none; border-bottom: 1px solid var(--ivory3); transition: all .2s;
}
.bp-cat-list a:last-child { border-bottom: none; }
.bp-cat-list a:hover { color: var(--red); background: var(--ivory2); padding-left: 26px; }
.bp-cat-list a span { font-size: 11px; color: var(--mut-dk); background: var(--ivory2); border-radius: 10px; padding: 2px 9px; }

.bp-recent-list { padding: 16px 20px; display: flex; flex-direction: column; gap: 16px; }
.bp-recent-item { display: flex; gap: 12px; text-decoration: none; }
.bp-recent-thumb {
    width: 58px; height: 58px; border-radius: 8px; flex-shrink: 0;
    background: var(--ivory2); display: flex; align-items: center; justify-content: center;
    color: var(--red); font-size: 20px; overflow: hidden;
}
.bp-recent-thumb img { width: 100%; height: 100%; object-fit: cover; }
.bp-recent-text h5 { font-family: 'Cinzel', serif; font-size: 13px; color: var(--txt-dk); line-height: 1.4; margin-bottom: 4px; }
.bp-recent-text span { font-size: 11px; color: var(--mut-dk); }

.bp-sidebar-cta { padding: 22px; text-align: center; }
.bp-sidebar-cta p { font-size: 13px; color: var(--mut-dk); margin-bottom: 14px; line-height: 1.6; }
.bp-sidebar-cta .mk-btn-gold { width: 100%; display: flex; align-items: center; justify-content: center; }

/* Related posts */
.bp-related { padding: 60px 0 80px; background: var(--ivory2); border-top: 1px solid var(--ivory3); }
.bp-related-head { text-align: center; margin-bottom: 40px; }
.bp-related-head span { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--red); font-family: 'Lato', sans-serif; display: block; margin-bottom: 8px; }
.bp-related-head h2 { font-family: 'Cinzel', serif; font-size: clamp(20px,2.8vw,30px); color: var(--txt-dk); }

.bp-faq { margin: 36px 0; }
.bp-faq h3 { font-family: 'Cinzel', serif; font-size: 22px; color: var(--txt-dk); margin-bottom: 16px; }
.bp-faq-item { border: 1px solid var(--ivory3); border-radius: 10px; margin-bottom: 10px; overflow: hidden; }
.bp-faq-q { width: 100%; text-align: left; background: #fff; border: none; padding: 16px 18px; font-family: 'Lato', sans-serif; font-weight: 600; font-size: 15px; color: var(--txt-dk); display: flex; justify-content: space-between; align-items: center; cursor: pointer; }
.bp-faq-q i { transition: transform .25s; color: var(--red); }
.bp-faq-q.open i { transform: rotate(180deg); }
.bp-faq-a { display: none; padding: 0 18px 16px; font-size: 14px; line-height: 1.8; color: var(--mut-dk); }

@media(max-width: 1100px) {
    .bp-layout { grid-template-columns: 1fr 300px; }
}
@media(max-width: 991px) {
    .bp-layout { grid-template-columns: 1fr; }
    .bp-sidebar { position: static; }
}
@media(max-width: 575px) {
    .bp-hero { min-height: 320px; }
    .bp-foot-row { flex-direction: column; align-items: flex-start; }
    .bp-author { flex-direction: column; text-align: center; }
}
