/* --- General Page Setup --- */
.modern-blog-details-page {
    background-color: #f3f1e9; /* Light beige matching previous designs */
    font-family: var(--font-02);
    padding-top: 80px;
    padding-bottom: 80px;
    color: #1a2332;
}

/* --- Hero Image & Category Pill --- */
.main-blog-img {
    height: 500px;
}

.category-pill {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #b34a36; /* Rust accent */
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 20px;
    border-radius: 50px;
}

/* --- Meta Information --- */
.blog-meta-row {
    font-size: 14px;
    color: #6b6b6b;
    font-weight: 500;
}

.meta-icon {
    color: #b34a36; /* Rust accent */
    margin-right: 6px;
}

/* --- Typography Formatting --- */
.blog-main-title {
    font-size: clamp(2rem, 4vw, 3rem); /* Responsive fluid font sizing */
    line-height: 1.2;
    color: #1a2332;
    letter-spacing: -1px;
}

.blog-body-content {
    line-height: 1.8;
    color: #4a4a4a;
    font-size: 17px;
}

.blog-html-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 20px 0;
}

/* --- Sidebar Styling --- */
.widget-title {
    color: #1a2332;
    font-size: 1.3rem;
}

.sidebar-thumb {
    width: 85px; 
    height: 85px;
    transition: transform 0.3s ease;
}

.thumbnail-link:hover .sidebar-thumb {
    transform: scale(1.05); /* Slight zoom on hover */
}

.popular-post-item {
    border-bottom: 1px solid #f1f1f1;
    padding-bottom: 20px;
}

.popular-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0 !important;
}

.post-title a {
    color: #1a2332;
    transition: color 0.3s ease;
}

.post-title a:hover {
    color: #b34a36; /* Rust accent */
}
/* --- Stylized Stacked Date --- */
.stylized-date {
    position: relative;
    font-size: 10px;
    font-weight: 700;
    color: #8c8a82; /* Muted gray/brown */
    text-transform: uppercase;
    line-height: 1.3;
    letter-spacing: 0.5px;
    padding: 2px 8px;
    min-width: 45px;
}
/* Responsive Overrides */
@media (max-width: 768px) {
    .main-blog-img {
        height: 300px;
    }
    .modern-blog-details-page {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}