.blog-content-box h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.blog-content-box h2 {
    margin-top: 25px;
    font-weight: 600;
    font-size: 1.3rem;
}

.blog-content-box p {
    line-height: 1.8;
    margin-top: 10px;
    color: #555;
}

.blog-img-box img {
    transition: 0.4s ease;
}

.blog-img-box img:hover {
    transform: scale(1.05);
}

.recent-list {
    list-style: none;
    padding-left: 0;
}

.recent-list li {
    margin-top: 10px;
}

.recent-list a {
    text-decoration: none;
    color: #b78b2b;
    font-weight: 600;
    transition: 0.3s ease;
}

.recent-list a:hover {
    color: #000;
    padding-left: 5px;
}


/* ===== SMALL IMAGE RECENT POSTS ===== */

.recent-posts-mini {
    border-top: 1px solid #eee;
    padding-top: 25px;
    max-width: 520px;
}

.recent-heading-small {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 18px;
    color: #222;
}

.recent-mini-item {
    margin-bottom: 15px;
}

.recent-mini-item a {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.recent-mini-item img {
    width: 70px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 12px;
    transition: transform 0.4s ease;
}

.mini-content span {
    font-size: 0.75rem;
    color: #b78b2b;
    font-weight: 600;
}

.mini-content p {
    margin: 3px 0 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}

.recent-mini-item a:hover {
    background: #f9f9f9;
    transform: translateX(4px);
}

.recent-mini-item a:hover img {
    transform: scale(1.05);
}

/* ===== BLOG DATE HIGHLIGHT ===== */

.blog-date-badge {
    display: inline-block;
    background: rgba(183, 139, 43, 0.1);
    color: #b78b2b;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 15px;
    border: 1px solid rgba(183, 139, 43, 0.3);
    letter-spacing: 0.5px;
}

.blog-date-badge {
    background: #b78b2b;
    color: #fff;
}