/* ==== RECENT BLOGS WIDGET (shortcode: [recent_blogs_widget]) ==== */
.rbw-widget {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px 20px 14px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    width: 100%;
    box-sizing: border-box;
    font-family: Poppins, Helvetica, Arial, Lucida, sans-serif;
}

.rbw-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.rbw-header-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #2f8b3c;
}

.rbw-header-icon svg {
    width: 16px;
    height: 16px;
    display: block;
}

.rbw-header-title {
    font-size: 15.5px;
    font-weight: 700;
    color: #111111;
    margin: 0;
    line-height: 1.2;
}

.rbw-list {
    display: flex;
    flex-direction: column;
}

.rbw-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid #efefef;
}

.rbw-item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}

.rbw-thumb {
    display: block;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 8px;
    overflow: hidden;
}

.rbw-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.rbw-thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f2f4f7;
    color: #b8c0cc;
}

.rbw-thumb-placeholder svg {
    width: 22px;
    height: 22px;
}

.rbw-item-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.rbw-item-title {
    font-size: 13px;
    font-weight: 600;
    line-height: 18.2px;
    color: #222222;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rbw-item-title:hover {
    color: #2f8b3c;
}

.rbw-item-date {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: #8a94a3;
}

.rbw-date-icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.rbw-date-icon svg {
    width: 10px;
    height: 10px;
    display: block;
}

.rbw-empty {
    font-size: 12px;
    color: #8a94a3;
    margin: 0;
}
