/* --- Blog Page Base Settings --- */
.blog-body {
    background-color: #0d0406; /* Dark Maroon Black Deep Base */
    color: #e0e0e0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
}

/* Header UI */
.blog-header {
    background: linear-gradient(to bottom, rgba(128, 0, 0, 0.15), transparent);
    padding: 40px 5%;
}
.blog-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}
.back-home-btn {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
}
.back-home-btn:hover { color: #FFC107; } /* Gold */
.blog-logo { font-size: 1.5rem; font-weight: 700; color: #fff; letter-spacing: 1px;}
.blog-logo span { color: #800000; }

.blog-intro { text-align: center; max-width: 700px; margin: 0 auto; }
.blog-intro h1 { font-size: 2.5rem; color: #fff; margin-bottom: 10px; }
.blog-intro h1 span {
    background: linear-gradient(135deg, #ffc107, #de2d43);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.blog-intro p { color: #a0a0a0; font-size: 1rem; }

/* Main Layout Grid */
.blog-layout-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    max-width: 1300px;
    margin: 40px auto;
    padding: 0 5%;
}

/* --- Premium Feed Cards --- */
.blog-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.blog-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 193, 7, 0.2); /* Gold Border Glow */
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.blog-tag {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
}
.tag-tech { background: rgba(255, 193, 7, 0.1); color: #FFC107; }
.tag-insight { background: rgba(46, 196, 182, 0.1); color: #2ec4b6; }
.tag-marketing { background: rgba(128, 0, 0, 0.2); color: #ff4d6d; }
.blog-date { font-size: 0.85rem; color: #888; }

.blog-card-image {
    width: 100%;
    max-height: 350px;
    overflow: hidden;
    border-radius: 14px;
    margin-bottom: 20px;
}
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; }

.blog-card h2 { font-size: 1.4rem; color: #fff; margin: 0 0 12px 0; }
.blog-card p { color: #b8b8b8; line-height: 1.6; font-size: 0.98rem; }
.quote-text { font-style: italic; font-size: 1.1rem; color: #fff !important; border-left: 3px solid #800000; padding-left: 15px; }

/* --- Interactive Embed External Link Card --- */
.blog-external-link {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 15px;
    margin-top: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.blog-external-link:hover {
    background: rgba(128, 0, 0, 0.1);
    border-color: rgba(255, 193, 7, 0.3);
}
.link-icon { font-size: 1.3rem; color: #FFC107; margin-right: 15px; }
.link-details { display: flex; flex-direction: column; flex-grow: 1; }
.link-title { color: #fff; font-size: 0.95rem; font-weight: 500; margin-bottom: 2px; }
.link-url { color: #666; font-size: 0.8rem; }
.arrow { color: #444; transition: transform 0.3s; }
.blog-external-link:hover .arrow { transform: translateX(5px); color: #FFC107; }

/* ================= SIDEBAR & LIVE RADAR UX ================= */
.blog-sidebar { position: relative; }
.sidebar-sticky-widget { position: sticky; top: 40px; }

.radar-card {
    background: linear-gradient(145deg, rgba(20, 8, 10, 0.9), rgba(40, 10, 15, 0.4));
    border: 1px solid rgba(128, 0, 0, 0.2);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.radar-header { display: flex; align-items: center; gap: 12px; margin-bottom: 15px; }
.radar-header h3 { color: #fff; margin: 0; font-size: 1.15rem; }

/* Live Status Pulse Effect (အမြဲတမ်း Update ပေါ်နေမည့်ခံစားချက်ပေးခြင်း) */
.live-pulse {
    width: 10px;
    height: 10px;
    background-color: #2ec4b6; /* Mint Green Line */
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(46, 196, 182, 0.7);
    animation: pulse-radar 1.8s infinite;
}
@keyframes pulse-radar {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(46, 196, 182, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(46, 196, 182, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(46, 196, 182, 0); }
}

.radar-desc { font-size: 0.85rem; color: #a0a0a0; line-height: 1.5; margin-bottom: 25px; }
.radar-list { list-style: none; padding: 0; margin: 0; }
.radar-list li { display: flex; gap: 15px; margin-bottom: 20px; align-items: flex-start; }
.radar-icon { color: #FFC107; font-size: 1.1rem; margin-top: 2px; }
.radar-info h4 { color: #fff; margin: 0 0 4px 0; font-size: 0.95rem; font-weight: 500; }
.radar-status { color: #666; font-size: 0.8rem; display: block; }

.sidebar-footer-note { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 15px; margin-top: 25px; font-size: 0.8rem; color: #555; text-align: center; }

/* Responsive Viewports */
@media (max-width: 992px) {
    .blog-layout-container { grid-template-columns: 1fr; gap: 30px; }
    .sidebar-sticky-widget { position: static; }
}