.rb-blog-block {
    background: #FFF;
}

.rb-blog-heading {
    /* font-weight: 700; */
    color: #5f432f;
}

.rb-blog-subtitle {
    max-width: 650px;
    color: #725846;
    font-size: 0.95rem;
}

.rb-blog-card {
    background: linear-gradient(180deg, #fffaf4 0%, #f4ede5 100%);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(64, 42, 27, 0.12);
    border: 1px solid rgba(95, 67, 47, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.rb-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 32px rgba(64, 42, 27, 0.2);
}

.rb-blog-image-wrap {
    display: block;
    height: 190px;
    overflow: hidden;
    background: #f3ede6;
}

.rb-blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.rb-blog-card:hover .rb-blog-image {
    transform: scale(1.05);
}

.rb-blog-content {
    padding: 1rem;
    background: linear-gradient(180deg, #d8d1c9 0%, #f4ede5 100%);
}

.rb-blog-date {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #9b7552;
    margin-bottom: 0.45rem;
}

.rb-blog-title {
    font-size: 1rem;
    line-height: 1.25;
    margin-bottom: 0.5rem;
    text-align: center;
}

.rb-blog-title a {
    color: #5a3b29;
    text-decoration: none;
}

.rb-blog-title a:hover {
    color: #8a603d;
}

.rb-blog-excerpt {
    font-size: 0.86rem;
    line-height: 1.5;
    color: #725846;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .rb-blog-image-wrap {
        height: 220px;
    }
}


.rb-sidebar-posts-widget {
    background: #fff;
    border: 1px solid rgba(95, 67, 47, 0.14);
    border-radius: 6px;
    padding: 0.9rem;
    box-shadow: 0 8px 22px rgba(64, 42, 27, 0.08);
}

.rb-sidebar-widget-title {
    font-size: 0.75rem;
    font-weight: 400;
    color: #5f432f;
    margin-bottom: 1rem;
    padding-bottom: 0.25rem;
    border-bottom: 1px solid rgba(95, 67, 47, 0.16);
}

.rb-sidebar-post-item {
    display: flex;
    gap: 0.75rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(95, 67, 47, 0.1);
}

.rb-sidebar-post-item:first-child {
    padding-top: 0;
}

.rb-sidebar-post-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.rb-sidebar-post-img {
    flex: 0 0 74px;
    width: 74px;
    height: 74px;
    border-radius: 5px;
    overflow: hidden;
    background: #efe4d8;
}

.rb-sidebar-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.rb-sidebar-post-content {
    flex: 1;
    min-width: 0;
}

.rb-sidebar-post-date {
    display: block;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #9b7552;
    margin-bottom: 0.25rem;
}

.rb-sidebar-post-title {
    font-size: 0.92rem;
    line-height: 1.3;
    margin: 0;
    font-weight: 700;
}

.rb-sidebar-post-title a {
    color: #5a3b29;
    text-decoration: none;
}

.rb-sidebar-post-title a:hover {
    color: #8a603d;
}